HappenLee opened a new pull request, #20289: URL: https://github.com/apache/doris/pull/20289
## Proposed changes sql """ CREATE TABLE `t1_int` ( `num` int(11) NULL, `dgs_jkrq` bigint(20) NULL ) ENGINE=OLAP DUPLICATE KEY(`num`) COMMENT 'OLAP' DISTRIBUTED BY HASH(`num`) BUCKETS 1 PROPERTIES ( "replication_allocation" = "tag.location.default: 1", "storage_format" = "V2", "light_schema_change" = "true", "disable_auto_compaction" = "false", "enable_single_replica_compaction" = "false" ); """ sql """insert into t1_int values(1,1),(1,2),(1,3),(1,4),(1,null);""" qt_sql """ select min(dgs_jkrq) from t1_int; """ get the error result:4 after change we get the right result: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