[jOOQ/jOOQ#12003] Add support for ALTER COLUMN adding an identity

This commit is contained in:
Lukas Eder 2021-11-09 13:46:02 +01:00
parent 4d1388c1e5
commit c4b65bc28b

View File

@ -4609,6 +4609,10 @@ final class DefaultParseContext extends AbstractScope implements ParseContext {
identityOption = true;
continue;
}
else if (parseSignedIntegerLiteralIf() != null) {
identityOption = true;
continue;
}
if (identityOption)
break;