提交 4d339999 编写于 作者: J jurgen

MySQL comment escape

Former-commit-id: 547b22aa
上级 68c13629
......@@ -86,7 +86,7 @@ public class MySQLTableColumnManager extends SQLTableColumnManager<MySQLTableCol
final MySQLTableColumn column = new MySQLTableColumn(parent);
column.setName(getNewColumnName(context, parent));
column.setTypeName(columnType == null ? "INTEGER" : columnType.getName()); //$NON-NLS-1$
column.setTypeName(columnType == null ? "integer" : columnType.getName()); //$NON-NLS-1$
column.setMaxLength(columnType != null && columnType.getDataKind() == DBPDataKind.STRING ? 100 : 0);
column.setValueType(columnType == null ? Types.INTEGER : columnType.getTypeID());
column.setOrdinalPosition(-1);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册