From 030b8420d7a07fdc8da2fb21af9198a06f50c947 Mon Sep 17 00:00:00 2001 From: minghong Date: Tue, 6 Aug 2024 15:31:55 +0800 Subject: [PATCH] local-shuffle off --- regression-test/suites/query_p0/join/test_join.groovy | 1 + .../suites/tpch_unique_sql_zstd_bucket1_p0/sql/q02.sql | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/regression-test/suites/query_p0/join/test_join.groovy b/regression-test/suites/query_p0/join/test_join.groovy index e75878cb032aa3..459187fa55acd3 100644 --- a/regression-test/suites/query_p0/join/test_join.groovy +++ b/regression-test/suites/query_p0/join/test_join.groovy @@ -36,6 +36,7 @@ suite("test_join", "query,p0") { qt_join1 """select sum(t1.k1), sum(t1.k3), max(t1.k5), max(t2.k4) from test t1 inner join baseall t2 on t1.k1 = t2.k1 and t1.k6 is not null and t2.k6 is not null""" qt_join2 """select k1, k2, k3 from test where k7 is not null order by 1 desc, 2 desc, 3 desc limit 10""" + sql "set enable_local_shuffle=false;" qt_join3 """select c.k1, c.k8 from baseall d join (select a.k1 as k1, a.k8 from test a join baseall b on (a.k1=b.k1)) c on c.k1 = d.k1 order by 1, 2""" qt_join4 """select a.k1, b.k1 from baseall a join (select k1, k2 from test order by k1 limit 10) b diff --git a/regression-test/suites/tpch_unique_sql_zstd_bucket1_p0/sql/q02.sql b/regression-test/suites/tpch_unique_sql_zstd_bucket1_p0/sql/q02.sql index 8c60ec1929364d..e7f55f0fe76fa6 100644 --- a/regression-test/suites/tpch_unique_sql_zstd_bucket1_p0/sql/q02.sql +++ b/regression-test/suites/tpch_unique_sql_zstd_bucket1_p0/sql/q02.sql @@ -1,5 +1,6 @@ -- tables: part,supplier,partsupp,nation,region -SELECT + +SELECT /*+ SET_VAR(enable_local_shuffle=false) */ s_acctbal, s_name, n_name,