From d8f3e396ca84aeb31948e8fc2e74838305c0126d Mon Sep 17 00:00:00 2001 From: airborne12 Date: Sun, 29 Sep 2024 11:31:29 +0800 Subject: [PATCH] [test](inverted index) set enable_common_expr_pushdown true for variant_github_events_p2 #40957 (#41443) cherry pick from #40957 --- regression-test/suites/variant_github_events_p2/load.groovy | 1 + 1 file changed, 1 insertion(+) diff --git a/regression-test/suites/variant_github_events_p2/load.groovy b/regression-test/suites/variant_github_events_p2/load.groovy index 808b9acd63..547b1cb791 100644 --- a/regression-test/suites/variant_github_events_p2/load.groovy +++ b/regression-test/suites/variant_github_events_p2/load.groovy @@ -213,6 +213,7 @@ suite("regression_test_variant_github_events_p2", "nonConcurrent,p2"){ } sql """set enable_match_without_inverted_index = false""" + sql """ set enable_common_expr_pushdown = true """ // filter by bloom filter qt_sql """select cast(v["payload"]["pull_request"]["additions"] as int) from github_events where cast(v["repo"]["name"] as string) = 'xpressengine/xe-core' order by 1;""" qt_sql """select * from github_events where cast(v["repo"]["name"] as string) = 'xpressengine/xe-core' order by 1 limit 10"""