[hibernate/hibernate-search] 6c4c18: HSEARCH-4186 Be more consistent with how we enable...
by Yoann Rodière
Branch: refs/heads/main
Home: https://github.com/hibernate/hibernate-search
Commit: 6c4c18d8113aaf9d8c2b8f47361ea727b74cdfc4
https://github.com/hibernate/hibernate-search/commit/6c4c18d8113aaf9d8c2b...
Author: Yoann Rodière <yoann(a)hibernate.org>
Date: 2021-05-06 (Thu, 06 May 2021)
Changed paths:
M integrationtest/mapper/orm/src/test/java/org/hibernate/search/integrationtest/mapper/orm/automaticindexing/localheapqueue/LocalHeapQueueAutomaticIndexingStrategyBaseIT.java
M integrationtest/mapper/orm/src/test/java/org/hibernate/search/integrationtest/mapper/orm/automaticindexing/outbox/OutboxAutomaticIndexingBridgeExplicitReindexingFunctionalIT.java
M integrationtest/mapper/orm/src/test/java/org/hibernate/search/integrationtest/mapper/orm/automaticindexing/outbox/OutboxPollingAutomaticIndexingStrategyBaseIT.java
M integrationtest/mapper/orm/src/test/java/org/hibernate/search/integrationtest/mapper/orm/automaticindexing/outbox/OutboxPollingAutomaticIndexingStrategyEdgeIT.java
M integrationtest/mapper/orm/src/test/java/org/hibernate/search/integrationtest/mapper/orm/automaticindexing/outbox/OutboxPollingAutomaticIndexingStrategyLifecycleIT.java
M integrationtest/mapper/orm/src/test/java/org/hibernate/search/integrationtest/mapper/orm/automaticindexing/outbox/OutboxPollingNoProcessingIT.java
M util/internal/integrationtest/mapper/orm/src/main/java/org/hibernate/search/util/impl/integrationtest/mapper/orm/AutomaticIndexingStrategyExpectations.java
M util/internal/integrationtest/mapper/orm/src/main/java/org/hibernate/search/util/impl/integrationtest/mapper/orm/OrmSetupHelper.java
Log Message:
-----------
HSEARCH-4186 Be more consistent with how we enable the outbox strategy in tests
Commit: f5f3be19d8a477ea67e7ac77bf8fb7cf6f5c1b9b
https://github.com/hibernate/hibernate-search/commit/f5f3be19d8a477ea67e7...
Author: Yoann Rodière <yoann(a)hibernate.org>
Date: 2021-05-06 (Thu, 06 May 2021)
Changed paths:
M integrationtest/mapper/orm/src/test/java/org/hibernate/search/integrationtest/mapper/orm/automaticindexing/bridge/AutomaticIndexingBridgeExplicitReindexingFunctionalIT.java
R integrationtest/mapper/orm/src/test/java/org/hibernate/search/integrationtest/mapper/orm/automaticindexing/outbox/OutboxAutomaticIndexingBridgeExplicitReindexingFunctionalIT.java
M integrationtest/mapper/orm/src/test/java/org/hibernate/search/integrationtest/mapper/orm/automaticindexing/outbox/OutboxPollingAutomaticIndexingStrategyBaseIT.java
M util/internal/integrationtest/mapper/orm/src/main/java/org/hibernate/search/util/impl/integrationtest/mapper/orm/OrmSetupHelper.java
Log Message:
-----------
HSEARCH-4186 Avoid duplicating AutomaticIndexingBridgeExplicitReindexingFunctionalIT for the outbox-polling strategy
Commit: b6b85516adb6476a4bba79b0ad68afc9aabc7161
https://github.com/hibernate/hibernate-search/commit/b6b85516adb6476a4bba...
Author: Yoann Rodière <yoann(a)hibernate.org>
Date: 2021-05-06 (Thu, 06 May 2021)
Changed paths:
A integrationtest/mapper/orm/src/test/java/org/hibernate/search/integrationtest/mapper/orm/automaticindexing/outbox/FilteringOutboxEventFinder.java
M integrationtest/mapper/orm/src/test/java/org/hibernate/search/integrationtest/mapper/orm/automaticindexing/outbox/OutboxPollingAutomaticIndexingStrategyLifecycleIT.java
M integrationtest/mapper/orm/src/test/java/org/hibernate/search/integrationtest/mapper/orm/automaticindexing/outbox/OutboxPollingNoProcessingIT.java
A mapper/orm/src/main/java/org/hibernate/search/mapper/orm/cfg/impl/HibernateOrmMapperImplSettings.java
M mapper/orm/src/main/java/org/hibernate/search/mapper/orm/cfg/spi/HibernateOrmMapperSpiSettings.java
A mapper/orm/src/main/java/org/hibernate/search/mapper/orm/outbox/impl/DefaultOutboxEventFinder.java
M mapper/orm/src/main/java/org/hibernate/search/mapper/orm/outbox/impl/OutboxEventBackgroundExecutor.java
A mapper/orm/src/main/java/org/hibernate/search/mapper/orm/outbox/impl/OutboxEventFinder.java
M mapper/orm/src/main/java/org/hibernate/search/mapper/orm/outbox/impl/OutboxPollingAutomaticIndexingStrategy.java
Log Message:
-----------
HSEARCH-4186 Allow tests to temporarily hide outbox events from the processor
Commit: b3236d0f207a512edc9346607350cddc2fef023d
https://github.com/hibernate/hibernate-search/commit/b3236d0f207a512edc93...
Author: Yoann Rodière <yoann(a)hibernate.org>
Date: 2021-05-06 (Thu, 06 May 2021)
Changed paths:
M integrationtest/mapper/orm/src/test/java/org/hibernate/search/integrationtest/mapper/orm/automaticindexing/outbox/CustomRoutingBridge.java
M integrationtest/mapper/orm/src/test/java/org/hibernate/search/integrationtest/mapper/orm/automaticindexing/outbox/OutboxPollingNoProcessingIT.java
M integrationtest/mapper/orm/src/test/java/org/hibernate/search/integrationtest/mapper/orm/automaticindexing/outbox/RoutedIndexedEntity.java
Log Message:
-----------
HSEARCH-4186 Simplify mapping in outbox tests
Commit: 8c88a07d0fe44ab02636fcc02d7970697652bdef
https://github.com/hibernate/hibernate-search/commit/8c88a07d0fe44ab02636...
Author: Yoann Rodière <yoann(a)hibernate.org>
Date: 2021-05-06 (Thu, 06 May 2021)
Changed paths:
M integrationtest/mapper/orm/src/test/java/org/hibernate/search/integrationtest/mapper/orm/automaticindexing/outbox/OutboxPollingNoProcessingIT.java
M integrationtest/mapper/pojo-base/src/test/java/org/hibernate/search/integrationtest/mapper/pojo/work/operations/AbstractPojoIndexingOperationIT.java
M integrationtest/mapper/pojo-base/src/test/java/org/hibernate/search/integrationtest/mapper/pojo/work/operations/PojoIndexerOperationIT.java
M integrationtest/mapper/pojo-base/src/test/java/org/hibernate/search/integrationtest/mapper/pojo/work/operations/PojoIndexingPlanOperationIT.java
M integrationtest/mapper/pojo-base/src/test/java/org/hibernate/search/integrationtest/mapper/pojo/work/operations/PojoIndexingPlanOperationNullEntityIT.java
M mapper/javabean/src/main/java/org/hibernate/search/mapper/javabean/work/SearchIndexingPlan.java
M mapper/orm/src/main/java/org/hibernate/search/mapper/orm/outbox/impl/OutboxEventBackgroundExecutor.java
M mapper/orm/src/main/java/org/hibernate/search/mapper/orm/work/SearchIndexingPlan.java
M mapper/pojo-base/src/main/java/org/hibernate/search/mapper/pojo/bridge/runtime/impl/RoutingBridgeDocumentRouter.java
M mapper/pojo-base/src/main/java/org/hibernate/search/mapper/pojo/route/DocumentRoutesDescriptor.java
M mapper/pojo-base/src/main/java/org/hibernate/search/mapper/pojo/work/spi/PojoIndexingPlan.java
Log Message:
-----------
HSEARCH-4186 Consider provided routes as a hint rather than an override
In particular when a routing bridge is defined and can be used to
retrieve the list of all relevant routes.
Commit: ab9c28f877f693a82a8dec44a860ed4dd1ca64f1
https://github.com/hibernate/hibernate-search/commit/ab9c28f877f693a82a8d...
Author: Yoann Rodière <yoann(a)hibernate.org>
Date: 2021-05-06 (Thu, 06 May 2021)
Changed paths:
R integrationtest/mapper/orm/src/test/java/org/hibernate/search/integrationtest/mapper/orm/automaticindexing/outbox/CustomRoutingBridge.java
A integrationtest/mapper/orm/src/test/java/org/hibernate/search/integrationtest/mapper/orm/automaticindexing/outbox/OutboxPollingAutomaticIndexingStrategyRoutingIT.java
M integrationtest/mapper/orm/src/test/java/org/hibernate/search/integrationtest/mapper/orm/automaticindexing/outbox/OutboxPollingNoProcessingIT.java
M integrationtest/mapper/orm/src/test/java/org/hibernate/search/integrationtest/mapper/orm/automaticindexing/outbox/RoutedIndexedEntity.java
A integrationtest/mapper/orm/src/test/java/org/hibernate/search/integrationtest/mapper/orm/automaticindexing/outbox/StatusRoutingBridge.java
Log Message:
-----------
HSEARCH-4186 Check that outbox event processing re-generates routes while taking into account event routes as "previous" routes
Compare: https://github.com/hibernate/hibernate-search/compare/58ca1c76c19f...ab9c...
3 years, 11 months
[hibernate/hibernate-orm] a7ed35: Cleanup the circular handling of fetch building of...
by Christian Beikov
Branch: refs/heads/wip/6.0
Home: https://github.com/hibernate/hibernate-orm
Commit: a7ed354af9477160f78129e2c5874cdc8167f41d
https://github.com/hibernate/hibernate-orm/commit/a7ed354af9477160f78129e...
Author: Christian Beikov <christian.beikov(a)gmail.com>
Date: 2021-05-06 (Thu, 06 May 2021)
Changed paths:
M hibernate-core/src/main/java/org/hibernate/loader/ast/internal/LoaderSelectBuilder.java
M hibernate-core/src/main/java/org/hibernate/loader/ast/internal/LoaderSqlAstCreationState.java
M hibernate-core/src/main/java/org/hibernate/metamodel/mapping/ForeignKeyDescriptor.java
M hibernate-core/src/main/java/org/hibernate/metamodel/mapping/internal/EmbeddedForeignKeyDescriptor.java
M hibernate-core/src/main/java/org/hibernate/metamodel/mapping/internal/PluralAttributeMappingImpl.java
M hibernate-core/src/main/java/org/hibernate/metamodel/mapping/internal/ToOneAttributeMapping.java
M hibernate-core/src/main/java/org/hibernate/query/results/DomainResultCreationStateImpl.java
M hibernate-core/src/main/java/org/hibernate/query/sqm/sql/BaseSqmToSqlAstConverter.java
M hibernate-core/src/main/java/org/hibernate/sql/results/graph/DomainResultCreationState.java
Log Message:
-----------
Cleanup the circular handling of fetch building of embeddable FKs. Use the target navigable path for target FK domain results
3 years, 11 months
[hibernate/hibernate-orm] c79e9e: Retain newlines between command parts in sql scrip...
by Christian Beikov
Branch: refs/heads/wip/6.0
Home: https://github.com/hibernate/hibernate-orm
Commit: c79e9effe95f21ccc0f7cbb6a72ec43cc6a5821a
https://github.com/hibernate/hibernate-orm/commit/c79e9effe95f21ccc0f7cbb...
Author: Christian Beikov <christian.beikov(a)gmail.com>
Date: 2021-05-06 (Thu, 06 May 2021)
Changed paths:
M hibernate-core/src/main/antlr/org/hibernate/grammars/importsql/SqlScriptLexer.g4
M hibernate-core/src/main/antlr/org/hibernate/grammars/importsql/SqlScriptParser.g4
M hibernate-core/src/main/java/org/hibernate/tool/schema/internal/script/MultiLineSqlScriptExtracter.java
M hibernate-core/src/main/java/org/hibernate/tool/schema/internal/script/SqlScriptVisitor.java
M hibernate-core/src/main/java/org/hibernate/tool/schema/spi/SchemaManagementToolCoordinator.java
Log Message:
-----------
Retain newlines between command parts in sql script parsing as spaces like in Hibernate 5. Also, improve the parsing efficiency by not defining rules and thus creating contexts for every token type
Commit: 9bba88b10e6982a64ff8eb8dbd9a981b90361b68
https://github.com/hibernate/hibernate-orm/commit/9bba88b10e6982a64ff8eb8...
Author: Christian Beikov <christian.beikov(a)gmail.com>
Date: 2021-05-06 (Thu, 06 May 2021)
Changed paths:
M hibernate-core/src/main/java/org/hibernate/loader/ast/internal/LoaderSelectBuilder.java
M hibernate-core/src/main/java/org/hibernate/sql/results/graph/entity/AbstractEntityResultGraphNode.java
Log Message:
-----------
Fix NPE when fetch profile returns null for a fetch by role. Don't fetch discriminator in result set mapping if entity type has not subtypes
Commit: 8e26756ccecc457efb63fd719b153e272ed23218
https://github.com/hibernate/hibernate-orm/commit/8e26756ccecc457efb63fd7...
Author: Christian Beikov <christian.beikov(a)gmail.com>
Date: 2021-05-06 (Thu, 06 May 2021)
Changed paths:
M hibernate-core/src/main/java/org/hibernate/boot/internal/InFlightMetadataCollectorImpl.java
M hibernate-core/src/main/java/org/hibernate/cfg/CopyIdentifierComponentSecondPass.java
M hibernate-core/src/main/java/org/hibernate/cfg/annotations/BasicValueBinder.java
M hibernate-core/src/main/java/org/hibernate/mapping/BasicValue.java
Log Message:
-----------
Handle basic value type bindings before the copy identifier component second pass like in Hibernate 5 to avoid issues with missing types
Commit: 71f666f0b6b2dd999377ced61b7b6e863aa79f10
https://github.com/hibernate/hibernate-orm/commit/71f666f0b6b2dd999377ced...
Author: Christian Beikov <christian.beikov(a)gmail.com>
Date: 2021-05-06 (Thu, 06 May 2021)
Changed paths:
M hibernate-core/src/main/java/org/hibernate/metamodel/internal/StandardPojoEmbeddableRepresentationStrategy.java
M hibernate-core/src/main/java/org/hibernate/metamodel/internal/StandardPojoEntityRepresentationStrategy.java
Log Message:
-----------
Use Property#getPropertyAccessStrategy which internally delegates to BuiltInPropertyAccessStrategies to handle enhanced cases
Commit: 1a24c9315539071aabf419ec1d6f4da14b48efa1
https://github.com/hibernate/hibernate-orm/commit/1a24c9315539071aabf419e...
Author: Christian Beikov <christian.beikov(a)gmail.com>
Date: 2021-05-06 (Thu, 06 May 2021)
Changed paths:
M documentation/src/test/java/org/hibernate/userguide/multitenancy/AbstractMultiTenancyTest.java
M documentation/src/test/java/org/hibernate/userguide/multitenancy/DatabaseTimeZoneMultiTenancyTest.java
M hibernate-core/src/main/java/org/hibernate/dialect/DerbyDialect.java
M hibernate-core/src/test/java/org/hibernate/bytecode/internal/bytebuddy/EnhancerWildFlyNamesTest.java
M hibernate-core/src/test/java/org/hibernate/jpa/test/criteria/literal/AbstractCriteriaLiteralHandlingModeTest.java
M hibernate-core/src/test/java/org/hibernate/jpa/test/lock/StatementIsClosedAfterALockExceptionTest.java
M hibernate-core/src/test/java/org/hibernate/jpa/test/query/NamedQueryCommentTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/actionqueue/CustomAfterCompletionTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/actionqueue/CustomBeforeCompletionTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/.gitignore
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/Company.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/CreationTimestampTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/EntityTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/Flight.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/InMemoryCreationTimestampNullableColumnTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/InMemoryUpdateTimestampTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/JoinedSubclassTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/SafeMappingTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/SecuredBindingTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/Sky.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/UpdateTimeStampInheritanceTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/UpdateTimestampTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/beanvalidation/Address.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/beanvalidation/BeanValidationAutoTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/beanvalidation/BeanValidationDisabledTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/beanvalidation/BeanValidationGroupsTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/beanvalidation/BeanValidationProvidedFactoryTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/beanvalidation/Button.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/beanvalidation/Color.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/beanvalidation/CupHolder.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/beanvalidation/DDLTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/beanvalidation/DDLWithoutCallbackTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/beanvalidation/Display.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/beanvalidation/DisplayConnector.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/beanvalidation/HibernateTraversableResolverTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/beanvalidation/MergeNotNullCollectionTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/beanvalidation/MergeNotNullCollectionUsingIdentityTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/beanvalidation/MinMax.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/beanvalidation/Music.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/beanvalidation/PowerSupply.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/beanvalidation/Rock.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/beanvalidation/Screen.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/beanvalidation/Strict.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/beanvalidation/Tv.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/beanvalidation/TvOwner.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/bytecode/Hammer.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/bytecode/ProxyBreakingTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/bytecode/Tool.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/configuration/ConfigurationTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/configuration/package-info.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/derivedidentities/e1/b/Dependent.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/derivedidentities/e1/b/DependentId.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/derivedidentities/e1/b/DerivedIdentitySimpleParentEmbeddedIdDepTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/derivedidentities/e1/b/Employee.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/derivedidentities/e1/b/ExclusiveDependent.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/derivedidentities/e1/b/specjmapid/Customer.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/derivedidentities/e1/b/specjmapid/CustomerInventory.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/derivedidentities/e1/b/specjmapid/CustomerInventoryPK.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/derivedidentities/e1/b/specjmapid/IdMapManyToOneSpecjTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/derivedidentities/e1/b/specjmapid/Item.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/derivedidentities/e1/b/specjmapid/lazy/CompositeKeyDeleteTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/derivedidentities/e1/b/specjmapid/lazy/CustomerInventoryTwo.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/derivedidentities/e1/b/specjmapid/lazy/CustomerInventoryTwoPK.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/derivedidentities/e1/b/specjmapid/lazy/CustomerTwo.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/derivedidentities/e1/b/specjmapid/lazy/hbm_order.xml
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/derivedidentities/e1/b/specjmapid/lazy/order_orm.xml
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/derivedidentities/e1/c/Dependent.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/derivedidentities/e1/c/DerivedIdentitySimpleParentEmbeddedDepTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/derivedidentities/e1/c/Employee.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/derivedidentities/e4/b/DerivedIdentitySimpleParentSimpleDepMapsIdTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/derivedidentities/e4/b/FinancialHistory.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/derivedidentities/e4/b/MedicalHistory.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/derivedidentities/e4/b/Person.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/derivedidentities/e5/c/ForeignGeneratorViaMapsIdTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/derivedidentities/e5/c/MedicalHistory.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/derivedidentities/e5/c/Person.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/duplicatedgenerator/DuplicateTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/duplicatedgenerator/Flight.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/entity/Address.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/entity/BasicHibernateAnnotationsTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/entity/Bid.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/entity/Car.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/entity/CasterStringType.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/entity/CommunityBid.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/entity/ContactDetails.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/entity/Country.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/entity/Doctor.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/entity/Drill.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/entity/FirstName.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/entity/Flight.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/entity/Forest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/entity/Forest2.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/entity/FormalLastName.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/entity/HibernateAnnotationMappingTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/entity/Java5FeaturesTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/entity/LastName.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/entity/Length.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/entity/LocalContactDetails.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/entity/MonetaryAmount.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/entity/Month.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/entity/Name.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/entity/Narrative.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/entity/NewCustomEntityMappingAnnotationsTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/entity/OverseasPhoneNumber.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/entity/Peugot.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/entity/PhoneNumber.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/entity/PhoneNumberType.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/entity/Player.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/entity/PowerDrill.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/entity/PropertyDefaultMappingsTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/entity/Race.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/entity/Ransom.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/entity/SoccerTeam.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/entity/Starred.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/entity/Tool.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/entity/Topic.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/entity/Tree.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/entity/WashingMachine.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/entity/Widget.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/entity/ZipCode.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/entity/package-info.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/entitynonentity/Cellular.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/entitynonentity/Communication.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/entitynonentity/EntityNonEntityTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/entitynonentity/GSM.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/entitynonentity/Interaction.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/entitynonentity/Phone.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/entitynonentity/Voice.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/enumerated/mapkey/MapKeyEnumeratedTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/enumerated/mapkey/SocialNetwork.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/enumerated/mapkey/SocialNetworkProfile.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/enumerated/mapkey/User.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/enumerated/mappedSuperclass/EnumeratedWithMappedSuperclassTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/enumerated/ormXml/Binding.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/enumerated/ormXml/BookWithOrmEnum.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/enumerated/ormXml/OrmXmlEnumTypeTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/fetchprofile/Country.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/fetchprofile/Customer.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/fetchprofile/Customer2.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/fetchprofile/Customer3.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/fetchprofile/Customer4.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/fetchprofile/Customer5.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/fetchprofile/Customer6.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/fetchprofile/FetchProfileTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/fetchprofile/MappedByFetchProfileFunctionTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/fetchprofile/MappedByFetchProfileUnitTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/fetchprofile/MoreFetchProfileTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/fetchprofile/Order.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/fetchprofile/SupportTickets.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/fetchprofile/mappedby/Address.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/fetchprofile/mappedby/package-info.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/fetchprofile/package-info.java
M hibernate-core/src/test/java/org/hibernate/orm/test/annotations/id/IdTest.java
M hibernate-core/src/test/java/org/hibernate/orm/test/annotations/id/sequences/IdTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/index/jpa/AbstractJPAIndexTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/index/jpa/Car.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/index/jpa/Dealer.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/index/jpa/Importer.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/index/jpa/IndexTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/index/jpa/OrmXmlIndexTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/indexcoll/eager/Atmosphere.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/indexcoll/eager/EagerIndexedCollectionTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/join/A.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/join/B.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/join/C.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/join/Cat.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/join/Death.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/join/Dog.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/join/DogPk.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/join/JoinTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/join/Life.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/join/SysGroupsOrm.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/join/SysUserOrm.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/join/namingstrategy/Life.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/join/namingstrategy/NamingStrategyJoinTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/join/namingstrategy/SimpleCat.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/join/namingstrategy/TestNamingStrategy.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/lob/locator/LobHolder.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/lob/locator/LobLocatorTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/manytomany/defaults/Category.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/manytomany/defaults/City.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/manytomany/defaults/ContactInfo.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/manytomany/defaults/Employee.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/manytomany/defaults/Item.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/manytomany/defaults/JpaCompliantManyToManyImplicitNamingTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/manytomany/defaults/KnownClient.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/manytomany/defaults/ManyToManyImplicitNamingTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/manytomany/defaults/PhoneNumber.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/manytomany/defaults/Store.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/manytoone/NotNullManyToOneTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/namingstrategy/A.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/namingstrategy/Address.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/namingstrategy/AddressEntry.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/namingstrategy/DummyNamingStrategy.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/namingstrategy/LongIdentifierNamingStrategy.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/namingstrategy/LongKeyNamingStrategyTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/namingstrategy/NamingStrategyTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/namingstrategy/Person.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/namingstrategy/charset/AbstractCharsetNamingStrategyTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/namingstrategy/charset/Iso88591CharsetNamingStrategyTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/namingstrategy/charset/Utf8CharsetNamingStrategyTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/onetoone/hhh4851/BaseEntity.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/onetoone/hhh4851/Device.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/onetoone/hhh4851/DeviceGroupConfig.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/onetoone/hhh4851/HHH4851Test.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/onetoone/hhh4851/Hardware.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/onetoone/hhh4851/ManagedDevice.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/onetoone/hhh4851/Owner.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/persister/Card.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/persister/CollectionPersister.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/persister/Deck.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/persister/EntityPersister.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/persister/PersisterTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/quote/resultsetmappings/ExplicitSqlResultSetMappingTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/quote/resultsetmappings/MyEntity.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/reflection/Administration.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/reflection/Availability.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/reflection/BusTrip.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/reflection/BusTripPk.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/reflection/Company.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/reflection/Competition.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/reflection/ElementCollectionConverterTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/reflection/JPAXMLOverriddenAnnotationReaderTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/reflection/LogListener.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/reflection/Match.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/reflection/Organization.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/reflection/OrganizationConverter.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/reflection/OtherLogListener.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/reflection/SocialSecurityMoralAccount.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/reflection/SocialSecurityNumber.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/reflection/SocialSecurityPhysicalAccount.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/reflection/TennisMatch.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/reflection/XMLContextTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/secondarytable/SecondaryTableSchemaTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/selectbeforeupdate/UpdateDetachedTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/strategy/Location.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/strategy/Storm.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/strategy/StrategyTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/subselect/Bid.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/subselect/HighestBid.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/subselect/Item.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/subselect/SubselectTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/target/Brand.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/target/Luggage.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/target/LuggageImpl.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/target/Owner.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/target/OwnerImpl.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/target/Size.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/target/SizeImpl.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/target/TargetTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/uniqueconstraint/UniqueConstraintTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/uniqueconstraint/UniqueConstraintThrowsConstraintViolationExceptionTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/uniqueconstraint/UniqueConstraintUnitTests.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/uniqueconstraint/UniqueConstraintValidationTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/various/IndexTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/various/OptimisticLockAnnotationTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/xml/ejb3/CarModel.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/xml/ejb3/Company.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/xml/ejb3/Ejb3XmlElementCollectionTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/xml/ejb3/Ejb3XmlManyToManyTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/xml/ejb3/Ejb3XmlManyToOneTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/xml/ejb3/Ejb3XmlOneToManyTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/xml/ejb3/Ejb3XmlOneToOneTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/xml/ejb3/Ejb3XmlTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/xml/ejb3/Ejb3XmlTestCase.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/xml/ejb3/Entity1.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/xml/ejb3/Entity2.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/xml/ejb3/Entity3.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/xml/ejb3/Light.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/xml/ejb3/Lighter.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/xml/ejb3/Manufacturer.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/xml/ejb3/Model.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/xml/ejb3/NonExistentOrmVersionTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/xml/ejb3/OrmVersion1SupportedTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/xml/ejb3/PreParsedOrmXmlTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/annotations/xml/ejb3/VicePresident.java
A hibernate-core/src/test/java/org/hibernate/orm/test/batch/BatchOptimisticLockingTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/batch/BatchTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/batch/BatchingBatchFailureTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/batch/BatchingInheritanceDeleteTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/batch/DataPoint.hbm.xml
A hibernate-core/src/test/java/org/hibernate/orm/test/batch/DataPoint.java
A hibernate-core/src/test/java/org/hibernate/orm/test/batch/NonBatchingBatchFailureTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/batch/OptionalSecondaryTableBatchTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/boot/cfgXml/CfgXmlParsingTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/boot/cfgXml/CfgXmlResourceNameClosingTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/boot/cfgXml/badnamespace.cfg.xml
A hibernate-core/src/test/java/org/hibernate/orm/test/boot/cfgXml/hibernate.cfg.xml
A hibernate-core/src/test/java/org/hibernate/orm/test/boot/database/qualfiedTableNaming/NamespaceTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/boot/database/qualfiedTableNaming/QualifiedTableNamingTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/boot/jaxb/hbm/internal/EntityModeConverterTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/boot/jaxb/hbm/internal/GenerationTimingConverterTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/boot/jaxb/hbm/internal/XmlBindingChecker.java
A hibernate-core/src/test/java/org/hibernate/orm/test/boot/model/relational/QualifiedNameParserTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/boot/model/source/AttributePathTest.java
M hibernate-core/src/test/java/org/hibernate/orm/test/bootstrap/binding/annotations/associationOverride/EmbeddedOverrideTests.java
M hibernate-core/src/test/java/org/hibernate/orm/test/bootstrap/binding/annotations/associationOverride/MappedSuperclassOverrideTests.java
M hibernate-core/src/test/java/org/hibernate/orm/test/bootstrap/binding/annotations/attributeOverrides/EmbeddedOverrideTests.java
M hibernate-core/src/test/java/org/hibernate/orm/test/bootstrap/binding/annotations/attributeOverrides/MappedSuperclassOverrideTests.java
M hibernate-core/src/test/java/org/hibernate/orm/test/bootstrap/binding/annotations/attributeOverrides/PluralEmbeddedOverrideTests.java
M hibernate-core/src/test/java/org/hibernate/orm/test/bootstrap/binding/annotations/attributeOverrides/TablePerClassOverrideTests.java
M hibernate-core/src/test/java/org/hibernate/orm/test/bootstrap/binding/annotations/embedded/EmbeddedTest.java
M hibernate-core/src/test/java/org/hibernate/orm/test/bootstrap/binding/annotations/override/AssociationOverrideSchemaTest.java
M hibernate-core/src/test/java/org/hibernate/orm/test/bootstrap/binding/annotations/override/AssociationOverrideTest.java
M hibernate-core/src/test/java/org/hibernate/orm/test/bootstrap/binding/annotations/override/AttributeOverrideTest.java
M hibernate-core/src/test/java/org/hibernate/orm/test/bootstrap/schema/SchemaManagementScriptTests.java
A hibernate-core/src/test/java/org/hibernate/orm/test/bytecode/Bean.hbm.xml
A hibernate-core/src/test/java/org/hibernate/orm/test/bytecode/Bean.java
A hibernate-core/src/test/java/org/hibernate/orm/test/bytecode/BeanReflectionHelper.java
A hibernate-core/src/test/java/org/hibernate/orm/test/bytecode/InvocationTargetExceptionTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/bytecode/ProxyBean.java
A hibernate-core/src/test/java/org/hibernate/orm/test/bytecode/ReflectionOptimizerTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/bytecode/enhancement/access/MixedAccessTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/bytecode/enhancement/association/InheritedAttributeAssociationTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/bytecode/enhancement/association/ManyToManyAssociationTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/bytecode/enhancement/association/OneToManyAssociationTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/bytecode/enhancement/association/OneToOneAssociationTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/bytecode/enhancement/basic/BasicEnhancementTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/bytecode/enhancement/basic/BasicSessionTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/bytecode/enhancement/basic/CrossEnhancementTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/bytecode/enhancement/basic/ExtendedAssociationManagementTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/bytecode/enhancement/basic/GenericReturnValueMappedSuperclassEnhancementTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/bytecode/enhancement/basic/InheritedTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/bytecode/enhancement/basic/MappedSuperclassTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/bytecode/enhancement/basic/ObjectAttributeMarkerInterceptor.java
A hibernate-core/src/test/java/org/hibernate/orm/test/bytecode/enhancement/detached/DetachedGetIdentifierTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/bytecode/enhancement/dirty/DirtyTrackingCollectionInDefaultFetchGroupTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/bytecode/enhancement/dirty/DirtyTrackingCollectionTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/bytecode/enhancement/dirty/DirtyTrackingNonUpdateableTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/bytecode/enhancement/dirty/DirtyTrackingPersistTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/bytecode/enhancement/dirty/DirtyTrackingTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/bytecode/enhancement/eviction/EvictionTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/bytecode/enhancement/lazy/LazyBasicFieldNotInitializedTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/bytecode/enhancement/lazy/LazyCollectionDeletedTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/bytecode/enhancement/lazy/LazyCollectionDetachTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/bytecode/enhancement/lazy/LazyInitializationWithoutInlineDirtyTrackingTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/bytecode/enhancement/lazy/LazyLoadingByEnhancerSetterTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/bytecode/enhancement/lazy/LazyOneToManyWithEqualsImplementationTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/bytecode/enhancement/lazy/LazyProxyOnEnhancedEntityTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/bytecode/enhancement/lazy/cache/LazyInCacheTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/bytecode/enhancement/lazy/cache/UninitializedAssociationsInCacheTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/bytecode/enhancement/lazy/cache/UninitializedLazyBasicCacheTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/bytecode/enhancement/lazy/proxy/LoadANonExistingEntityTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/bytecode/enhancement/lazy/proxy/MappedSuperclassWithEmbeddableTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/bytecode/enhancement/lazy/proxy/ProxyDeletionTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/bytecode/enhancement/lazy/proxy/SharingReferenceTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/bytecode/enhancement/lazy/proxy/inlinedirtychecking/DirtyCheckPrivateUnMappedCollectionTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/bytecode/enhancement/lazy/proxy/inlinedirtychecking/LoadUninitializedCollectionTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/bytecode/enhancement/lazy/proxy/inlinedirtychecking/LoadingLazyCollectionAfterQueryExecutionWithFlushModeAlwaysTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/bytecode/enhancement/merge/CompositeMergeTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/bytecode/enhancement/merge/Leaf.java
A hibernate-core/src/test/java/org/hibernate/orm/test/bytecode/enhancement/merge/MergeDetachedCascadedCollectionInEmbeddableTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/bytecode/enhancement/merge/MergeDetachedNonCascadedCollectionInEmbeddableTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/bytecode/enhancement/merge/MergeEnhancedDetachedOrphanRemovalTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/bytecode/enhancement/merge/MergeEnhancedEntityTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/bytecode/enhancement/merge/Root.java
A hibernate-core/src/test/java/org/hibernate/orm/test/bytecode/enhancement/mutable/MapStringConverter.java
A hibernate-core/src/test/java/org/hibernate/orm/test/bytecode/enhancement/mutable/MutableTypeEnhancementTestCase.java
A hibernate-core/src/test/java/org/hibernate/orm/test/bytecode/enhancement/mutable/TestEntity.java
A hibernate-core/src/test/java/org/hibernate/orm/test/bytecode/enhancement/otherentityentrycontext/OtherEntityEntryContextTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/bytecode/enhancement/pk/EmbeddedPKTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/bytecode/enhancement/tracker/CompositeOwnerTrackerTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/bytecode/enhancement/tracker/DirtyTrackerTest.java
M hibernate-core/src/test/java/org/hibernate/orm/test/cfg/CfgFilePropertyTest.java
M hibernate-core/src/test/java/org/hibernate/orm/test/connections/SuppliedConnectionTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/id/idClass/IdClassNamingStrategyTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/id/idClass/MyEntity.java
A hibernate-core/src/test/java/org/hibernate/orm/test/id/idClass/MyEntityId.java
M hibernate-core/src/test/java/org/hibernate/orm/test/insertordering/BaseInsertOrderingTest.java
M hibernate-core/src/test/java/org/hibernate/orm/test/jdbc/internal/AggressiveReleaseTest.java
M hibernate-core/src/test/java/org/hibernate/orm/test/jdbc/internal/SessionJdbcBatchTest.java
M hibernate-core/src/test/java/org/hibernate/orm/test/jpa/ejb3configuration/DisableDiscardPersistenceContextOnCloseTest.java
M hibernate-core/src/test/java/org/hibernate/orm/test/jpa/ejb3configuration/EnableDiscardPersistenceContextOnCloseTest.java
M hibernate-core/src/test/java/org/hibernate/orm/test/jpa/ejb3configuration/PreparedStatementSpyConnectionProviderSettingValueProvider.java
A hibernate-core/src/test/java/org/hibernate/orm/test/resource/common/DatabaseConnectionInfo.java
A hibernate-core/src/test/java/org/hibernate/orm/test/resource/common/SynchronizationCollectorImpl.java
A hibernate-core/src/test/java/org/hibernate/orm/test/resource/common/SynchronizationErrorImpl.java
A hibernate-core/src/test/java/org/hibernate/orm/test/resource/transaction/LegacySettingInitiatorTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/resource/transaction/SynchronizationRegistryStandardImplTests.java
A hibernate-core/src/test/java/org/hibernate/orm/test/resource/transaction/jdbc/AlreadyStartedTransactionTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/resource/transaction/jdbc/BasicJdbcTransactionTests.java
A hibernate-core/src/test/java/org/hibernate/orm/test/resource/transaction/jdbc/LogicalConnectionTestingImpl.java
A hibernate-core/src/test/java/org/hibernate/orm/test/resource/transaction/jdbc/TransactionCoordinatorOwnerTestingImpl.java
A hibernate-core/src/test/java/org/hibernate/orm/test/resource/transaction/jdbc/autocommit/AbstractSkipAutoCommitTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/resource/transaction/jdbc/autocommit/H2SkipAutoCommitTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/resource/transaction/jdbc/autocommit/MySQLSkipAutoCommitTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/resource/transaction/jdbc/autocommit/OracleSkipAutoCommitTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/resource/transaction/jdbc/autocommit/PostgreSQLSkipAutoCommitTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/resource/transaction/jdbc/autocommit/SQLServerSkipAutoCommitTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/resource/transaction/jta/AbstractBasicJtaTestScenarios.java
A hibernate-core/src/test/java/org/hibernate/orm/test/resource/transaction/jta/BasicJtaTransactionManagerTests.java
A hibernate-core/src/test/java/org/hibernate/orm/test/resource/transaction/jta/BasicJtaUserTransactionTests.java
A hibernate-core/src/test/java/org/hibernate/orm/test/resource/transaction/jta/InaccessibleJtaPlatformTests.java
A hibernate-core/src/test/java/org/hibernate/orm/test/resource/transaction/jta/JpaComplianceAlreadyStartedTransactionTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/resource/transaction/jta/JtaPlatformInaccessibleImpl.java
A hibernate-core/src/test/java/org/hibernate/orm/test/resource/transaction/jta/JtaPlatformStandardTestingImpl.java
A hibernate-core/src/test/java/org/hibernate/orm/test/resource/transaction/jta/NonJpaComplianceAlreadyStartedTransactionTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/resource/transaction/jta/TransactionCoordinatorOwnerTestingImpl.java
A hibernate-core/src/test/java/org/hibernate/orm/test/schemafilter/CatalogFilterTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/schemafilter/RecordingTarget.java
A hibernate-core/src/test/java/org/hibernate/orm/test/schemafilter/SchemaFilterTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/schemafilter/SequenceFilterTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/schematools/TestExtraPhysicalTableTypes.java
A hibernate-core/src/test/java/org/hibernate/orm/test/schemaupdate/1_Version.hbm.xml
A hibernate-core/src/test/java/org/hibernate/orm/test/schemaupdate/2_Version.hbm.xml
A hibernate-core/src/test/java/org/hibernate/orm/test/schemaupdate/3_Version.hbm.xml
A hibernate-core/src/test/java/org/hibernate/orm/test/schemaupdate/AbstractAlterTableQuoteSchemaTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/schemaupdate/AlterTableQuoteDefaultSchemaTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/schemaupdate/AlterTableQuoteSpecifiedSchemaTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/schemaupdate/ColumnNamesTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/schemaupdate/CommentGeneration.hbm.xml
A hibernate-core/src/test/java/org/hibernate/orm/test/schemaupdate/CommentGenerationTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/schemaupdate/ConnectionsReleaseTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/schemaupdate/ExportIdentifierTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/schemaupdate/Group.java
A hibernate-core/src/test/java/org/hibernate/orm/test/schemaupdate/H2DialectDataBaseToUpperTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/schemaupdate/HANASchemaMigrationTargetScriptCreationTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/schemaupdate/Hbm2ddlCreateOnlyTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/schemaupdate/IdentifierHelperTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/schemaupdate/ImplicitCompositeKeyJoinTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/schemaupdate/MigrationTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/schemaupdate/MixedFieldPropertyAnnotationTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/schemaupdate/PostgreSQLMultipleSchemaSequenceTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/schemaupdate/QuotedTableNameSchemaUpdateTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/schemaupdate/QuotedTableNameWithForeignKeysSchemaUpdateTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/schemaupdate/SchemaDropTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/schemaupdate/SchemaExportTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/schemaupdate/SchemaExportWithGlobalQuotingEnabledTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/schemaupdate/SchemaExportWithIndexAndDefaultSchema.java
A hibernate-core/src/test/java/org/hibernate/orm/test/schemaupdate/SchemaMigrationTargetScriptCreationTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/schemaupdate/SchemaMigratorHaltOnErrorTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/schemaupdate/SchemaUpdateDelimiterTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/schemaupdate/SchemaUpdateFormatterTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/schemaupdate/SchemaUpdateGeneratingOnlyScriptFileTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/schemaupdate/SchemaUpdateHaltOnErrorTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/schemaupdate/SchemaUpdateJoinColumnNoConstraintSecondaryTableTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/schemaupdate/SchemaUpdateJoinColumnNoConstraintSecondaryTablesTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/schemaupdate/SchemaUpdateJoinColumnNoConstraintTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/schemaupdate/SchemaUpdateProceedOnErrorTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/schemaupdate/SchemaUpdateSQLServerTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/schemaupdate/SchemaUpdateSchemaNameTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/schemaupdate/SchemaUpdateTableBackedSequenceTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/schemaupdate/SchemaUpdateTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/schemaupdate/SchemaUpdateWithFunctionIndexTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/schemaupdate/SchemaUpdateWithViewsTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/schemaupdate/SequenceReadingTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/schemaupdate/SqlServerQuoteSchemaTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/schemaupdate/TableCommentTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/schemaupdate/TestFkUpdating.java
A hibernate-core/src/test/java/org/hibernate/orm/test/schemaupdate/User.java
A hibernate-core/src/test/java/org/hibernate/orm/test/schemaupdate/UserGroup.hbm.xml
A hibernate-core/src/test/java/org/hibernate/orm/test/schemaupdate/Version.java
A hibernate-core/src/test/java/org/hibernate/orm/test/schemaupdate/derivedid/ColumnLengthTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/schemaupdate/foreignkeys/Employee.java
A hibernate-core/src/test/java/org/hibernate/orm/test/schemaupdate/foreignkeys/ForeignKeyDropTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/schemaupdate/foreignkeys/ForeignKeyGenerationTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/schemaupdate/foreignkeys/ForeignKeyMigrationTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/schemaupdate/foreignkeys/Group.java
A hibernate-core/src/test/java/org/hibernate/orm/test/schemaupdate/foreignkeys/JoinedInheritanceForeignKeyTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/schemaupdate/foreignkeys/Person.java
A hibernate-core/src/test/java/org/hibernate/orm/test/schemaupdate/foreignkeys/Phone.java
A hibernate-core/src/test/java/org/hibernate/orm/test/schemaupdate/foreignkeys/Project.java
A hibernate-core/src/test/java/org/hibernate/orm/test/schemaupdate/foreignkeys/SchemaUpdateWithKeywordAutoQuotingEnabledTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/schemaupdate/foreignkeys/User.java
A hibernate-core/src/test/java/org/hibernate/orm/test/schemaupdate/foreignkeys/UserSetting.java
A hibernate-core/src/test/java/org/hibernate/orm/test/schemaupdate/foreignkeys/crossschema/CrossSchemaForeignKeyGenerationTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/schemaupdate/foreignkeys/crossschema/SchemaOneEntity.java
A hibernate-core/src/test/java/org/hibernate/orm/test/schemaupdate/foreignkeys/crossschema/SchemaTwoEntity.java
A hibernate-core/src/test/java/org/hibernate/orm/test/schemaupdate/foreignkeys/definition/AbstractForeignKeyDefinitionTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/schemaupdate/foreignkeys/definition/ForeignKeyDefinitionManyToOneTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/schemaupdate/foreignkeys/definition/ForeignKeyDefinitionOneToManyJoinTableTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/schemaupdate/foreignkeys/definition/ForeignKeyDefinitionOneToOneTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/schemaupdate/foreignkeys/definition/ForeignKeyDefinitionSecondaryTableTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/schemaupdate/idbag/IdBagOwner.java
A hibernate-core/src/test/java/org/hibernate/orm/test/schemaupdate/idbag/IdBagSequenceTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/schemaupdate/idbag/Mappings.hbm.xml
A hibernate-core/src/test/java/org/hibernate/orm/test/schemaupdate/idgenerator/SequenceGenerationTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/schemaupdate/idgenerator/SequenceGeneratorsTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/schemaupdate/idgenerator/TableGeneratorTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/schemaupdate/idgenerator/TableGeneratorsTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/schemaupdate/index/ComponentIndexTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/schemaupdate/index/IndexesCreationTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/schemaupdate/inheritance/CreditCardPayment.java
A hibernate-core/src/test/java/org/hibernate/orm/test/schemaupdate/inheritance/Employee.hbm.xml
A hibernate-core/src/test/java/org/hibernate/orm/test/schemaupdate/inheritance/Employee.java
A hibernate-core/src/test/java/org/hibernate/orm/test/schemaupdate/inheritance/ForeignKeyNameTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/schemaupdate/inheritance/Manager.hbm.xml
A hibernate-core/src/test/java/org/hibernate/orm/test/schemaupdate/inheritance/Manager.java
A hibernate-core/src/test/java/org/hibernate/orm/test/schemaupdate/inheritance/Payment.hbm.xml
A hibernate-core/src/test/java/org/hibernate/orm/test/schemaupdate/inheritance/Payment.java
A hibernate-core/src/test/java/org/hibernate/orm/test/schemaupdate/inheritance/Person.hbm.xml
A hibernate-core/src/test/java/org/hibernate/orm/test/schemaupdate/inheritance/Person.java
A hibernate-core/src/test/java/org/hibernate/orm/test/schemaupdate/inheritance/hhh_x/GroupStep.java
A hibernate-core/src/test/java/org/hibernate/orm/test/schemaupdate/inheritance/hhh_x/InheritanceSchemaUpdateTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/schemaupdate/inheritance/hhh_x/Step.java
A hibernate-core/src/test/java/org/hibernate/orm/test/schemaupdate/inheritance/tableperclass/Category.java
A hibernate-core/src/test/java/org/hibernate/orm/test/schemaupdate/inheritance/tableperclass/Element.java
A hibernate-core/src/test/java/org/hibernate/orm/test/schemaupdate/inheritance/tableperclass/SchemaCreationTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/schemaupdate/manytomany/ForeignKeyNameTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/schemaupdate/manytomany/Group.java
A hibernate-core/src/test/java/org/hibernate/orm/test/schemaupdate/manytomany/User.java
A hibernate-core/src/test/java/org/hibernate/orm/test/schemaupdate/manytomany/UserGroup.hbm.xml
A hibernate-core/src/test/java/org/hibernate/orm/test/schemaupdate/mapping.hbm.xml
A hibernate-core/src/test/java/org/hibernate/orm/test/schemaupdate/mapping2.hbm.xml
A hibernate-core/src/test/java/org/hibernate/orm/test/schemaupdate/uniqueconstraint/TestEntity.hbm.xml
A hibernate-core/src/test/java/org/hibernate/orm/test/schemaupdate/uniqueconstraint/TestEntity.java
A hibernate-core/src/test/java/org/hibernate/orm/test/schemaupdate/uniqueconstraint/UniqueConstraintDropTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/schemaupdate/uniqueconstraint/UniqueConstraintGenerationTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/schemavalidation/JoinTableWithDefaultSchemaTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/schemavalidation/LongVarcharValidationTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/schemavalidation/NumericValidationTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/schemavalidation/SynonymValidationTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/schemavalidation/ViewValidationTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/schemavalidation/matchingtablenames/TableNamesWithUnderscoreTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/serialization/TypedValueSerializationTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/service/ClassLoaderServiceImplTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/service/ServiceBootstrappingTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/service/TestIntegrator.java
A hibernate-core/src/test/java/org/hibernate/orm/test/tool/schema/DropSchemaDuringJtaTxnTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/tool/schema/ExecutionOptionsTestImpl.java
A hibernate-core/src/test/java/org/hibernate/orm/test/tool/schema/GroupedSchemaValidatorImplTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/tool/schema/IndividuallySchemaValidatorImplConnectionTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/tool/schema/IndividuallySchemaValidatorImplTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/tool/schema/JtaPlatformLoggingTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/tool/schema/SchemaGenetationSciptsActionPropertyValueEndingWithSpaceTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/tool/schema/SchemaToolTransactionHandlingTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/tool/schema/TargetDatabaseImpl.java
A hibernate-core/src/test/java/org/hibernate/orm/test/tool/schema/TargetStdoutImpl.java
A hibernate-core/src/test/java/org/hibernate/orm/test/tool/schema/internal/CheckForExistingForeignKeyTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/tool/schema/scripts/MultiLineImportExtractorTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/tool/schema/scripts/MultiLineImportWithSpacesAfterTheLastStatementTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/tool/schema/scripts/MultiLineImportWithTabsAndSpacesTest.java
M hibernate-core/src/test/java/org/hibernate/orm/test/tool/schema/scripts/StatementsWithoutTerminalCharsImportFileTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/unidir/BackrefPropertyRefTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/unidir/BackrefTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/unidir/Child.java
A hibernate-core/src/test/java/org/hibernate/orm/test/unidir/Child1.java
A hibernate-core/src/test/java/org/hibernate/orm/test/unidir/Child2.java
A hibernate-core/src/test/java/org/hibernate/orm/test/unidir/Parent.java
A hibernate-core/src/test/java/org/hibernate/orm/test/unidir/Parent1.java
A hibernate-core/src/test/java/org/hibernate/orm/test/unidir/ParentChild.hbm.xml
A hibernate-core/src/test/java/org/hibernate/orm/test/unidir/ParentChildPropertyRef.hbm.xml
A hibernate-core/src/test/java/org/hibernate/orm/test/unidir/UnidirectionalOneToManyNonPkJoinColumnTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/util/BytesHelperTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/util/DdlTransactionIsolatorTestingImpl.java
A hibernate-core/src/test/java/org/hibernate/orm/test/util/JoinedIterableTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/util/PropertiesHelperTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/util/RowVersionComparatorTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/util/SchemaUtil.java
A hibernate-core/src/test/java/org/hibernate/orm/test/util/SerializableThing.java
A hibernate-core/src/test/java/org/hibernate/orm/test/util/SerializationHelperTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/util/StringHelperTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/util/dtd/Child.java
A hibernate-core/src/test/java/org/hibernate/orm/test/util/dtd/EntityResolverTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/util/dtd/Parent.hbm.xml
A hibernate-core/src/test/java/org/hibernate/orm/test/util/dtd/Parent.java
A hibernate-core/src/test/java/org/hibernate/orm/test/util/dtd/child.xml
A hibernate-core/src/test/java/org/hibernate/orm/test/util/jdbc/PreparedStatementSpyConnectionProvider.java
A hibernate-core/src/test/java/org/hibernate/orm/test/util/jdbc/TimeZoneConnectionProvider.java
M hibernate-core/src/test/java/org/hibernate/query/InClauseParameterPaddingTest.java
M hibernate-core/src/test/java/org/hibernate/query/MaxInExpressionParameterPaddingTest.java
R hibernate-core/src/test/java/org/hibernate/test/actionqueue/CustomAfterCompletionTest.java
R hibernate-core/src/test/java/org/hibernate/test/actionqueue/CustomBeforeCompletionTest.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/.gitignore
R hibernate-core/src/test/java/org/hibernate/test/annotations/Company.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/CreationTimestampTest.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/EntityTest.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/Flight.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/InMemoryCreationTimestampNullableColumnTest.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/InMemoryUpdateTimestampTest.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/JoinedSubclassTest.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/SafeMappingTest.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/SecuredBindingTest.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/Sky.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/UpdateTimeStampInheritanceTest.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/UpdateTimestampTest.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/beanvalidation/Address.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/beanvalidation/BeanValidationAutoTest.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/beanvalidation/BeanValidationDisabledTest.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/beanvalidation/BeanValidationGroupsTest.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/beanvalidation/BeanValidationProvidedFactoryTest.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/beanvalidation/Button.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/beanvalidation/Color.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/beanvalidation/CupHolder.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/beanvalidation/DDLTest.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/beanvalidation/DDLWithoutCallbackTest.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/beanvalidation/Display.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/beanvalidation/DisplayConnector.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/beanvalidation/HibernateTraversableResolverTest.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/beanvalidation/MergeNotNullCollectionTest.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/beanvalidation/MergeNotNullCollectionUsingIdentityTest.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/beanvalidation/MinMax.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/beanvalidation/Music.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/beanvalidation/PowerSupply.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/beanvalidation/Rock.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/beanvalidation/Screen.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/beanvalidation/Strict.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/beanvalidation/Tv.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/beanvalidation/TvOwner.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/bytecode/Hammer.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/bytecode/ProxyBreakingTest.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/bytecode/Tool.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/configuration/ConfigurationTest.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/configuration/package-info.java
M hibernate-core/src/test/java/org/hibernate/test/annotations/derivedidentities/bidirectional/DerivedIdentityWithBidirectionalAssociationTest.java
M hibernate-core/src/test/java/org/hibernate/test/annotations/derivedidentities/e1/a/DerivedIdentitySimpleParentIdClassDepTest.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/derivedidentities/e1/b/Dependent.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/derivedidentities/e1/b/DependentId.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/derivedidentities/e1/b/DerivedIdentitySimpleParentEmbeddedIdDepTest.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/derivedidentities/e1/b/Employee.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/derivedidentities/e1/b/ExclusiveDependent.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/derivedidentities/e1/b/specjmapid/Customer.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/derivedidentities/e1/b/specjmapid/CustomerInventory.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/derivedidentities/e1/b/specjmapid/CustomerInventoryPK.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/derivedidentities/e1/b/specjmapid/IdMapManyToOneSpecjTest.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/derivedidentities/e1/b/specjmapid/Item.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/derivedidentities/e1/b/specjmapid/lazy/CompositeKeyDeleteTest.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/derivedidentities/e1/b/specjmapid/lazy/CustomerInventoryTwo.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/derivedidentities/e1/b/specjmapid/lazy/CustomerInventoryTwoPK.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/derivedidentities/e1/b/specjmapid/lazy/CustomerTwo.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/derivedidentities/e1/b/specjmapid/lazy/hbm_order.xml
R hibernate-core/src/test/java/org/hibernate/test/annotations/derivedidentities/e1/b/specjmapid/lazy/order_orm.xml
R hibernate-core/src/test/java/org/hibernate/test/annotations/derivedidentities/e1/c/Dependent.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/derivedidentities/e1/c/DerivedIdentitySimpleParentEmbeddedDepTest.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/derivedidentities/e1/c/Employee.java
M hibernate-core/src/test/java/org/hibernate/test/annotations/derivedidentities/e2/a/DerivedIdentityIdClassParentIdClassDepTest.java
M hibernate-core/src/test/java/org/hibernate/test/annotations/derivedidentities/e2/b/DerivedIdentityIdClassParentEmbeddedIdDepTest.java
M hibernate-core/src/test/java/org/hibernate/test/annotations/derivedidentities/e3/a/DerivedIdentityEmbeddedIdParentIdClassTest.java
M hibernate-core/src/test/java/org/hibernate/test/annotations/derivedidentities/e3/b/DerivedIdentityEmbeddedIdParentEmbeddedIdDepTest.java
M hibernate-core/src/test/java/org/hibernate/test/annotations/derivedidentities/e3/b2/DerivedIdentityEmbeddedIdParentEmbeddedIdGrandparentEmbeddedIdDepTest.java
M hibernate-core/src/test/java/org/hibernate/test/annotations/derivedidentities/e3/b3/DerivedIdentityEmbeddedIdParentEmbeddedIdGrandparentEmbeddedIdColumnOverridesDepTest.java
M hibernate-core/src/test/java/org/hibernate/test/annotations/derivedidentities/e4/a/DerivedIdentitySimpleParentSimpleDepTest.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/derivedidentities/e4/b/DerivedIdentitySimpleParentSimpleDepMapsIdTest.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/derivedidentities/e4/b/FinancialHistory.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/derivedidentities/e4/b/MedicalHistory.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/derivedidentities/e4/b/Person.java
M hibernate-core/src/test/java/org/hibernate/test/annotations/derivedidentities/e4/c/DerivedIdentitySimpleParentSimpleDepSecondPassOrderingTest.java
M hibernate-core/src/test/java/org/hibernate/test/annotations/derivedidentities/e5/a/DerivedIdentityIdClassParentSameIdTypeIdClassDepTest.java
M hibernate-core/src/test/java/org/hibernate/test/annotations/derivedidentities/e5/b/DerivedIdentityIdClassParentSameIdTypeEmbeddedIdDepTest.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/derivedidentities/e5/c/ForeignGeneratorViaMapsIdTest.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/derivedidentities/e5/c/MedicalHistory.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/derivedidentities/e5/c/Person.java
M hibernate-core/src/test/java/org/hibernate/test/annotations/derivedidentities/e6/a/DerivedIdentityEmbeddedIdParentSameIdTypeIdClassDepTest.java
M hibernate-core/src/test/java/org/hibernate/test/annotations/derivedidentities/e6/b/DerivedIdentityEmbeddedIdParentSameIdTypeEmbeddedIdDepTest.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/duplicatedgenerator/DuplicateTest.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/duplicatedgenerator/Flight.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/entity/Address.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/entity/BasicHibernateAnnotationsTest.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/entity/Bid.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/entity/Car.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/entity/CasterStringType.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/entity/CommunityBid.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/entity/ContactDetails.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/entity/Country.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/entity/Doctor.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/entity/Drill.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/entity/FirstName.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/entity/Flight.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/entity/Forest.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/entity/Forest2.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/entity/FormalLastName.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/entity/HibernateAnnotationMappingTest.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/entity/Java5FeaturesTest.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/entity/LastName.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/entity/Length.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/entity/LocalContactDetails.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/entity/MonetaryAmount.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/entity/Month.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/entity/Name.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/entity/Narrative.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/entity/NewCustomEntityMappingAnnotationsTest.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/entity/OverseasPhoneNumber.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/entity/Peugot.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/entity/PhoneNumber.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/entity/PhoneNumberType.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/entity/Player.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/entity/PowerDrill.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/entity/PropertyDefaultMappingsTest.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/entity/Race.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/entity/Ransom.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/entity/SoccerTeam.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/entity/Starred.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/entity/Tool.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/entity/Topic.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/entity/Tree.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/entity/WashingMachine.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/entity/Widget.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/entity/ZipCode.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/entity/package-info.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/entitynonentity/Cellular.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/entitynonentity/Communication.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/entitynonentity/EntityNonEntityTest.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/entitynonentity/GSM.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/entitynonentity/Interaction.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/entitynonentity/Phone.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/entitynonentity/Voice.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/enumerated/mapkey/MapKeyEnumeratedTest.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/enumerated/mapkey/SocialNetwork.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/enumerated/mapkey/SocialNetworkProfile.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/enumerated/mapkey/User.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/enumerated/mappedSuperclass/EnumeratedWithMappedSuperclassTest.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/enumerated/ormXml/Binding.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/enumerated/ormXml/BookWithOrmEnum.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/enumerated/ormXml/OrmXmlEnumTypeTest.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/fetchprofile/Country.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/fetchprofile/Customer.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/fetchprofile/Customer2.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/fetchprofile/Customer3.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/fetchprofile/Customer4.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/fetchprofile/Customer5.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/fetchprofile/Customer6.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/fetchprofile/FetchProfileTest.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/fetchprofile/MappedByFetchProfileFunctionTest.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/fetchprofile/MappedByFetchProfileUnitTest.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/fetchprofile/MoreFetchProfileTest.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/fetchprofile/Order.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/fetchprofile/SupportTickets.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/fetchprofile/mappedby/Address.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/fetchprofile/mappedby/package-info.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/fetchprofile/package-info.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/index/jpa/AbstractJPAIndexTest.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/index/jpa/Car.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/index/jpa/Dealer.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/index/jpa/Importer.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/index/jpa/IndexTest.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/index/jpa/OrmXmlIndexTest.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/indexcoll/eager/Atmosphere.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/indexcoll/eager/EagerIndexedCollectionTest.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/join/A.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/join/B.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/join/C.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/join/Cat.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/join/Death.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/join/Dog.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/join/DogPk.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/join/JoinTest.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/join/Life.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/join/SysGroupsOrm.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/join/SysUserOrm.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/join/namingstrategy/Life.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/join/namingstrategy/NamingStrategyJoinTest.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/join/namingstrategy/SimpleCat.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/join/namingstrategy/TestNamingStrategy.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/lob/locator/LobHolder.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/lob/locator/LobLocatorTest.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/manytomany/defaults/Category.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/manytomany/defaults/City.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/manytomany/defaults/ContactInfo.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/manytomany/defaults/Employee.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/manytomany/defaults/Item.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/manytomany/defaults/JpaCompliantManyToManyImplicitNamingTest.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/manytomany/defaults/KnownClient.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/manytomany/defaults/ManyToManyImplicitNamingTest.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/manytomany/defaults/PhoneNumber.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/manytomany/defaults/Store.java
M hibernate-core/src/test/java/org/hibernate/test/annotations/manytoone/ManyToOneTest.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/manytoone/NotNullManyToOneTest.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/namingstrategy/A.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/namingstrategy/Address.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/namingstrategy/AddressEntry.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/namingstrategy/DummyNamingStrategy.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/namingstrategy/LongIdentifierNamingStrategy.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/namingstrategy/LongKeyNamingStrategyTest.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/namingstrategy/NamingStrategyTest.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/namingstrategy/Person.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/namingstrategy/charset/AbstractCharsetNamingStrategyTest.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/namingstrategy/charset/Iso88591CharsetNamingStrategyTest.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/namingstrategy/charset/Utf8CharsetNamingStrategyTest.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/onetoone/hhh4851/BaseEntity.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/onetoone/hhh4851/Device.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/onetoone/hhh4851/DeviceGroupConfig.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/onetoone/hhh4851/HHH4851Test.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/onetoone/hhh4851/Hardware.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/onetoone/hhh4851/ManagedDevice.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/onetoone/hhh4851/Owner.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/persister/Card.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/persister/CollectionPersister.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/persister/Deck.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/persister/EntityPersister.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/persister/PersisterTest.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/quote/resultsetmappings/ExplicitSqlResultSetMappingTest.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/quote/resultsetmappings/MyEntity.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/reflection/Administration.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/reflection/Availability.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/reflection/BusTrip.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/reflection/BusTripPk.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/reflection/Company.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/reflection/Competition.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/reflection/ElementCollectionConverterTest.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/reflection/JPAXMLOverriddenAnnotationReaderTest.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/reflection/LogListener.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/reflection/Match.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/reflection/Organization.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/reflection/OrganizationConverter.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/reflection/OtherLogListener.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/reflection/SocialSecurityMoralAccount.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/reflection/SocialSecurityNumber.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/reflection/SocialSecurityPhysicalAccount.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/reflection/TennisMatch.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/reflection/XMLContextTest.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/secondarytable/SecondaryTableSchemaTest.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/selectbeforeupdate/UpdateDetachedTest.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/strategy/Location.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/strategy/Storm.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/strategy/StrategyTest.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/subselect/Bid.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/subselect/HighestBid.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/subselect/Item.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/subselect/SubselectTest.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/target/Brand.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/target/Luggage.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/target/LuggageImpl.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/target/Owner.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/target/OwnerImpl.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/target/Size.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/target/SizeImpl.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/target/TargetTest.java
M hibernate-core/src/test/java/org/hibernate/test/annotations/uniqueconstraint/MySQLDropConstraintThrowsExceptionTest.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/uniqueconstraint/UniqueConstraintTest.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/uniqueconstraint/UniqueConstraintThrowsConstraintViolationExceptionTest.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/uniqueconstraint/UniqueConstraintUnitTests.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/uniqueconstraint/UniqueConstraintValidationTest.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/various/IndexTest.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/various/OptimisticLockAnnotationTest.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/xml/ejb3/CarModel.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/xml/ejb3/Company.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/xml/ejb3/Ejb3XmlElementCollectionTest.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/xml/ejb3/Ejb3XmlManyToManyTest.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/xml/ejb3/Ejb3XmlManyToOneTest.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/xml/ejb3/Ejb3XmlOneToManyTest.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/xml/ejb3/Ejb3XmlOneToOneTest.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/xml/ejb3/Ejb3XmlTest.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/xml/ejb3/Ejb3XmlTestCase.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/xml/ejb3/Entity1.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/xml/ejb3/Entity2.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/xml/ejb3/Entity3.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/xml/ejb3/Light.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/xml/ejb3/Lighter.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/xml/ejb3/Manufacturer.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/xml/ejb3/Model.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/xml/ejb3/NonExistentOrmVersionTest.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/xml/ejb3/OrmVersion1SupportedTest.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/xml/ejb3/PreParsedOrmXmlTest.java
R hibernate-core/src/test/java/org/hibernate/test/annotations/xml/ejb3/VicePresident.java
R hibernate-core/src/test/java/org/hibernate/test/batch/BatchOptimisticLockingTest.java
R hibernate-core/src/test/java/org/hibernate/test/batch/BatchTest.java
R hibernate-core/src/test/java/org/hibernate/test/batch/BatchingBatchFailureTest.java
R hibernate-core/src/test/java/org/hibernate/test/batch/BatchingInheritanceDeleteTest.java
R hibernate-core/src/test/java/org/hibernate/test/batch/DataPoint.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/batch/DataPoint.java
R hibernate-core/src/test/java/org/hibernate/test/batch/NonBatchingBatchFailureTest.java
R hibernate-core/src/test/java/org/hibernate/test/batch/OptionalSecondaryTableBatchTest.java
R hibernate-core/src/test/java/org/hibernate/test/boot/cfgXml/CfgXmlParsingTest.java
R hibernate-core/src/test/java/org/hibernate/test/boot/cfgXml/CfgXmlResourceNameClosingTest.java
R hibernate-core/src/test/java/org/hibernate/test/boot/cfgXml/badnamespace.cfg.xml
R hibernate-core/src/test/java/org/hibernate/test/boot/cfgXml/hibernate.cfg.xml
R hibernate-core/src/test/java/org/hibernate/test/boot/database/qualfiedTableNaming/NamespaceTest.java
R hibernate-core/src/test/java/org/hibernate/test/boot/database/qualfiedTableNaming/QualifiedTableNamingTest.java
R hibernate-core/src/test/java/org/hibernate/test/boot/jaxb/hbm/internal/EntityModeConverterTest.java
R hibernate-core/src/test/java/org/hibernate/test/boot/jaxb/hbm/internal/GenerationTimingConverterTest.java
R hibernate-core/src/test/java/org/hibernate/test/boot/jaxb/hbm/internal/XmlBindingChecker.java
R hibernate-core/src/test/java/org/hibernate/test/boot/model/relational/QualifiedNameParserTest.java
R hibernate-core/src/test/java/org/hibernate/test/boot/model/source/AttributePathTest.java
R hibernate-core/src/test/java/org/hibernate/test/bytecode/Bean.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/bytecode/Bean.java
R hibernate-core/src/test/java/org/hibernate/test/bytecode/BeanReflectionHelper.java
R hibernate-core/src/test/java/org/hibernate/test/bytecode/InvocationTargetExceptionTest.java
R hibernate-core/src/test/java/org/hibernate/test/bytecode/ProxyBean.java
R hibernate-core/src/test/java/org/hibernate/test/bytecode/ReflectionOptimizerTest.java
R hibernate-core/src/test/java/org/hibernate/test/bytecode/enhancement/access/MixedAccessTest.java
R hibernate-core/src/test/java/org/hibernate/test/bytecode/enhancement/association/InheritedAttributeAssociationTest.java
R hibernate-core/src/test/java/org/hibernate/test/bytecode/enhancement/association/ManyToManyAssociationTest.java
R hibernate-core/src/test/java/org/hibernate/test/bytecode/enhancement/association/OneToManyAssociationTest.java
R hibernate-core/src/test/java/org/hibernate/test/bytecode/enhancement/association/OneToOneAssociationTest.java
R hibernate-core/src/test/java/org/hibernate/test/bytecode/enhancement/basic/BasicEnhancementTest.java
R hibernate-core/src/test/java/org/hibernate/test/bytecode/enhancement/basic/BasicSessionTest.java
R hibernate-core/src/test/java/org/hibernate/test/bytecode/enhancement/basic/CrossEnhancementTest.java
R hibernate-core/src/test/java/org/hibernate/test/bytecode/enhancement/basic/ExtendedAssociationManagementTest.java
R hibernate-core/src/test/java/org/hibernate/test/bytecode/enhancement/basic/GenericReturnValueMappedSuperclassEnhancementTest.java
R hibernate-core/src/test/java/org/hibernate/test/bytecode/enhancement/basic/InheritedTest.java
R hibernate-core/src/test/java/org/hibernate/test/bytecode/enhancement/basic/MappedSuperclassTest.java
R hibernate-core/src/test/java/org/hibernate/test/bytecode/enhancement/basic/ObjectAttributeMarkerInterceptor.java
R hibernate-core/src/test/java/org/hibernate/test/bytecode/enhancement/detached/DetachedGetIdentifierTest.java
R hibernate-core/src/test/java/org/hibernate/test/bytecode/enhancement/dirty/DirtyTrackingCollectionInDefaultFetchGroupTest.java
R hibernate-core/src/test/java/org/hibernate/test/bytecode/enhancement/dirty/DirtyTrackingCollectionTest.java
R hibernate-core/src/test/java/org/hibernate/test/bytecode/enhancement/dirty/DirtyTrackingNonUpdateableTest.java
R hibernate-core/src/test/java/org/hibernate/test/bytecode/enhancement/dirty/DirtyTrackingPersistTest.java
R hibernate-core/src/test/java/org/hibernate/test/bytecode/enhancement/dirty/DirtyTrackingTest.java
R hibernate-core/src/test/java/org/hibernate/test/bytecode/enhancement/eviction/EvictionTest.java
R hibernate-core/src/test/java/org/hibernate/test/bytecode/enhancement/lazy/LazyBasicFieldNotInitializedTest.java
R hibernate-core/src/test/java/org/hibernate/test/bytecode/enhancement/lazy/LazyCollectionDeletedTest.java
R hibernate-core/src/test/java/org/hibernate/test/bytecode/enhancement/lazy/LazyCollectionDetachTest.java
R hibernate-core/src/test/java/org/hibernate/test/bytecode/enhancement/lazy/LazyInitializationWithoutInlineDirtyTrackingTest.java
R hibernate-core/src/test/java/org/hibernate/test/bytecode/enhancement/lazy/LazyLoadingByEnhancerSetterTest.java
R hibernate-core/src/test/java/org/hibernate/test/bytecode/enhancement/lazy/LazyOneToManyWithEqualsImplementationTest.java
R hibernate-core/src/test/java/org/hibernate/test/bytecode/enhancement/lazy/LazyProxyOnEnhancedEntityTest.java
R hibernate-core/src/test/java/org/hibernate/test/bytecode/enhancement/lazy/cache/LazyInCacheTest.java
R hibernate-core/src/test/java/org/hibernate/test/bytecode/enhancement/lazy/cache/UninitializedAssociationsInCacheTest.java
R hibernate-core/src/test/java/org/hibernate/test/bytecode/enhancement/lazy/cache/UninitializedLazyBasicCacheTest.java
R hibernate-core/src/test/java/org/hibernate/test/bytecode/enhancement/lazy/proxy/LoadANonExistingEntityTest.java
R hibernate-core/src/test/java/org/hibernate/test/bytecode/enhancement/lazy/proxy/MappedSuperclassWithEmbeddableTest.java
R hibernate-core/src/test/java/org/hibernate/test/bytecode/enhancement/lazy/proxy/ProxyDeletionTest.java
R hibernate-core/src/test/java/org/hibernate/test/bytecode/enhancement/lazy/proxy/SharingReferenceTest.java
R hibernate-core/src/test/java/org/hibernate/test/bytecode/enhancement/lazy/proxy/inlinedirtychecking/DirtyCheckPrivateUnMappedCollectionTest.java
R hibernate-core/src/test/java/org/hibernate/test/bytecode/enhancement/lazy/proxy/inlinedirtychecking/LoadUninitializedCollectionTest.java
R hibernate-core/src/test/java/org/hibernate/test/bytecode/enhancement/lazy/proxy/inlinedirtychecking/LoadingLazyCollectionAfterQueryExecutionWithFlushModeAlwaysTest.java
R hibernate-core/src/test/java/org/hibernate/test/bytecode/enhancement/merge/CompositeMergeTest.java
R hibernate-core/src/test/java/org/hibernate/test/bytecode/enhancement/merge/Leaf.java
R hibernate-core/src/test/java/org/hibernate/test/bytecode/enhancement/merge/MergeDetachedCascadedCollectionInEmbeddableTest.java
R hibernate-core/src/test/java/org/hibernate/test/bytecode/enhancement/merge/MergeDetachedNonCascadedCollectionInEmbeddableTest.java
R hibernate-core/src/test/java/org/hibernate/test/bytecode/enhancement/merge/MergeEnhancedDetachedOrphanRemovalTest.java
R hibernate-core/src/test/java/org/hibernate/test/bytecode/enhancement/merge/MergeEnhancedEntityTest.java
R hibernate-core/src/test/java/org/hibernate/test/bytecode/enhancement/merge/Root.java
R hibernate-core/src/test/java/org/hibernate/test/bytecode/enhancement/mutable/MapStringConverter.java
R hibernate-core/src/test/java/org/hibernate/test/bytecode/enhancement/mutable/MutableTypeEnhancementTestCase.java
R hibernate-core/src/test/java/org/hibernate/test/bytecode/enhancement/mutable/TestEntity.java
M hibernate-core/src/test/java/org/hibernate/test/bytecode/enhancement/ondemandload/OnDemandLoadTest.java
R hibernate-core/src/test/java/org/hibernate/test/bytecode/enhancement/otherentityentrycontext/OtherEntityEntryContextTest.java
R hibernate-core/src/test/java/org/hibernate/test/bytecode/enhancement/pk/EmbeddedPKTest.java
R hibernate-core/src/test/java/org/hibernate/test/bytecode/enhancement/tracker/CompositeOwnerTrackerTest.java
R hibernate-core/src/test/java/org/hibernate/test/bytecode/enhancement/tracker/DirtyTrackerTest.java
R hibernate-core/src/test/java/org/hibernate/test/id/idClass/IdClassNamingStrategyTest.java
R hibernate-core/src/test/java/org/hibernate/test/id/idClass/MyEntity.java
R hibernate-core/src/test/java/org/hibernate/test/id/idClass/MyEntityId.java
M hibernate-core/src/test/java/org/hibernate/test/multitenancy/discriminator/DiscriminatorMultiTenancyTest.java
M hibernate-core/src/test/java/org/hibernate/test/multitenancy/schema/AbstractSchemaBasedMultiTenancyTest.java
M hibernate-core/src/test/java/org/hibernate/test/querytimeout/QueryTimeOutTest.java
M hibernate-core/src/test/java/org/hibernate/test/quote/TableGeneratorQuotingTest.java
R hibernate-core/src/test/java/org/hibernate/test/resource/common/DatabaseConnectionInfo.java
R hibernate-core/src/test/java/org/hibernate/test/resource/common/SynchronizationCollectorImpl.java
R hibernate-core/src/test/java/org/hibernate/test/resource/common/SynchronizationErrorImpl.java
R hibernate-core/src/test/java/org/hibernate/test/resource/transaction/LegacySettingInitiatorTest.java
R hibernate-core/src/test/java/org/hibernate/test/resource/transaction/SynchronizationRegistryStandardImplTests.java
R hibernate-core/src/test/java/org/hibernate/test/resource/transaction/jdbc/AlreadyStartedTransactionTest.java
R hibernate-core/src/test/java/org/hibernate/test/resource/transaction/jdbc/BasicJdbcTransactionTests.java
R hibernate-core/src/test/java/org/hibernate/test/resource/transaction/jdbc/LogicalConnectionTestingImpl.java
R hibernate-core/src/test/java/org/hibernate/test/resource/transaction/jdbc/TransactionCoordinatorOwnerTestingImpl.java
R hibernate-core/src/test/java/org/hibernate/test/resource/transaction/jdbc/autocommit/AbstractSkipAutoCommitTest.java
R hibernate-core/src/test/java/org/hibernate/test/resource/transaction/jdbc/autocommit/H2SkipAutoCommitTest.java
R hibernate-core/src/test/java/org/hibernate/test/resource/transaction/jdbc/autocommit/MySQLSkipAutoCommitTest.java
R hibernate-core/src/test/java/org/hibernate/test/resource/transaction/jdbc/autocommit/OracleSkipAutoCommitTest.java
R hibernate-core/src/test/java/org/hibernate/test/resource/transaction/jdbc/autocommit/PostgreSQLSkipAutoCommitTest.java
R hibernate-core/src/test/java/org/hibernate/test/resource/transaction/jdbc/autocommit/SQLServerSkipAutoCommitTest.java
R hibernate-core/src/test/java/org/hibernate/test/resource/transaction/jta/AbstractBasicJtaTestScenarios.java
R hibernate-core/src/test/java/org/hibernate/test/resource/transaction/jta/BasicJtaTransactionManagerTests.java
R hibernate-core/src/test/java/org/hibernate/test/resource/transaction/jta/BasicJtaUserTransactionTests.java
R hibernate-core/src/test/java/org/hibernate/test/resource/transaction/jta/InaccessibleJtaPlatformTests.java
R hibernate-core/src/test/java/org/hibernate/test/resource/transaction/jta/JpaComplianceAlreadyStartedTransactionTest.java
R hibernate-core/src/test/java/org/hibernate/test/resource/transaction/jta/JtaPlatformInaccessibleImpl.java
R hibernate-core/src/test/java/org/hibernate/test/resource/transaction/jta/JtaPlatformStandardTestingImpl.java
R hibernate-core/src/test/java/org/hibernate/test/resource/transaction/jta/NonJpaComplianceAlreadyStartedTransactionTest.java
R hibernate-core/src/test/java/org/hibernate/test/resource/transaction/jta/TransactionCoordinatorOwnerTestingImpl.java
R hibernate-core/src/test/java/org/hibernate/test/schemafilter/CatalogFilterTest.java
R hibernate-core/src/test/java/org/hibernate/test/schemafilter/RecordingTarget.java
R hibernate-core/src/test/java/org/hibernate/test/schemafilter/SchemaFilterTest.java
R hibernate-core/src/test/java/org/hibernate/test/schemafilter/SequenceFilterTest.java
R hibernate-core/src/test/java/org/hibernate/test/schematools/TestExtraPhysicalTableTypes.java
R hibernate-core/src/test/java/org/hibernate/test/schemaupdate/1_Version.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/schemaupdate/2_Version.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/schemaupdate/3_Version.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/schemaupdate/AbstractAlterTableQuoteSchemaTest.java
R hibernate-core/src/test/java/org/hibernate/test/schemaupdate/AlterTableQuoteDefaultSchemaTest.java
R hibernate-core/src/test/java/org/hibernate/test/schemaupdate/AlterTableQuoteSpecifiedSchemaTest.java
R hibernate-core/src/test/java/org/hibernate/test/schemaupdate/ColumnNamesTest.java
R hibernate-core/src/test/java/org/hibernate/test/schemaupdate/CommentGeneration.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/schemaupdate/CommentGenerationTest.java
R hibernate-core/src/test/java/org/hibernate/test/schemaupdate/ConnectionsReleaseTest.java
R hibernate-core/src/test/java/org/hibernate/test/schemaupdate/ExportIdentifierTest.java
R hibernate-core/src/test/java/org/hibernate/test/schemaupdate/Group.java
R hibernate-core/src/test/java/org/hibernate/test/schemaupdate/H2DialectDataBaseToUpperTest.java
R hibernate-core/src/test/java/org/hibernate/test/schemaupdate/HANASchemaMigrationTargetScriptCreationTest.java
R hibernate-core/src/test/java/org/hibernate/test/schemaupdate/Hbm2ddlCreateOnlyTest.java
R hibernate-core/src/test/java/org/hibernate/test/schemaupdate/IdentifierHelperTest.java
R hibernate-core/src/test/java/org/hibernate/test/schemaupdate/ImplicitCompositeKeyJoinTest.java
R hibernate-core/src/test/java/org/hibernate/test/schemaupdate/MigrationTest.java
R hibernate-core/src/test/java/org/hibernate/test/schemaupdate/MixedFieldPropertyAnnotationTest.java
R hibernate-core/src/test/java/org/hibernate/test/schemaupdate/PostgreSQLMultipleSchemaSequenceTest.java
R hibernate-core/src/test/java/org/hibernate/test/schemaupdate/QuotedTableNameSchemaUpdateTest.java
R hibernate-core/src/test/java/org/hibernate/test/schemaupdate/QuotedTableNameWithForeignKeysSchemaUpdateTest.java
R hibernate-core/src/test/java/org/hibernate/test/schemaupdate/SchemaDropTest.java
R hibernate-core/src/test/java/org/hibernate/test/schemaupdate/SchemaExportTest.java
R hibernate-core/src/test/java/org/hibernate/test/schemaupdate/SchemaExportWithGlobalQuotingEnabledTest.java
R hibernate-core/src/test/java/org/hibernate/test/schemaupdate/SchemaExportWithIndexAndDefaultSchema.java
R hibernate-core/src/test/java/org/hibernate/test/schemaupdate/SchemaMigrationTargetScriptCreationTest.java
R hibernate-core/src/test/java/org/hibernate/test/schemaupdate/SchemaMigratorHaltOnErrorTest.java
R hibernate-core/src/test/java/org/hibernate/test/schemaupdate/SchemaUpdateDelimiterTest.java
R hibernate-core/src/test/java/org/hibernate/test/schemaupdate/SchemaUpdateFormatterTest.java
R hibernate-core/src/test/java/org/hibernate/test/schemaupdate/SchemaUpdateGeneratingOnlyScriptFileTest.java
R hibernate-core/src/test/java/org/hibernate/test/schemaupdate/SchemaUpdateHaltOnErrorTest.java
R hibernate-core/src/test/java/org/hibernate/test/schemaupdate/SchemaUpdateJoinColumnNoConstraintSecondaryTableTest.java
R hibernate-core/src/test/java/org/hibernate/test/schemaupdate/SchemaUpdateJoinColumnNoConstraintSecondaryTablesTest.java
R hibernate-core/src/test/java/org/hibernate/test/schemaupdate/SchemaUpdateJoinColumnNoConstraintTest.java
R hibernate-core/src/test/java/org/hibernate/test/schemaupdate/SchemaUpdateProceedOnErrorTest.java
R hibernate-core/src/test/java/org/hibernate/test/schemaupdate/SchemaUpdateSQLServerTest.java
R hibernate-core/src/test/java/org/hibernate/test/schemaupdate/SchemaUpdateSchemaNameTest.java
R hibernate-core/src/test/java/org/hibernate/test/schemaupdate/SchemaUpdateTableBackedSequenceTest.java
R hibernate-core/src/test/java/org/hibernate/test/schemaupdate/SchemaUpdateTest.java
R hibernate-core/src/test/java/org/hibernate/test/schemaupdate/SchemaUpdateWithFunctionIndexTest.java
R hibernate-core/src/test/java/org/hibernate/test/schemaupdate/SchemaUpdateWithViewsTest.java
R hibernate-core/src/test/java/org/hibernate/test/schemaupdate/SequenceReadingTest.java
R hibernate-core/src/test/java/org/hibernate/test/schemaupdate/SqlServerQuoteSchemaTest.java
R hibernate-core/src/test/java/org/hibernate/test/schemaupdate/TableCommentTest.java
R hibernate-core/src/test/java/org/hibernate/test/schemaupdate/TestFkUpdating.java
R hibernate-core/src/test/java/org/hibernate/test/schemaupdate/User.java
R hibernate-core/src/test/java/org/hibernate/test/schemaupdate/UserGroup.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/schemaupdate/Version.java
R hibernate-core/src/test/java/org/hibernate/test/schemaupdate/derivedid/ColumnLengthTest.java
R hibernate-core/src/test/java/org/hibernate/test/schemaupdate/foreignkeys/Employee.java
R hibernate-core/src/test/java/org/hibernate/test/schemaupdate/foreignkeys/ForeignKeyDropTest.java
R hibernate-core/src/test/java/org/hibernate/test/schemaupdate/foreignkeys/ForeignKeyGenerationTest.java
R hibernate-core/src/test/java/org/hibernate/test/schemaupdate/foreignkeys/ForeignKeyMigrationTest.java
R hibernate-core/src/test/java/org/hibernate/test/schemaupdate/foreignkeys/Group.java
R hibernate-core/src/test/java/org/hibernate/test/schemaupdate/foreignkeys/JoinedInheritanceForeignKeyTest.java
R hibernate-core/src/test/java/org/hibernate/test/schemaupdate/foreignkeys/Person.java
R hibernate-core/src/test/java/org/hibernate/test/schemaupdate/foreignkeys/Phone.java
R hibernate-core/src/test/java/org/hibernate/test/schemaupdate/foreignkeys/Project.java
R hibernate-core/src/test/java/org/hibernate/test/schemaupdate/foreignkeys/SchemaUpdateWithKeywordAutoQuotingEnabledTest.java
R hibernate-core/src/test/java/org/hibernate/test/schemaupdate/foreignkeys/User.java
R hibernate-core/src/test/java/org/hibernate/test/schemaupdate/foreignkeys/UserSetting.java
R hibernate-core/src/test/java/org/hibernate/test/schemaupdate/foreignkeys/crossschema/CrossSchemaForeignKeyGenerationTest.java
R hibernate-core/src/test/java/org/hibernate/test/schemaupdate/foreignkeys/crossschema/SchemaOneEntity.java
R hibernate-core/src/test/java/org/hibernate/test/schemaupdate/foreignkeys/crossschema/SchemaTwoEntity.java
R hibernate-core/src/test/java/org/hibernate/test/schemaupdate/foreignkeys/definition/AbstractForeignKeyDefinitionTest.java
R hibernate-core/src/test/java/org/hibernate/test/schemaupdate/foreignkeys/definition/ForeignKeyDefinitionManyToOneTest.java
R hibernate-core/src/test/java/org/hibernate/test/schemaupdate/foreignkeys/definition/ForeignKeyDefinitionOneToManyJoinTableTest.java
R hibernate-core/src/test/java/org/hibernate/test/schemaupdate/foreignkeys/definition/ForeignKeyDefinitionOneToOneTest.java
R hibernate-core/src/test/java/org/hibernate/test/schemaupdate/foreignkeys/definition/ForeignKeyDefinitionSecondaryTableTest.java
R hibernate-core/src/test/java/org/hibernate/test/schemaupdate/idbag/IdBagOwner.java
R hibernate-core/src/test/java/org/hibernate/test/schemaupdate/idbag/IdBagSequenceTest.java
R hibernate-core/src/test/java/org/hibernate/test/schemaupdate/idbag/Mappings.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/schemaupdate/idgenerator/SequenceGenerationTest.java
R hibernate-core/src/test/java/org/hibernate/test/schemaupdate/idgenerator/SequenceGeneratorsTest.java
R hibernate-core/src/test/java/org/hibernate/test/schemaupdate/idgenerator/TableGeneratorTest.java
R hibernate-core/src/test/java/org/hibernate/test/schemaupdate/idgenerator/TableGeneratorsTest.java
R hibernate-core/src/test/java/org/hibernate/test/schemaupdate/index/ComponentIndexTest.java
R hibernate-core/src/test/java/org/hibernate/test/schemaupdate/index/IndexesCreationTest.java
R hibernate-core/src/test/java/org/hibernate/test/schemaupdate/inheritance/CreditCardPayment.java
R hibernate-core/src/test/java/org/hibernate/test/schemaupdate/inheritance/Employee.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/schemaupdate/inheritance/Employee.java
R hibernate-core/src/test/java/org/hibernate/test/schemaupdate/inheritance/ForeignKeyNameTest.java
R hibernate-core/src/test/java/org/hibernate/test/schemaupdate/inheritance/Manager.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/schemaupdate/inheritance/Manager.java
R hibernate-core/src/test/java/org/hibernate/test/schemaupdate/inheritance/Payment.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/schemaupdate/inheritance/Payment.java
R hibernate-core/src/test/java/org/hibernate/test/schemaupdate/inheritance/Person.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/schemaupdate/inheritance/Person.java
R hibernate-core/src/test/java/org/hibernate/test/schemaupdate/inheritance/hhh_x/GroupStep.java
R hibernate-core/src/test/java/org/hibernate/test/schemaupdate/inheritance/hhh_x/InheritanceSchemaUpdateTest.java
R hibernate-core/src/test/java/org/hibernate/test/schemaupdate/inheritance/hhh_x/Step.java
R hibernate-core/src/test/java/org/hibernate/test/schemaupdate/inheritance/tableperclass/Category.java
R hibernate-core/src/test/java/org/hibernate/test/schemaupdate/inheritance/tableperclass/Element.java
R hibernate-core/src/test/java/org/hibernate/test/schemaupdate/inheritance/tableperclass/SchemaCreationTest.java
R hibernate-core/src/test/java/org/hibernate/test/schemaupdate/manytomany/ForeignKeyNameTest.java
R hibernate-core/src/test/java/org/hibernate/test/schemaupdate/manytomany/Group.java
R hibernate-core/src/test/java/org/hibernate/test/schemaupdate/manytomany/User.java
R hibernate-core/src/test/java/org/hibernate/test/schemaupdate/manytomany/UserGroup.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/schemaupdate/mapping.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/schemaupdate/mapping2.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/schemaupdate/uniqueconstraint/TestEntity.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/schemaupdate/uniqueconstraint/TestEntity.java
R hibernate-core/src/test/java/org/hibernate/test/schemaupdate/uniqueconstraint/UniqueConstraintDropTest.java
R hibernate-core/src/test/java/org/hibernate/test/schemaupdate/uniqueconstraint/UniqueConstraintGenerationTest.java
R hibernate-core/src/test/java/org/hibernate/test/schemavalidation/JoinTableWithDefaultSchemaTest.java
R hibernate-core/src/test/java/org/hibernate/test/schemavalidation/LongVarcharValidationTest.java
R hibernate-core/src/test/java/org/hibernate/test/schemavalidation/NumericValidationTest.java
R hibernate-core/src/test/java/org/hibernate/test/schemavalidation/SynonymValidationTest.java
R hibernate-core/src/test/java/org/hibernate/test/schemavalidation/ViewValidationTest.java
R hibernate-core/src/test/java/org/hibernate/test/schemavalidation/matchingtablenames/TableNamesWithUnderscoreTest.java
R hibernate-core/src/test/java/org/hibernate/test/serialization/TypedValueSerializationTest.java
R hibernate-core/src/test/java/org/hibernate/test/service/ClassLoaderServiceImplTest.java
R hibernate-core/src/test/java/org/hibernate/test/service/ServiceBootstrappingTest.java
R hibernate-core/src/test/java/org/hibernate/test/service/TestIntegrator.java
M hibernate-core/src/test/java/org/hibernate/test/timestamp/JdbcTimeCustomTimeZoneTest.java
M hibernate-core/src/test/java/org/hibernate/test/timestamp/JdbcTimeDefaultTimeZoneTest.java
M hibernate-core/src/test/java/org/hibernate/test/timestamp/JdbcTimestampCustomSessionLevelTimeZoneTest.java
M hibernate-core/src/test/java/org/hibernate/test/timestamp/JdbcTimestampCustomTimeZoneTest.java
M hibernate-core/src/test/java/org/hibernate/test/timestamp/JdbcTimestampDefaultTimeZoneTest.java
M hibernate-core/src/test/java/org/hibernate/test/timestamp/JdbcTimestampUTCTimeZoneTest.java
M hibernate-core/src/test/java/org/hibernate/test/timestamp/JdbcTimestampWithDefaultUTCTimeZoneTest.java
M hibernate-core/src/test/java/org/hibernate/test/timestamp/JdbcTimestampWithoutUTCTimeZoneTest.java
M hibernate-core/src/test/java/org/hibernate/test/tm/JtaBeforeCompletionFailureTest.java
R hibernate-core/src/test/java/org/hibernate/test/tool/schema/DropSchemaDuringJtaTxnTest.java
R hibernate-core/src/test/java/org/hibernate/test/tool/schema/ExecutionOptionsTestImpl.java
R hibernate-core/src/test/java/org/hibernate/test/tool/schema/GroupedSchemaValidatorImplTest.java
R hibernate-core/src/test/java/org/hibernate/test/tool/schema/IndividuallySchemaValidatorImplConnectionTest.java
R hibernate-core/src/test/java/org/hibernate/test/tool/schema/IndividuallySchemaValidatorImplTest.java
R hibernate-core/src/test/java/org/hibernate/test/tool/schema/JtaPlatformLoggingTest.java
R hibernate-core/src/test/java/org/hibernate/test/tool/schema/SchemaGenetationSciptsActionPropertyValueEndingWithSpaceTest.java
R hibernate-core/src/test/java/org/hibernate/test/tool/schema/SchemaToolTransactionHandlingTest.java
R hibernate-core/src/test/java/org/hibernate/test/tool/schema/TargetDatabaseImpl.java
R hibernate-core/src/test/java/org/hibernate/test/tool/schema/TargetStdoutImpl.java
R hibernate-core/src/test/java/org/hibernate/test/tool/schema/internal/CheckForExistingForeignKeyTest.java
R hibernate-core/src/test/java/org/hibernate/test/tool/schema/scripts/MultiLineImportExtractorTest.java
R hibernate-core/src/test/java/org/hibernate/test/tool/schema/scripts/MultiLineImportWithSpacesAfterTheLastStatementTest.java
R hibernate-core/src/test/java/org/hibernate/test/tool/schema/scripts/MultiLineImportWithTabsAndSpacesTest.java
R hibernate-core/src/test/java/org/hibernate/test/unidir/BackrefPropertyRefTest.java
R hibernate-core/src/test/java/org/hibernate/test/unidir/BackrefTest.java
R hibernate-core/src/test/java/org/hibernate/test/unidir/Child.java
R hibernate-core/src/test/java/org/hibernate/test/unidir/Child1.java
R hibernate-core/src/test/java/org/hibernate/test/unidir/Child2.java
R hibernate-core/src/test/java/org/hibernate/test/unidir/Parent.java
R hibernate-core/src/test/java/org/hibernate/test/unidir/Parent1.java
R hibernate-core/src/test/java/org/hibernate/test/unidir/ParentChild.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/unidir/ParentChildPropertyRef.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/unidir/UnidirectionalOneToManyNonPkJoinColumnTest.java
M hibernate-core/src/test/java/org/hibernate/test/usertype/IntegratorProvidedUserTypeTest.java
R hibernate-core/src/test/java/org/hibernate/test/util/BytesHelperTest.java
R hibernate-core/src/test/java/org/hibernate/test/util/DdlTransactionIsolatorTestingImpl.java
R hibernate-core/src/test/java/org/hibernate/test/util/JoinedIterableTest.java
R hibernate-core/src/test/java/org/hibernate/test/util/PropertiesHelperTest.java
R hibernate-core/src/test/java/org/hibernate/test/util/RowVersionComparatorTest.java
R hibernate-core/src/test/java/org/hibernate/test/util/SchemaUtil.java
R hibernate-core/src/test/java/org/hibernate/test/util/SerializableThing.java
R hibernate-core/src/test/java/org/hibernate/test/util/SerializationHelperTest.java
R hibernate-core/src/test/java/org/hibernate/test/util/StringHelperTest.java
R hibernate-core/src/test/java/org/hibernate/test/util/dtd/Child.java
R hibernate-core/src/test/java/org/hibernate/test/util/dtd/EntityResolverTest.java
R hibernate-core/src/test/java/org/hibernate/test/util/dtd/Parent.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/util/dtd/Parent.java
R hibernate-core/src/test/java/org/hibernate/test/util/dtd/child.xml
R hibernate-core/src/test/java/org/hibernate/test/util/jdbc/PreparedStatementSpyConnectionProvider.java
R hibernate-core/src/test/java/org/hibernate/test/util/jdbc/TimeZoneConnectionProvider.java
A hibernate-core/src/test/resources/org/hibernate/orm/test/annotations/bytecode/Hammer.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/orm/test/annotations/configuration/orm.xml
A hibernate-core/src/test/resources/org/hibernate/orm/test/annotations/duplicatedgenerator/orm.xml
A hibernate-core/src/test/resources/org/hibernate/orm/test/annotations/enumerated/ormXml/orm.xml
A hibernate-core/src/test/resources/org/hibernate/orm/test/annotations/fetchprofile/mappings.hbm.xml
A hibernate-core/src/test/resources/org/hibernate/orm/test/annotations/index/jpa/orm-index.xml
A hibernate-core/src/test/resources/org/hibernate/orm/test/annotations/orm.xml
A hibernate-core/src/test/resources/org/hibernate/orm/test/annotations/reflection/element-collection-converter-orm.xml
A hibernate-core/src/test/resources/org/hibernate/orm/test/annotations/reflection/metadata-complete.xml
A hibernate-core/src/test/resources/org/hibernate/orm/test/annotations/reflection/orm.xml
A hibernate-core/src/test/resources/org/hibernate/orm/test/annotations/xml/ejb3/element-collection.orm1.xml
A hibernate-core/src/test/resources/org/hibernate/orm/test/annotations/xml/ejb3/element-collection.orm10.xml
A hibernate-core/src/test/resources/org/hibernate/orm/test/annotations/xml/ejb3/element-collection.orm11.xml
A hibernate-core/src/test/resources/org/hibernate/orm/test/annotations/xml/ejb3/element-collection.orm12.xml
A hibernate-core/src/test/resources/org/hibernate/orm/test/annotations/xml/ejb3/element-collection.orm13.xml
A hibernate-core/src/test/resources/org/hibernate/orm/test/annotations/xml/ejb3/element-collection.orm14.xml
A hibernate-core/src/test/resources/org/hibernate/orm/test/annotations/xml/ejb3/element-collection.orm15.xml
A hibernate-core/src/test/resources/org/hibernate/orm/test/annotations/xml/ejb3/element-collection.orm16.xml
A hibernate-core/src/test/resources/org/hibernate/orm/test/annotations/xml/ejb3/element-collection.orm17.xml
A hibernate-core/src/test/resources/org/hibernate/orm/test/annotations/xml/ejb3/element-collection.orm18.xml
A hibernate-core/src/test/resources/org/hibernate/orm/test/annotations/xml/ejb3/element-collection.orm19.xml
A hibernate-core/src/test/resources/org/hibernate/orm/test/annotations/xml/ejb3/element-collection.orm2.xml
A hibernate-core/src/test/resources/org/hibernate/orm/test/annotations/xml/ejb3/element-collection.orm20.xml
A hibernate-core/src/test/resources/org/hibernate/orm/test/annotations/xml/ejb3/element-collection.orm21.xml
A hibernate-core/src/test/resources/org/hibernate/orm/test/annotations/xml/ejb3/element-collection.orm22.xml
A hibernate-core/src/test/resources/org/hibernate/orm/test/annotations/xml/ejb3/element-collection.orm23.xml
A hibernate-core/src/test/resources/org/hibernate/orm/test/annotations/xml/ejb3/element-collection.orm24.xml
A hibernate-core/src/test/resources/org/hibernate/orm/test/annotations/xml/ejb3/element-collection.orm25.xml
A hibernate-core/src/test/resources/org/hibernate/orm/test/annotations/xml/ejb3/element-collection.orm26.xml
A hibernate-core/src/test/resources/org/hibernate/orm/test/annotations/xml/ejb3/element-collection.orm27.xml
A hibernate-core/src/test/resources/org/hibernate/orm/test/annotations/xml/ejb3/element-collection.orm28.xml
A hibernate-core/src/test/resources/org/hibernate/orm/test/annotations/xml/ejb3/element-collection.orm3.xml
A hibernate-core/src/test/resources/org/hibernate/orm/test/annotations/xml/ejb3/element-collection.orm4.xml
A hibernate-core/src/test/resources/org/hibernate/orm/test/annotations/xml/ejb3/element-collection.orm5.xml
A hibernate-core/src/test/resources/org/hibernate/orm/test/annotations/xml/ejb3/element-collection.orm6.xml
A hibernate-core/src/test/resources/org/hibernate/orm/test/annotations/xml/ejb3/element-collection.orm7.xml
A hibernate-core/src/test/resources/org/hibernate/orm/test/annotations/xml/ejb3/element-collection.orm8.xml
A hibernate-core/src/test/resources/org/hibernate/orm/test/annotations/xml/ejb3/element-collection.orm9.xml
A hibernate-core/src/test/resources/org/hibernate/orm/test/annotations/xml/ejb3/many-to-many.orm1.xml
A hibernate-core/src/test/resources/org/hibernate/orm/test/annotations/xml/ejb3/many-to-many.orm10.xml
A hibernate-core/src/test/resources/org/hibernate/orm/test/annotations/xml/ejb3/many-to-many.orm11.xml
A hibernate-core/src/test/resources/org/hibernate/orm/test/annotations/xml/ejb3/many-to-many.orm12.xml
A hibernate-core/src/test/resources/org/hibernate/orm/test/annotations/xml/ejb3/many-to-many.orm13.xml
A hibernate-core/src/test/resources/org/hibernate/orm/test/annotations/xml/ejb3/many-to-many.orm14.xml
A hibernate-core/src/test/resources/org/hibernate/orm/test/annotations/xml/ejb3/many-to-many.orm15.xml
A hibernate-core/src/test/resources/org/hibernate/orm/test/annotations/xml/ejb3/many-to-many.orm16.xml
A hibernate-core/src/test/resources/org/hibernate/orm/test/annotations/xml/ejb3/many-to-many.orm17.xml
A hibernate-core/src/test/resources/org/hibernate/orm/test/annotations/xml/ejb3/many-to-many.orm18.xml
A hibernate-core/src/test/resources/org/hibernate/orm/test/annotations/xml/ejb3/many-to-many.orm19.xml
A hibernate-core/src/test/resources/org/hibernate/orm/test/annotations/xml/ejb3/many-to-many.orm2.xml
A hibernate-core/src/test/resources/org/hibernate/orm/test/annotations/xml/ejb3/many-to-many.orm20.xml
A hibernate-core/src/test/resources/org/hibernate/orm/test/annotations/xml/ejb3/many-to-many.orm21.xml
A hibernate-core/src/test/resources/org/hibernate/orm/test/annotations/xml/ejb3/many-to-many.orm3.xml
A hibernate-core/src/test/resources/org/hibernate/orm/test/annotations/xml/ejb3/many-to-many.orm4.xml
A hibernate-core/src/test/resources/org/hibernate/orm/test/annotations/xml/ejb3/many-to-many.orm5.xml
A hibernate-core/src/test/resources/org/hibernate/orm/test/annotations/xml/ejb3/many-to-many.orm6.xml
A hibernate-core/src/test/resources/org/hibernate/orm/test/annotations/xml/ejb3/many-to-many.orm7.xml
A hibernate-core/src/test/resources/org/hibernate/orm/test/annotations/xml/ejb3/many-to-many.orm8.xml
A hibernate-core/src/test/resources/org/hibernate/orm/test/annotations/xml/ejb3/many-to-many.orm9.xml
A hibernate-core/src/test/resources/org/hibernate/orm/test/annotations/xml/ejb3/many-to-one.orm1.xml
A hibernate-core/src/test/resources/org/hibernate/orm/test/annotations/xml/ejb3/many-to-one.orm2.xml
A hibernate-core/src/test/resources/org/hibernate/orm/test/annotations/xml/ejb3/many-to-one.orm3.xml
A hibernate-core/src/test/resources/org/hibernate/orm/test/annotations/xml/ejb3/many-to-one.orm4.xml
A hibernate-core/src/test/resources/org/hibernate/orm/test/annotations/xml/ejb3/many-to-one.orm5.xml
A hibernate-core/src/test/resources/org/hibernate/orm/test/annotations/xml/ejb3/many-to-one.orm6.xml
A hibernate-core/src/test/resources/org/hibernate/orm/test/annotations/xml/ejb3/many-to-one.orm7.xml
A hibernate-core/src/test/resources/org/hibernate/orm/test/annotations/xml/ejb3/many-to-one.orm8.xml
A hibernate-core/src/test/resources/org/hibernate/orm/test/annotations/xml/ejb3/many-to-one.orm9.xml
A hibernate-core/src/test/resources/org/hibernate/orm/test/annotations/xml/ejb3/one-to-many.orm1.xml
A hibernate-core/src/test/resources/org/hibernate/orm/test/annotations/xml/ejb3/one-to-many.orm10.xml
A hibernate-core/src/test/resources/org/hibernate/orm/test/annotations/xml/ejb3/one-to-many.orm11.xml
A hibernate-core/src/test/resources/org/hibernate/orm/test/annotations/xml/ejb3/one-to-many.orm12.xml
A hibernate-core/src/test/resources/org/hibernate/orm/test/annotations/xml/ejb3/one-to-many.orm13.xml
A hibernate-core/src/test/resources/org/hibernate/orm/test/annotations/xml/ejb3/one-to-many.orm14.xml
A hibernate-core/src/test/resources/org/hibernate/orm/test/annotations/xml/ejb3/one-to-many.orm15.xml
A hibernate-core/src/test/resources/org/hibernate/orm/test/annotations/xml/ejb3/one-to-many.orm16.xml
A hibernate-core/src/test/resources/org/hibernate/orm/test/annotations/xml/ejb3/one-to-many.orm17.xml
A hibernate-core/src/test/resources/org/hibernate/orm/test/annotations/xml/ejb3/one-to-many.orm18.xml
A hibernate-core/src/test/resources/org/hibernate/orm/test/annotations/xml/ejb3/one-to-many.orm19.xml
A hibernate-core/src/test/resources/org/hibernate/orm/test/annotations/xml/ejb3/one-to-many.orm2.xml
A hibernate-core/src/test/resources/org/hibernate/orm/test/annotations/xml/ejb3/one-to-many.orm20.xml
A hibernate-core/src/test/resources/org/hibernate/orm/test/annotations/xml/ejb3/one-to-many.orm21.xml
A hibernate-core/src/test/resources/org/hibernate/orm/test/annotations/xml/ejb3/one-to-many.orm22.xml
A hibernate-core/src/test/resources/org/hibernate/orm/test/annotations/xml/ejb3/one-to-many.orm23.xml
A hibernate-core/src/test/resources/org/hibernate/orm/test/annotations/xml/ejb3/one-to-many.orm3.xml
A hibernate-core/src/test/resources/org/hibernate/orm/test/annotations/xml/ejb3/one-to-many.orm4.xml
A hibernate-core/src/test/resources/org/hibernate/orm/test/annotations/xml/ejb3/one-to-many.orm5.xml
A hibernate-core/src/test/resources/org/hibernate/orm/test/annotations/xml/ejb3/one-to-many.orm6.xml
A hibernate-core/src/test/resources/org/hibernate/orm/test/annotations/xml/ejb3/one-to-many.orm7.xml
A hibernate-core/src/test/resources/org/hibernate/orm/test/annotations/xml/ejb3/one-to-many.orm8.xml
A hibernate-core/src/test/resources/org/hibernate/orm/test/annotations/xml/ejb3/one-to-many.orm9.xml
A hibernate-core/src/test/resources/org/hibernate/orm/test/annotations/xml/ejb3/one-to-one.orm1.xml
A hibernate-core/src/test/resources/org/hibernate/orm/test/annotations/xml/ejb3/one-to-one.orm10.xml
A hibernate-core/src/test/resources/org/hibernate/orm/test/annotations/xml/ejb3/one-to-one.orm11.xml
A hibernate-core/src/test/resources/org/hibernate/orm/test/annotations/xml/ejb3/one-to-one.orm2.xml
A hibernate-core/src/test/resources/org/hibernate/orm/test/annotations/xml/ejb3/one-to-one.orm3.xml
A hibernate-core/src/test/resources/org/hibernate/orm/test/annotations/xml/ejb3/one-to-one.orm4.xml
A hibernate-core/src/test/resources/org/hibernate/orm/test/annotations/xml/ejb3/one-to-one.orm5.xml
A hibernate-core/src/test/resources/org/hibernate/orm/test/annotations/xml/ejb3/one-to-one.orm6.xml
A hibernate-core/src/test/resources/org/hibernate/orm/test/annotations/xml/ejb3/one-to-one.orm7.xml
A hibernate-core/src/test/resources/org/hibernate/orm/test/annotations/xml/ejb3/one-to-one.orm8.xml
A hibernate-core/src/test/resources/org/hibernate/orm/test/annotations/xml/ejb3/one-to-one.orm9.xml
A hibernate-core/src/test/resources/org/hibernate/orm/test/annotations/xml/ejb3/orm.xml
A hibernate-core/src/test/resources/org/hibernate/orm/test/annotations/xml/ejb3/orm2.xml
A hibernate-core/src/test/resources/org/hibernate/orm/test/annotations/xml/ejb3/orm3.xml
A hibernate-core/src/test/resources/org/hibernate/orm/test/annotations/xml/ejb3/orm4.xml
A hibernate-core/src/test/resources/org/hibernate/orm/test/annotations/xml/ejb3/orm5.xml
A hibernate-core/src/test/resources/org/hibernate/orm/test/annotations/xml/ejb3/pre-parsed-orm.xml
A hibernate-core/src/test/resources/org/hibernate/orm/test/service/org.hibernate.integrator.spi.Integrator
R hibernate-core/src/test/resources/org/hibernate/test/annotations/bytecode/Hammer.hbm.xml
R hibernate-core/src/test/resources/org/hibernate/test/annotations/configuration/orm.xml
R hibernate-core/src/test/resources/org/hibernate/test/annotations/duplicatedgenerator/orm.xml
R hibernate-core/src/test/resources/org/hibernate/test/annotations/enumerated/ormXml/orm.xml
R hibernate-core/src/test/resources/org/hibernate/test/annotations/fetchprofile/mappings.hbm.xml
R hibernate-core/src/test/resources/org/hibernate/test/annotations/index/jpa/orm-index.xml
R hibernate-core/src/test/resources/org/hibernate/test/annotations/orm.xml
R hibernate-core/src/test/resources/org/hibernate/test/annotations/reflection/element-collection-converter-orm.xml
R hibernate-core/src/test/resources/org/hibernate/test/annotations/reflection/metadata-complete.xml
R hibernate-core/src/test/resources/org/hibernate/test/annotations/reflection/orm.xml
R hibernate-core/src/test/resources/org/hibernate/test/annotations/xml/ejb3/element-collection.orm1.xml
R hibernate-core/src/test/resources/org/hibernate/test/annotations/xml/ejb3/element-collection.orm10.xml
R hibernate-core/src/test/resources/org/hibernate/test/annotations/xml/ejb3/element-collection.orm11.xml
R hibernate-core/src/test/resources/org/hibernate/test/annotations/xml/ejb3/element-collection.orm12.xml
R hibernate-core/src/test/resources/org/hibernate/test/annotations/xml/ejb3/element-collection.orm13.xml
R hibernate-core/src/test/resources/org/hibernate/test/annotations/xml/ejb3/element-collection.orm14.xml
R hibernate-core/src/test/resources/org/hibernate/test/annotations/xml/ejb3/element-collection.orm15.xml
R hibernate-core/src/test/resources/org/hibernate/test/annotations/xml/ejb3/element-collection.orm16.xml
R hibernate-core/src/test/resources/org/hibernate/test/annotations/xml/ejb3/element-collection.orm17.xml
R hibernate-core/src/test/resources/org/hibernate/test/annotations/xml/ejb3/element-collection.orm18.xml
R hibernate-core/src/test/resources/org/hibernate/test/annotations/xml/ejb3/element-collection.orm19.xml
R hibernate-core/src/test/resources/org/hibernate/test/annotations/xml/ejb3/element-collection.orm2.xml
R hibernate-core/src/test/resources/org/hibernate/test/annotations/xml/ejb3/element-collection.orm20.xml
R hibernate-core/src/test/resources/org/hibernate/test/annotations/xml/ejb3/element-collection.orm21.xml
R hibernate-core/src/test/resources/org/hibernate/test/annotations/xml/ejb3/element-collection.orm22.xml
R hibernate-core/src/test/resources/org/hibernate/test/annotations/xml/ejb3/element-collection.orm23.xml
R hibernate-core/src/test/resources/org/hibernate/test/annotations/xml/ejb3/element-collection.orm24.xml
R hibernate-core/src/test/resources/org/hibernate/test/annotations/xml/ejb3/element-collection.orm25.xml
R hibernate-core/src/test/resources/org/hibernate/test/annotations/xml/ejb3/element-collection.orm26.xml
R hibernate-core/src/test/resources/org/hibernate/test/annotations/xml/ejb3/element-collection.orm27.xml
R hibernate-core/src/test/resources/org/hibernate/test/annotations/xml/ejb3/element-collection.orm28.xml
R hibernate-core/src/test/resources/org/hibernate/test/annotations/xml/ejb3/element-collection.orm3.xml
R hibernate-core/src/test/resources/org/hibernate/test/annotations/xml/ejb3/element-collection.orm4.xml
R hibernate-core/src/test/resources/org/hibernate/test/annotations/xml/ejb3/element-collection.orm5.xml
R hibernate-core/src/test/resources/org/hibernate/test/annotations/xml/ejb3/element-collection.orm6.xml
R hibernate-core/src/test/resources/org/hibernate/test/annotations/xml/ejb3/element-collection.orm7.xml
R hibernate-core/src/test/resources/org/hibernate/test/annotations/xml/ejb3/element-collection.orm8.xml
R hibernate-core/src/test/resources/org/hibernate/test/annotations/xml/ejb3/element-collection.orm9.xml
R hibernate-core/src/test/resources/org/hibernate/test/annotations/xml/ejb3/many-to-many.orm1.xml
R hibernate-core/src/test/resources/org/hibernate/test/annotations/xml/ejb3/many-to-many.orm10.xml
R hibernate-core/src/test/resources/org/hibernate/test/annotations/xml/ejb3/many-to-many.orm11.xml
R hibernate-core/src/test/resources/org/hibernate/test/annotations/xml/ejb3/many-to-many.orm12.xml
R hibernate-core/src/test/resources/org/hibernate/test/annotations/xml/ejb3/many-to-many.orm13.xml
R hibernate-core/src/test/resources/org/hibernate/test/annotations/xml/ejb3/many-to-many.orm14.xml
R hibernate-core/src/test/resources/org/hibernate/test/annotations/xml/ejb3/many-to-many.orm15.xml
R hibernate-core/src/test/resources/org/hibernate/test/annotations/xml/ejb3/many-to-many.orm16.xml
R hibernate-core/src/test/resources/org/hibernate/test/annotations/xml/ejb3/many-to-many.orm17.xml
R hibernate-core/src/test/resources/org/hibernate/test/annotations/xml/ejb3/many-to-many.orm18.xml
R hibernate-core/src/test/resources/org/hibernate/test/annotations/xml/ejb3/many-to-many.orm19.xml
R hibernate-core/src/test/resources/org/hibernate/test/annotations/xml/ejb3/many-to-many.orm2.xml
R hibernate-core/src/test/resources/org/hibernate/test/annotations/xml/ejb3/many-to-many.orm20.xml
R hibernate-core/src/test/resources/org/hibernate/test/annotations/xml/ejb3/many-to-many.orm21.xml
R hibernate-core/src/test/resources/org/hibernate/test/annotations/xml/ejb3/many-to-many.orm3.xml
R hibernate-core/src/test/resources/org/hibernate/test/annotations/xml/ejb3/many-to-many.orm4.xml
R hibernate-core/src/test/resources/org/hibernate/test/annotations/xml/ejb3/many-to-many.orm5.xml
R hibernate-core/src/test/resources/org/hibernate/test/annotations/xml/ejb3/many-to-many.orm6.xml
R hibernate-core/src/test/resources/org/hibernate/test/annotations/xml/ejb3/many-to-many.orm7.xml
R hibernate-core/src/test/resources/org/hibernate/test/annotations/xml/ejb3/many-to-many.orm8.xml
R hibernate-core/src/test/resources/org/hibernate/test/annotations/xml/ejb3/many-to-many.orm9.xml
R hibernate-core/src/test/resources/org/hibernate/test/annotations/xml/ejb3/many-to-one.orm1.xml
R hibernate-core/src/test/resources/org/hibernate/test/annotations/xml/ejb3/many-to-one.orm2.xml
R hibernate-core/src/test/resources/org/hibernate/test/annotations/xml/ejb3/many-to-one.orm3.xml
R hibernate-core/src/test/resources/org/hibernate/test/annotations/xml/ejb3/many-to-one.orm4.xml
R hibernate-core/src/test/resources/org/hibernate/test/annotations/xml/ejb3/many-to-one.orm5.xml
R hibernate-core/src/test/resources/org/hibernate/test/annotations/xml/ejb3/many-to-one.orm6.xml
R hibernate-core/src/test/resources/org/hibernate/test/annotations/xml/ejb3/many-to-one.orm7.xml
R hibernate-core/src/test/resources/org/hibernate/test/annotations/xml/ejb3/many-to-one.orm8.xml
R hibernate-core/src/test/resources/org/hibernate/test/annotations/xml/ejb3/many-to-one.orm9.xml
R hibernate-core/src/test/resources/org/hibernate/test/annotations/xml/ejb3/one-to-many.orm1.xml
R hibernate-core/src/test/resources/org/hibernate/test/annotations/xml/ejb3/one-to-many.orm10.xml
R hibernate-core/src/test/resources/org/hibernate/test/annotations/xml/ejb3/one-to-many.orm11.xml
R hibernate-core/src/test/resources/org/hibernate/test/annotations/xml/ejb3/one-to-many.orm12.xml
R hibernate-core/src/test/resources/org/hibernate/test/annotations/xml/ejb3/one-to-many.orm13.xml
R hibernate-core/src/test/resources/org/hibernate/test/annotations/xml/ejb3/one-to-many.orm14.xml
R hibernate-core/src/test/resources/org/hibernate/test/annotations/xml/ejb3/one-to-many.orm15.xml
R hibernate-core/src/test/resources/org/hibernate/test/annotations/xml/ejb3/one-to-many.orm16.xml
R hibernate-core/src/test/resources/org/hibernate/test/annotations/xml/ejb3/one-to-many.orm17.xml
R hibernate-core/src/test/resources/org/hibernate/test/annotations/xml/ejb3/one-to-many.orm18.xml
R hibernate-core/src/test/resources/org/hibernate/test/annotations/xml/ejb3/one-to-many.orm19.xml
R hibernate-core/src/test/resources/org/hibernate/test/annotations/xml/ejb3/one-to-many.orm2.xml
R hibernate-core/src/test/resources/org/hibernate/test/annotations/xml/ejb3/one-to-many.orm20.xml
R hibernate-core/src/test/resources/org/hibernate/test/annotations/xml/ejb3/one-to-many.orm21.xml
R hibernate-core/src/test/resources/org/hibernate/test/annotations/xml/ejb3/one-to-many.orm22.xml
R hibernate-core/src/test/resources/org/hibernate/test/annotations/xml/ejb3/one-to-many.orm23.xml
R hibernate-core/src/test/resources/org/hibernate/test/annotations/xml/ejb3/one-to-many.orm3.xml
R hibernate-core/src/test/resources/org/hibernate/test/annotations/xml/ejb3/one-to-many.orm4.xml
R hibernate-core/src/test/resources/org/hibernate/test/annotations/xml/ejb3/one-to-many.orm5.xml
R hibernate-core/src/test/resources/org/hibernate/test/annotations/xml/ejb3/one-to-many.orm6.xml
R hibernate-core/src/test/resources/org/hibernate/test/annotations/xml/ejb3/one-to-many.orm7.xml
R hibernate-core/src/test/resources/org/hibernate/test/annotations/xml/ejb3/one-to-many.orm8.xml
R hibernate-core/src/test/resources/org/hibernate/test/annotations/xml/ejb3/one-to-many.orm9.xml
R hibernate-core/src/test/resources/org/hibernate/test/annotations/xml/ejb3/one-to-one.orm1.xml
R hibernate-core/src/test/resources/org/hibernate/test/annotations/xml/ejb3/one-to-one.orm10.xml
R hibernate-core/src/test/resources/org/hibernate/test/annotations/xml/ejb3/one-to-one.orm11.xml
R hibernate-core/src/test/resources/org/hibernate/test/annotations/xml/ejb3/one-to-one.orm2.xml
R hibernate-core/src/test/resources/org/hibernate/test/annotations/xml/ejb3/one-to-one.orm3.xml
R hibernate-core/src/test/resources/org/hibernate/test/annotations/xml/ejb3/one-to-one.orm4.xml
R hibernate-core/src/test/resources/org/hibernate/test/annotations/xml/ejb3/one-to-one.orm5.xml
R hibernate-core/src/test/resources/org/hibernate/test/annotations/xml/ejb3/one-to-one.orm6.xml
R hibernate-core/src/test/resources/org/hibernate/test/annotations/xml/ejb3/one-to-one.orm7.xml
R hibernate-core/src/test/resources/org/hibernate/test/annotations/xml/ejb3/one-to-one.orm8.xml
R hibernate-core/src/test/resources/org/hibernate/test/annotations/xml/ejb3/one-to-one.orm9.xml
R hibernate-core/src/test/resources/org/hibernate/test/annotations/xml/ejb3/orm.xml
R hibernate-core/src/test/resources/org/hibernate/test/annotations/xml/ejb3/orm2.xml
R hibernate-core/src/test/resources/org/hibernate/test/annotations/xml/ejb3/orm3.xml
R hibernate-core/src/test/resources/org/hibernate/test/annotations/xml/ejb3/orm4.xml
R hibernate-core/src/test/resources/org/hibernate/test/annotations/xml/ejb3/orm5.xml
R hibernate-core/src/test/resources/org/hibernate/test/annotations/xml/ejb3/pre-parsed-orm.xml
R hibernate-core/src/test/resources/org/hibernate/test/service/org.hibernate.integrator.spi.Integrator
A hibernate-hikaricp/src/test/java/org/hibernate/orm/test/util/PreparedStatementSpyConnectionProvider.java
M hibernate-hikaricp/src/test/java/org/hibernate/test/hikaricp/HikariCPSkipAutoCommitTest.java
R hibernate-hikaricp/src/test/java/org/hibernate/test/util/PreparedStatementSpyConnectionProvider.java
M hibernate-testing/src/main/java/org/hibernate/testing/DialectChecks.java
M hibernate-testing/src/main/java/org/hibernate/testing/junit4/BaseNonConfigCoreFunctionalTestCase.java
M hibernate-testing/src/main/java/org/hibernate/testing/orm/junit/DialectFeatureChecks.java
Log Message:
-----------
Move tests from packages actionqueue, annotations, batch, boot, bytecode, id, resource, schemafilter, schematools, schemaupdate, schemavalidation, serialization, service, tool, unidir, util
Compare: https://github.com/hibernate/hibernate-orm/compare/181ac6e0ff3a...1a24c93...
3 years, 11 months
[hibernate/hibernate-orm] 181ac6: Move classloader, comments, connections, entitynam...
by Christian Beikov
Branch: refs/heads/wip/6.0
Home: https://github.com/hibernate/hibernate-orm
Commit: 181ac6e0ff3ac3fe6308dc44b59903ffb0d4d73f
https://github.com/hibernate/hibernate-orm/commit/181ac6e0ff3ac3fe6308dc4...
Author: Christian Beikov <christian.beikov(a)gmail.com>
Date: 2021-05-05 (Wed, 05 May 2021)
Changed paths:
M hibernate-core/src/main/java/org/hibernate/loader/ast/internal/LoaderSelectBuilder.java
M hibernate-core/src/main/java/org/hibernate/loader/ast/spi/CascadingFetchProfile.java
M hibernate-core/src/main/java/org/hibernate/metamodel/mapping/ForeignKeyDescriptor.java
M hibernate-core/src/main/java/org/hibernate/metamodel/mapping/internal/EmbeddedForeignKeyDescriptor.java
M hibernate-core/src/main/java/org/hibernate/metamodel/mapping/internal/MappingModelCreationHelper.java
M hibernate-core/src/main/java/org/hibernate/metamodel/mapping/internal/ToOneAttributeMapping.java
M hibernate-core/src/main/java/org/hibernate/sql/results/graph/embeddable/internal/EmbeddableForeignKeyResultImpl.java
M hibernate-core/src/main/java/org/hibernate/sql/results/graph/entity/internal/EntityAssembler.java
M hibernate-core/src/main/java/org/hibernate/sql/results/internal/domain/CircularBiDirectionalFetchImpl.java
A hibernate-core/src/test/java/org/hibernate/orm/test/classloader/ProxyInterfaceClassLoaderTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/comments/TestEntity.java
A hibernate-core/src/test/java/org/hibernate/orm/test/comments/TestEntity2.java
A hibernate-core/src/test/java/org/hibernate/orm/test/comments/UseSqlCommentTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/connections/AggressiveReleaseTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/connections/BasicConnectionProviderTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/connections/BeforeCompletionReleaseTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/connections/ConnectionManagementTestCase.java
A hibernate-core/src/test/java/org/hibernate/orm/test/connections/CurrentSessionConnectionTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/connections/ExplicitConnectionProviderInstanceTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/connections/HibernateCreateBlobFailedCase.java
A hibernate-core/src/test/java/org/hibernate/orm/test/connections/JdbcBatchingAgressiveReleaseTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/connections/Other.java
A hibernate-core/src/test/java/org/hibernate/orm/test/connections/Silly.hbm.xml
A hibernate-core/src/test/java/org/hibernate/orm/test/connections/Silly.java
A hibernate-core/src/test/java/org/hibernate/orm/test/connections/SuppliedConnectionTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/connections/ThreadLocalCurrentSessionTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/entityname/Car.java
A hibernate-core/src/test/java/org/hibernate/orm/test/entityname/DuplicateEntityNameTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/entityname/EntityNameFromSubClassTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/entityname/Person.java
A hibernate-core/src/test/java/org/hibernate/orm/test/entityname/Vehicle.hbm.xml
A hibernate-core/src/test/java/org/hibernate/orm/test/entityname/Vehicle.java
A hibernate-core/src/test/java/org/hibernate/orm/test/event/collection/AbstractCollectionEventTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/event/collection/AbstractParentWithCollection.java
A hibernate-core/src/test/java/org/hibernate/orm/test/event/collection/BrokenCollectionEventTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/event/collection/Child.java
A hibernate-core/src/test/java/org/hibernate/orm/test/event/collection/ChildEntity.java
A hibernate-core/src/test/java/org/hibernate/orm/test/event/collection/ChildValue.java
A hibernate-core/src/test/java/org/hibernate/orm/test/event/collection/CollectionListeners.java
A hibernate-core/src/test/java/org/hibernate/orm/test/event/collection/Entity.java
A hibernate-core/src/test/java/org/hibernate/orm/test/event/collection/ParentWithCollection.java
A hibernate-core/src/test/java/org/hibernate/orm/test/event/collection/association/AbstractAssociationCollectionEventTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/event/collection/association/bidirectional/manytomany/BidirectionalManyToManyBagToSetCollectionEventTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/event/collection/association/bidirectional/manytomany/BidirectionalManyToManyBagToSetMapping.hbm.xml
A hibernate-core/src/test/java/org/hibernate/orm/test/event/collection/association/bidirectional/manytomany/BidirectionalManyToManySetToSetCollectionEventTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/event/collection/association/bidirectional/manytomany/BidirectionalManyToManySetToSetMapping.hbm.xml
A hibernate-core/src/test/java/org/hibernate/orm/test/event/collection/association/bidirectional/manytomany/ChildWithBidirectionalManyToMany.java
A hibernate-core/src/test/java/org/hibernate/orm/test/event/collection/association/bidirectional/manytomany/ParentWithBidirectionalManyToMany.java
A hibernate-core/src/test/java/org/hibernate/orm/test/event/collection/association/bidirectional/onetomany/BidirectionalOneToManyBagCollectionEventTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/event/collection/association/bidirectional/onetomany/BidirectionalOneToManyBagMapping.hbm.xml
A hibernate-core/src/test/java/org/hibernate/orm/test/event/collection/association/bidirectional/onetomany/BidirectionalOneToManyBagSubclassCollectionEventTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/event/collection/association/bidirectional/onetomany/BidirectionalOneToManyBagSubclassMapping.hbm.xml
A hibernate-core/src/test/java/org/hibernate/orm/test/event/collection/association/bidirectional/onetomany/BidirectionalOneToManySetCollectionEventTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/event/collection/association/bidirectional/onetomany/BidirectionalOneToManySetMapping.hbm.xml
A hibernate-core/src/test/java/org/hibernate/orm/test/event/collection/association/bidirectional/onetomany/ChildWithManyToOne.java
A hibernate-core/src/test/java/org/hibernate/orm/test/event/collection/association/bidirectional/onetomany/ParentWithBidirectionalOneToMany.java
A hibernate-core/src/test/java/org/hibernate/orm/test/event/collection/association/bidirectional/onetomany/ParentWithBidirectionalOneToManySubclass.java
A hibernate-core/src/test/java/org/hibernate/orm/test/event/collection/association/unidirectional/ParentWithCollectionOfEntities.java
A hibernate-core/src/test/java/org/hibernate/orm/test/event/collection/association/unidirectional/manytomany/UnidirectionalManyToManyBagCollectionEventTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/event/collection/association/unidirectional/manytomany/UnidirectionalManyToManyBagMapping.hbm.xml
A hibernate-core/src/test/java/org/hibernate/orm/test/event/collection/association/unidirectional/onetomany/UnidirectionalOneToManyBagCollectionEventTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/event/collection/association/unidirectional/onetomany/UnidirectionalOneToManyBagMapping.hbm.xml
A hibernate-core/src/test/java/org/hibernate/orm/test/event/collection/association/unidirectional/onetomany/UnidirectionalOneToManySetCollectionEventTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/event/collection/association/unidirectional/onetomany/UnidirectionalOneToManySetMapping.hbm.xml
A hibernate-core/src/test/java/org/hibernate/orm/test/event/collection/detached/AggregatedCollectionEventListener.java
A hibernate-core/src/test/java/org/hibernate/orm/test/event/collection/detached/Alias.java
A hibernate-core/src/test/java/org/hibernate/orm/test/event/collection/detached/BadMergeHandlingTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/event/collection/detached/Character.java
A hibernate-core/src/test/java/org/hibernate/orm/test/event/collection/detached/DetachedMultipleCollectionChangeTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/event/collection/detached/Identifiable.java
A hibernate-core/src/test/java/org/hibernate/orm/test/event/collection/detached/MergeCollectionEventTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/event/collection/detached/MultipleCollectionBagMapping.hbm.xml
A hibernate-core/src/test/java/org/hibernate/orm/test/event/collection/detached/MultipleCollectionEntity.java
A hibernate-core/src/test/java/org/hibernate/orm/test/event/collection/detached/MultipleCollectionListeners.java
A hibernate-core/src/test/java/org/hibernate/orm/test/event/collection/detached/MultipleCollectionRefEntity1.java
A hibernate-core/src/test/java/org/hibernate/orm/test/event/collection/detached/MultipleCollectionRefEntity2.java
A hibernate-core/src/test/java/org/hibernate/orm/test/event/collection/values/ParentWithCollectionOfValues.java
A hibernate-core/src/test/java/org/hibernate/orm/test/event/collection/values/ValuesBagCollectionEventTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/event/collection/values/ValuesBagMapping.hbm.xml
A hibernate-core/src/test/java/org/hibernate/orm/test/event/entity/MergeListPreAndPostPersistTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/event/entity/MergeListPreAndPostPersistWithIdentityTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/events/AutoFlushEventListenerTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/events/CallbackTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/events/ClearEventListenerTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/events/EventEngineContributionsTests.java
A hibernate-core/src/test/java/org/hibernate/orm/test/events/LegacyPostCommitListenerTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/events/PostCommitListenerTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/eviction/EvictionTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/eviction/IsolatedEvictableEntity.java
A hibernate-core/src/test/java/org/hibernate/orm/test/exception/Group.hbm.xml
A hibernate-core/src/test/java/org/hibernate/orm/test/exception/Group.java
A hibernate-core/src/test/java/org/hibernate/orm/test/exception/SQLExceptionConversionTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/exception/User.hbm.xml
A hibernate-core/src/test/java/org/hibernate/orm/test/exception/User.java
A hibernate-core/src/test/java/org/hibernate/orm/test/fetch/runtime/managed/RuntimeFetchFromManagedTest.java
A hibernate-core/src/test/java/org/hibernate/orm/test/fetch/runtime/managed/package-info.java
M hibernate-core/src/test/java/org/hibernate/orm/test/immutable/entitywithmutablecollection/AbstractEntityWithOneToManyTest.java
R hibernate-core/src/test/java/org/hibernate/test/classloader/ProxyInterfaceClassLoaderTest.java
R hibernate-core/src/test/java/org/hibernate/test/comments/TestEntity.java
R hibernate-core/src/test/java/org/hibernate/test/comments/TestEntity2.java
R hibernate-core/src/test/java/org/hibernate/test/comments/UseSqlCommentTest.java
R hibernate-core/src/test/java/org/hibernate/test/connections/AggressiveReleaseTest.java
R hibernate-core/src/test/java/org/hibernate/test/connections/BasicConnectionProviderTest.java
R hibernate-core/src/test/java/org/hibernate/test/connections/BeforeCompletionReleaseTest.java
R hibernate-core/src/test/java/org/hibernate/test/connections/ConnectionManagementTestCase.java
R hibernate-core/src/test/java/org/hibernate/test/connections/CurrentSessionConnectionTest.java
R hibernate-core/src/test/java/org/hibernate/test/connections/ExplicitConnectionProviderInstanceTest.java
R hibernate-core/src/test/java/org/hibernate/test/connections/HibernateCreateBlobFailedCase.java
R hibernate-core/src/test/java/org/hibernate/test/connections/JdbcBatchingAgressiveReleaseTest.java
R hibernate-core/src/test/java/org/hibernate/test/connections/Other.java
R hibernate-core/src/test/java/org/hibernate/test/connections/Silly.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/connections/Silly.java
R hibernate-core/src/test/java/org/hibernate/test/connections/SuppliedConnectionTest.java
R hibernate-core/src/test/java/org/hibernate/test/connections/ThreadLocalCurrentSessionTest.java
R hibernate-core/src/test/java/org/hibernate/test/entityname/Car.java
R hibernate-core/src/test/java/org/hibernate/test/entityname/DuplicateEntityNameTest.java
R hibernate-core/src/test/java/org/hibernate/test/entityname/EntityNameFromSubClassTest.java
R hibernate-core/src/test/java/org/hibernate/test/entityname/Person.java
R hibernate-core/src/test/java/org/hibernate/test/entityname/Vehicle.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/entityname/Vehicle.java
R hibernate-core/src/test/java/org/hibernate/test/event/collection/AbstractCollectionEventTest.java
R hibernate-core/src/test/java/org/hibernate/test/event/collection/AbstractParentWithCollection.java
R hibernate-core/src/test/java/org/hibernate/test/event/collection/BrokenCollectionEventTest.java
R hibernate-core/src/test/java/org/hibernate/test/event/collection/Child.java
R hibernate-core/src/test/java/org/hibernate/test/event/collection/ChildEntity.java
R hibernate-core/src/test/java/org/hibernate/test/event/collection/ChildValue.java
R hibernate-core/src/test/java/org/hibernate/test/event/collection/CollectionListeners.java
R hibernate-core/src/test/java/org/hibernate/test/event/collection/Entity.java
R hibernate-core/src/test/java/org/hibernate/test/event/collection/ParentWithCollection.java
R hibernate-core/src/test/java/org/hibernate/test/event/collection/association/AbstractAssociationCollectionEventTest.java
R hibernate-core/src/test/java/org/hibernate/test/event/collection/association/bidirectional/manytomany/BidirectionalManyToManyBagToSetCollectionEventTest.java
R hibernate-core/src/test/java/org/hibernate/test/event/collection/association/bidirectional/manytomany/BidirectionalManyToManyBagToSetMapping.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/event/collection/association/bidirectional/manytomany/BidirectionalManyToManySetToSetCollectionEventTest.java
R hibernate-core/src/test/java/org/hibernate/test/event/collection/association/bidirectional/manytomany/BidirectionalManyToManySetToSetMapping.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/event/collection/association/bidirectional/manytomany/ChildWithBidirectionalManyToMany.java
R hibernate-core/src/test/java/org/hibernate/test/event/collection/association/bidirectional/manytomany/ParentWithBidirectionalManyToMany.java
R hibernate-core/src/test/java/org/hibernate/test/event/collection/association/bidirectional/onetomany/BidirectionalOneToManyBagCollectionEventTest.java
R hibernate-core/src/test/java/org/hibernate/test/event/collection/association/bidirectional/onetomany/BidirectionalOneToManyBagMapping.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/event/collection/association/bidirectional/onetomany/BidirectionalOneToManyBagSubclassCollectionEventTest.java
R hibernate-core/src/test/java/org/hibernate/test/event/collection/association/bidirectional/onetomany/BidirectionalOneToManyBagSubclassMapping.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/event/collection/association/bidirectional/onetomany/BidirectionalOneToManySetCollectionEventTest.java
R hibernate-core/src/test/java/org/hibernate/test/event/collection/association/bidirectional/onetomany/BidirectionalOneToManySetMapping.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/event/collection/association/bidirectional/onetomany/ChildWithManyToOne.java
R hibernate-core/src/test/java/org/hibernate/test/event/collection/association/bidirectional/onetomany/ParentWithBidirectionalOneToMany.java
R hibernate-core/src/test/java/org/hibernate/test/event/collection/association/bidirectional/onetomany/ParentWithBidirectionalOneToManySubclass.java
R hibernate-core/src/test/java/org/hibernate/test/event/collection/association/unidirectional/ParentWithCollectionOfEntities.java
R hibernate-core/src/test/java/org/hibernate/test/event/collection/association/unidirectional/manytomany/UnidirectionalManyToManyBagCollectionEventTest.java
R hibernate-core/src/test/java/org/hibernate/test/event/collection/association/unidirectional/manytomany/UnidirectionalManyToManyBagMapping.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/event/collection/association/unidirectional/onetomany/UnidirectionalOneToManyBagCollectionEventTest.java
R hibernate-core/src/test/java/org/hibernate/test/event/collection/association/unidirectional/onetomany/UnidirectionalOneToManyBagMapping.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/event/collection/association/unidirectional/onetomany/UnidirectionalOneToManySetCollectionEventTest.java
R hibernate-core/src/test/java/org/hibernate/test/event/collection/association/unidirectional/onetomany/UnidirectionalOneToManySetMapping.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/event/collection/detached/AggregatedCollectionEventListener.java
R hibernate-core/src/test/java/org/hibernate/test/event/collection/detached/Alias.java
R hibernate-core/src/test/java/org/hibernate/test/event/collection/detached/BadMergeHandlingTest.java
R hibernate-core/src/test/java/org/hibernate/test/event/collection/detached/Character.java
R hibernate-core/src/test/java/org/hibernate/test/event/collection/detached/DetachedMultipleCollectionChangeTest.java
R hibernate-core/src/test/java/org/hibernate/test/event/collection/detached/Identifiable.java
R hibernate-core/src/test/java/org/hibernate/test/event/collection/detached/MergeCollectionEventTest.java
R hibernate-core/src/test/java/org/hibernate/test/event/collection/detached/MultipleCollectionBagMapping.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/event/collection/detached/MultipleCollectionEntity.java
R hibernate-core/src/test/java/org/hibernate/test/event/collection/detached/MultipleCollectionListeners.java
R hibernate-core/src/test/java/org/hibernate/test/event/collection/detached/MultipleCollectionRefEntity1.java
R hibernate-core/src/test/java/org/hibernate/test/event/collection/detached/MultipleCollectionRefEntity2.java
R hibernate-core/src/test/java/org/hibernate/test/event/collection/values/ParentWithCollectionOfValues.java
R hibernate-core/src/test/java/org/hibernate/test/event/collection/values/ValuesBagCollectionEventTest.java
R hibernate-core/src/test/java/org/hibernate/test/event/collection/values/ValuesBagMapping.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/event/entity/MergeListPreAndPostPersistTest.java
R hibernate-core/src/test/java/org/hibernate/test/event/entity/MergeListPreAndPostPersistWithIdentityTest.java
R hibernate-core/src/test/java/org/hibernate/test/events/AutoFlushEventListenerTest.java
R hibernate-core/src/test/java/org/hibernate/test/events/CallbackTest.java
R hibernate-core/src/test/java/org/hibernate/test/events/ClearEventListenerTest.java
R hibernate-core/src/test/java/org/hibernate/test/events/EventEngineContributionsTests.java
R hibernate-core/src/test/java/org/hibernate/test/events/LegacyPostCommitListenerTest.java
R hibernate-core/src/test/java/org/hibernate/test/events/PostCommitListenerTest.java
R hibernate-core/src/test/java/org/hibernate/test/eviction/EvictionTest.java
R hibernate-core/src/test/java/org/hibernate/test/eviction/IsolatedEvictableEntity.java
R hibernate-core/src/test/java/org/hibernate/test/exception/Group.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/exception/Group.java
R hibernate-core/src/test/java/org/hibernate/test/exception/SQLExceptionConversionTest.java
R hibernate-core/src/test/java/org/hibernate/test/exception/User.hbm.xml
R hibernate-core/src/test/java/org/hibernate/test/exception/User.java
R hibernate-core/src/test/java/org/hibernate/test/fetch/runtime/managed/RuntimeFetchFromManagedTest.java
R hibernate-core/src/test/java/org/hibernate/test/fetch/runtime/managed/package-info.java
Log Message:
-----------
Move classloader, comments, connections, entityname, event, events, eviction, exception and fetch packages. Fix issues with key-many-to-one in collection key FK and implement cascade based fetching
3 years, 11 months