[fix](Nereids) add 'integer' as alias of int type (#15983)

This commit is contained in:
谢健
2023-01-17 20:33:26 +08:00
committed by GitHub
parent 4d863a18c3
commit 3d05ffb10e
2 changed files with 6 additions and 0 deletions

View File

@ -197,6 +197,7 @@ public abstract class DataType implements AbstractDataType {
return TinyIntType.INSTANCE;
case "smallint":
return SmallIntType.INSTANCE;
case "integer":
case "int":
return IntegerType.INSTANCE;
case "bigint":