]
Roman Gutsenko commented on HHH-2968:
-------------------------------------
I am totally understand your policy on test cases, but isn't it time already to fix
five years old bug with presented working solution?
SimpleExpression.getTypedValues NullPointerException when ignoreCase
and value==null
------------------------------------------------------------------------------------
Key: HHH-2968
URL:
https://hibernate.onjira.com/browse/HHH-2968
Project: Hibernate ORM
Issue Type: Bug
Affects Versions: 3.2.5
Reporter: Martijn Brinkers
Attachments: HHH-2968.patch
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.
For more information on JIRA, see: