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

dataroaring 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 398a70448d4 [fix](test)Fix index_change_on_new_column on cloud (#37345)
398a70448d4 is described below

commit 398a70448d4c453dc0ccc51bd89a10ed4ef59d4f
Author: qiye <jianliang5...@gmail.com>
AuthorDate: Fri Jul 5 21:57:19 2024 +0800

    [fix](test)Fix index_change_on_new_column on cloud (#37345)
    
    ## Proposed changes
    
    Fix index_change_on_new_column on cloud mode.
---
 .../index_change/test_index_change_on_new_column.groovy             | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git 
a/regression-test/suites/inverted_index_p0/index_change/test_index_change_on_new_column.groovy
 
b/regression-test/suites/inverted_index_p0/index_change/test_index_change_on_new_column.groovy
index eba77b8396c..c6b3ec8df2d 100644
--- 
a/regression-test/suites/inverted_index_p0/index_change/test_index_change_on_new_column.groovy
+++ 
b/regression-test/suites/inverted_index_p0/index_change/test_index_change_on_new_column.groovy
@@ -84,11 +84,11 @@ suite("test_index_change_on_new_column") {
     sql """ alter table ${tableName} add index idx_s1(s1) USING INVERTED 
PROPERTIES('parser' = 'english')"""
     wait_for_latest_op_on_table_finish(tableName, timeout)
 
+    sql """ INSERT INTO ${tableName} VALUES
+            (2, 'hello wold', 'welcome to the world')
+        """
     // build inverted index on new column
     if (!isCloudMode()) {
-        sql """ INSERT INTO ${tableName} VALUES
-             (2, 'hello wold', 'welcome to the world')
-            """
         sql """ build index idx_s1 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