Skip to content

Commit

Permalink
turn off compress materialize for MV
Browse files Browse the repository at this point in the history
  • Loading branch information
englefly committed Dec 9, 2024
1 parent 9abb6ee commit bab7c8f
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 5 deletions.
6 changes: 4 additions & 2 deletions regression-test/suites/mv_p0/test_substr/test_substr.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,10 @@
import org.codehaus.groovy.runtime.IOGroovyMethods

suite ("test_substr") {
sql """set enable_nereids_planner=true"""
sql """SET enable_fallback_to_original_planner=false"""
sql """set enable_nereids_planner=true;
SET enable_fallback_to_original_planner=false
set enable_compress_materialize=false;
"""
sql """ drop table if exists dwd;"""

sql """
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,11 @@
suite("aggregate_with_roll_up") {
String db = context.config.getDbNameByFile(context.file)
sql "use ${db}"
sql "set runtime_filter_mode=OFF";
sql """
set runtime_filter_mode=OFF;
set enable_compress_materialize=false;
"""

sql "SET ignore_shape_nodes='PhysicalDistribute,PhysicalProject'"

sql """
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,11 @@ package mv.agg_with_roll_up
suite("any_value_roll_up") {
String db = context.config.getDbNameByFile(context.file)
sql "use ${db}"
sql "set runtime_filter_mode=OFF";
sql "SET ignore_shape_nodes='PhysicalDistribute,PhysicalProject'"
sql """
set runtime_filter_mode=OFF;
SET ignore_shape_nodes='PhysicalDistribute,PhysicalProject';
set enable_compress_materialize=false;
"""

sql """
drop table if exists orders_2
Expand Down

0 comments on commit bab7c8f

Please sign in to comment.