Fix SimpleNaturalIdLoader#resolveIdToNaturalId()
This commit is contained in:
parent
df0479951c
commit
46857f456a
|
@ -91,13 +91,4 @@ public class SimpleNaturalIdLoader<T> extends AbstractNaturalIdLoader<T> {
|
|||
);
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public Object resolveIdToNaturalId(Object id, SharedSessionContractImplementor session) {
|
||||
final Object rawValue = super.resolveIdToNaturalId( id, session );
|
||||
assert rawValue instanceof Object[];
|
||||
|
||||
return ( (Object[]) rawValue )[0];
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
* License: GNU Lesser General Public License (LGPL), version 2.1 or later.
|
||||
* See the lgpl.txt file in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>.
|
||||
*/
|
||||
package org.hibernate.test.jpa.naturalid;
|
||||
package org.hibernate.orm.test.jpa.naturalid;
|
||||
|
||||
import jakarta.persistence.Entity;
|
||||
import jakarta.persistence.GeneratedValue;
|
|
@ -4,7 +4,7 @@
|
|||
* License: GNU Lesser General Public License (LGPL), version 2.1 or later.
|
||||
* See the lgpl.txt file in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>.
|
||||
*/
|
||||
package org.hibernate.test.jpa.naturalid;
|
||||
package org.hibernate.orm.test.jpa.naturalid;
|
||||
|
||||
import jakarta.persistence.Entity;
|
||||
import jakarta.persistence.Id;
|
|
@ -4,7 +4,7 @@
|
|||
* License: GNU Lesser General Public License (LGPL), version 2.1 or later.
|
||||
* See the lgpl.txt file in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>.
|
||||
*/
|
||||
package org.hibernate.test.jpa.naturalid;
|
||||
package org.hibernate.orm.test.jpa.naturalid;
|
||||
|
||||
import org.hibernate.Transaction;
|
||||
import org.hibernate.boot.registry.StandardServiceRegistryBuilder;
|
||||
|
@ -29,7 +29,7 @@ import static org.junit.jupiter.api.Assertions.fail;
|
|||
public class ImmutableNaturalIdTest extends AbstractJPATest {
|
||||
@Override
|
||||
protected String[] getOrmXmlFiles() {
|
||||
return new String[] { "org/hibernate/test/jpa/naturalid/User.hbm.xml" };
|
||||
return new String[] { "org/hibernate/orm/test/jpa/naturalid/User.hbm.xml" };
|
||||
}
|
||||
|
||||
@Override
|
|
@ -13,8 +13,6 @@ import org.hibernate.testing.TestForIssue;
|
|||
import org.hibernate.testing.orm.junit.SkipForDialect;
|
||||
import org.hibernate.orm.test.jpa.model.AbstractJPATest;
|
||||
|
||||
import org.hibernate.test.jpa.naturalid.ClassWithIdentityColumn;
|
||||
import org.hibernate.test.jpa.naturalid.Group;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
import static org.junit.jupiter.api.Assertions.assertNotNull;
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
This mapping illustrates use of <natural-id mutable="false"/>
|
||||
|
||||
-->
|
||||
<hibernate-mapping package="org.hibernate.test.jpa.naturalid">
|
||||
<hibernate-mapping package="org.hibernate.orm.test.jpa.naturalid">
|
||||
|
||||
<class name="User" table="IMM_NAT_ID_USER" lazy="true">
|
||||
<comment>Users may bid for or sell auction items.</comment>
|
|
@ -4,7 +4,7 @@
|
|||
* License: GNU Lesser General Public License (LGPL), version 2.1 or later.
|
||||
* See the lgpl.txt file in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>.
|
||||
*/
|
||||
package org.hibernate.test.jpa.naturalid;
|
||||
package org.hibernate.orm.test.jpa.naturalid;
|
||||
|
||||
|
||||
/**
|
Loading…
Reference in New Issue