diff options
author | drh <drh@noemail.net> | 2014-10-14 13:41:32 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2014-10-14 13:41:32 +0000 |
commit | 92fe38ece56c01929b8ad949c94a8b7732db496c (patch) | |
tree | 14273daa821b50e1da797883ca36de3a78329512 /src/shell.c | |
parent | 78aad7cd1d026afa649460cf0ed6508c3d88a16e (diff) | |
parent | 8dd8362d6446e8d83fd621122987f048216197c2 (diff) | |
download | sqlite-92fe38ece56c01929b8ad949c94a8b7732db496c.tar.gz sqlite-92fe38ece56c01929b8ad949c94a8b7732db496c.zip |
Merge recent trunk micro-optimizations and the DESC index GROUP BY ORDER BY
bug fix into the sessions branch.
FossilOrigin-Name: 83d4114f2aa404e670ced33511183baacd813a01
Diffstat (limited to 'src/shell.c')
-rw-r--r-- | src/shell.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/shell.c b/src/shell.c index a54db50e4..d77f9d9ef 100644 --- a/src/shell.c +++ b/src/shell.c @@ -4006,6 +4006,7 @@ static int process_input(ShellState *p, FILE *in){ if( nSql ){ if( !_all_whitespace(zSql) ){ fprintf(stderr, "Error: incomplete SQL: %s\n", zSql); + errCnt++; } free(zSql); } |