diff --git a/tests/queries/0_stateless/02968_full_sorting_join_fuzz.reference b/tests/queries/0_stateless/02968_full_sorting_join_fuzz.reference deleted file mode 100644 index 0e9f5cc1db1..00000000000 --- a/tests/queries/0_stateless/02968_full_sorting_join_fuzz.reference +++ /dev/null @@ -1,3 +0,0 @@ -[NULL] [] 100 0 - -[NULL] [] 100 0 diff --git a/tests/queries/0_stateless/02968_full_sorting_join_fuzz.sql b/tests/queries/0_stateless/02968_full_sorting_join_fuzz.sql deleted file mode 100644 index 802eda57df3..00000000000 --- a/tests/queries/0_stateless/02968_full_sorting_join_fuzz.sql +++ /dev/null @@ -1,15 +0,0 @@ -SET max_bytes_in_join = 0, join_algorithm = 'full_sorting_merge', max_block_size = 10240; - -DROP TABLE IF EXISTS t1; -DROP TABLE IF EXISTS t2; - -CREATE TABLE t1 (`key` UInt32, `s` String) ENGINE = MergeTree ORDER BY key; -CREATE TABLE t2 (`key` UInt32, `s` String) ENGINE = MergeTree ORDER BY key; - -INSERT INTO t1 SELECT (sipHash64(number, 'x') % 10000000) + 1 AS key, concat('val', toString(number)) AS s FROM numbers_mt(10000000); -INSERT INTO t2 SELECT (sipHash64(number, 'y') % 1000000) + 1 AS key, concat('val', toString(number)) AS s FROM numbers_mt(1000000); - -SELECT materialize([NULL]), [], 100, count(materialize(NULL)) FROM t1 ALL INNER JOIN t2 ON t1.key = t2.key PREWHERE 10 WHERE t2.key WITH TOTALS; - -DROP TABLE t1; -DROP TABLE t2;