diff options
author | drh <drh@noemail.net> | 2013-11-14 19:18:39 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2013-11-14 19:18:39 +0000 |
commit | 212c6be1417860712de4b93b31342b72c9fa89dd (patch) | |
tree | bcaa73d6dbd8e1c711e721e011b98695c5fe2765 /src/sqliteInt.h | |
parent | cf1ef10b620f79a53706baf180466520ffb08388 (diff) | |
parent | 400fcbad717b673501925e504e3cca9cbe31f533 (diff) | |
download | sqlite-212c6be1417860712de4b93b31342b72c9fa89dd.tar.gz sqlite-212c6be1417860712de4b93b31342b72c9fa89dd.zip |
Merge the skip-scan optimization into the sessions branch.
FossilOrigin-Name: 7596d1bf8040f7cefc7b22c5e609acc5d66820bf
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 e702c59ee..06228b291 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -1051,6 +1051,7 @@ struct sqlite3 { #define SQLITE_EnableTrigger 0x00800000 /* True to enable triggers */ #define SQLITE_DeferFKs 0x01000000 /* Defer all FK constraints */ #define SQLITE_QueryOnly 0x02000000 /* Disable database changes */ +#define SQLITE_VdbeEQP 0x04000000 /* Debug EXPLAIN QUERY PLAN */ /* |