mirror of
https://github.com/hibernate/hibernate-orm
synced 2025-02-07 19:58:16 +00:00
HH-13550 : Fix Oracle failure for test added by HHH-13424
(cherry picked from commit cb51b1e83800558ab781f0908785d19231cef578)
This commit is contained in:
parent
f17ea81cff
commit
9eab3a80d1
@ -47,12 +47,10 @@ public void testRowAddedForNullValue() {
|
||||
assertNotNull( anEntity );
|
||||
assertNull( anEntity.aDetail );
|
||||
// assert that a row was inserted into Details when its property is null
|
||||
assertEquals(
|
||||
1,
|
||||
entityManager.createNativeQuery(
|
||||
"select id from Details where aDetail is null"
|
||||
).getSingleResult()
|
||||
);
|
||||
final Number id = (Number) entityManager.createNativeQuery(
|
||||
"select id from Details where aDetail is null"
|
||||
).getSingleResult();
|
||||
assertEquals( 1, id.intValue() );
|
||||
}
|
||||
);
|
||||
}
|
||||
@ -71,18 +69,15 @@ public void testRowAddedForNullValueInSubclassTable() {
|
||||
assertNotNull( anEntity );
|
||||
assertNull( anEntity.aDetail );
|
||||
// assert that a row was inserted into Details when its property is null
|
||||
assertEquals(
|
||||
1,
|
||||
entityManager.createNativeQuery(
|
||||
"select id from Details where aDetail is null"
|
||||
).getSingleResult()
|
||||
);
|
||||
Number id = (Number) entityManager.createNativeQuery(
|
||||
"select id from Details where aDetail is null"
|
||||
).getSingleResult();
|
||||
assertEquals( 1, id.intValue() );
|
||||
// assert that a row was inserted into MoreDetails when its property is null
|
||||
assertEquals( 1,
|
||||
entityManager.createNativeQuery(
|
||||
"select id from MoreDetails where anotherDetail is null"
|
||||
).getSingleResult()
|
||||
);
|
||||
id = (Number) entityManager.createNativeQuery(
|
||||
"select id from MoreDetails where anotherDetail is null"
|
||||
).getSingleResult();
|
||||
assertEquals( 1, id.intValue() );
|
||||
}
|
||||
);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user