From: <hib...@li...> - 2006-03-09 21:11:33
|
Author: ste...@jb... Date: 2006-03-09 16:11:30 -0500 (Thu, 09 Mar 2006) New Revision: 9585 Modified: trunk/Hibernate3/test/org/hibernate/test/hql/HQLTest.java Log: more super-duper-classic-parser-regression-testing-mojo-magic fun Modified: trunk/Hibernate3/test/org/hibernate/test/hql/HQLTest.java =================================================================== --- trunk/Hibernate3/test/org/hibernate/test/hql/HQLTest.java 2006-03-09 21:11:01 UTC (rev 9584) +++ trunk/Hibernate3/test/org/hibernate/test/hql/HQLTest.java 2006-03-09 21:11:30 UTC (rev 9585) @@ -895,7 +895,9 @@ } public void testManyToManyJoinInSubselect() throws Exception { + DotNode.useThetaStyleImplicitJoins = true; assertTranslation( "select foo from Foo foo where foo in (select elt from Baz baz join baz.fooArray elt)" ); + DotNode.useThetaStyleImplicitJoins = false; } public void testImplicitJoinInSubselect() throws Exception { |