mirror of
https://github.com/hibernate/hibernate-orm
synced 2025-02-07 19:58:16 +00:00
MySQL strips trailing space characters from char(n) columns, which is very bad, because we use char(1) for storing Java char values. We can sort-of compensate for this in CharacterJavaType, but it's ugly and fragile to do it that way. Signed-off-by: Gavin King <gavin@hibernate.org>