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

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


The following commit(s) were added to refs/heads/branch-2.0 by this push:
     new 1ea29715b4b [Fix](regression) temporally disable array inverted index 
case (#29897)
1ea29715b4b is described below

commit 1ea29715b4bee745de4b7309af895ea437cbd94c
Author: airborne12 <airborn...@gmail.com>
AuthorDate: Fri Jan 12 11:42:22 2024 +0800

    [Fix](regression) temporally disable array inverted index case (#29897)
---
 .../suites/inverted_index_p0/test_index_key_match_select.groovy       | 4 ++--
 regression-test/suites/inverted_index_p0/test_index_null.groovy       | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git 
a/regression-test/suites/inverted_index_p0/test_index_key_match_select.groovy 
b/regression-test/suites/inverted_index_p0/test_index_key_match_select.groovy
index dc04ba8786e..ed7a8e617c3 100644
--- 
a/regression-test/suites/inverted_index_p0/test_index_key_match_select.groovy
+++ 
b/regression-test/suites/inverted_index_p0/test_index_key_match_select.groovy
@@ -27,8 +27,8 @@ suite("test_index_key_match_select", "inverted_index_select"){
             CREATE TABLE IF NOT EXISTS ${indexTbName1} (
                 ${varchar_colume1} varchar(500),
                 ${array_string_colume2} array<string>,
-                INDEX ${varchar_colume1}_idx(${varchar_colume1}) USING 
INVERTED PROPERTIES("parser"="english") COMMENT '${varchar_colume1} index',
-                INDEX ${array_string_colume2}_idx(${array_string_colume2}) 
USING INVERTED PROPERTIES("parser"="english") COMMENT '${array_string_colume2} 
index'
+                INDEX ${varchar_colume1}_idx(${varchar_colume1}) USING 
INVERTED PROPERTIES("parser"="english") COMMENT '${varchar_colume1} index'
+                --INDEX ${array_string_colume2}_idx(${array_string_colume2}) 
USING INVERTED PROPERTIES("parser"="english") COMMENT '${array_string_colume2} 
index'
             )
             DUPLICATE KEY(`user`)
             DISTRIBUTED BY HASH(`user`) BUCKETS 10
diff --git a/regression-test/suites/inverted_index_p0/test_index_null.groovy 
b/regression-test/suites/inverted_index_p0/test_index_null.groovy
index ef611496610..4614005f259 100644
--- a/regression-test/suites/inverted_index_p0/test_index_null.groovy
+++ b/regression-test/suites/inverted_index_p0/test_index_null.groovy
@@ -32,8 +32,8 @@ suite("test__null_index", "inverted_index"){
     sql """
        CREATE TABLE IF NOT EXISTS ${indexTblName}(
            `id` int(11) NOT NULL,
-            `value` array<text> NULL DEFAULT "[]",
-           INDEX c_value_idx(`value`) USING INVERTED PROPERTIES("parser" = 
"english") COMMENT ''
+            `value` array<text> NULL DEFAULT "[]"
+           --INDEX c_value_idx(`value`) USING INVERTED PROPERTIES("parser" = 
"english") COMMENT ''
        ) ENGINE=OLAP
        DUPLICATE KEY(`id`)
        COMMENT 'OLAP'


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

Reply via email to