add TIMESTAMP_WITH_TIMEZONE typeMap (#6228)

Co-authored-by: 安贞 <anzhenemail@163.com>
This commit is contained in:
anzhen-tech 2024-06-01 21:42:02 +08:00 committed by GitHub
parent c5ca44cd2d
commit 385de8438f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -65,6 +65,7 @@ public class TypeRegistry {
typeMap.put(Types.DATE, DbColumnType.DATE);
//timestamp
typeMap.put(Types.TIMESTAMP, DbColumnType.TIMESTAMP);
typeMap.put(Types.TIMESTAMP_WITH_TIMEZONE, DbColumnType.TIMESTAMP);
//double
typeMap.put(Types.FLOAT, DbColumnType.DOUBLE);
typeMap.put(Types.REAL, DbColumnType.DOUBLE);