diff options
author | drh <> | 2021-12-01 16:31:02 +0000 |
---|---|---|
committer | drh <> | 2021-12-01 16:31:02 +0000 |
commit | 2db144c33b39985b159ec9210cc13bdb53c00e1c (patch) | |
tree | 317c41dcf05b1f3c7ebf99fcb76380b4d1ede8f9 /src/sqliteInt.h | |
parent | c1085ea412b5c78d58cad59273d71f44d39843c5 (diff) | |
download | sqlite-2db144c33b39985b159ec9210cc13bdb53c00e1c.tar.gz sqlite-2db144c33b39985b159ec9210cc13bdb53c00e1c.zip |
Add a Bloom filter to the automatic-index mechanism.
FossilOrigin-Name: 50ac4de1d7cbb586ea7969e1ae80ea8b021e194edc2fa7db19374b4ee9369bee
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 b45151104..d404b7b4f 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -1761,6 +1761,7 @@ struct sqlite3 { #define SQLITE_SeekScan 0x00020000 /* The OP_SeekScan optimization */ #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_AllOpts 0xffffffff /* All optimizations */ /* |