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

dataroaring 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 65aaff8a3e6 [Chore](case) remove max in num check case (#39049)
65aaff8a3e6 is described below

commit 65aaff8a3e6d2fc309e3ebebc5e0c4e0ebd50fff
Author: Pxl <pxl...@qq.com>
AuthorDate: Fri Aug 9 15:10:30 2024 +0800

    [Chore](case) remove max in num check case (#39049)
    
    ## Proposed changes
    remove max in num check case
---
 regression-test/pipeline/cloud_p0/conf/regression-conf-custom.groovy | 1 -
 regression-test/pipeline/cloud_p1/conf/regression-conf-custom.groovy | 2 --
 regression-test/pipeline/external/conf/regression-conf.groovy        | 1 -
 regression-test/pipeline/p0/conf/regression-conf.groovy              | 1 -
 regression-test/pipeline/p1/conf/regression-conf.groovy              | 2 --
 regression-test/suites/query_p0/join/test_bitmap_filter.groovy       | 2 +-
 regression-test/suites/query_p1/test_big_pad.groovy                  | 4 ----
 7 files changed, 1 insertion(+), 12 deletions(-)

diff --git 
a/regression-test/pipeline/cloud_p0/conf/regression-conf-custom.groovy 
b/regression-test/pipeline/cloud_p0/conf/regression-conf-custom.groovy
index a19abc3367b..87252c8ffea 100644
--- a/regression-test/pipeline/cloud_p0/conf/regression-conf-custom.groovy
+++ b/regression-test/pipeline/cloud_p0/conf/regression-conf-custom.groovy
@@ -25,7 +25,6 @@ excludeSuites = "000_the_start_sentinel_do_not_touch," + // 
keep this line as th
     "mv_contain_external_table," + // run on external pipeline
     "set_replica_status," + // not a case for cloud mode, no need to run
     "test_be_inject_publish_txn_fail," + // not a case for cloud mode, no need 
to run
-    "test_bitmap_filter," +
     "test_compaction_uniq_cluster_keys_with_delete," +
     "test_compaction_uniq_keys_cluster_key," +
     "test_dump_image," +
diff --git 
a/regression-test/pipeline/cloud_p1/conf/regression-conf-custom.groovy 
b/regression-test/pipeline/cloud_p1/conf/regression-conf-custom.groovy
index 2662090b401..4f7c4d3b3f5 100644
--- a/regression-test/pipeline/cloud_p1/conf/regression-conf-custom.groovy
+++ b/regression-test/pipeline/cloud_p1/conf/regression-conf-custom.groovy
@@ -3,8 +3,6 @@ testGroups = "p1"
 excludeSuites = "000_the_start_sentinel_do_not_touch," + // keep this line as 
the first line
     "stress_test_insert_into," +
     "test_analyze_stats_p1," +
-    "test_big_pad," +
-    "test_bitmap_filter," +
     "test_broker_load," +
     "test_profile," +
     "test_refresh_mtmv," +
diff --git a/regression-test/pipeline/external/conf/regression-conf.groovy 
b/regression-test/pipeline/external/conf/regression-conf.groovy
index d57a6483270..9ede01f3352 100644
--- a/regression-test/pipeline/external/conf/regression-conf.groovy
+++ b/regression-test/pipeline/external/conf/regression-conf.groovy
@@ -63,7 +63,6 @@ excludeGroups = ""
 // load_stream_fault_injection may cause bad disk
 
 excludeSuites = "000_the_start_sentinel_do_not_touch," + // keep this line as 
the first line
-    "test_bitmap_filter," +
     "test_dump_image," +
     "test_index_failure_injection," +
     "test_information_schema_external," +
diff --git a/regression-test/pipeline/p0/conf/regression-conf.groovy 
b/regression-test/pipeline/p0/conf/regression-conf.groovy
index 9472ed50cbf..e3275a4e90f 100644
--- a/regression-test/pipeline/p0/conf/regression-conf.groovy
+++ b/regression-test/pipeline/p0/conf/regression-conf.groovy
@@ -63,7 +63,6 @@ excludeGroups = ""
 // load_stream_fault_injection may cause bad disk
 
 excludeSuites = "000_the_start_sentinel_do_not_touch," + // keep this line as 
the first line
-    "test_bitmap_filter," +
     "test_dump_image," +
     "test_index_failure_injection," +
     "test_profile," +
diff --git a/regression-test/pipeline/p1/conf/regression-conf.groovy 
b/regression-test/pipeline/p1/conf/regression-conf.groovy
index 49f52c1fa32..e02fd24fa38 100644
--- a/regression-test/pipeline/p1/conf/regression-conf.groovy
+++ b/regression-test/pipeline/p1/conf/regression-conf.groovy
@@ -54,8 +54,6 @@ testSuites = ""
 // this suites will not be executed
 excludeSuites = "000_the_start_sentinel_do_not_touch," + // keep this line as 
the first line
     "test_analyze_stats_p1," +
-    "test_big_pad," +
-    "test_bitmap_filter," +
     "test_broker_load," +
     "test_profile," +
     "test_refresh_mtmv," +
diff --git a/regression-test/suites/query_p0/join/test_bitmap_filter.groovy 
b/regression-test/suites/query_p0/join/test_bitmap_filter.groovy
index 02657d836cb..a0bde17cd1c 100644
--- a/regression-test/suites/query_p0/join/test_bitmap_filter.groovy
+++ b/regression-test/suites/query_p0/join/test_bitmap_filter.groovy
@@ -86,6 +86,6 @@ suite("test_bitmap_filter", "query_p0") {
 
     test {
         sql "select k1, count(*) from ${tbl1} b1 group by k1 having k1 in 
(select k2 from ${tbl2} b2) order by k1;"
-        exception "HAVING clause dose not support in bitmap"
+        exception "Doris hll, bitmap, array, map, struct, jsonb, variant 
column must use with specific function, and don't support filter, group by or 
order by."
     }
 }
diff --git a/regression-test/suites/query_p1/test_big_pad.groovy 
b/regression-test/suites/query_p1/test_big_pad.groovy
index 9c781a5189c..a5650feb34e 100644
--- a/regression-test/suites/query_p1/test_big_pad.groovy
+++ b/regression-test/suites/query_p1/test_big_pad.groovy
@@ -30,10 +30,6 @@ suite("test_big_pad") {
             distributed BY hash(k1) buckets 3
             properties("replication_num" = "1");
         """
-    test {
-        sql "select rpad('a',15000,'asd');" 
-        exception "rpad function the length argument is 15000 exceeded maximum 
default value"
-    }
     qt_sql_rpad"select length(rpad('a',15000,'asd'));"
 
     sql "insert into d_table 
values(1,2000000000,1,'a'),(1,2000000000,1,'a'),(1,2000000000,1,'a');"


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

Reply via email to