[jOOQ/jOOQ#5214] Remove pro-only check from OSS edition

This commit is contained in:
Lukas Eder 2022-05-19 11:17:25 +02:00
parent aa6d988ae4
commit 7f8a2ed549

View File

@ -452,7 +452,7 @@ implements
Set<Field<?>> keys = toSQLInsert(ctx, requireNewMySQLExcludedEmulation);
// [#5214] The alias only applies with INSERT .. VALUES
if (requireNewMySQLExcludedEmulation && select == null && !Tools.anyComputedOnClientStoredFields(table))
if (requireNewMySQLExcludedEmulation && select == null)
ctx.formatSeparator()
.visit(K_AS).sql(' ').visit(name("t"));