[jOOQ/jOOQ#16786] Fix null treatment syntax of window functions in
BigQuery
This commit is contained in:
parent
37bb8d80f0
commit
d9bc8f168c
@ -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;
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user