Merge pull request #67822 from ClickHouse/fix-bad-test-03032_redundant_equals

Fix bad test `03032_redundant_equals`
This commit is contained in:
Alexey Milovidov 2024-08-06 12:01:31 +00:00 committed by GitHub
commit 8301fa0b06
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -5,9 +5,9 @@ CREATE TABLE test_table
k UInt64,
)
ENGINE = MergeTree
ORDER BY k;
ORDER BY k SETTINGS index_granularity = 8192, index_granularity_bytes = '10Mi';
INSERT INTO test_table SELECT number FROM numbers(10000000);
INSERT INTO test_table SELECT number FROM numbers(100000);
SET enable_analyzer = 1;