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 bc5a6a4 commit ffeb7b7Copy full SHA for ffeb7b7
src/test/java/net/sf/jsqlparser/parser/CCJSqlParserUtilTest.java
@@ -60,4 +60,10 @@ public void testParseExpression2() throws Exception {
60
assertTrue(mult.getLeftExpression() instanceof LongValue);
61
assertTrue(mult.getRightExpression() instanceof Parenthesis);
62
}
63
+
64
+ @Test
65
+ public void testParseCondExpression() throws Exception {
66
+ Expression result = CCJSqlParserUtil.parseCondExpression("a+b>5 and c<3");
67
+ assertEquals("a + b > 5 AND c < 3", result.toString());
68
+ }
69
0 commit comments