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

airborne pushed a commit to branch branch-3.0
in repository https://gitbox.apache.org/repos/asf/doris.git


The following commit(s) were added to refs/heads/branch-3.0 by this push:
     new 9d6b7979068 [fix](case) make inverted index up down case robust 
(#47382)
9d6b7979068 is described below

commit 9d6b7979068453402c18b3979a977e83a09223aa
Author: airborne12 <jiang...@selectdb.com>
AuthorDate: Wed Feb 5 12:18:23 2025 +0800

    [fix](case) make inverted index up down case robust (#47382)
---
 .../suites/inverted_index_up_down_p0/inverted_index.groovy            | 4 ++++
 1 file changed, 4 insertions(+)

diff --git 
a/regression-test/suites/inverted_index_up_down_p0/inverted_index.groovy 
b/regression-test/suites/inverted_index_up_down_p0/inverted_index.groovy
index 0ffd335a732..bc0ebd1b6e5 100644
--- a/regression-test/suites/inverted_index_up_down_p0/inverted_index.groovy
+++ b/regression-test/suites/inverted_index_up_down_p0/inverted_index.groovy
@@ -131,10 +131,14 @@ 
suite("test_upgrade_downgrade_compatibility_inverted_index","p0,inverted_index,r
         }
 
         sql "alter table ${tableName} add index idx_b(b)"
+        wait_for_latest_op_on_table_finish(tableName, timeout)
         sql "alter table ${tableName} add index idx_en(en) using inverted 
properties(\"parser\" = \"english\", \"support_phrase\" = \"true\")"
         wait_for_latest_op_on_table_finish(tableName, timeout)
         if (!isCloudMode()) {
             sql "build index idx_b on ${tableName}"
+            wait_for_build_index_on_partition_finish(tableName, timeout)
+        }
+        if (!isCloudMode()) {
             sql "build index idx_en on ${tableName}"
             wait_for_build_index_on_partition_finish(tableName, timeout)
         }


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org

Reply via email to