[hibernate-issues] [Hibernate-JIRA] Updated: (HHH-4699) String mapped ENUMs can't be loaded from CHARs only VARCHARS (fix is trivial)

Martijn Blankestijn (JIRA) noreply at atlassian.com
Thu Jul 8 08:31:13 EDT 2010


     [ http://opensource.atlassian.com/projects/hibernate/browse/HHH-4699?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Martijn Blankestijn updated HHH-4699:
-------------------------------------

    Attachment: hibernate-4699.zip

Issue is still there.

I made a testproject with Hibernate 3.5.3 with DB2Dialect against a embedded Derby database. The behavior is the same with Derby database as it is with DB2.

The string is not trimmed so in this case with a char(7) column the enum-instance SMALL is not equivalent to the database value 'SMALL  '.

> String mapped ENUMs can't be loaded from CHARs only VARCHARS (fix is trivial)
> -----------------------------------------------------------------------------
>
>                 Key: HHH-4699
>                 URL: http://opensource.atlassian.com/projects/hibernate/browse/HHH-4699
>             Project: Hibernate Core
>          Issue Type: Bug
>          Components: core
>    Affects Versions: 3.5.0-Beta-3
>         Environment: all
>            Reporter: Pierce Wetter
>            Assignee: Gail Badner
>         Attachments: hibernate-4699.zip
>
>   Original Estimate: 10m
>  Remaining Estimate: 10m
>
> An enum persisted as a string to a CHAR column comes back with extra spaces appended, so then fails the Enum.valueOf() lookup.
> Fix is easy:
> Line 132 of EnumType.java, method nullSafeGet, change:
> 				return Enum.valueOf( enumClass, name );
> to
> 				return Enum.valueOf( enumClass, name.trim() );
> Which should be perfectly logical, because spaces are illegal in enum names anyways. 

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://opensource.atlassian.com/projects/hibernate/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        


More information about the hibernate-issues mailing list