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 56497af commit 1fbf6c5Copy full SHA for 1fbf6c5
src/test/java/net/sf/jsqlparser/test/select/SelectTest.java
@@ -2121,7 +2121,7 @@ public void testSelectJoin2() throws JSQLParserException {
2121
public void testAnyConditionSubSelect() throws JSQLParserException {
2122
assertSqlCanBeParsedAndDeparsed("SELECT e1.empno, e1.sal FROM emp e1 WHERE e1.sal > ANY (SELECT e2.sal FROM emp e2 WHERE e2.deptno = 10)");
2123
}
2124
-
+
2125
public void testAllConditionSubSelect() throws JSQLParserException {
2126
assertSqlCanBeParsedAndDeparsed("SELECT e1.empno, e1.sal FROM emp e1 WHERE e1.sal > ALL (SELECT e2.sal FROM emp e2 WHERE e2.deptno = 10)");
2127
0 commit comments