This commit is contained in:
Steve Ebersole 2019-10-15 11:49:36 -05:00
parent 611cdceeb2
commit 6ea723ddc5
1 changed files with 47 additions and 9 deletions

View File

@ -11,13 +11,12 @@ import java.util.List;
import org.hibernate.cfg.AvailableSettings; import org.hibernate.cfg.AvailableSettings;
import org.hibernate.orm.test.metamodel.mapping.SmokeTests.Component; import org.hibernate.orm.test.metamodel.mapping.SmokeTests.Component;
import org.hibernate.orm.test.metamodel.mapping.SmokeTests.SimpleEntity;
import org.hibernate.orm.test.metamodel.mapping.SmokeTests.Gender; import org.hibernate.orm.test.metamodel.mapping.SmokeTests.Gender;
import org.hibernate.orm.test.metamodel.mapping.SmokeTests.SimpleEntity;
import org.hibernate.query.Query; import org.hibernate.query.Query;
import org.hibernate.query.spi.QueryImplementor; import org.hibernate.query.spi.QueryImplementor;
import org.hibernate.testing.orm.junit.DomainModel; import org.hibernate.testing.orm.junit.DomainModel;
import org.hibernate.testing.orm.junit.FailureExpected;
import org.hibernate.testing.orm.junit.ServiceRegistry; import org.hibernate.testing.orm.junit.ServiceRegistry;
import org.hibernate.testing.orm.junit.SessionFactory; import org.hibernate.testing.orm.junit.SessionFactory;
import org.hibernate.testing.orm.junit.SessionFactoryScope; import org.hibernate.testing.orm.junit.SessionFactoryScope;
@ -35,6 +34,7 @@ import static org.hibernate.orm.test.metamodel.mapping.SmokeTests.Gender.MALE;
* @author Andrea Boriero * @author Andrea Boriero
* @author Steve Ebersole * @author Steve Ebersole
*/ */
@SuppressWarnings("WeakerAccess")
@DomainModel( @DomainModel(
annotatedClasses = SimpleEntity.class, annotatedClasses = SimpleEntity.class,
extraQueryImportClasses = { extraQueryImportClasses = {
@ -59,6 +59,7 @@ public class SmokeTests {
public void setUp(SessionFactoryScope scope) { public void setUp(SessionFactoryScope scope) {
scope.inTransaction( scope.inTransaction(
session -> { session -> {
{
SimpleEntity simpleEntity = new SimpleEntity(); SimpleEntity simpleEntity = new SimpleEntity();
simpleEntity.setId( 1 ); simpleEntity.setId( 1 );
simpleEntity.setGender( FEMALE ); simpleEntity.setGender( FEMALE );
@ -67,6 +68,17 @@ public class SmokeTests {
simpleEntity.setComponent( new Component( "a1", "a2" ) ); simpleEntity.setComponent( new Component( "a1", "a2" ) );
session.save( simpleEntity ); session.save( simpleEntity );
} }
{
SimpleEntity simpleEntity = new SimpleEntity();
simpleEntity.setId( 2 );
simpleEntity.setGender( MALE );
simpleEntity.setName( "Andrea" );
simpleEntity.setGender2( FEMALE );
simpleEntity.setComponent( new Component( "b1", "b2" ) );
session.save( simpleEntity );
}
}
); );
} }
@ -198,6 +210,32 @@ public class SmokeTests {
); );
} }
@Test
public void testHqlQueryReuseWithDiffParameterBinds(SessionFactoryScope scope) {
scope.inTransaction(
session -> {
final QueryImplementor<Component> query = session.createQuery(
"select e.component from SimpleEntity e where e.component.attribute1 = :param",
Component.class
);
{
final Component component = query.setParameter( "param", "a1" ).uniqueResult();
assertThat( component, notNullValue() );
assertThat( component.getAttribute1(), is( "a1" ) );
assertThat( component.getAttribute2(), is( "a2" ) );
}
{
final Component component = query.setParameter( "param", "b1" ).uniqueResult();
assertThat( component, notNullValue() );
assertThat( component.getAttribute1(), is( "b1" ) );
assertThat( component.getAttribute2(), is( "b2" ) );
}
}
);
}
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
// Dynamic instantiations // Dynamic instantiations