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 3bc316d commit d3d66f8Copy full SHA for d3d66f8
src/test/java/net/sf/jsqlparser/test/select/SelectTest.java
@@ -2195,4 +2195,8 @@ public void testTopExpressionIssue243() throws JSQLParserException {
2195
public void testTopExpressionIssue243_2() throws JSQLParserException {
2196
assertSqlCanBeParsedAndDeparsed("SELECT TOP (CAST(? AS INT)) * FROM MyTable");
2197
}
2198
+
2199
+ public void testFunctionIssue284() throws JSQLParserException {
2200
+ assertSqlCanBeParsedAndDeparsed("SELECT NVL((SELECT 1 FROM DUAL), 1) AS A FROM TEST1");
2201
+ }
2202
0 commit comments