[jOOQ/jOOQ#10426] Use standard SQL for identity columns in H2

This commit is contained in:
Lukas Eder 2020-07-20 12:21:11 +02:00
parent ade95b281d
commit 46ad2c4fcb

View File

@ -4826,11 +4826,13 @@ final class Tools {
case H2: ctx.sql(' ').visit(K_GENERATED_BY_DEFAULT_AS_IDENTITY); break;
case H2:
case MARIADB:
case MYSQL: ctx.sql(' ').visit(K_AUTO_INCREMENT); break;
}