branch-4.0: [fix](test) fix /nereids_syntax_p1/mv/aggregate/agg_sync_mv.groovy#64974
Merged
Merged
Conversation
Contributor
|
Thank you for your contribution to Apache Doris. Please clearly describe your PR:
|
Contributor
Author
|
run buildall |
hubgeter
approved these changes
Jun 30, 2026
Contributor
|
PR approved by at least one committer and no changes requested. |
Contributor
|
PR approved by anyone and no changes requested. |
hello-stephen
pushed a commit
that referenced
this pull request
Jul 2, 2026
#65133) ## Proposed changes Fix the chronically-failing P1 regression test `nereids_syntax_p1/mv/aggregate/agg_sync_mv`, which fails in every recent branch-4.0 CI run. ### Root cause The second `streamLoad` block still pointed at the pre-move location after #52242 moved the data file `agg_mv_test.dat` into the `aggregate/` subdirectory (and added a correct initial load block): - `db "regression_test_nereids_syntax_p1_mv"` — missing the `_aggregate` suffix; no test creates this database. - `file "../agg_mv_test.dat"` — the `../` resolves to `data/nereids_syntax_p1/mv/agg_mv_test.dat`, which does not exist (the file lives under `.../mv/aggregate/`). The missing data file makes the stream load return an empty body, which `StreamLoadAction` swallows (`streamLoadToBe` catches the exception and returns `null`) and later surfaces as the misleading `java.lang.IllegalArgumentException: Text must not be null or empty` from `JsonSlurper.parseText`. This was masked by an earlier failure at `mv_sync50` (duplicate internal column name `__variance_samp_1`); once #64974 fixed that, the test progressed to this block and this stale-path bug became the active failure. ### Fix Align the second load block with the working initial load block (lines 114-130): - `db` → `regression_test_nereids_syntax_p1_mv_aggregate` - `file` → `agg_mv_test.dat` Test-only change. 🤖 Generated with [Claude Code](https://claude.com/claude-code) --------- Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
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.
No description provided.