diff options
author | drh <> | 2021-12-05 20:19:47 +0000 |
---|---|---|
committer | drh <> | 2021-12-05 20:19:47 +0000 |
commit | 6ae49e67cc6e40538d1de2e0239dbdd59e487814 (patch) | |
tree | dbc7df81fa415b0bd49134b9d0fe88bc321dab5f /src/sqliteInt.h | |
parent | 35685d3e5e0e28a7631616809be450b090029482 (diff) | |
download | sqlite-6ae49e67cc6e40538d1de2e0239dbdd59e487814.tar.gz sqlite-6ae49e67cc6e40538d1de2e0239dbdd59e487814.zip |
Run as many Bloom filters as possible before index lookups.
FossilOrigin-Name: 06f6fefd67086896bc49272c6319545ff6c6792f18babe23aced27b60b032119
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 e96947e81..896b2aa42 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -1762,6 +1762,7 @@ struct sqlite3 { #define SQLITE_OmitOrderBy 0x00040000 /* Omit pointless ORDER BY */ /* TH3 expects this value ^^^^^^^^^^ to be 0x40000. Coordinate any change */ #define SQLITE_BloomFilter 0x00080000 /* Use a Bloom filter on searches */ +#define SQLITE_BloomPulldown 0x00100000 /* Run Bloom filters early */ #define SQLITE_AllOpts 0xffffffff /* All optimizations */ /* |