yiguolei commented on code in PR #29242: URL: https://github.com/apache/doris/pull/29242#discussion_r1438004850
########## regression-test/suites/nereids_p0/explain/test_pushdown_explain.groovy: ########## @@ -65,4 +65,131 @@ suite("test_pushdown_explain") { sql("select count(cast(lo_orderkey as bigint)) from test_lineorder;") contains "pushAggOp=COUNT" } + + sql "DROP TABLE IF EXISTS table_unique" + sql """ + CREATE TABLE `table_unique` ( + `user_id` LARGEINT NOT NULL COMMENT '\"用户id\"', + `username` VARCHAR(50) NOT NULL COMMENT '\"用户昵称\"', + `val` VARCHAR(50) NULL + ) ENGINE=OLAP + UNIQUE KEY(`user_id`, `username`) + COMMENT 'OLAP' + DISTRIBUTED BY HASH(`user_id`) BUCKETS 1 + PROPERTIES ( + "replication_allocation" = "tag.location.default: 1", + "disable_auto_compaction" = "false" + ); + """ + sql """ + insert into table_unique values(1,"asd","cc"),(2,"qwe","vvx"),(3,"ffsd","mnm"),(4,"qdf","ll"),(5,"cvfv","vff"); Review Comment: a,b 1, 1 1, 2 1, 3 1, 1 1,1 1,2 2,1 delete where a = 1 -- 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