[jOOQ/jOOQ#11238] Support FILTER clause also in standard SQL (e.g. H2)

This commit is contained in:
Lukas Eder 2021-02-19 13:14:40 +01:00
parent b9041e17d9
commit 9f87bb42bf
2 changed files with 3 additions and 0 deletions

View File

@ -185,6 +185,7 @@ implements JSONArrayAggOrderByStep<J> {
ctx.sql(')');
acceptFilterClause(ctx);
acceptOverClause(ctx);
}

View File

@ -164,6 +164,8 @@ implements JSONObjectAggNullStep<J> {
ctx.sql(' ').visit(jsonReturning);
ctx.sql(')');
acceptFilterClause(ctx);
acceptOverClause(ctx);
}