mirror of
https://github.com/hibernate/hibernate-orm
synced 2025-02-17 00:24:57 +00:00
HHH-17351 Add missing basic type registration after changing preferred jdbc type
This commit is contained in:
parent
3a28e8bf3b
commit
588408c5f8
@ -646,7 +646,10 @@ public void contributeAttributeConverter(Class<? extends AttributeConverter<?, ?
|
||||
jdbcTypeRegistry,
|
||||
preferredSqlTypeCodeForUuid,
|
||||
UUID.class,
|
||||
"uuid"
|
||||
StandardBasicTypes.UUID.getName(),
|
||||
"org.hibernate.type.PostgresUUIDType",
|
||||
"uuid",
|
||||
"pg-uuid"
|
||||
);
|
||||
}
|
||||
else {
|
||||
@ -673,7 +676,8 @@ public void contributeAttributeConverter(Class<? extends AttributeConverter<?, ?
|
||||
jdbcTypeRegistry,
|
||||
preferredSqlTypeCodeForDuration,
|
||||
Duration.class,
|
||||
StandardBasicTypes.DURATION.getName()
|
||||
StandardBasicTypes.DURATION.getName(),
|
||||
"org.hibernate.type.DurationType"
|
||||
);
|
||||
}
|
||||
else {
|
||||
@ -730,8 +734,9 @@ public void contributeAttributeConverter(Class<? extends AttributeConverter<?, ?
|
||||
jdbcTypeRegistry,
|
||||
preferredSqlTypeCodeForInstant,
|
||||
Instant.class,
|
||||
"instant",
|
||||
"org.hibernate.type.InstantType"
|
||||
StandardBasicTypes.INSTANT.getName(),
|
||||
"org.hibernate.type.InstantType",
|
||||
"instant"
|
||||
);
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user