diff options
author | drh <drh@noemail.net> | 2013-06-22 15:44:26 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2013-06-22 15:44:26 +0000 |
commit | 1031bd99581c1c3d7da99eb1c9a74a4cf053e0da (patch) | |
tree | 104c9e5188609ab615cd9d8b5347e4bf88164e45 /src/sqliteInt.h | |
parent | bc71b1d4536ce7842f80010049c69f5fd2806b3b (diff) | |
download | sqlite-1031bd99581c1c3d7da99eb1c9a74a4cf053e0da.tar.gz sqlite-1031bd99581c1c3d7da99eb1c9a74a4cf053e0da.zip |
Add the ability to disable the omit-join-table optimization for testing
purposes.
FossilOrigin-Name: d929df9b1ba214c27d8c437099a53ee9b07aa169
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 731612d34..0a661937f 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -1024,6 +1024,7 @@ struct sqlite3 { #define SQLITE_OrderByIdxJoin 0x0080 /* ORDER BY of joins via index */ #define SQLITE_SubqCoroutine 0x0100 /* Evaluate subqueries as coroutines */ #define SQLITE_Transitive 0x0200 /* Transitive constraints */ +#define SQLITE_OmitNoopJoin 0x0400 /* Omit unused tables in joins */ #define SQLITE_AllOpts 0xffff /* All optimizations */ /* |