Reimplement support for enums in a sane way #6233
Closed
gavinking
started this conversation in
Design Proposals
Replies: 3 comments 1 reply
|
This is now fixed. @sebersole got rid of the The real work is now handled by |
0 replies
|
Sorry to post a question in closed discussion. |
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
The implementation of enum support in Hibernate involves a
UserTypeand twoBasicValueConverters. This was never a very sensible way to do it, and dates back, I assume, to the time when Hibernate Annotations and Hibernate EntityManager were separate projects.This is extremely painful to deal with in general, and in particular it makes it almost impossible to implement support for PostgreSQL
enumtypes.We need to fix this.
All reactions