]
Philip Saville commented on HHH-925:
------------------------------------
I would like to see this issue fixed in the next build - it is very frustrating to have to
keep applying a patch to hibernate for something so trivial yet fundamental in
functionality.
I also recommend the priority be increased, since this is a serious problem in the core of
hibernate, even though the fix is trivial.
DetachedCriteria.createCriteria not working with alias
------------------------------------------------------
Key: HHH-925
URL:
http://opensource.atlassian.com/projects/hibernate/browse/HHH-925
Project: Hibernate3
Issue Type: Bug
Components: core
Affects Versions: 3.0 alpha, 3.0 beta 1, 3.0 beta 2, 3.0 beta 3, 3.0 beta 4, 3.0 rc 1,
3.0 final, 3.0.1, 3.0.2, 3.0.3, 3.0.4, 3.0.5, 3.1 beta 1, 3.1 beta 2
Environment: Hibernate 3.0.5, Oracle
Reporter: Felipe Cuozzo
Priority: Minor
Attachments: DetachedCriteria.patch
Original Estimate: 10 minutes
Remaining Estimate: 10 minutes
DetachedCriteria.createCriteria(associationPath, alias) is calling the wrong
Criteria.createCriteria method
public DetachedCriteria createCriteria(String associationPath, String alias)
throws HibernateException {
return new DetachedCriteria( impl, criteria.createCriteria(associationPath) );
}
should be:
public DetachedCriteria createCriteria(String associationPath, String alias)
throws HibernateException {
return new DetachedCriteria( impl, criteria.createCriteria(associationPath, alias) );
}
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: