Rename SqlType(X) as JdbcType(X) #3856
Replies: 2 comments
-
Double thumbs up :) |
Beta Was this translation helpful? Give feedback.
0 replies
-
This is already done, so I'll close this. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
The premise of this change is to better communicate the fact that
SqlTypeDescriptor
really describes a "JDBC type".Rename:
org.hibernate.type.descriptor.sql.SqlTypeDescriptor
->org.hibernate.type.descriptor.sql.JdbcTypeDescriptor
org.hibernate.type.descriptor.sql.SqlTypeDescriptorIndicators
->org.hibernate.type.descriptor.sql.JdbcTypeDescriptorIndicators
org.hibernate.type.descriptor.sql.spi.SqlTypeDescriptorRegistry
->org.hibernate.type.descriptor.sql.spi.JdbcTypeDescriptorRegistry
org.hibernate.type.SqlTypeDescriptorIndicatorCapable
->org.hibernate.type.JdbcTypeDescriptorIndicatorCapable
@SqlType
->@JdbcType
@SqlTypeCode
->@JdbcTypeCode
@SqlTypeRegistration
->@JdbcTypeRegistration
Possibly rename package
org.hibernate.type.descriptor.sql
toorg.hibernate.type.descriptor.jdbc
.Beta Was this translation helpful? Give feedback.
All reactions