We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1de554b commit ba5a139Copy full SHA for ba5a139
hibernate-core/src/matrix/java/org/hibernate/test/hql/ASTParserLoadingTest.java
@@ -278,7 +278,7 @@ public void testJPAQLQualifiedIdentificationVariables() {
278
279
s = openSession();
280
s.beginTransaction();
281
- results = s.createQuery( "select entry(f) from Human h from h.family f" ).list();
+ results = s.createQuery( "select entry(f) from Human h join h.family f" ).list();
282
assertEquals( 1, results.size() );
283
result = results.get(0);
284
assertTrue( Map.Entry.class.isAssignableFrom( result.getClass() ) );
0 commit comments