[hibernate-commits] [hibernate/hibernate-orm] bf222c: HHH-7736 join subclass support
GitHub
noreply at github.com
Mon Jan 14 09:45:14 EST 2013
Branch: refs/heads/metamodel
Home: https://github.com/hibernate/hibernate-orm
Commit: bf222cab44f161041bdfd40d18b81c8b7b67bd8f
https://github.com/hibernate/hibernate-orm/commit/bf222cab44f161041bdfd40d18b81c8b7b67bd8f
Author: Strong Liu <stliu at hibernate.org>
Date: 2013-01-14 (Mon, 14 Jan 2013)
Changed paths:
M hibernate-core/src/main/java/org/hibernate/dialect/Dialect.java
M hibernate-core/src/main/java/org/hibernate/engine/loading/internal/CollectionLoadContext.java
M hibernate-core/src/main/java/org/hibernate/engine/spi/LoadQueryInfluencers.java
M hibernate-core/src/main/java/org/hibernate/event/internal/DefaultInitializeCollectionEventListener.java
M hibernate-core/src/main/java/org/hibernate/internal/util/collections/ArrayHelper.java
M hibernate-core/src/main/java/org/hibernate/metamodel/internal/Binder.java
M hibernate-core/src/main/java/org/hibernate/metamodel/internal/source/annotations/EntitySourceImpl.java
A hibernate-core/src/main/java/org/hibernate/metamodel/internal/source/annotations/JoinedSubclassEntitySourceImpl.java
R hibernate-core/src/main/java/org/hibernate/metamodel/internal/source/annotations/PrimaryKeyJoinColumnSourceImpl.java
M hibernate-core/src/main/java/org/hibernate/metamodel/internal/source/annotations/SecondaryTableSourceImpl.java
M hibernate-core/src/main/java/org/hibernate/metamodel/internal/source/annotations/SubclassEntitySourceImpl.java
M hibernate-core/src/main/java/org/hibernate/metamodel/internal/source/annotations/attribute/Column.java
M hibernate-core/src/main/java/org/hibernate/metamodel/internal/source/annotations/attribute/PluralAssociationAttribute.java
A hibernate-core/src/main/java/org/hibernate/metamodel/internal/source/annotations/attribute/PrimaryKeyJoinColumn.java
M hibernate-core/src/main/java/org/hibernate/metamodel/internal/source/annotations/entity/EntityClass.java
M hibernate-core/src/main/java/org/hibernate/metamodel/internal/source/annotations/entity/RootEntityClass.java
M hibernate-core/src/main/java/org/hibernate/metamodel/internal/source/annotations/util/EntityHierarchyBuilder.java
M hibernate-core/src/main/java/org/hibernate/metamodel/internal/source/hbm/HierarchyBuilder.java
A hibernate-core/src/main/java/org/hibernate/metamodel/internal/source/hbm/JoinedSubclassEntitySourceImpl.java
R hibernate-core/src/main/java/org/hibernate/metamodel/internal/source/hbm/PrimaryKeyJoinColumnSourceImpl.java
M hibernate-core/src/main/java/org/hibernate/metamodel/internal/source/hbm/SubclassEntitySourceImpl.java
M hibernate-core/src/main/java/org/hibernate/metamodel/spi/binding/EntityBinding.java
A hibernate-core/src/main/java/org/hibernate/metamodel/spi/source/JoinedSubclassEntitySource.java
M hibernate-core/src/main/java/org/hibernate/metamodel/spi/source/PluralAttributeKeySource.java
R hibernate-core/src/main/java/org/hibernate/metamodel/spi/source/PrimaryKeyJoinColumnSource.java
M hibernate-core/src/main/java/org/hibernate/metamodel/spi/source/SubclassEntitySource.java
M hibernate-core/src/main/java/org/hibernate/persister/collection/AbstractCollectionPersister.java
M hibernate-core/src/main/java/org/hibernate/persister/entity/AbstractEntityPersister.java
M hibernate-core/src/main/java/org/hibernate/persister/entity/AbstractPropertyMapping.java
M hibernate-core/src/main/java/org/hibernate/persister/entity/BasicEntityPropertyMapping.java
M hibernate-core/src/main/java/org/hibernate/persister/entity/JoinedSubclassEntityPersister.java
M hibernate-core/src/main/java/org/hibernate/tool/schema/internal/StandardTableExporter.java
A hibernate-core/src/main/java/org/hibernate/tool/schema/internal/TemporaryTableExporter.java
M hibernate-core/src/test/java/org/hibernate/test/annotations/filter/subclass/joined/JoinedSubClassTest.java
M hibernate-core/src/test/java/org/hibernate/test/hql/CriteriaHQLAlignmentTest.java
M hibernate-core/src/test/java/org/hibernate/test/hql/ScrollableCollectionFetchingTest.java
M hibernate-core/src/test/java/org/hibernate/test/hql/joinedSubclass/JoinedSubclassBulkManipTest.java
M hibernate-core/src/test/java/org/hibernate/test/idgen/identity/joinedSubClass/JoinedSubclassHierarchyWithIdentityGenerationTest.java
M hibernate-core/src/test/java/org/hibernate/test/immutable/entitywithmutablecollection/inverse/EntityWithInverseOneToManyJoinTest.java
M hibernate-core/src/test/java/org/hibernate/test/immutable/entitywithmutablecollection/inverse/VersionedEntityWithInverseOneToManyFailureExpectedTest.java
M hibernate-core/src/test/java/org/hibernate/test/immutable/entitywithmutablecollection/inverse/VersionedEntityWithInverseOneToManyJoinFailureExpectedTest.java
M hibernate-core/src/test/java/org/hibernate/test/immutable/entitywithmutablecollection/inverse/VersionedEntityWithInverseOneToManyJoinTest.java
M hibernate-core/src/test/java/org/hibernate/test/immutable/entitywithmutablecollection/noninverse/EntityWithNonInverseOneToManyJoinTest.java
M hibernate-core/src/test/java/org/hibernate/test/immutable/entitywithmutablecollection/noninverse/VersionedEntityWithNonInverseOneToManyJoinTest.java
M hibernate-core/src/test/java/org/hibernate/test/interfaceproxy/InterfaceProxyTest.java
M hibernate-core/src/test/java/org/hibernate/test/legacy/MultiTableTest.java
M hibernate-core/src/test/java/org/hibernate/test/mixed/MixedTest.java
M hibernate-core/src/test/java/org/hibernate/test/ondelete/OnDeleteTest.java
M hibernate-core/src/test/java/org/hibernate/test/onetomany/OneToManyTest.java
M hibernate-testing/src/main/java/org/hibernate/testing/junit4/FailureExpectedHandler.java
Log Message:
-----------
HHH-7736 join subclass support
Commit: a408d60636eeac4d51a52ee070fdb1700fcaca9f
https://github.com/hibernate/hibernate-orm/commit/a408d60636eeac4d51a52ee070fdb1700fcaca9f
Author: Strong Liu <stliu at hibernate.org>
Date: 2013-01-14 (Mon, 14 Jan 2013)
Changed paths:
M hibernate-core/src/main/java/org/hibernate/jpa/metamodel/internal/builder/MetamodelBuilder.java
M hibernate-core/src/test/java/org/hibernate/test/mixed/MixedTest.java
M hibernate-core/src/test/java/org/hibernate/test/tm/CMTTest.java
Log Message:
-----------
HHH-7832 map entity mode support
Compare: https://github.com/hibernate/hibernate-orm/compare/0bed7eaad926...a408d60636ee
More information about the hibernate-commits
mailing list