diff options
author | drh <drh@noemail.net> | 2015-06-11 13:58:35 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2015-06-11 13:58:35 +0000 |
commit | 72bc8208f01a8e476996db7c6de09ad61ed62d6f (patch) | |
tree | 19038f1b0c8116c3b1d33c9b6b974e211ecd0bd8 /src/sqliteInt.h | |
parent | 033eb6c8d3f4b9c3a0f9343bcb349fbad6ac0b66 (diff) | |
download | sqlite-72bc8208f01a8e476996db7c6de09ad61ed62d6f.tar.gz sqlite-72bc8208f01a8e476996db7c6de09ad61ed62d6f.zip |
When generating code for partial indexes, be sure not to modify the
index condition expression in the schema.
FossilOrigin-Name: e63d01c69c3e50f49ee3022a519c4f3e91f00520
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 43e4b0be9..2378376c2 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -3326,6 +3326,7 @@ int sqlite3ExprCodeExprList(Parse*, ExprList*, int, u8); #define SQLITE_ECEL_FACTOR 0x02 /* Factor out constant terms */ void sqlite3ExprIfTrue(Parse*, Expr*, int, int); void sqlite3ExprIfFalse(Parse*, Expr*, int, int); +void sqlite3ExprIfFalseDup(Parse*, Expr*, int, int); Table *sqlite3FindTable(sqlite3*,const char*, const char*); Table *sqlite3LocateTable(Parse*,int isView,const char*, const char*); Table *sqlite3LocateTableItem(Parse*,int isView,struct SrcList_item *); |