[fix](Nereids) add int type alias 'integer' (#25376)

This commit is contained in:
morrySnow
2023-10-16 11:12:44 +08:00
committed by GitHub
parent 4c57c31c5c
commit 934d82816c
2 changed files with 2 additions and 1 deletions

View File

@ -123,6 +123,7 @@ public abstract class DataType {
dataType = SmallIntType.INSTANCE;
break;
case "int":
case "integer":
dataType = IntegerType.INSTANCE;
break;
case "bigint":