[jOOQ/jOOQ#17689] Excess whitespace rendered in DROP SEQUENCE

This commit is contained in:
Lukas Eder 2024-11-28 16:01:26 +01:00
parent 756d845782
commit 2c84060bed

View File

@ -115,11 +115,10 @@ implements
ctx.start(Clause.DROP_SEQUENCE_SEQUENCE)
.visit(K_DROP)
.sql(' ')
.visit(ctx.family() == CUBRID ? K_SERIAL : K_SEQUENCE)
.sql(' ');
.visit(ctx.family() == CUBRID ? K_SERIAL : K_SEQUENCE);
if (ifExists && supportsIfExists(ctx))
ctx.visit(K_IF_EXISTS).sql(' ');
ctx.sql(' ').visit(K_IF_EXISTS);