Skip to content

Commit 93c43d8

Browse files
committed
Match database bloom k default of log2(m).
1 parent 57c3f00 commit 93c43d8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

console/executor_scans.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -366,7 +366,7 @@ void executor::scan_collisions() const
366366
// TODO: expose filter type from hashhead to table.
367367
///////////////////////////////////////////////////////////////////////////
368368
constexpr size_t m = 32;
369-
constexpr size_t k = add1(floored_log2(m));
369+
constexpr size_t k = floored_log2(m);
370370
using bloom_t = bloom<m, k>;
371371
////using sieve_t = sieve<m, 3>;
372372
///////////////////////////////////////////////////////////////////////////

0 commit comments

Comments
 (0)