We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 694d06c commit 0022ef4Copy full SHA for 0022ef4
src/test/java/net/sf/jsqlparser/statement/select/SelectTest.java
@@ -2220,6 +2220,11 @@ public void testMultiValueIn2() throws JSQLParserException {
2220
assertSqlCanBeParsedAndDeparsed(stmt);
2221
}
2222
2223
+// @Test
2224
+// public void testMultiValueIn3() throws JSQLParserException {
2225
+// String stmt = "SELECT * FROM mytable WHERE (SSN,SSM) IN (('11111111111111', '22222222222222'))";
2226
+// assertSqlCanBeParsedAndDeparsed(stmt);
2227
+// }
2228
@Test
2229
public void testPivot1() throws JSQLParserException {
2230
String stmt = "SELECT * FROM mytable PIVOT (count(a) FOR b IN ('val1'))";
0 commit comments