eldenmoon commented on code in PR #39258:
URL: https://github.com/apache/doris/pull/39258#discussion_r1714559509


##########
regression-test/suites/mv_p0/test_row_store/test_row_store.groovy:
##########
@@ -29,4 +29,20 @@ suite ("test_row_store") {
         sql "create materialized view kavg as select k1,k4,avg(k2) from 
d_table group by k1,k4;"
         exception "RowStore table can't create materialized view"
     }
+
+    // test ip type with row store
+    sql """ DROP TABLE IF EXISTS ipv6_row; """
+    sql """ CREATE TABLE ipv6_row (
+             `id` int,
+             `ip_v6` ipv6
+            ) ENGINE=OLAP
+            DISTRIBUTED BY HASH(`id`) BUCKETS 4
+            PROPERTIES (
+                 "store_row_column"="true",
+                 "replication_allocation" = "tag.location.default: 1"
+            ); """
+
+    // rowstore column can't  make inde
+    sql """ insert into ipv6_row values(2, '2001:16a0:2:200a::2');"""
+    qt_sql """select * from ipv6_row;"""

Review Comment:
   this will not go row store fetch. write test using unique table with row 
store, and `select * from ipv6_row where id = 2`



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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

Reply via email to