sduzh opened a new issue #3870: URL: https://github.com/apache/incubator-doris/issues/3870
**Describe the bug** Run query failed with error message `ERROR 1064 (HY000): errCode = 2, detailMessage = Unknown expr node type: 0` **To Reproduce** ``` CREATE TABLE `t0` ( `c0` int(11) NULL COMMENT "" ) ENGINE=OLAP DUPLICATE KEY(`c0`) COMMENT "OLAP" DISTRIBUTED BY HASH(`c0`) BUCKETS 1 PROPERTIES ( "replication_num" = "1", "in_memory" = "false", "storage_format" = "DEFAULT" ); SELECT t0.c0 FROM t0 GROUP BY t0.c0 HAVING MIN(((634403704)>=(MOD((('k')LIKE('1')), ACOS(((2050915657)<=(1))))))) < 10; ``` **Expected behavior** ``` Empty set (0.00 sec) ``` **Real behavior** ``` ERROR 1064 (HY000): errCode = 2, detailMessage = Unknown expr node type: 0 ``` ---------------------------------------------------------------- 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: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org