lingbin opened a new issue #518: Failed to query when there is null in the case-when clause URL: https://github.com/apache/incubator-doris/issues/518 **Describe the bug** mysql> SELECT CASE WHEN NULL THEN 1 ELSE 2 END; ERROR 1064 (HY000): Internal_error **Expected behavior** mysql> SELECT CASE WHEN NULL THEN 1 ELSE 2 END; +----------------------------------+ | CASE WHEN NULL THEN 1 ELSE 2 END | +----------------------------------+ | 2 | +----------------------------------+
---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
