[#3833] org.jooq.CreateTableAsStep.column(Field<T> field, DataType<T>
type) SQLite
This commit is contained in:
parent
a73bbbc6b0
commit
d353eecf5b
@ -148,6 +148,9 @@ class CreateTableImpl<R extends Record> extends AbstractQuery implements
|
||||
.formatIndentStart()
|
||||
.formatNewLine();
|
||||
|
||||
boolean qualify = ctx.qualify();
|
||||
ctx.qualify(false);
|
||||
|
||||
for (int i = 0; i < columnFields.size(); i++) {
|
||||
ctx.visit(columnFields.get(i))
|
||||
.sql(" ")
|
||||
@ -162,6 +165,7 @@ class CreateTableImpl<R extends Record> extends AbstractQuery implements
|
||||
ctx.sql(",").formatSeparator();
|
||||
}
|
||||
|
||||
ctx.qualify(qualify);
|
||||
ctx.formatIndentEnd()
|
||||
.formatNewLine()
|
||||
.sql(")")
|
||||
|
||||
Loading…
Reference in New Issue
Block a user