Update TDengine

This commit is contained in:
sunkaixuan 2023-11-08 12:13:18 +08:00
parent 81d7bdd189
commit 45a1fca704

View File

@ -167,14 +167,17 @@ namespace SqlSugar.TDengine
case "int64":
return "BIGINT";
case "uint":
case "uint32":
return "INT UNSIGNED";
case "long":
return "BIGINT";
case "ulong":
case "uint64":
return "BIGINT UNSIGNED";
case "short":
return "SMALLINT";
case "ushort":
case "uint16":
return "SMALLINT UNSIGNED";
case "string":
return "VARCHAR";