[#5081] [#5082] Fix for SQL Server

This commit is contained in:
lukaseder 2016-02-15 16:50:55 +01:00
parent f7b9094f58
commit b6ba9fd512

View File

@ -367,13 +367,24 @@ final class AlterTableImpl extends AbstractQuery implements
{
accept0(ctx);
}
accept0(ctx);
}
private final void accept0(Context<?> ctx) {
SQLDialect family = ctx.configuration().dialect().family();
SQLDialect family = ctx.family();
ctx.start(ALTER_TABLE_TABLE)
.keyword("alter table").sql(' ').visit(table)
@ -645,6 +656,32 @@ final class AlterTableImpl extends AbstractQuery implements