mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-22 07:31:57 +00:00
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:
commit
10f29ff7f9
@ -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)
|
||||||
|
@ -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();
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user