Fixed typo

This commit is contained in:
Vivek Shankar 2019-04-29 16:08:27 +05:30 committed by Christian Beikov
parent 2efacb6f23
commit 62d5d1ab2c
1 changed files with 1 additions and 1 deletions

View File

@ -68,7 +68,7 @@ See the User Guide for additional details.
implementations extending the built-in ones and relying on that behavior should be updated to call
`SqlTypeDescriptorRegistry#addDescriptor` themselves.
* The JDBC type for "big_integer" (org.hibernate.type.BigIntegerType) properties has changed from
java.sql.Types,NUMERIC to java.sql.Types.BIGINT. This change was reverted in 5.0.1.Final.
java.sql.Types.NUMERIC to java.sql.Types.BIGINT. This change was reverted in 5.0.1.Final.
See <<migration-updates, Migration Updates>> for details.
* For ids defined as UUID with generation, for some databases it is required to explicitly set the `@Column( length=16 )`
in order to generate BINARY(16) so that comparisons properly work.