wyx123654 commented on issue #24723: URL: https://github.com/apache/doris/issues/24723#issuecomment-1751956491
`CREATE TABLE `tbl1` ( `id` bigint(20) NOT NULL, `birth` date NULL , `money` bigint(20) SUM NULL DEFAULT "0", ) ENGINE=OLAP AGGREGATE KEY(`id`, `birth`) COMMENT 'OLAP' DISTRIBUTED BY HASH(`id`) BUCKETS 3 PROPERTIES ( "replication_allocation" = "tag.location.default: 1", "is_being_synced" = "false", "storage_format" = "V2", "light_schema_change" = "true", "disable_auto_compaction" = "false", "enable_single_replica_compaction" = "false" insert into tbl1 values (1,null,1),(2,'2020-06-09',2),(3,null,3),(4,'2021-04-28',4) select * from tbl1 order by birth; ` Version 2.0.1 can run normally, you can send your case. -- 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