if(modNode.isAutoincrementColumn()) {
int autoIncType = (int)modNode.getAutoinc_create_or_modify_Start_Increment();
switch(autoIncType) {
case ColumnDefinitionNode.CREATE_AUTOINCREMENT: {
if(column.getIdentityGenerator() != null) {
throw new ColumnAlreadyGeneratedException(column);
}
TableName name = tableCopy.getName();
TableDDL.setAutoIncrement(builder, name.getSchemaName(), name.getTableName(), modNode);
}
break;