SimpleExpression.getTypedValues NullPointerException when ignoreCase and value==null
------------------------------------------------------------------------------------
Key: HHH-2968
URL:
http://opensource.atlassian.com/projects/hibernate/browse/HHH-2968
Project: Hibernate3
Issue Type: Bug
Affects Versions: 3.2.5
Reporter: Martijn Brinkers
If ignoreCase is true and value is null a NullPointerException is thrown because
toString() is called without checking for null.
public TypedValue[] getTypedValues(Criteria criteria, CriteriaQuery criteriaQuery)
throws HibernateException {
Object icvalue = ignoreCase ? value.toString().toLowerCase() : value;
return new TypedValue[] { criteriaQuery.getTypedValue(criteria, propertyName, icvalue)
};
}
--
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....
-
For more information on JIRA, see:
http://www.atlassian.com/software/jira