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

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


The following commit(s) were added to refs/heads/branch-3.1 by this push:
     new a16e7186bed branch-3.1: [test](mv) forbid create mv test case #51777 
(#52512)
a16e7186bed is described below

commit a16e7186bed7c964349d15ed61af746fe44e0c68
Author: zfr95 <[email protected]>
AuthorDate: Tue Jul 1 19:13:35 2025 +0800

    branch-3.1: [test](mv) forbid create mv test case #51777 (#52512)
    
    Cherry-picked from #51777
---
 .../mv_p0/mv_negative/agg_negative_test.groovy     | 175 +++++++++++++++++++++
 .../mv_p0/mv_negative/dup_negative_test.groovy     | 151 ++++++++++++++++++
 .../mv_p0/mv_negative/mor_negative_test.groovy     | 156 ++++++++++++++++++
 .../mv_p0/mv_negative/mow_negative_test.groovy     | 157 ++++++++++++++++++
 4 files changed, 639 insertions(+)

diff --git a/regression-test/suites/mv_p0/mv_negative/agg_negative_test.groovy 
b/regression-test/suites/mv_p0/mv_negative/agg_negative_test.groovy
new file mode 100644
index 00000000000..b85275264ba
--- /dev/null
+++ b/regression-test/suites/mv_p0/mv_negative/agg_negative_test.groovy
@@ -0,0 +1,175 @@
+// Licensed to the Apache Software Foundation (ASF) under one
+// or more contributor license agreements.  See the NOTICE file
+// distributed with this work for additional information
+// regarding copyright ownership.  The ASF licenses this file
+// to you under the Apache License, Version 2.0 (the
+// "License"); you may not use this file except in compliance
+// with the License.  You may obtain a copy of the License at
+//
+//   http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing,
+// software distributed under the License is distributed on an
+// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+// KIND, either express or implied.  See the License for the
+// specific language governing permissions and limitations
+// under the License.
+
+suite("agg_negative_mv_test", "mv_negative") {
+
+    String db = context.config.getDbNameByFile(context.file)
+    def prefix_str = "mv_agg_negative"
+    def tb_name = prefix_str + "_tb"
+
+    sql """set enable_agg_state=true;"""
+    sql """drop table if exists ${tb_name};"""
+    sql """
+        CREATE TABLE `${tb_name}` (
+        `col1` datetime NULL,
+        `col2` varchar(60) NULL,
+        `col3` int(11) NOT NULL,
+        `col4` boolean NULL,
+        `col15` ipv4 NULL,
+        `col5` string REPLACE NULL,
+        `col6` ARRAY<int(11)> REPLACE NULL COMMENT "",
+        `col7` int(11) SUM NULL DEFAULT "0",
+        `col8` int(11) min NULL DEFAULT "0",
+        `col9` int(11) max NULL DEFAULT "0",
+        `col10` int(11) REPLACE NULL,
+        `col11` bitmap BITMAP_UNION,
+        `col12` agg_state<max_by(int not null,int)> generic,
+        `col13` hll hll_union NOT NULL COMMENT "hll",
+        `col14` ipv4 REPLACE NULL
+        ) ENGINE=OLAP
+        AGGREGATE KEY(`col1`, `col2`, `col3`, `col4`, `col15`)
+        COMMENT 'OLAP'
+        DISTRIBUTED BY HASH(`col2`, `col3`) BUCKETS 2
+        PROPERTIES (
+        "replication_allocation" = "tag.location.default: 1"
+        );
+        """
+    sql """insert into ${tb_name} values 
+            ("2023-08-16 22:28:00","ax",1,1,"'0.0.0.0'","asd",[1,2,3,4,5], 1, 
1, 1, 1, to_bitmap(243), max_by_state(3,1), HLL_HASH(1), "'0.0.0.0'"),
+            ("2023-08-16 22:27:00","ax1",1,1,"'0.0.0.0'","asd",[1,2,3,4,5], 1, 
1, 1, 1, to_bitmap(243), max_by_state(3,1), HLL_HASH(1), "'0.0.0.0'"),
+            ("2023-08-16 22:27:00","ax",2,1,"'0.0.0.0'","asd",[1,2,3,4,5], 1, 
1, 1, 1, to_bitmap(243), max_by_state(3,1), HLL_HASH(1), "'0.0.0.0'"),
+            ("2023-08-16 22:27:00","ax",1,0,"'0.0.0.0'","asd",[1,2,3,4,5], 1, 
1, 1, 1, to_bitmap(243), max_by_state(3,1), HLL_HASH(1), "'0.0.0.0'"),
+            ("2023-08-16 22:27:00","ax",1,1,"'0.0.0.0'","asd2",[1,2,3,4,5], 1, 
1, 1, 1, to_bitmap(243), max_by_state(3,1), HLL_HASH(1), "'0.0.0.0'"),
+            ("2023-08-16 22:27:00","ax",1,1,"'0.0.0.0'","asd",[5,4,3,2,1], 1, 
1, 1, 1, to_bitmap(243), max_by_state(3,1), HLL_HASH(1), "'0.0.0.0'"),
+            ("2023-08-16 22:27:00","ax",1,1,"'0.0.0.0'","asd",[1,2,3,4,5], 3, 
1, 1, 1, to_bitmap(243), max_by_state(3,1), HLL_HASH(1), "'0.0.0.0'"),
+            ("2023-08-16 22:27:00","ax",1,1,"'0.0.0.0'","asd",[1,2,3,4,5], 1, 
4, 1, 1, to_bitmap(243), max_by_state(3,1), HLL_HASH(1), "'0.0.0.0'"),
+            ("2023-08-16 22:27:00","ax",1,1,"'0.0.0.0'","asd",[1,2,3,4,5], 1, 
1, 5, 6, to_bitmap(243), max_by_state(3,1), HLL_HASH(1), "'0.0.0.0'"),
+            ("2023-08-16 22:27:00","ax",1,1,"'0.0.0.0'","asd",[1,2,3,4,5], 1, 
1, 1, 1, to_bitmap(2), max_by_state(3,1), HLL_HASH(1), "'0.0.0.0'"),
+            ("2023-08-16 22:27:00","ax",1,1,"'0.0.0.0'","asd",[1,2,3,4,5], 1, 
1, 1, 1, to_bitmap(243), max_by_state(30,100), HLL_HASH(1), "'0.0.0.0'"),
+            ("2023-08-16 22:27:00","ax",1,1,"'0.0.0.0'","asd",[1,2,3,4,5], 1, 
1, 1, 1, to_bitmap(243), max_by_state(3,1), HLL_HASH(100), "'0.0.0.0'"),
+            ("2023-08-16 22:27:00","ax",1,1,"'0.0.0.0'","asd",[1,2,3,4,5], 1, 
1, 1, 1, to_bitmap(243), max_by_state(3,1), HLL_HASH(1), "'255.255.255.255'"),
+            ("2023-08-16 24:27:00","ax1",2,0,"'0.0.0.0'","asd",[5,4,3,2,1], 3, 
4, 5, 6, to_bitmap(2), max_by_state(30,100), HLL_HASH(100), 
"'255.255.255.255'"),
+            ("2024-08-17 22:27:00","ax2",3,1,"'0.0.0.0'","asd3",[1,2,3,4,6], 
7, 8, 9, 10, to_bitmap(3), max_by_state(6,2), HLL_HASH(1000), "'0.0.1.0'"),
+            ("2023-09-16 22:27:00","ax4",4,0,"'0.0.0.0'","asd2",[1,2,9,4,5], 
11, 11, 11, 11, to_bitmap(4), max_by_state(3,1), HLL_HASH(1), "'0.10.0.0'");"""
+
+    def mv_name = """${prefix_str}_mv"""
+    def no_mv_name = """no_${prefix_str}_mv"""
+    def mtmv_sql = """select col4, col1, col2, col3, col15, sum(col7) from 
${tb_name} where col1 = "2023-08-16 22:27:00" group by col4, col1, col2, col3, 
col15 order by col4, col1, col2, col3, col15"""
+    create_sync_mv(db, tb_name, mv_name, mtmv_sql)
+
+    def desc_res = sql """desc ${tb_name} all;"""
+    for (int i = 0; i < desc_res.size(); i++) {
+        if (desc_res[i][0] == mv_name) {
+            for (int j = i; j < i+6; j++) {
+                if (desc_res[j][2] != "mva_SUM__CAST(`col7` AS bigint)") {
+                    assertTrue(desc_res[j][6] == "true")
+                } else {
+                    assertTrue(desc_res[j][6] == "false")
+                }
+            }
+            break
+        }
+    }
+    def sql_hit = """select col1, col2, col3, sum(col7) from ${tb_name} where 
col1 = "2023-08-16 22:27:00" group by col3, col1, col2 order by col1, col2, 
col3"""
+    mv_rewrite_success_without_check_chosen(sql_hit, mv_name)
+
+    test {
+        sql """create materialized view ${no_mv_name} as select col3, 
sum(col7) from ${tb_name} group by col3 having col3 > 1"""
+        exception "The having clause is not supported in add materialized view 
clause"
+    }
+
+    test {
+        sql """create materialized view ${no_mv_name} as select col3, 
sum(col7) from ${tb_name} group by col3 limit 1"""
+        exception "The limit clause is not supported in add materialized view 
clause"
+    }
+
+    test {
+        sql """create materialized view ${no_mv_name} as select col3, 1, 
sum(col7) from ${tb_name} group by col3"""
+        exception "The materialized view only support the single column or 
function expr"
+    }
+
+    test {
+        sql """create materialized view ${no_mv_name} as select col3, col3, 
sum(col7) from ${tb_name} group by col3"""
+        exception "The select expr `col3` is duplicated"
+    }
+
+    test {
+        sql """create materialized view ${no_mv_name} as select col3, 
sum(col7) / 1 from ${tb_name} group by col3"""
+        exception "The materialized view's expr calculations cannot be 
included outside aggregate functions"
+    }
+
+    test {
+        sql """create materialized view ${no_mv_name} as select  sum(col7), 
col3 from ${tb_name} group by col3"""
+        exception "The aggregate column should be after the single column"
+    }
+
+    test {
+        sql """create materialized view ${no_mv_name} as select col1, col2, 
col3 from ${tb_name} order by col1, col2, col3;"""
+        exception """agg mv must has group by clause"""
+    }
+
+    test {
+        sql """create materialized view ${no_mv_name} as select col1, col2, 
col3, sum(col7) from ${tb_name} group by col3, col1, col2 order by col3, col1, 
col2"""
+        exception "The order of columns in order by clause must be same as the 
order of columns in select list"
+    }
+
+    test {
+        sql """create materialized view ${no_mv_name} as select col1, col2, 
col3, sum(col7) from ${tb_name} group by col1, col2, col3 order by col3, col1, 
col2"""
+        exception "The order of columns in order by clause must be same as the 
order of columns in select list"
+    }
+
+    test {
+        sql """create materialized view ${no_mv_name} as select sum(col3) from 
${tb_name}"""
+        exception """The materialized view must contain at least one key 
column"""
+    }
+
+    test {
+        sql """create materialized view ${no_mv_name} as select col3, 
min(col7) from ${tb_name} group by col3"""
+        exception """Aggregate function require same with slot aggregate 
type"""
+    }
+
+    test {
+        sql """create materialized view ${no_mv_name} as select min(col8),col3 
from ${tb_name} group by col3"""
+        exception """The aggregate column should be after the single column"""
+    }
+
+    test {
+        sql """create materialized view ${no_mv_name} as select col3, col1, 
col2, col15, case when col2 > 1 then 1 else 2 end, sum(col7) from ${tb_name} 
group by 1,2,3,4,5 order by 1,2,3,4,5"""
+        exception """The order of columns in order by clause must be same as 
the order of columns in select list"""
+    }
+
+    test {
+        sql """create materialized view ${no_mv_name} as select col3, col1, 
col2, col15, sum(case when col2 > 1 then 1 else 2 end) from ${tb_name} group by 
1,2,3,4  order by  1,2,3,4"""
+        exception """The order of columns in order by clause must be same as 
the order of columns in select list"""
+    }
+
+    test {
+        sql """create materialized view ${no_mv_name} as select col3, col1, 
col2, col15, sum(col7), count(col3) from ${tb_name} group by 1,2,3,4  order by  
1,2,3,4"""
+        exception """The order of columns in order by clause must be same as 
the order of columns in select list"""
+    }
+
+    test {
+        sql """create materialized view ${no_mv_name} as select col3, col1, 
col2, col15, sum(col7), bitmap_union(to_bitmap(case when col2 > 1 then 1 else 2 
end)) from ${tb_name} group by 1,2,3,4  order by  1,2,3,4"""
+        exception """The order of columns in order by clause must be same as 
the order of columns in select list"""
+    }
+
+    test {
+        sql """create materialized view ${no_mv_name} as select col3, col1, 
col2, col15, sum(col7), bitmap_union(to_bitmap(case when col10 > 1 then 1 else 
2 end)) from ${tb_name} group by 1,2,3,4  order by  1,2,3,4"""
+        exception """Aggregate function require single slot argument"""
+    }
+
+}
diff --git a/regression-test/suites/mv_p0/mv_negative/dup_negative_test.groovy 
b/regression-test/suites/mv_p0/mv_negative/dup_negative_test.groovy
new file mode 100644
index 00000000000..f0cac006b14
--- /dev/null
+++ b/regression-test/suites/mv_p0/mv_negative/dup_negative_test.groovy
@@ -0,0 +1,151 @@
+// Licensed to the Apache Software Foundation (ASF) under one
+// or more contributor license agreements.  See the NOTICE file
+// distributed with this work for additional information
+// regarding copyright ownership.  The ASF licenses this file
+// to you under the Apache License, Version 2.0 (the
+// "License"); you may not use this file except in compliance
+// with the License.  You may obtain a copy of the License at
+//
+//   http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing,
+// software distributed under the License is distributed on an
+// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+// KIND, either express or implied.  See the License for the
+// specific language governing permissions and limitations
+// under the License.
+
+suite("dup_negative_mv_test", "mv_negative") {
+
+    String db = context.config.getDbNameByFile(context.file)
+    def prefix_str = "mv_dup_negative"
+    def tb_name = prefix_str + "_tb"
+
+    sql """drop table if exists ${tb_name};"""
+    sql """
+        CREATE TABLE `${tb_name}` (
+        `col1` datetime NULL,
+        `col2` varchar(60) NULL,
+        `col3` bigint(11) NOT NULL,
+        `col4` boolean NULL,
+        `col15` ipv4 NULL,
+        `col8` int(11) NULL DEFAULT "0",
+        `col5` string NULL,
+        `col6` ARRAY<int(11)> NULL COMMENT "",
+        `col7` bigint(11) NOT NULL AUTO_INCREMENT,
+        `col9` int(11) NULL DEFAULT "0",
+        `col10` int(11) NULL,
+        `col11` bitmap NOT NULL,
+        `col13` hll not NULL COMMENT "hll",
+        `col14` ipv4 NULL
+        ) ENGINE=OLAP
+        DUPLICATE KEY(`col1`, `col2`, `col3`, `col4`, `col15`)
+        COMMENT 'OLAP'
+        DISTRIBUTED BY HASH(`col2`, `col3`) BUCKETS 2
+        PROPERTIES (
+        "replication_allocation" = "tag.location.default: 1"
+        );
+        """
+    sql """insert into ${tb_name} values 
+            ("2023-08-16 22:28:00","ax",1,1,"'0.0.0.0'",1,"asd",[1,2,3,4,5], 
1, 1, 1, to_bitmap(243), HLL_HASH(1), "'0.0.0.0'"),
+            ("2023-08-16 22:27:00","ax1",1,1,"'0.0.0.0'",1,"asd",[1,2,3,4,5], 
1, 1, 1, to_bitmap(243), HLL_HASH(1), "'0.0.0.0'"),
+            ("2023-08-16 22:27:00","ax",2,1,"'0.0.0.0'",1,"asd",[1,2,3,4,5], 
1, 1, 1, to_bitmap(243), HLL_HASH(1), "'0.0.0.0'"),
+            ("2023-08-16 22:27:00","ax",1,0,"'0.0.0.0'",1,"asd",[1,2,3,4,5], 
1, 1, 1, to_bitmap(243), HLL_HASH(1), "'0.0.0.0'"),
+            ("2023-08-16 22:27:00","ax",1,1,"'0.0.0.0'",1,"asd2",[1,2,3,4,5], 
1, 1, 1, to_bitmap(243), HLL_HASH(1), "'0.0.0.0'"),
+            ("2023-08-16 22:27:00","ax",1,1,"'0.0.0.0'",1,"asd",[5,4,3,2,1], 
1, 1, 1, to_bitmap(243), HLL_HASH(1), "'0.0.0.0'"),
+            ("2023-08-16 22:27:00","ax",1,1,"'0.0.0.0'",1,"asd",[1,2,3,4,5], 
3, 1, 1, to_bitmap(243), HLL_HASH(1), "'0.0.0.0'"),
+            ("2023-08-16 22:27:00","ax",1,1,"'0.0.0.0'",4,"asd",[1,2,3,4,5], 
1, 1, 1, to_bitmap(243), HLL_HASH(1), "'0.0.0.0'"),
+            ("2023-08-16 22:27:00","ax",1,1,"'0.0.0.0'",1,"asd",[1,2,3,4,5], 
1, 5, 6, to_bitmap(243), HLL_HASH(1), "'0.0.0.0'"),
+            ("2023-08-16 22:27:00","ax",1,1,"'0.0.0.0'",1,"asd",[1,2,3,4,5], 
1, 1, 1, to_bitmap(2), HLL_HASH(1), "'0.0.0.0'"),
+            ("2023-08-16 22:27:00","ax",1,1,"'0.0.0.0'",1,"asd",[1,2,3,4,5], 
1, 1, 1, to_bitmap(243), HLL_HASH(1), "'0.0.0.0'"),
+            ("2023-08-16 22:27:00","ax",1,1,"'0.0.0.0'",1,"asd",[1,2,3,4,5], 
1, 1, 1, to_bitmap(243), HLL_HASH(100), "'0.0.0.0'"),
+            ("2023-08-16 22:27:00","ax",1,1,"'0.0.0.0'",1,"asd",[1,2,3,4,5], 
1, 1, 1, to_bitmap(243), HLL_HASH(1), "'255.255.255.255'"),
+            ("2023-08-16 24:27:00","ax1",2,0,"'0.0.0.0'",4,"asd",[5,4,3,2,1], 
3, 5, 6, to_bitmap(2), HLL_HASH(100), "'255.255.255.255'"),
+            ("2024-08-17 22:27:00","ax2",3,1,"'0.0.0.0'",8,"asd3",[1,2,3,4,6], 
7, 9, 10, to_bitmap(3), HLL_HASH(1000), "'0.0.1.0'"),
+            ("2023-09-16 
22:27:00","ax4",4,0,"'0.0.0.0'",11,"asd2",[1,2,9,4,5], 11, 11, 11, 
to_bitmap(4), HLL_HASH(1), "'0.10.0.0'");"""
+
+    def mv_name = """${prefix_str}_mv"""
+    def no_mv_name = """no_${prefix_str}_mv"""
+
+
+    def mtmv_sql =  """select col4, col1, col2, col3, col15, sum(col8) from 
${tb_name} where col1 = "2023-08-16 22:27:00" group by col4, col1, col2, col3, 
col15 order by col4, col1, col2, col3, col15"""
+    create_sync_mv(db, tb_name, mv_name, mtmv_sql)
+
+    def desc_res = sql """desc ${tb_name} all;"""
+    for (int i = 0; i < desc_res.size(); i++) {
+        if (desc_res[i][0] == mv_name) {
+            for (int j = i; j < i+6; j++) {
+                if (desc_res[j][2] != "mva_SUM__CAST(`col8` AS bigint)") {
+                    assertTrue(desc_res[j][6] == "true")
+                } else {
+                    assertTrue(desc_res[j][6] == "false")
+                }
+            }
+            break
+        }
+    }
+    def sql_hit = """select col1, col2, col3, sum(col8) from ${tb_name} where 
col1 = "2023-08-16 22:27:00" group by col3, col1, col2 order by col1, col2, 
col3"""
+    mv_rewrite_success_without_check_chosen(sql_hit, mv_name)
+
+    test {
+        sql """create materialized view ${no_mv_name} as select col4, col1, 
col2, col3, col15, col7 from ${tb_name} where col1 = '2023-08-16 22:27:00' 
order by col4, col1, col2, col3, col15, col7"""
+        exception "The materialized view can not involved auto increment 
column"
+    }
+
+    test {
+        sql """create materialized view ${no_mv_name} as select col3, 
sum(col8) from ${tb_name} group by col3 having col3 > 1"""
+        exception "The having clause is not supported in add materialized view 
clause"
+    }
+
+    test {
+        sql """create materialized view ${no_mv_name} as select col3, 
sum(col8) from ${tb_name} group by col3 limit 1"""
+        exception "The limit clause is not supported in add materialized view 
clause"
+    }
+
+    test {
+        sql """create materialized view ${no_mv_name} as select col3, 1, 
sum(col8) from ${tb_name} group by col3"""
+        exception "The materialized view only support the single column or 
function expr"
+    }
+
+    test {
+        sql """create materialized view ${no_mv_name} as select col3, col3, 
sum(col8) from ${tb_name} group by col3"""
+        exception "The select expr `col3` is duplicated"
+    }
+
+    test {
+        sql """create materialized view ${no_mv_name} as select col3, 
sum(col8) / 1 from ${tb_name} group by col3"""
+        exception "The materialized view's expr calculations cannot be 
included outside aggregate functions"
+    }
+
+    test {
+        sql """create materialized view ${no_mv_name} as select  sum(col8), 
col3 from ${tb_name} group by col3"""
+        exception "The aggregate column should be after the single column"
+    }
+
+    test {
+        sql """create materialized view ${no_mv_name} as select col1, col2, 
col3, sum(col8) from ${tb_name} group by col3, col1, col2 order by col3, col1, 
col2"""
+        exception "The order of columns in order by clause must be same as the 
order of columns in select list"
+    }
+
+    test {
+        sql """create materialized view ${no_mv_name} as select col1, col2, 
col3, sum(col8) from ${tb_name} group by col1, col2, col3 order by col3, col1, 
col2"""
+        exception "The order of columns in order by clause must be same as the 
order of columns in select list"
+    }
+
+    test {
+        sql """create materialized view ${no_mv_name} as select sum(col3) from 
${tb_name}"""
+        exception """The materialized view must contain at least one key 
column"""
+    }
+
+    test {
+        sql """create materialized view ${no_mv_name} as select col3, col1, 
col2, col15, case when col2 > 1 then 1 else 2 end, sum(col8) from ${tb_name} 
group by 1,2,3,4,5 order by 1,2,3,4,5"""
+        exception """The order of columns in order by clause must be same as 
the order of columns in select list"""
+    }
+
+    test {
+        sql """create materialized view ${no_mv_name} as select min(col8), 
col3 from ${tb_name} group by col3"""
+        exception """The aggregate column should be after the single column"""
+    }
+
+
+}
diff --git a/regression-test/suites/mv_p0/mv_negative/mor_negative_test.groovy 
b/regression-test/suites/mv_p0/mv_negative/mor_negative_test.groovy
new file mode 100644
index 00000000000..c027f9f17ea
--- /dev/null
+++ b/regression-test/suites/mv_p0/mv_negative/mor_negative_test.groovy
@@ -0,0 +1,156 @@
+// Licensed to the Apache Software Foundation (ASF) under one
+// or more contributor license agreements.  See the NOTICE file
+// distributed with this work for additional information
+// regarding copyright ownership.  The ASF licenses this file
+// to you under the Apache License, Version 2.0 (the
+// "License"); you may not use this file except in compliance
+// with the License.  You may obtain a copy of the License at
+//
+//   http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing,
+// software distributed under the License is distributed on an
+// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+// KIND, either express or implied.  See the License for the
+// specific language governing permissions and limitations
+// under the License.
+
+suite("mor_negative_mv_test", "mv_negative") {
+
+    String db = context.config.getDbNameByFile(context.file)
+    def prefix_str = "mv_mor_negative"
+    def tb_name = prefix_str + "_tb"
+
+    sql """drop table if exists ${tb_name};"""
+    sql """
+        CREATE TABLE `${tb_name}` (
+        `col1` datetime NULL,
+        `col2` varchar(60) NULL,
+        `col3` bigint(11) NOT NULL,
+        `col4` boolean NULL,
+        `col15` ipv4 NULL,
+        `col8` int(11) NULL DEFAULT "0",
+        `col5` string NULL,
+        `col6` ARRAY<int(11)> NULL COMMENT "",
+        `col7` bigint(11) NOT NULL AUTO_INCREMENT,
+        `col9` int(11) NULL DEFAULT "0",
+        `col10` int(11) NULL,
+        `col11` bitmap NOT NULL,
+        `col13` hll not NULL COMMENT "hll",
+        `col14` ipv4 NULL
+        ) ENGINE=OLAP
+        unique KEY(`col1`, `col2`, `col3`, `col4`, `col15`)
+        COMMENT 'OLAP'
+        DISTRIBUTED BY HASH(`col2`, `col3`) BUCKETS 2
+        PROPERTIES (
+        "replication_allocation" = "tag.location.default: 1",
+        "enable_unique_key_merge_on_write" = "false"
+        );
+        """
+    sql """insert into ${tb_name} values 
+            ("2023-08-16 22:28:00","ax",1,1,"'0.0.0.0'",1,"asd",[1,2,3,4,5], 
1, 1, 1, to_bitmap(243), HLL_HASH(1), "'0.0.0.0'"),
+            ("2023-08-16 22:27:00","ax1",1,1,"'0.0.0.0'",1,"asd",[1,2,3,4,5], 
1, 1, 1, to_bitmap(243), HLL_HASH(1), "'0.0.0.0'"),
+            ("2023-08-16 22:27:00","ax",2,1,"'0.0.0.0'",1,"asd",[1,2,3,4,5], 
1, 1, 1, to_bitmap(243), HLL_HASH(1), "'0.0.0.0'"),
+            ("2023-08-16 22:27:00","ax",1,0,"'0.0.0.0'",1,"asd",[1,2,3,4,5], 
1, 1, 1, to_bitmap(243), HLL_HASH(1), "'0.0.0.0'"),
+            ("2023-08-16 22:27:00","ax",1,1,"'0.0.0.0'",1,"asd2",[1,2,3,4,5], 
1, 1, 1, to_bitmap(243), HLL_HASH(1), "'0.0.0.0'"),
+            ("2023-08-16 22:27:00","ax",1,1,"'0.0.0.0'",1,"asd",[5,4,3,2,1], 
1, 1, 1, to_bitmap(243), HLL_HASH(1), "'0.0.0.0'"),
+            ("2023-08-16 22:27:00","ax",1,1,"'0.0.0.0'",1,"asd",[1,2,3,4,5], 
3, 1, 1, to_bitmap(243), HLL_HASH(1), "'0.0.0.0'"),
+            ("2023-08-16 22:27:00","ax",1,1,"'0.0.0.0'",4,"asd",[1,2,3,4,5], 
1, 1, 1, to_bitmap(243), HLL_HASH(1), "'0.0.0.0'"),
+            ("2023-08-16 22:27:00","ax",1,1,"'0.0.0.0'",1,"asd",[1,2,3,4,5], 
1, 5, 6, to_bitmap(243), HLL_HASH(1), "'0.0.0.0'"),
+            ("2023-08-16 22:27:00","ax",1,1,"'0.0.0.0'",1,"asd",[1,2,3,4,5], 
1, 1, 1, to_bitmap(2), HLL_HASH(1), "'0.0.0.0'"),
+            ("2023-08-16 22:27:00","ax",1,1,"'0.0.0.0'",1,"asd",[1,2,3,4,5], 
1, 1, 1, to_bitmap(243), HLL_HASH(1), "'0.0.0.0'"),
+            ("2023-08-16 22:27:00","ax",1,1,"'0.0.0.0'",1,"asd",[1,2,3,4,5], 
1, 1, 1, to_bitmap(243), HLL_HASH(100), "'0.0.0.0'"),
+            ("2023-08-16 22:27:00","ax",1,1,"'0.0.0.0'",1,"asd",[1,2,3,4,5], 
1, 1, 1, to_bitmap(243), HLL_HASH(1), "'255.255.255.255'"),
+            ("2023-08-16 24:27:00","ax1",2,0,"'0.0.0.0'",4,"asd",[5,4,3,2,1], 
3, 5, 6, to_bitmap(2), HLL_HASH(100), "'255.255.255.255'"),
+            ("2024-08-17 22:27:00","ax2",3,1,"'0.0.0.0'",8,"asd3",[1,2,3,4,6], 
7, 9, 10, to_bitmap(3), HLL_HASH(1000), "'0.0.1.0'"),
+            ("2023-09-16 
22:27:00","ax4",4,0,"'0.0.0.0'",11,"asd2",[1,2,9,4,5], 11, 11, 11, 
to_bitmap(4), HLL_HASH(1), "'0.10.0.0'");"""
+
+    def mv_name = """${prefix_str}_mv"""
+    def no_mv_name = """no_${prefix_str}_mv"""
+    def mtmv_sql = """select col4, col1, col2, col3, col15 from ${tb_name} 
where col1 = '2023-08-16 22:27:00' order by col4, col1, col2, col3, col15"""
+    create_sync_mv(db, tb_name, mv_name, mtmv_sql)
+    def desc_res = sql """desc ${tb_name} all;"""
+    for (int i = 0; i < desc_res.size(); i++) {
+        if (desc_res[i][0] == mv_name) {
+            for (int j = i; j < i+5; j++) {
+                assertTrue(desc_res[j][6] == "true")
+            }
+            break
+        }
+    }
+    def sql_hit = """select col1, col2, col3, sum(col3) from ${tb_name} where 
col1 = "2023-08-16 22:27:00" group by col3, col1, col2 order by col1, col2, 
col3"""
+    mv_rewrite_success_without_check_chosen(sql_hit, mv_name)
+
+    test {
+        sql """create materialized view ${no_mv_name} as select col4, col1, 
col2, col3, col15, col7 from ${tb_name} where col1 = '2023-08-16 22:27:00' 
order by col4, col1, col2, col3, col15, col7"""
+        exception "The materialized view can not involved auto increment 
column"
+    }
+
+    test {
+        sql """create materialized view ${no_mv_name} as select col4, col1, 
col2, col3, col15, col8 from ${tb_name} where col1 = '2023-08-16 22:27:00' 
group by col4, col1, col2, col3, col15, col8 order by col4, col1, col2, col3, 
col15, col8"""
+        exception "The materialized view of unique table must not has grouping 
columns"
+    }
+
+    test {
+        sql """create materialized view ${no_mv_name} as select col4, col1, 
col2, col3, col15, col8, sum(col3) from ${tb_name} where col1 = '2023-08-16 
22:27:00' group by col4, col1, col2, col3, col15, col8 order by col4, col1, 
col2, col3, col15, col8"""
+        exception "The materialized view of unique table must not has grouping 
columns"
+    }
+
+    // There is a bug in the old optimizer. Please comment out this case first 
and remove the comment after the bug is fixed.
+    // test {
+    //     sql """create materialized view ${no_mv_name} as select col4, col1, 
col2, col3, col15 from ${tb_name} having col3 > 1"""
+    //     exception "LogicalHaving is not supported"
+    // }
+
+    test {
+        sql """create materialized view ${no_mv_name} as select col4, col1, 
col2, col3, col15 from ${tb_name} limit 1"""
+        exception "The limit clause is not supported in add materialized view 
clause"
+    }
+
+    test {
+        sql """create materialized view ${no_mv_name} as select col4, col1, 
col2, col3, col15, 1 from ${tb_name}"""
+        exception "The materialized view only support the single column or 
function expr"
+    }
+
+    test {
+        sql """create materialized view ${no_mv_name} as select col4, col1, 
col2, col3, col15, col3 from ${tb_name}"""
+        exception "The select expr `col3` is duplicated"
+    }
+
+    test {
+        sql """create materialized view ${no_mv_name} as select col3 from 
${tb_name}"""
+        exception "The materialized view of uniq table must contain all key 
columns"
+    }
+
+    test {
+        sql """create materialized view ${no_mv_name} as select col4, col1, 
col2, col3, col15 from ${tb_name} order by col1, col2, col3, col4, col15"""
+        exception "The order of columns in order by clause must be same as the 
order of columns in select list"
+    }
+
+    test {
+        sql """create materialized view ${no_mv_name} as select sum(col3) from 
${tb_name}"""
+        exception """The materialized view must contain at least one key 
column"""
+    }
+
+    test {
+        sql """create materialized view ${no_mv_name} as select col3, 
min(col7) from ${tb_name} group by col3"""
+        exception """The materialized view can not involved auto increment 
column"""
+    }
+
+    test {
+        sql """create materialized view ${no_mv_name} as select col3, col1, 
col2, col15, case when col2 > 1 then 1 else 2 end from ${tb_name} order by 
1,2,3,4,5"""
+        exception """The order of columns in order by clause must be same as 
the order of columns in select list"""
+    }
+
+    test {
+        sql """create materialized view ${no_mv_name} as select col1, 
bitmap_union(to_bitmap(col3)) from ${tb_name} group by col1;"""
+        exception "The materialized view of unique table must not has grouping 
columns"
+    }
+
+    test {
+        sql """create materialized view ${no_mv_name} as select 
bitmap_union(col11) from ${tb_name}"""
+        exception "Aggregate function require same with slot aggregate type"
+    }
+
+
+}
diff --git a/regression-test/suites/mv_p0/mv_negative/mow_negative_test.groovy 
b/regression-test/suites/mv_p0/mv_negative/mow_negative_test.groovy
new file mode 100644
index 00000000000..b855ad926f2
--- /dev/null
+++ b/regression-test/suites/mv_p0/mv_negative/mow_negative_test.groovy
@@ -0,0 +1,157 @@
+// Licensed to the Apache Software Foundation (ASF) under one
+// or more contributor license agreements.  See the NOTICE file
+// distributed with this work for additional information
+// regarding copyright ownership.  The ASF licenses this file
+// to you under the Apache License, Version 2.0 (the
+// "License"); you may not use this file except in compliance
+// with the License.  You may obtain a copy of the License at
+//
+//   http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing,
+// software distributed under the License is distributed on an
+// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+// KIND, either express or implied.  See the License for the
+// specific language governing permissions and limitations
+// under the License.
+
+suite("mow_negative_mv_test", "mv_negative") {
+
+    String db = context.config.getDbNameByFile(context.file)
+    def prefix_str = "mv_mow_negative"
+    def tb_name = prefix_str + "_tb"
+
+    sql """drop table if exists ${tb_name};"""
+    sql """
+        CREATE TABLE `${tb_name}` (
+        `col1` datetime NULL,
+        `col2` varchar(60) NULL,
+        `col3` bigint(11) NOT NULL,
+        `col4` boolean NULL,
+        `col15` ipv4 NULL,
+        `col8` int(11) NULL DEFAULT "0",
+        `col5` string NULL,
+        `col6` ARRAY<int(11)> NULL COMMENT "",
+        `col7` bigint(11) NOT NULL AUTO_INCREMENT,
+        `col9` int(11) NULL DEFAULT "0",
+        `col10` int(11) NULL,
+        `col11` bitmap NOT NULL,
+        `col13` hll not NULL COMMENT "hll",
+        `col14` ipv4 NULL
+        ) ENGINE=OLAP
+        unique KEY(`col1`, `col2`, `col3`, `col4`, `col15`)
+        COMMENT 'OLAP'
+        DISTRIBUTED BY HASH(`col2`, `col3`) BUCKETS 2
+        PROPERTIES (
+        "replication_allocation" = "tag.location.default: 1",
+        "enable_unique_key_merge_on_write" = "true"
+        );
+        """
+    sql """insert into ${tb_name} values 
+            ("2023-08-16 22:28:00","ax",1,1,"'0.0.0.0'",1,"asd",[1,2,3,4,5], 
1, 1, 1, to_bitmap(243), HLL_HASH(1), "'0.0.0.0'"),
+            ("2023-08-16 22:27:00","ax1",1,1,"'0.0.0.0'",1,"asd",[1,2,3,4,5], 
1, 1, 1, to_bitmap(243), HLL_HASH(1), "'0.0.0.0'"),
+            ("2023-08-16 22:27:00","ax",2,1,"'0.0.0.0'",1,"asd",[1,2,3,4,5], 
1, 1, 1, to_bitmap(243), HLL_HASH(1), "'0.0.0.0'"),
+            ("2023-08-16 22:27:00","ax",1,0,"'0.0.0.0'",1,"asd",[1,2,3,4,5], 
1, 1, 1, to_bitmap(243), HLL_HASH(1), "'0.0.0.0'"),
+            ("2023-08-16 22:27:00","ax",1,1,"'0.0.0.0'",1,"asd2",[1,2,3,4,5], 
1, 1, 1, to_bitmap(243), HLL_HASH(1), "'0.0.0.0'"),
+            ("2023-08-16 22:27:00","ax",1,1,"'0.0.0.0'",1,"asd",[5,4,3,2,1], 
1, 1, 1, to_bitmap(243), HLL_HASH(1), "'0.0.0.0'"),
+            ("2023-08-16 22:27:00","ax",1,1,"'0.0.0.0'",1,"asd",[1,2,3,4,5], 
3, 1, 1, to_bitmap(243), HLL_HASH(1), "'0.0.0.0'"),
+            ("2023-08-16 22:27:00","ax",1,1,"'0.0.0.0'",4,"asd",[1,2,3,4,5], 
1, 1, 1, to_bitmap(243), HLL_HASH(1), "'0.0.0.0'"),
+            ("2023-08-16 22:27:00","ax",1,1,"'0.0.0.0'",1,"asd",[1,2,3,4,5], 
1, 5, 6, to_bitmap(243), HLL_HASH(1), "'0.0.0.0'"),
+            ("2023-08-16 22:27:00","ax",1,1,"'0.0.0.0'",1,"asd",[1,2,3,4,5], 
1, 1, 1, to_bitmap(2), HLL_HASH(1), "'0.0.0.0'"),
+            ("2023-08-16 22:27:00","ax",1,1,"'0.0.0.0'",1,"asd",[1,2,3,4,5], 
1, 1, 1, to_bitmap(243), HLL_HASH(1), "'0.0.0.0'"),
+            ("2023-08-16 22:27:00","ax",1,1,"'0.0.0.0'",1,"asd",[1,2,3,4,5], 
1, 1, 1, to_bitmap(243), HLL_HASH(100), "'0.0.0.0'"),
+            ("2023-08-16 22:27:00","ax",1,1,"'0.0.0.0'",1,"asd",[1,2,3,4,5], 
1, 1, 1, to_bitmap(243), HLL_HASH(1), "'255.255.255.255'"),
+            ("2023-08-16 24:27:00","ax1",2,0,"'0.0.0.0'",4,"asd",[5,4,3,2,1], 
3, 5, 6, to_bitmap(2), HLL_HASH(100), "'255.255.255.255'"),
+            ("2024-08-17 22:27:00","ax2",3,1,"'0.0.0.0'",8,"asd3",[1,2,3,4,6], 
7, 9, 10, to_bitmap(3), HLL_HASH(1000), "'0.0.1.0'"),
+            ("2023-09-16 
22:27:00","ax4",4,0,"'0.0.0.0'",11,"asd2",[1,2,9,4,5], 11, 11, 11, 
to_bitmap(4), HLL_HASH(1), "'0.10.0.0'");"""
+
+    def mv_name = """${prefix_str}_mv"""
+    def no_mv_name = """no_${prefix_str}_mv"""
+    def mtmv_sql = """select col4, col1, col2, col3, col15 from ${tb_name} 
where col1 = '2023-08-16 22:27:00' order by col4, col1, col2, col3, col15"""
+    create_sync_mv(db, tb_name, mv_name, mtmv_sql)
+    def desc_res = sql """desc ${tb_name} all;"""
+    for (int i = 0; i < desc_res.size(); i++) {
+        if (desc_res[i][0] == mv_name) {
+            for (int j = i; j < i+5; j++) {
+                assertTrue(desc_res[j][6] == "true")
+            }
+            break
+        }
+    }
+    def sql_hit = """select col1, col2, col3, sum(col3) from ${tb_name} where 
col1 = "2023-08-16 22:27:00" group by col3, col1, col2 order by col1, col2, 
col3"""
+    mv_rewrite_success_without_check_chosen(sql_hit, mv_name)
+
+    test {
+        sql """create materialized view ${no_mv_name} as select col4, col1, 
col2, col3, col15, col7 from ${tb_name} where col1 = '2023-08-16 22:27:00' 
order by col4, col1, col2, col3, col15, col7"""
+        exception "The materialized view can not involved auto increment 
column"
+    }
+
+    test {
+        sql """create materialized view ${no_mv_name} as select col4, col1, 
col2, col3, col15, col8 from ${tb_name} where col1 = '2023-08-16 22:27:00' 
group by col4, col1, col2, col3, col15, col8 order by col4, col1, col2, col3, 
col15, col8"""
+        exception "The materialized view of unique table must not has grouping 
columns"
+    }
+
+    test {
+        sql """create materialized view ${no_mv_name} as select col4, col1, 
col2, col3, col15, col8, sum(col3) from ${tb_name} where col1 = '2023-08-16 
22:27:00' group by col4, col1, col2, col3, col15, col8 order by col4, col1, 
col2, col3, col15, col8"""
+        exception "The materialized view of unique table must not has grouping 
columns"
+    }
+
+    // There is a bug in the old optimizer. Please comment out this case first 
and remove the comment after the bug is fixed.
+    // test {
+    //     sql """create materialized view ${no_mv_name} as select col4, col1, 
col2, col3, col15 from ${tb_name} having col3 > 1"""
+    //     exception "LogicalHaving is not supported"
+    // }
+
+    test {
+        sql """create materialized view ${no_mv_name} as select col4, col1, 
col2, col3, col15 from ${tb_name} limit 1"""
+        exception "The limit clause is not supported in add materialized view 
clause"
+    }
+
+    test {
+        sql """create materialized view ${no_mv_name} as select col4, col1, 
col2, col3, col15, 1 from ${tb_name}"""
+        exception "The materialized view only support the single column or 
function expr"
+    }
+
+    test {
+        sql """create materialized view ${no_mv_name} as select col4, col1, 
col2, col3, col15, col3 from ${tb_name}"""
+        exception "The select expr `col3` is duplicated"
+    }
+
+
+    test {
+        sql """create materialized view ${no_mv_name} as select col3 from 
${tb_name}"""
+        exception "The materialized view of uniq table must contain all key 
columns"
+    }
+
+    test {
+        sql """create materialized view ${no_mv_name} as select col4, col1, 
col2, col3, col15 from ${tb_name} order by col1, col2, col3, col4, col15"""
+        exception "The order of columns in order by clause must be same as the 
order of columns in select list"
+    }
+
+    test {
+        sql """create materialized view ${no_mv_name} as select sum(col3) from 
${tb_name}"""
+        exception """The materialized view must contain at least one key 
column"""
+    }
+
+    test {
+        sql """create materialized view ${no_mv_name} as select col3, 
min(col7) from ${tb_name} group by col3"""
+        exception """The materialized view can not involved auto increment 
column"""
+    }
+
+    test {
+        sql """create materialized view ${no_mv_name} as select col3, col1, 
col2, col15, case when col2 > 1 then 1 else 2 end from ${tb_name} order by 
1,2,3,4,5"""
+        exception """The order of columns in order by clause must be same as 
the order of columns in select list"""
+    }
+
+    test {
+        sql """create materialized view ${no_mv_name} as select col1, 
bitmap_union(to_bitmap(col3)) from ${tb_name} group by col1;"""
+        exception "The materialized view of unique table must not has grouping 
columns"
+    }
+
+    test {
+        sql """create materialized view ${no_mv_name} as select 
bitmap_union(col11) from ${tb_name}"""
+        exception "The materialized view must contain at least one key column"
+    }
+
+
+}


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]


Reply via email to