File tree Expand file tree Collapse file tree 1 file changed +10
-0
lines changed
src/test/java/net/sf/jsqlparser/statement/select Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -4495,4 +4495,14 @@ public void testKeywordAlgorithmIssue1137() throws JSQLParserException {
44954495 public void testKeywordAlgorithmIssue1138 () throws JSQLParserException {
44964496 assertSqlCanBeParsedAndDeparsed ("SELECT * FROM in.tablename" );
44974497 }
4498+
4499+ @ Test
4500+ public void testProblematicDeparsingIssue1183 () throws JSQLParserException {
4501+ assertSqlCanBeParsedAndDeparsed ("SELECT ARRAY_AGG(NAME) FILTER (WHERE NAME IS NOT NULL)" );
4502+ }
4503+
4504+ @ Test
4505+ public void testProblematicDeparsingIssue1183_2 () throws JSQLParserException {
4506+ assertSqlCanBeParsedAndDeparsed ("SELECT ARRAY_AGG(ID ORDER BY ID) OVER (ORDER BY ID)" );
4507+ }
44984508}
You can’t perform that action at this time.
0 commit comments