Skip to content

Commit

Permalink
fix mv
Browse files Browse the repository at this point in the history
  • Loading branch information
englefly committed Dec 18, 2024
1 parent 64593c7 commit d387e1f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ This file is used specifically to test the presence of AGGs under joins.
suite("dimension_2_join_agg_replenish") {
String db = context.config.getDbNameByFile(context.file)
sql "use ${db}"
sql "set enable_compress_materialize=false;"

sql """
drop table if exists orders
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ suite("outer_join_dphyp") {
sql "set runtime_filter_mode=OFF";
sql "SET ignore_shape_nodes='PhysicalDistribute,PhysicalProject'"
sql "SET enable_dphyp_optimizer = true"
sql "set enable_compress_materialize=false;"

sql """
drop table if exists orders
"""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ suite("outer_join") {
sql "use ${db}"
sql "set runtime_filter_mode=OFF";
sql "SET ignore_shape_nodes='PhysicalDistribute,PhysicalProject'"
sql "set enable_compress_materialize=false;"

sql """
drop table if exists orders
Expand Down

0 comments on commit d387e1f

Please sign in to comment.