From 9fedefdc10942f70019f97ba1c37440d442422f9 Mon Sep 17 00:00:00 2001 From: lihangyu Date: Sun, 20 Sep 2026 10:14:41 +0800 Subject: [PATCH] [fix](regression) Enable expression pushdown for variant norms test ### What problem does this PR solve? Issue Number: close #68039 Related PR: #68140 Problem Summary: The branch-4.1 regression environment can execute the VARIANT MATCH predicate outside the inverted index when common expression pushdown is not explicitly enabled. MATCH_PHRASE then falls back to execute_match, which is unsupported. Enable common expression pushdown explicitly, matching the existing VARIANT BM25 regression setup. ### Release note None ### Check List (For Author) - Test: Regression test configuration fix; TeamCity failure 1051635 reproduces the missing prerequisite - Behavior changed: No - Does this need documentation: No --- .../inverted_index_p0/test_variant_subcolumn_index_norms.groovy | 1 + 1 file changed, 1 insertion(+) diff --git a/regression-test/suites/inverted_index_p0/test_variant_subcolumn_index_norms.groovy b/regression-test/suites/inverted_index_p0/test_variant_subcolumn_index_norms.groovy index 1a82e6bbba1bef..70e9c612808600 100644 --- a/regression-test/suites/inverted_index_p0/test_variant_subcolumn_index_norms.groovy +++ b/regression-test/suites/inverted_index_p0/test_variant_subcolumn_index_norms.groovy @@ -28,6 +28,7 @@ suite("test_variant_subcolumn_index_norms", "p0,nonConcurrent") { return } + sql """ set enable_common_expr_pushdown = true """ sql """ set enable_match_without_inverted_index = false """ sql """ set default_variant_enable_typed_paths_to_sparse = false """ sql """ set default_variant_enable_doc_mode = false """