This is an automated email from the ASF dual-hosted git repository.
kxiao pushed a commit to branch branch-2.0
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-2.0 by this push:
new 7863cc7e11e [fix](test) disable join reorder in bucket shuffle join
test (#27930) (#28568)
7863cc7e11e is described below
commit 7863cc7e11e61ed27288191f0e55c34ec61b9440
Author: morrySnow <[email protected]>
AuthorDate: Tue Dec 19 14:21:42 2023 +0800
[fix](test) disable join reorder in bucket shuffle join test (#27930)
(#28568)
---
regression-test/suites/nereids_p0/join/bucket_shuffle_join.groovy | 3 +++
1 file changed, 3 insertions(+)
diff --git a/regression-test/suites/nereids_p0/join/bucket_shuffle_join.groovy
b/regression-test/suites/nereids_p0/join/bucket_shuffle_join.groovy
index 9fb3606d69a..9bd063a1794 100644
--- a/regression-test/suites/nereids_p0/join/bucket_shuffle_join.groovy
+++ b/regression-test/suites/nereids_p0/join/bucket_shuffle_join.groovy
@@ -59,6 +59,9 @@ suite("bucket-shuffle-join") {
sql """analyze table shuffle_join_t1 with sync;"""
sql """analyze table shuffle_join_t2 with sync;"""
+ // we must disable join reorder since right xx join cannot be bucket
shuffle join now
+ sql """set disable_join_reorder=true"""
+
explain {
sql("select * from shuffle_join_t1 t1 left join shuffle_join_t2 t2 on
t1.a = t2.a;")
contains "BUCKET_SHUFFLE"
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]