[jOOQ/jOOQ#16786] Fix null treatment syntax of window functions in

BigQuery
This commit is contained in:
Lukas Eder 2024-06-06 15:05:12 +02:00
parent 37bb8d80f0
commit d9bc8f168c

View File

@ -220,6 +220,7 @@ implements
final void acceptNullTreatmentAsArgumentKeywords(Context<?> ctx) {
switch (ctx.family()) {
case DUCKDB:
if (nullTreatment == NullTreatment.IGNORE_NULLS)
ctx.sql(' ').visit(K_IGNORE_NULLS);
@ -242,6 +243,7 @@ implements
case DUCKDB:
break;
@ -254,6 +256,7 @@ implements
final void acceptNullTreatmentStandard(Context<?> ctx) {
switch (ctx.family()) {
case DUCKDB:
break;