[#5955] Additional data type

This commit is contained in:
lukaseder 2017-04-22 00:53:38 +02:00
parent 6405a12642
commit d6b4f4af3e

View File

@ -4630,6 +4630,8 @@ class ParserImpl implements Parser {
case 'M':
if (parseKeywordIf(ctx, "MEDIUMBLOB"))
return SQLDataType.BLOB;
else if (parseKeywordIf(ctx, "MEDIUMINT UNSIGNED"))
return SQLDataType.INTEGERUNSIGNED;
else if (parseKeywordIf(ctx, "MEDIUMINT"))
return SQLDataType.INTEGER;
else if (parseKeywordIf(ctx, "MEDIUMTEXT"))