JNSimba commented on issue #12263: URL: https://github.com/apache/doris/issues/12263#issuecomment-1247492210
This is not a bug, nor is it a problem with partition clipping. Because the partition value in the data is null, when we write the where condition dt < '2018-01-01', the null value cannot be compared with '2018-01-01'. The data is filtered out. If you want to check, you need to write: select * from test_part where dt <'2018-01-01' or dt is null; -- 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]
