924060929 commented on code in PR #12046: URL: https://github.com/apache/doris/pull/12046#discussion_r953625412
########## regression-test/suites/nereids_syntax_p0/inpredicate.groovy: ########## @@ -55,5 +55,13 @@ suite("inpredicate") { order_qt_in_predicate_8 """ SELECT * FROM supplier WHERE s_nation not in ('PERU', 'ETHIOPIA'); """ + + order_qt_in_predicate_9 """ + SELECT * FROM supplier WHERE s_suppkey in (1); + """ + + order_qt_in_predicate_10 """ + SELECT * FROM supplier WHERE s_suppkey not in (1); Review Comment: ```suggestion SELECT * FROM supplier WHERE s_suppkey not in (15); ``` ########## regression-test/suites/nereids_syntax_p0/inpredicate.groovy: ########## @@ -55,5 +55,13 @@ suite("inpredicate") { order_qt_in_predicate_8 """ SELECT * FROM supplier WHERE s_nation not in ('PERU', 'ETHIOPIA'); """ + + order_qt_in_predicate_9 """ + SELECT * FROM supplier WHERE s_suppkey in (1); Review Comment: ```suggestion SELECT * FROM supplier WHERE s_suppkey in (15); ``` -- 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