Update ParserDataType.cpp

This commit is contained in:
Alexey Milovidov 2022-04-17 01:53:11 +03:00 committed by GitHub
parent cb9675d0f2
commit 42618239a4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -92,7 +92,7 @@ bool ParserDataType::parseImpl(Pos & pos, ASTPtr & node, Expected & expected)
}
else if (type_name_upper.find("INT") != std::string::npos)
{
/// Support SIGNED and UNSIGNED integer type modifiers for compatibility with MySQL
/// Support SIGNED and UNSIGNED integer type modifiers for compatibility with MySQL.
if (ParserKeyword("SIGNED").ignore(pos))
type_name_suffix = "SIGNED";
else if (ParserKeyword("UNSIGNED").ignore(pos))