[jOOQ/jOOQ#17689] Excess whitespace rendered in DROP SEQUENCE
This commit is contained in:
parent
756d845782
commit
2c84060bed
@ -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);
|
||||
|
||||
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user