HappenLee opened a new pull request, #41668: URL: https://github.com/apache/doris/pull/41668
## Proposed changes Fix Before Error Query Result: ``` create table t(a int, b int) duplicate key(`a`, `b`) DISTRIBUTED BY RANDOM BUCKETS AUTO PROPERTIES ( "replication_allocation" = "tag.location.default: 1"); insert into t values(-2147483648, -2147483648); mysql> select * from t where a is null; +-------------+-------------+ | a | b | +-------------+-------------+ | -2147483648 | -2147483648 | +-------------+-------------+ 1 row in set (0.03 sec) ``` <!--Describe your changes.--> -- 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]
