aboutsummaryrefslogtreecommitdiff
path: root/src/sqliteInt.h
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2017-02-11 14:59:58 +0000
committerdrh <drh@noemail.net>2017-02-11 14:59:58 +0000
commitf9463dfbcf8069bb1df1dd3407bc6e2837f9cee6 (patch)
treedb4610c4625f5d1909ddd056a34d04adfb085522 /src/sqliteInt.h
parent13ac46eea2effd6e6f6033e062b760665bf4b7d3 (diff)
downloadsqlite-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.h1
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*);