From: <hib...@li...> - 2006-07-28 01:59:20
|
Author: ste...@jb... Date: 2006-07-26 11:07:50 -0400 (Wed, 26 Jul 2006) New Revision: 10163 Modified: trunk/Hibernate3/grammar/hql.g Log: HHH-1947 : (JPA) MEMBER OF operation : OF keyword is optional Modified: trunk/Hibernate3/grammar/hql.g =================================================================== --- trunk/Hibernate3/grammar/hql.g 2006-07-26 15:05:23 UTC (rev 10162) +++ trunk/Hibernate3/grammar/hql.g 2006-07-26 15:07:50 UTC (rev 10163) @@ -521,7 +521,7 @@ #l.setText( (n == null) ? "like" : "not like"); } concatenation likeEscape) - | (MEMBER! OF! p:path! { + | (MEMBER! (OF!)? p:path! { processMemberOf(n,#p,currentAST); } ) ) ) |