|
|
|
|
@ -16,6 +16,7 @@ import org.apache.commons.collections4.keyvalue.DefaultKeyValue;
|
|
|
|
|
|
|
|
|
|
import java.util.ArrayList;
|
|
|
|
|
import java.util.List;
|
|
|
|
|
import java.util.Objects;
|
|
|
|
|
|
|
|
|
|
import static com.alibaba.druid.sql.SQLUtils.normalize;
|
|
|
|
|
|
|
|
|
|
@ -97,7 +98,8 @@ public class ToolCodegenSQLParser {
|
|
|
|
|
columns.add(ToolSchemaColumnDO.builder()
|
|
|
|
|
.columnName(normalize(definition.getColumnName()))
|
|
|
|
|
.columnType(definition.getDataType().toString())
|
|
|
|
|
.columnComment(normalize(definition.getComment().toString()))
|
|
|
|
|
.columnComment(Objects.isNull(definition.getComment()) ? ""
|
|
|
|
|
: normalize(definition.getComment().toString()))
|
|
|
|
|
.nullable(!text.contains(" NOT NULL"))
|
|
|
|
|
.primaryKey(false)
|
|
|
|
|
.autoIncrement(text.contains("AUTO_INCREMENT"))
|
|
|
|
|
|