Merge pull request #35679 from Avogar/fix-tests

Fix flaky tests 02149_read_in_order_fixed_prefix and 02177_issue_31009
This commit is contained in:
alesapin 2022-03-28 21:42:17 +02:00 committed by GitHub
commit 10f29ff7f9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 0 deletions

View File

@ -1,3 +1,5 @@
SET max_threads=0;
DROP TABLE IF EXISTS t_read_in_order; DROP TABLE IF EXISTS t_read_in_order;
CREATE TABLE t_read_in_order(date Date, i UInt64, v UInt64) CREATE TABLE t_read_in_order(date Date, i UInt64, v UInt64)

View File

@ -1,5 +1,10 @@
-- Tags: long -- Tags: long
SET max_threads=0;
DROP TABLE IF EXISTS left;
DROP TABLE IF EXISTS right;
CREATE TABLE left ( key UInt32, value String ) ENGINE = MergeTree ORDER BY key; CREATE TABLE left ( key UInt32, value String ) ENGINE = MergeTree ORDER BY key;
CREATE TABLE right ( key UInt32, value String ) ENGINE = MergeTree ORDER BY tuple(); CREATE TABLE right ( key UInt32, value String ) ENGINE = MergeTree ORDER BY tuple();