Merge pull request #61256 from ClickHouse/Avogar-patch-3

Disable test 02998_primary_key_skip_columns.sql in sanitizer builds as it can be slow
This commit is contained in:
Ilya Yatsishin 2024-03-13 16:38:06 +04:00 committed by GitHub
commit f4875d2467
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,3 +1,5 @@
-- Tags: no-asan, no-tsan, no-msan, no-ubsan
DROP TABLE IF EXISTS test;
CREATE TABLE test (a UInt64, b UInt64, c UInt64) ENGINE = MergeTree ORDER BY (a, b, c) SETTINGS index_granularity = 1, primary_key_ratio_of_unique_prefix_values_to_skip_suffix_columns = 1;