yiguolei commented on code in PR #18100:
URL: https://github.com/apache/doris/pull/18100#discussion_r1148718481


##########
regression-test/suites/query_p0/sort/sort.groovy:
##########
@@ -67,4 +67,36 @@ suite("sort") {
                );"""
     sql """insert into test_convert values("b"),("z"),("a"), ("c"), ("睿"), 
("多"), ("丝");"""
     qt_sql """select * from test_convert order by convert(a using gbk);"""
+
+    sql """ DROP TABLE if exists `sort_non_overlap`; """
+    sql """ CREATE TABLE `sort_non_overlap` (
+      `time_period` datetime NOT NULL,
+      `area_name` varchar(255) NOT NULL,
+      `province` varchar(255) NOT NULL,
+      `res_name` varchar(255) NOT NULL,
+      `dev` varchar(255) NOT NULL,
+      `dec0` decimal(10, 3) REPLACE_IF_NOT_NULL NULL,
+      `dec1` decimal(10, 3) REPLACE_IF_NOT_NULL NULL,
+      `dec2` decimal(10, 3) REPLACE_IF_NOT_NULL NULL,
+      `dec3` decimal(10, 3) REPLACE_IF_NOT_NULL NULL,
+      `update_time` datetime REPLACE NULL
+    ) ENGINE=OLAP
+    AGGREGATE KEY(`time_period`, `area_name`, `province`, `res_name`, `dev`)
+    DISTRIBUTED BY HASH(`time_period`, `area_name`, `province`, `res_name`, 
`dev`) BUCKETS 4
+    PROPERTIES (

Review Comment:
   add disable compaction;
   
   remove distributed by



-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


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

Reply via email to