[jOOQ/jOOQ#14402] Add support for Databricks SQL - WIP

This commit is contained in:
Lukas Eder 2025-01-24 19:22:29 +01:00
parent 78afbdfe12
commit b59a96fbee

View File

@ -260,6 +260,8 @@ implements
private final Table<?> table;
private final boolean ifExists;
private boolean ifExistsColumn;
@ -1355,9 +1357,17 @@ implements
ctx.formatIndentEnd()
.formatNewLine();
if (parens)
ctx.sql(')');
acceptFirstBeforeAfter(ctx);
ctx.end(ALTER_TABLE_ADD);
}