diff options
author | drh <drh@noemail.net> | 2017-02-11 14:59:58 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2017-02-11 14:59:58 +0000 |
commit | f9463dfbcf8069bb1df1dd3407bc6e2837f9cee6 (patch) | |
tree | db4610c4625f5d1909ddd056a34d04adfb085522 /src/sqliteInt.h | |
parent | 13ac46eea2effd6e6f6033e062b760665bf4b7d3 (diff) | |
download | sqlite-f9463dfbcf8069bb1df1dd3407bc6e2837f9cee6.tar.gz sqlite-f9463dfbcf8069bb1df1dd3407bc6e2837f9cee6.zip |
Fix indexes on expressions so that they can be actually used with
a COLLATE clause.
FossilOrigin-Name: e464b919f76520b45bb58983c6702db59d820ee4
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index f9768895a..23b4dd946 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -3762,6 +3762,7 @@ void sqlite3Vacuum(Parse*,Token*); int sqlite3RunVacuum(char**, sqlite3*, int); char *sqlite3NameFromToken(sqlite3*, Token*); int sqlite3ExprCompare(Expr*, Expr*, int); +int sqlite3ExprCompareSkip(Expr*, Expr*, int); int sqlite3ExprListCompare(ExprList*, ExprList*, int); int sqlite3ExprImpliesExpr(Expr*, Expr*, int); void sqlite3ExprAnalyzeAggregates(NameContext*, Expr*); |