diff options
author | drh <drh@noemail.net> | 2008-06-24 12:46:30 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2008-06-24 12:46:30 +0000 |
commit | f6e369a119068454fde81a70c3e5bcfeca34720a (patch) | |
tree | d3e396d3050281c96cbcfcf5f3c43db97f036a1e /src/expr.c | |
parent | 398cf3d707286492c68c36f1423beeb603560374 (diff) | |
download | sqlite-f6e369a119068454fde81a70c3e5bcfeca34720a.tar.gz sqlite-f6e369a119068454fde81a70c3e5bcfeca34720a.zip |
Fix a problem in sqlite3ExprIsInteger() causing failures on select1-4.9.2.
Other bug fixes in compound-merge. The compound-merge is still disabled
in this check-in using "#if 0" due to additional bugs. (CVS 5295)
FossilOrigin-Name: 95037e6dbf4ed0ffd38790f3270dcaa4c1ae64ed
Diffstat (limited to 'src/expr.c')
-rw-r--r-- | src/expr.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/expr.c b/src/expr.c index da051c75e..877469eaf 100644 --- a/src/expr.c +++ b/src/expr.c @@ -12,7 +12,7 @@ ** This file contains routines used for analyzing expressions and ** for generating VDBE code that evaluates expressions in SQLite. ** -** $Id: expr.c,v 1.375 2008/06/24 00:32:35 drh Exp $ +** $Id: expr.c,v 1.376 2008/06/24 12:46:31 drh Exp $ */ #include "sqliteInt.h" #include <ctype.h> @@ -1030,6 +1030,7 @@ int sqlite3ExprIsInteger(Expr *p, int *pValue){ } case TK_UPLUS: { rc = sqlite3ExprIsInteger(p->pLeft, pValue); + break; } case TK_UMINUS: { int v; |