diff options
author | drh <> | 2022-05-02 15:10:38 +0000 |
---|---|---|
committer | drh <> | 2022-05-02 15:10:38 +0000 |
commit | 85f93850f7589e27fca2f41789525e9ccca2fb65 (patch) | |
tree | f85c86b2855a6e34242cb7b7b40cbbcc3c9f2c83 /src/sqliteInt.h | |
parent | 08e1a6a29b58ea62df1197a9e91f8c63b246cf25 (diff) | |
parent | 3a45d30ea5eff2c17c5ee1561e12f0865ad75b3e (diff) | |
download | sqlite-85f93850f7589e27fca2f41789525e9ccca2fb65.tar.gz sqlite-85f93850f7589e27fca2f41789525e9ccca2fb65.zip |
Merge the latest trunk fixes and enhancements into the right-join branch.
FossilOrigin-Name: afbcf075c1e09ae064c7b16e63501cd1d374711812664aef76bd35d02d64a2b6
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 f483cc498..0715cae3c 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -5317,6 +5317,7 @@ const char *sqlite3JournalModename(int); #define IN_INDEX_NOOP_OK 0x0001 /* OK to return IN_INDEX_NOOP */ #define IN_INDEX_MEMBERSHIP 0x0002 /* IN operator used for membership test */ #define IN_INDEX_LOOP 0x0004 /* IN operator used as a loop */ +#define IN_INDEX_REUSE_CUR 0x0008 /* Reuse prior table cursor */ int sqlite3FindInIndex(Parse *, Expr *, u32, int*, int*, int*); int sqlite3JournalOpen(sqlite3_vfs *, const char *, sqlite3_file *, int, int); |