mirror of https://github.com/apache/openjpa.git
OPENJPA-1049: Register type alias for MappedSuperclass.
git-svn-id: https://svn.apache.org/repos/asf/openjpa/trunk@770516 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
f9fd4837b3
commit
861db8ddd0
|
@ -2802,7 +2802,7 @@ public class PCEnhancer {
|
|||
code.getstatic().setField(PRE + "FieldFlags", byte[].class);
|
||||
code.getstatic().setField(SUPER, Class.class);
|
||||
|
||||
if (_meta.isMapped())
|
||||
if (_meta.isMapped() || _meta.isAbstract())
|
||||
code.constant().setValue(_meta.getTypeAlias());
|
||||
else
|
||||
code.constant().setNull();
|
||||
|
|
|
@ -18,14 +18,21 @@
|
|||
*/
|
||||
package org.apache.openjpa.persistence.inheritance;
|
||||
|
||||
import org.apache.openjpa.persistence.test.SingleEMFTestCase;
|
||||
import org.apache.openjpa.persistence.OpenJPAPersistence;
|
||||
import org.apache.openjpa.meta.ClassMetaData;
|
||||
import org.apache.openjpa.kernel.AbstractBrokerFactory;
|
||||
import org.apache.openjpa.persistence.test.AllowFailure;
|
||||
import org.apache.openjpa.persistence.test.SingleEMFTestCase;
|
||||
|
||||
/**
|
||||
* Test that entities, mapped superclasses, and embeddables can all share
|
||||
* the same short names without any collisions.
|
||||
*
|
||||
* This test is modified to ignore conflict of alias between MappedSuperclass
|
||||
* and derived Entity. This earlier assertion is no more valid after the
|
||||
* changes introduced to allow MappedSuperclass to be used in query.
|
||||
* That feature seemed more significant than the feature asserted by this test.
|
||||
* The details of the change can be found at
|
||||
* <A HREF="https://issues.apache.org/jira/browse/OPENJPA-1049">JIRA</A>
|
||||
*
|
||||
*/
|
||||
public class TestSharedUnqualifiedClassNames
|
||||
extends SingleEMFTestCase {
|
||||
|
@ -42,7 +49,9 @@ public class TestSharedUnqualifiedClassNames
|
|||
emf.createEntityManager().close();
|
||||
}
|
||||
|
||||
public void testMappedSuperclass() {
|
||||
@AllowFailure(message="MappedSuperclass can be aliased and has higher" +
|
||||
"search order in alias if it clashes with other types's alias")
|
||||
public void testMappedSuperclass() {
|
||||
ClassMetaData meta = emf.getConfiguration()
|
||||
.getMetaDataRepositoryInstance()
|
||||
.getMetaData("SharedName1", getClass().getClassLoader(), true);
|
||||
|
|
Loading…
Reference in New Issue