diff options
author | drh <drh@noemail.net> | 2013-08-01 13:04:46 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2013-08-01 13:04:46 +0000 |
commit | 619a1305e77cc6382013fb1e9c406d8fb88ca600 (patch) | |
tree | dab4997708035a1e0c99a3749f6ef8cc70f56cfa /src/sqliteInt.h | |
parent | cf0fd4a5fd0cbb5f87a2dea65893b76e59d5c413 (diff) | |
download | sqlite-619a1305e77cc6382013fb1e9c406d8fb88ca600.tar.gz sqlite-619a1305e77cc6382013fb1e9c406d8fb88ca600.zip |
Fill out an initial implementation of the sqlite3ExprImpliesExpr() function.
FossilOrigin-Name: 8e07aa2ad5579aeb82174ce5bd432ddb9c058bc1
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index 21e32ff7b..291957db9 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -2834,8 +2834,8 @@ void sqlite3UnlinkAndDeleteIndex(sqlite3*,int,const char*); void sqlite3Vacuum(Parse*); int sqlite3RunVacuum(char**, sqlite3*); char *sqlite3NameFromToken(sqlite3*, Token*); -int sqlite3ExprCompare(Expr*, Expr*); -int sqlite3ExprListCompare(ExprList*, ExprList*); +int sqlite3ExprCompare(Expr*, Expr*, int); +int sqlite3ExprListCompare(ExprList*, ExprList*, int); int sqlite3ExprImpliesExpr(Expr*, Expr*, int); void sqlite3ExprAnalyzeAggregates(NameContext*, Expr*); void sqlite3ExprAnalyzeAggList(NameContext*,ExprList*); |