Fixed
Details
Assignee
Gavin KingGavin KingReporter
Gavin KingGavin KingComponents
Fix versions
Priority
Major
Details
Details
Assignee
Gavin King
Gavin KingReporter
Gavin King
Gavin KingComponents
Fix versions
Priority
Created December 20, 2022 at 2:23 PM
Updated December 22, 2022 at 10:59 PM
Resolved December 21, 2022 at 12:06 PM
In https://hibernate.atlassian.net/browse/HHH-15288 the default DDL type mapping for Java
enum
s mapped asORDINAL
was changed fromTINYINT
toSMALLINT
, in order to accommodate Java enums with more than 256 members.I suppose that this change was made because we encountered a user with an
enum
class which was tool-generated rather than hand-written.But this mapping results in inefficient storage for 99.99% of all Java
enum
s, at least on databases which have aTINYINT
type, and it interferes with theTableMigrator
, which is forced to treatTINYINT
andSMALLINT
as the same type, when they are very much not the same type from its point of view.There’s a natural and obvious solution to this problem which is to simply look at the number of values declared by the
enum
when deciding the default DDL type.It’s unfortunate that this change was already released in 6.1, and that implementing the more natural solution results in a reversion to the previous behavior from Hibernate 5 and 6.0 for almost every case, but since the previous behavior was better for all those cases, we should do it anyway.