提交 1f738c80 authored 作者: Thomas Mueller's avatar Thomas Mueller

column with NULL data type are no longer allowed

上级 08a00d6b
......@@ -3187,6 +3187,11 @@ public class Parser {
original = "VARCHAR_IGNORECASE";
dataType = DataType.getTypeByName(original);
}
if (dataType.type == Value.NULL) {
// we do support NULL in the database meta data,
// but not actually when creating tables
throw Message.getSQLException(ErrorCode.UNKNOWN_DATA_TYPE_1, original);
}
if (regular) {
read();
}
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论