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

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

commit aaa5542fb94c97b91a4af064cfb16f3d8dda093e
Author: shuke <37901441+shuke...@users.noreply.github.com>
AuthorDate: Fri Mar 8 19:00:45 2024 +0800

    fix drop un-related table (#31990)
---
 .../test_grouping_sets_combination.groovy            | 20 --------------------
 1 file changed, 20 deletions(-)

diff --git 
a/regression-test/suites/nereids_rules_p0/grouping_sets/test_grouping_sets_combination.groovy
 
b/regression-test/suites/nereids_rules_p0/grouping_sets/test_grouping_sets_combination.groovy
index 219a5ccbcda..4a0fdc47945 100644
--- 
a/regression-test/suites/nereids_rules_p0/grouping_sets/test_grouping_sets_combination.groovy
+++ 
b/regression-test/suites/nereids_rules_p0/grouping_sets/test_grouping_sets_combination.groovy
@@ -30,26 +30,6 @@ suite("test_grouping_sets_combination") {
         insert into mal_test1 values(2,1,3),(1,1,2),(3,5,6),(6,null,6),(4,5,6);
      """
 
-    sql "drop table if exists test_window_table2"
-
-    sql """
-        create table test_window_table2
-         (
-             a varchar(100) null,
-             b decimalv3(18,10) null,
-             c int,
-         ) ENGINE=OLAP
-         DUPLICATE KEY(a)
-         DISTRIBUTED BY HASH(a) BUCKETS 1
-         PROPERTIES (
-         "replication_allocation" = "tag.location.default: 1"
-         );
-    """
-
-    sql """
-        insert into test_window_table2 values("1", 1, 1),("1", 1, 2),("1", 2, 
1),("1", 2, 2),("2", 11, 1),("2", 11, 2),("2", 12, 1),("2", 12, 2);
-    """
-
 
     sql """drop table if exists test_sql;"""
     sql """


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

Reply via email to