haridsv commented on code in PR #2176: URL: https://github.com/apache/phoenix/pull/2176#discussion_r2136881312
########## phoenix-core/src/test/java/org/apache/phoenix/compile/PhoenixSQLParserTest.java: ########## @@ -0,0 +1,24 @@ +package org.apache.phoenix.compile; + +import org.antlr.runtime.ANTLRInputStream; +import org.antlr.runtime.CommonTokenStream; +import org.apache.phoenix.parse.ParseNodeFactory; +import org.apache.phoenix.parse.PhoenixSQLLexer; +import org.apache.phoenix.parse.PhoenixSQLParser; +import org.junit.Test; + +import java.io.InputStream; +import java.io.StringBufferInputStream; + +public class PhoenixSQLParserTest { + @Test + public void testConstantInList() throws Exception { + InputStream stream = new StringBufferInputStream("select aCol from aTable where aCol in (1, 2, 3)"); Review Comment: Oops... this was just an ad-hoc test I was doing for something else and it got accidentally included. Thanks for catching. -- 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: issues-unsubscr...@phoenix.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org