chaoyli edited a comment on issue #4426: URL: https://github.com/apache/incubator-doris/issues/4426#issuecomment-678583028
``` INSERT INTO t1 VALUES (true), (false); ``` ``` select c0 from t1 where c0 = 0; +------+ | c0 | +------+ | 0 | +------+ ``` ``` SELECT c0 FROM t1 where c0 = false; Empty set (0.00 sec) ``` ---------------------------------------------------------------- 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. For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
