Skip to content

Commit

Permalink
revert test
Browse files Browse the repository at this point in the history
  • Loading branch information
924060929 committed Jul 17, 2024
1 parent b614b2b commit b31626e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions regression-test/suites/nereids_p0/join/test_outer_join.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -72,15 +72,15 @@ suite("test_outer_join", "nereids_p0") {
sql "set disable_join_reorder=true"
explain {
sql "SELECT * FROM ${tbl1} RIGHT OUTER JOIN ${tbl3} ON ${tbl1}.c0 = ${tbl3}.c0"
contains "RIGHT OUTER JOIN(BUCKET_SHUFFLE)"
contains "RIGHT OUTER JOIN(PARTITIONED)"
}
explain {
sql "SELECT * FROM ${tbl1} RIGHT ANTI JOIN ${tbl3} ON ${tbl1}.c0 = ${tbl3}.c0"
contains "RIGHT ANTI JOIN(BUCKET_SHUFFLE)"
contains "RIGHT ANTI JOIN(PARTITIONED)"
}
explain {
sql "SELECT * FROM ${tbl1} FULL OUTER JOIN ${tbl3} ON ${tbl1}.c0 = ${tbl3}.c0"
contains "FULL OUTER JOIN(BUCKET_SHUFFLE)"
contains "FULL OUTER JOIN(PARTITIONED)"
}

sql "DROP TABLE IF EXISTS ${tbl1}"
Expand Down
2 changes: 1 addition & 1 deletion regression-test/suites/query_p0/join/test_join.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -1271,7 +1271,7 @@ suite("test_join", "query,p0") {
LEFT JOIN T_DORIS_C C ON A.apply_crcl = C.id JOIN T_DORIS_D D ON C.ID = D.CORE_ID order by
B.FACTOR_FIN_VALUE, D.limit_id desc;"""
logger.info(ret.toString())
assertTrue(ret.toString().contains(" | join op: INNER JOIN(BUCKET_SHUFFLE)"))
assertTrue(ret.toString().contains(" | join op: INNER JOIN(BROADCAST)"))
sql "SET disable_join_reorder=false"

sql "drop table if exists `t0`"
Expand Down

0 comments on commit b31626e

Please sign in to comment.