diff options
author | drh <drh@noemail.net> | 2015-02-21 15:13:50 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2015-02-21 15:13:50 +0000 |
commit | 878acb32efa879e0b680cce08f63e65f89fa4f77 (patch) | |
tree | 84f334c6f75c248e10f9a92c17e3dae631f2c597 /src/shell.c | |
parent | 1ee4a2dd88663517c8dd980926af9e76f37c88fb (diff) | |
parent | 2da47d38691b74a6cfa2ce2e5bdce3bb7d8fc186 (diff) | |
download | sqlite-878acb32efa879e0b680cce08f63e65f89fa4f77.tar.gz sqlite-878acb32efa879e0b680cce08f63e65f89fa4f77.zip |
Merge all recent trunk changes into the sessions branch.
FossilOrigin-Name: f36bb5fa5c5e3430808fe35d58f45559a216d341
Diffstat (limited to 'src/shell.c')
-rw-r--r-- | src/shell.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shell.c b/src/shell.c index 1ba0a91df..4b05c1984 100644 --- a/src/shell.c +++ b/src/shell.c @@ -3110,7 +3110,7 @@ static int do_meta_command(char *zLine, ShellState *p){ fprintf(stderr, "%s:%d: expected %d columns but found %d - " "filling the rest with NULL\n", sCtx.zFile, startLine, nCol, i+1); - i++; + i += 2; while( i<=nCol ){ sqlite3_bind_null(pStmt, i); i++; } } } |