[test](regression) Wait for index change jobs in multi-index test - #66794
Open
hoshinojyunn wants to merge 1 commit into
Open
[test](regression) Wait for index change jobs in multi-index test#66794hoshinojyunn wants to merge 1 commit into
hoshinojyunn wants to merge 1 commit into
Conversation
Contributor
|
Thank you for your contribution to Apache Doris. Please clearly describe your PR:
|
Contributor
Author
|
run buildall |
### What problem does this PR solve? Issue Number: close apache#26985 Related PR: #xxx Problem Summary: The multi-index regression test must wait for each DROP INDEX operation before issuing the next statement or querying the table. In Local mode, index removal rewrites existing rowsets asynchronously through an index change job, so a completed column alter state can still leave old rowsets with the dropped index; wait for the build index job. In Cloud mode, this test uses a schema change job rather than a build index job, so wait for the latest column alter job to finish and restore the table to NORMAL. ### Release note None ### Check List (For Author) - Test: Regression test - regression-test/suites/inverted_index_p0/test_single_column_multi_index1.groovy - Behavior changed: No - Does this need documentation: No
hoshinojyunn
force-pushed
the
fix/26985
branch
from
August 15, 2026 18:05
20f9569 to
a6aaa34
Compare
Contributor
Author
|
run buildall |
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.
What problem does this PR solve?
Issue Number: #xxx
Related PR: #xxx
Problem Summary:
The multi-index regression test waited for the latest column alter job after dropping an inverted index. Index removal rewrites existing rowsets asynchronously through an index change job, so the column alter state can be finished while old rowsets still retain the dropped index. Wait for the build index job after each
DROP INDEXstatement before running the following queries.Release note
None
Check List (For Author)
Test
Behavior changed:
Does this need documentation?
Check List (For Reviewer who merge this PR)