This is an automated email from the ASF dual-hosted git repository.

mrhhsg pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris.git


The following commit(s) were added to refs/heads/master by this push:
     new 4557e472faf [fix](test) Add 'waitForSchemaChangeDone' after drop 
column from table (#58205)
4557e472faf is described below

commit 4557e472faf59e3e9a5e176c20d2b9a212c5e8e3
Author: Jerry Hu <[email protected]>
AuthorDate: Mon Nov 24 17:47:42 2025 +0800

    [fix](test) Add 'waitForSchemaChangeDone' after drop column from table 
(#58205)
    
    ### What problem does this PR solve?
    
    Issue Number: close #xxx
    
    Related PR: #xxx
    
    Problem Summary:
    
    ### Release note
    
    None
    
    ### Check List (For Author)
    
    - Test <!-- At least one of them must be included. -->
        - [ ] Regression test
        - [ ] Unit Test
        - [ ] Manual test (add detailed scripts or steps below)
        - [ ] No need to test or manual test. Explain why:
    - [ ] This is a refactor/code format and no logic has been changed.
            - [ ] Previous test can cover this change.
            - [ ] No code files have been changed.
            - [ ] Other reason <!-- Add your reason?  -->
    
    - Behavior changed:
        - [ ] No.
        - [ ] Yes. <!-- Explain the behavior change -->
    
    - Does this need documentation?
        - [ ] No.
    - [ ] Yes. <!-- Add document PR link here. eg:
    https://github.com/apache/doris-website/pull/1214 -->
    
    ### Check List (For Reviewer who merge this PR)
    
    - [ ] Confirm the release note
    - [ ] Confirm test cases
    - [ ] Confirm document
    - [ ] Add branch pick label <!-- Add branch pick label that this PR
    should merge into -->
---
 regression-test/suites/jsonb_p0/test_jsonb_predict_is_null.groovy | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/regression-test/suites/jsonb_p0/test_jsonb_predict_is_null.groovy 
b/regression-test/suites/jsonb_p0/test_jsonb_predict_is_null.groovy
index 5877b4e0f4b..0c1d36bacb3 100644
--- a/regression-test/suites/jsonb_p0/test_jsonb_predict_is_null.groovy
+++ b/regression-test/suites/jsonb_p0/test_jsonb_predict_is_null.groovy
@@ -79,5 +79,10 @@ suite("test_jsonb_predict_is_null", "p0") {
 
     qt_select_drop "alter table jb_pred DROP COLUMN j"
 
+    waitForSchemaChangeDone {
+        sql """ SHOW ALTER TABLE COLUMN WHERE TableName='jb_pred' ORDER BY 
createtime DESC LIMIT 1 """
+        time 600
+    }
+
     qt_select "select * from jb_pred order by id"
 }


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to