HHH-11241 : Missing column when executing HQL and criteria query with secondary table
(cherry picked from commit b4b77f85d70765f420ab17c9128f9472175d6619)
This commit is contained in:
parent
9729649615
commit
72ae66dfe6
|
@ -27,6 +27,7 @@ import static org.junit.Assert.assertEquals;
|
|||
*/
|
||||
@TestForIssue( jiraKey = "HHH-11241" )
|
||||
public class SubclassesWithSamePropertyNameTest extends BaseCoreFunctionalTestCase {
|
||||
private Long blogEntryId;
|
||||
|
||||
@Override
|
||||
public String[] getMappings() {
|
||||
|
@ -43,6 +44,30 @@ public class SubclassesWithSamePropertyNameTest extends BaseCoreFunctionalTestCa
|
|||
s.persist( blogEntry );
|
||||
s.getTransaction().commit();
|
||||
s.close();
|
||||
|
||||
blogEntryId = blogEntry.getId();
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void cleanupTest() {
|
||||
Session s = openSession();
|
||||
s.getTransaction().begin();
|
||||
s.createQuery( "delete from BlogEntry" ).executeUpdate();
|
||||
s.getTransaction().commit();
|
||||
s.close();
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestForIssue( jiraKey = "HHH-11241" )
|
||||
@FailureExpected( jiraKey = "HHH-11241" )
|
||||
public void testGetSuperclass() {
|
||||
Session s = openSession();
|
||||
Transaction tx = s.beginTransaction();
|
||||
Reportable reportable = s.get( Reportable.class, blogEntryId );
|
||||
assertEquals( "John Doe", reportable.getReportedBy() );
|
||||
assertEquals( "detail", ( (BlogEntry) reportable ).getDetail() );
|
||||
tx.commit();
|
||||
s.close();
|
||||
}
|
||||
|
||||
@Test
|
||||
|
|
Loading…
Reference in New Issue