Fix test 02231_bloom_filter_sizing

This commit is contained in:
Alexey Milovidov 2024-08-05 00:22:48 +02:00
parent 1e19459610
commit 270dddc00f
2 changed files with 4 additions and 4 deletions

View File

@ -1,6 +1,6 @@
Bloom filter on sort key
10000
1000
0
Bloom filter on non-sort key
10000
1000
0

View File

@ -12,7 +12,7 @@ INSERT INTO bloom_filter_sizing_pk
SELECT
number % 100 as key, -- 100 unique keys
number as value -- whatever
FROM numbers(1000 * 1000);
FROM numbers(100_000);
--
-- Merge everything into a single part
@ -40,7 +40,7 @@ SELECT
number % 100 as key1, -- 100 unique keys
rand() % 100 as key2, -- 100 unique keys
number as value -- whatever
FROM numbers(1000 * 1000);
FROM numbers(100_000);
--
-- Merge everything into a single part