1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-08 14:02:16 +03:00

Remove unused code and fix comments. Final cleanup before merging.

FossilOrigin-Name: ce42039f5647b1f276acf5d9911528ecb47df1544a587def72c8cd6b2f664289
This commit is contained in:
drh
2021-12-09 19:42:52 +00:00
parent a11c5e22b5
commit 5a4ac1cc30
8 changed files with 25 additions and 64 deletions

View File

@@ -671,23 +671,6 @@ static Mem *out2Prerelease(Vdbe *p, VdbeOp *pOp){
}
}
/*
** The minimum size (in bytes) for a Bloom filter.
**
** No Bloom filter will be smaller than this many bytes. But they
** may be larger.
*/
#ifndef SQLITE_BLOOM_MIN
# define SQLITE_BLOOM_MIN 10000
#endif
/*
** The maximum size (in bytes) for a Bloom filter.
*/
#ifndef SQLITE_BLOOM_MAX
# define SQLITE_BLOOM_MAX 1000000
#endif
/*
** Compute a bloom filter hash using pOp->p4.i registers from aMem[] beginning
** with pOp->p3. Return the hash.