morrySnow commented on PR #15185: URL: https://github.com/apache/doris/pull/15185#issuecomment-1376770656
current master could pass all new P0 case, but `select true + 1 + 'x';` is not same with legacy planner. ``` mysql> set enable_nereids_planner=true; mysql> select true + 1 + 'x'; +--------------------+ | ((TRUE + 1) + 'x') | +--------------------+ | NULL | +--------------------+ 1 row in set (0.01 sec) mysql> set enable_nereids_planner=false; Query OK, 0 rows affected (0.00 sec) mysql> select true + 1 + 'x'; ERROR 5012 (HY000): errCode = 2, detailMessage = 'x' is not a number ``` -- 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