diff options
author | drh <drh@noemail.net> | 2002-06-29 02:20:08 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2002-06-29 02:20:08 +0000 |
commit | a9f9d1c08b26485efd8339c66faa68c18f3f101e (patch) | |
tree | 941c52373617205f7b5ef2b0694cc1a063ff54f3 /src/expr.c | |
parent | 3b167c7583f8c9231f27dc73f3ce28822c2c3435 (diff) | |
download | sqlite-a9f9d1c08b26485efd8339c66faa68c18f3f101e.tar.gz sqlite-a9f9d1c08b26485efd8339c66faa68c18f3f101e.zip |
Add a few more tests and fix a few bugs that the tests uncovered. (CVS 652)
FossilOrigin-Name: 91c0db66c86facb21b5b522afadd83d91a488256
Diffstat (limited to 'src/expr.c')
-rw-r--r-- | src/expr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/expr.c b/src/expr.c index 5b0cbd1b2..5b2d762e6 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.75 2002/06/28 12:18:47 drh Exp $ +** $Id: expr.c,v 1.76 2002/06/29 02:20:08 drh Exp $ */ #include "sqliteInt.h" #include <ctype.h> @@ -370,7 +370,7 @@ int sqliteExprIsInteger(Expr *p, int *pValue){ /* ** Return TRUE if the given string is a row-id column name. */ -static int sqliteIsRowid(const char *z){ +int sqliteIsRowid(const char *z){ if( sqliteStrICmp(z, "_ROWID_")==0 ) return 1; if( sqliteStrICmp(z, "ROWID")==0 ) return 1; if( sqliteStrICmp(z, "OID")==0 ) return 1; |