branch-4.1: [fix](regression) Enable expression pushdown for variant norms test - #68230
Merged
eldenmoon merged 1 commit intoSep 20, 2026
Merged
Conversation
### What problem does this PR solve? Issue Number: close apache#68039 Related PR: apache#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
Contributor
|
Thank you for your contribution to Apache Doris. Please clearly describe your PR:
|
Member
Author
|
run buildall |
yiguolei
approved these changes
Sep 20, 2026
yiguolei
pushed a commit
that referenced
this pull request
Sep 21, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Follow-up to #68140.
Problem
test_variant_subcolumn_index_normsfailedThe VARIANT MATCH predicate was not guaranteed to be pushed into the inverted index because the suite did not explicitly enable common expression pushdown. It then fell back to
execute_match, which does not supportMATCH_PHRASE.Fix
Explicitly enable
enable_common_expr_pushdown, matching the existingtest_bm25_score_variantsetup on branch-4.1.Validation
MATCH_PHRASEquery after table creation and insertion succeeded.git diff --checkpassed.