HHH-17201 Add test for issue
This commit is contained in:
parent
add1ffae07
commit
438db8f0ae
|
@ -12,7 +12,9 @@ import org.hibernate.testing.hamcrest.CollectionMatchers;
|
||||||
import org.hibernate.testing.orm.domain.StandardDomainModel;
|
import org.hibernate.testing.orm.domain.StandardDomainModel;
|
||||||
import org.hibernate.testing.orm.domain.gambit.BasicEntity;
|
import org.hibernate.testing.orm.domain.gambit.BasicEntity;
|
||||||
import org.hibernate.testing.orm.domain.gambit.EntityWithAggregateId;
|
import org.hibernate.testing.orm.domain.gambit.EntityWithAggregateId;
|
||||||
|
import org.hibernate.testing.orm.domain.gambit.SimpleEntity;
|
||||||
import org.hibernate.testing.orm.junit.DomainModel;
|
import org.hibernate.testing.orm.junit.DomainModel;
|
||||||
|
import org.hibernate.testing.orm.junit.JiraKey;
|
||||||
import org.hibernate.testing.orm.junit.SessionFactory;
|
import org.hibernate.testing.orm.junit.SessionFactory;
|
||||||
import org.hibernate.testing.orm.junit.SessionFactoryFunctionalTesting;
|
import org.hibernate.testing.orm.junit.SessionFactoryFunctionalTesting;
|
||||||
import org.hibernate.testing.orm.junit.SessionFactoryScope;
|
import org.hibernate.testing.orm.junit.SessionFactoryScope;
|
||||||
|
@ -44,6 +46,18 @@ public class MultiIdEntityLoadTests {
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
@JiraKey( "HHH-17201" )
|
||||||
|
public void testSimpleEntityUnOrderedMultiLoad(SessionFactoryScope scope) {
|
||||||
|
scope.inTransaction(
|
||||||
|
session -> {
|
||||||
|
List<Integer> idList = List.of( 0, 1 );
|
||||||
|
session.byMultipleIds( SimpleEntity.class )
|
||||||
|
.enableOrderedReturn( false ).multiLoad( idList );
|
||||||
|
}
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void testBasicEntityOrderedLoad(SessionFactoryScope scope) {
|
public void testBasicEntityOrderedLoad(SessionFactoryScope scope) {
|
||||||
scope.inTransaction(
|
scope.inTransaction(
|
||||||
|
|
Loading…
Reference in New Issue