modify test cases

This commit is contained in:
terrylin 2021-07-31 21:10:06 +08:00
parent 09a4f82d0f
commit 79c55866b5

View File

@ -6,11 +6,9 @@ CREATE TABLE table_rename_with_ttl
value1 String
)
ENGINE = ReplicatedMergeTree('/clickhouse/test/table_rename_with_ttl_01378', '1')
order by value1
ORDER BY tuple()
SETTINGS merge_with_ttl_timeout=0,max_number_of_merges_with_ttl_in_pool=0;
ORDER BY tuple();
INSERT INTO table_rename_with_ttl SELECT toDate('2018-10-01') + number % 3, toString(number) from numbers(9);
SELECT count() FROM table_rename_with_ttl;