diff --git a/Jenkinsfile b/Jenkinsfile index 56a6dc07db..a62441802c 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -130,10 +130,6 @@ stage('Build') { state[buildEnv.tag]['additionalOptions'] = state[buildEnv.tag]['additionalOptions'] + " -Pgradle.libs.versions.hsqldb=2.6.1" break; - case "derby_10_14": - state[buildEnv.tag]['additionalOptions'] = state[buildEnv.tag]['additionalOptions'] + - " -Pgradle.libs.versions.derby=10.14.2.0" - break; case "mysql": docker.withRegistry('https://index.docker.io/v1/', 'hibernateci.hub.docker.com') { docker.image('mysql:8.0.31').pull() diff --git a/ci/build.sh b/ci/build.sh index 7ae76dd3bb..4353b1331a 100755 --- a/ci/build.sh +++ b/ci/build.sh @@ -8,8 +8,6 @@ elif [ "$RDBMS" == "hsqldb" ] || [ "$RDBMS" == "hsqldb_2_6" ]; then goal="-Pdb=hsqldb" elif [ "$RDBMS" == "derby" ]; then goal="-Pdb=derby" -elif [ "$RDBMS" == "derby_10_14" ]; then - goal="-Pdb=derby_old" elif [ "$RDBMS" == "mysql" ] || [ "$RDBMS" == "mysql_5_7" ]; then goal="-Pdb=mysql_ci" elif [ "$RDBMS" == "mariadb" ] || [ "$RDBMS" == "mariadb_10_3" ]; then diff --git a/hibernate-core/src/main/java/org/hibernate/dialect/DerbyDialect.java b/hibernate-core/src/main/java/org/hibernate/dialect/DerbyDialect.java index c862b24103..d70927c5e3 100644 --- a/hibernate-core/src/main/java/org/hibernate/dialect/DerbyDialect.java +++ b/hibernate-core/src/main/java/org/hibernate/dialect/DerbyDialect.java @@ -94,7 +94,7 @@ import static org.hibernate.type.SqlTypes.VARBINARY; import static org.hibernate.type.SqlTypes.VARCHAR; /** - * A {@linkplain Dialect SQL dialect} for Apache Derby 10.14.2 and above. + * A {@linkplain Dialect SQL dialect} for Apache Derby 10.15.2 and above. * * @author Simon Johnston * @author Gavin King @@ -113,7 +113,7 @@ public class DerbyDialect extends Dialect { // * can't select a parameter unless wrapped // in a cast or function call - private final static DatabaseVersion MINIMUM_VERSION = DatabaseVersion.make( 10, 14, 2 ); + private final static DatabaseVersion MINIMUM_VERSION = DatabaseVersion.make( 10, 15, 2 ); private final LimitHandler limitHandler = new DerbyLimitHandler( true ); private final UniqueDelegate uniqueDelegate = new CreateTableUniqueDelegate(this); diff --git a/nightly.Jenkinsfile b/nightly.Jenkinsfile index 86c2d281bc..4818511d71 100644 --- a/nightly.Jenkinsfile +++ b/nightly.Jenkinsfile @@ -28,7 +28,6 @@ stage('Configure') { this.environments = [ // Minimum supported versions new BuildEnvironment( dbName: 'hsqldb_2_6' ), - new BuildEnvironment( dbName: 'derby_10_14' ), new BuildEnvironment( dbName: 'mysql_5_7' ), new BuildEnvironment( dbName: 'mariadb_10_3' ), new BuildEnvironment( dbName: 'postgresql_11' ), @@ -113,10 +112,6 @@ stage('Build') { state[buildEnv.tag]['additionalOptions'] = state[buildEnv.tag]['additionalOptions'] + " -Pgradle.libs.versions.hsqldb=2.6.1" break; - case "derby_10_14": - state[buildEnv.tag]['additionalOptions'] = state[buildEnv.tag]['additionalOptions'] + - " -Pgradle.libs.versions.derby=10.14.2.0" - break; case "mysql": docker.withRegistry('https://index.docker.io/v1/', 'hibernateci.hub.docker.com') { docker.image('mysql:8.0.31').pull() diff --git a/settings.gradle b/settings.gradle index 9a6a81268d..10b0b47dc9 100644 --- a/settings.gradle +++ b/settings.gradle @@ -207,7 +207,7 @@ dependencyResolutionManagement { def db2Version = version "db2", "11.5.8.0" // Latest Derby version 10.16.1.1 only supports JDK 17+, but 10.15.2 should be compatible - def derbyVersion = version "dervy", overrideableVersion( "gradle.libs.versions.derby", "10.15.2.0" ) + def derbyVersion = version "derby", overrideableVersion( "gradle.libs.versions.derby", "10.15.2.0" ) def firebirdVersion = version "firebird", "4.0.8.java11" def hanaVersion = version "hana", "2.16.14" def h2gisVersion = version "h2gis", overrideableVersion( "gradle.libs.versions.h2gis", "2.2.0" ) diff --git a/tq b/tq deleted file mode 100644 index ceb2e82b43..0000000000 --- a/tq +++ /dev/null @@ -1,149198 +0,0 @@ -commit a67471fde8a468905e0d42deaa75960bc9533c0c (HEAD -> HHH-15491-dbversionremovals) -Author: Jan Schatteman -Date: Thu Aug 17 16:44:35 2023 +0200 - - HHH-15535 - Remove support for H2 versions older than 2.1 - - Signed-off-by: Jan Schatteman - -commit 62dcd3ce5c7d2e838ff6b674e66b16fd69eb65f4 -Author: Jan Schatteman -Date: Wed Aug 16 19:09:23 2023 +0200 - - HHH-15194 - Remove support for PostgreSQL Advanced Server versions older than 11 - - Signed-off-by: Jan Schatteman - -commit e8053d830f04d4106d3f25873e726883174bae4d -Author: Jan Schatteman -Date: Wed Aug 16 17:32:39 2023 +0200 - - HHH-15177 - Remove support for PostgreSQL versions older than 11 - - Signed-off-by: Jan Schatteman - -commit ca3258b31766860e020ae534ced0d72fcd51441f -Author: Gavin King -Date: Wed Aug 16 20:58:22 2023 +0200 - - HHH-15629, HHH-16583 fix @ManyToOne @JoinTable with defaulted name - -commit 09abefefc1c5be41e0972b8d09b7bbc4d3b4af11 -Author: Christian Beikov -Date: Thu Aug 17 12:15:58 2023 +0200 - - Fix literal related test issues - -commit 0f3548d58638c189c688cde94ac5215fc2980231 -Author: Christian Beikov -Date: Thu Aug 17 14:09:36 2023 +0200 - - Reduce read/lock timeout for Derby and Oracle - -commit 33258a9c494274d274cc3009cafe0491c814022b -Author: Christian Beikov -Date: Wed Aug 16 20:03:32 2023 +0200 - - HHH-17098 Auto-discover ObjectMapper modules for JacksonJsonFormatMapper - -commit 9c0b4ee8ec38942c57d0e98c00456a9caf82172e -Author: Christian Beikov -Date: Thu Aug 17 12:07:22 2023 +0200 - - Increase timeout for some tests even further - -commit 42b7d79bd5e00aec1d38ada9567baf78cd97e4de -Author: Steve Ebersole -Date: Wed Aug 16 14:28:57 2023 -0500 - - HHH-17076 - Numeric literal typing - -commit 19b04003fabc140b84322225bc28299c5c467920 -Author: Christian Beikov -Date: Wed Aug 16 21:53:11 2023 +0200 - - Increase timeout for some tests - -commit 3c389d71969dfd49761c342340ca4daa352b1f84 -Author: Christian Beikov -Date: Wed Aug 16 20:02:01 2023 +0200 - - Fix tests for Oracle 11 - -commit 689d16216debfbe1c287cc07c5c248f6862104c5 -Author: Christian Beikov -Date: Wed Aug 16 18:53:09 2023 +0200 - - Fix running on JDK 22 - -commit e753da11f8075658dee8c0cd834b16ab6eb232f2 -Author: Steve Ebersole -Date: Mon Jul 31 16:37:47 2023 -0500 - - HHH-16962 - General documentation improvements - - https://hibernate.atlassian.net/browse/HHH-16962 - -commit c5ccae1b908eee2a10801537703cdbf8ee97a004 -Author: Steve Ebersole -Date: Tue Aug 15 14:15:52 2023 -0500 - - HHH-16529 - Verify the version used for enhancement against the version being used - - https://hibernate.atlassian.net/browse/HHH-16529 - -commit ab4ac5a64eb365363f699a2f6414ffcbe4248f60 -Author: Steve Ebersole -Date: Mon Aug 14 11:52:42 2023 -0500 - - HHH-17076 - Numeric literal typing - - https://hibernate.atlassian.net/browse/HHH-17076 - -commit c7ed34d1593162ea8a1de61c87a6aa05a1c0f2f7 -Author: Andrea Boriero -Date: Mon Jul 24 22:01:51 2023 +0200 - - HHH-16939 Optimistic and Pessimistic Force Increment Update Statements are not committed when using a batch - -commit 58d50e26f711e27b0a4133d342801731a34c7b13 -Author: Steve Dighans <139597170+stevedighans@users.noreply.github.com> -Date: Sat Jul 15 22:41:34 2023 -0600 - - HHH-16939 - Test batch force increment version update after SELECT - - Created test to validate that the version column is incremented after a SELECT statement while in batch mode. - -commit ec11992b86de42e698dd97494f49c52f254703eb -Author: Andrea Boriero -Date: Wed Aug 16 12:15:28 2023 +0200 - - HHH-17075 Lazy loading of association with non-PK referencedColumnName always yields null when bytecode enhancement is enabled - -commit 0648af5ec72154415beb4a2d4301f4f8f8524f19 -Author: Yoann Rodière -Date: Mon Aug 14 11:12:58 2023 +0200 - - HHH-17075 Reproducer for lazy loading of association with non-PK referencedColumnName yielding null - -commit 90dd4e6d77445f2f092b8df391773b4713d6501c -Author: marko-bekhta -Date: Wed Aug 16 10:45:30 2023 +0200 - - HHH-17086 Make JSON/XML format mappers modifiable in SessionFactoryOptionsBuilder - -commit 7c697f7e375e6010d06c4822cd2d2791b56e65fc -Author: Christian Beikov -Date: Tue Aug 15 19:35:08 2023 +0200 - - Fix Gradle toolchain issues - -commit ffe13dde3034c2929eb815482381ea2dc38954f5 -Author: Gavin King -Date: Tue Aug 15 23:13:18 2023 +0200 - - extract a method (very minor) - -commit 0897a90a9e674d1a56633622fcd6a240d7dbda41 -Author: Christian Beikov -Date: Tue Aug 15 15:34:42 2023 +0200 - - HHH-17078 Register/Deregister load context on every scroll operation - -commit b2fda37773d2df15de37cd164e0021cdbfd4b13f -Author: Christian Beikov -Date: Tue Aug 15 12:39:57 2023 +0200 - - Use try-with-resources to ensure scroll and stream tests close underlying resources - -commit 95efb07da78c1c20deea2ef751e470183ac6ac6a -Author: Christian Beikov -Date: Tue Aug 15 16:11:20 2023 +0200 - - Fix driver file overwrite problems - -commit 146cad32ad3f130912f7d7185ead21e3cad9efba -Author: Jan Schatteman -Date: Fri Jul 28 19:09:24 2023 +0200 - - HHH-17004 - Add test and fix for issue - - Signed-off-by: Jan Schatteman - -commit 4fb57f9a15d678f231398be1298b7af3f1a7d13e -Author: Christian Beikov -Date: Mon Aug 14 18:32:57 2023 +0200 - - HHH-17074 Type inference in duration arithmetic is wrong - -commit 96247c0e33df79bfdbad4dd0c8a423053938fe9c -Author: Steve Ebersole -Date: Mon Aug 14 12:43:22 2023 -0500 - - HHH-17047 - Follow up tasks for Gradle 8.2 upgrade - - - toolchains - - lazy Task creation - - documentation (documentation/ and release/) tasks - -commit 761ec951455eff85cd801473a97c7edb4976f717 -Author: Steve Ebersole -Date: Mon Aug 14 10:38:00 2023 -0500 - - HHH-17047 - Follow up tasks for Gradle 8.2 upgrade - - - toolchains - - lazy Task creation - - documentation (documentation/ and release/) tasks - -commit 6808f451bafb4bcee2c7816cf43a89b175b9c8e1 -Author: Christian Beikov -Date: Tue Jul 18 12:09:15 2023 +0200 - - HHH-16878 Add support for joins in SQL DML AST - -commit d204916c860f722f36358f34fb062b9b15f1e44b -Author: Andrea Boriero -Date: Fri Jul 7 15:10:58 2023 +0200 - - HHH-16878 Add test for issue - -commit e338d4916574ef72e372709ceb7e78369776e5c1 -Author: marko-bekhta -Date: Fri Aug 11 17:44:45 2023 +0200 - - HHH-17072 Process tenant-id from XML mapping - -commit c6a2771572b4d99ed4d438ca8a0e2e398807827e -Author: Christian Beikov -Date: Mon Aug 14 15:32:10 2023 +0200 - - Fix driver file overwrite problems - -commit 8630d79e79a6fbff44c2207777ebd5a0686c0cfc -Author: Andrea Boriero -Date: Wed Aug 9 16:22:49 2023 +0200 - - HHH-16577 Bytecode enhancement and @DynamicUpdate causes Index Out of Bound Exception - -commit 54fbe1011615bf24be0d4c76e88cb3b640460a98 -Author: Andrea Boriero -Date: Wed Aug 9 16:20:16 2023 +0200 - - HHH-16577 Add test for issue - -commit dc52fe6ef437c07539d5eff5fe3ce523c798125e -Author: Steve Ebersole -Date: Mon Aug 14 07:54:58 2023 -0500 - - HHH-17047 - Follow up tasks for Gradle 8.2 upgrade - - - toolchains - - lazy Task creation - - documentation (documentation/ and release/) tasks - -commit a6b43a6a459602acc4869ee48ebd83b72de8b7c5 -Author: Steve Ebersole -Date: Mon Aug 14 07:49:23 2023 -0500 - - HHH-17047 - Follow up tasks for Gradle 8.2 upgrade - - - toolchains - - lazy Task creation - - documentation (documentation/ and release/) tasks - -commit 63ea157390b4b26392dfe70a04cab5c958f0c0a5 -Author: Steve Ebersole -Date: Tue Aug 8 18:11:13 2023 -0500 - - HHH-17047 - Follow up tasks for Gradle 8.2 upgrade - - - toolchains - - lazy Task creation - - documentation (documentation/ and release/) tasks - -commit ffa2ee1443e807193a509d5c64e41af73567470a -Author: marko-bekhta -Date: Fri Aug 11 10:28:56 2023 +0200 - - HHH-17047 - Follow up tasks for Gradle 8.2 upgrade - - - tweak how see additional links section is rendered - - update external javadoc links - -commit 9e2108e7d77813cf8b1d3df1cafe4a94c50b7b7a -Author: Steve Ebersole -Date: Thu Aug 10 16:15:57 2023 -0500 - - HHH-17047 - Follow up tasks for Gradle 8.2 upgrade - - - toolchains - - lazy Task creation - - documentation (documentation/ and release/) tasks - -commit 8d945bff6038dfb1541b67f568cd49676d255701 -Author: marko-bekhta -Date: Thu Aug 10 19:11:03 2023 +0200 - - HHH-17047 - Follow up tasks for Gradle 8.2 upgrade - - - clean up asciidoc converter - -commit d3a1bd70ae5b2dc56ed15029c5593d39390837e1 -Author: Steve Ebersole -Date: Thu Aug 10 09:20:24 2023 -0500 - - HHH-17047 - Follow up tasks for Gradle 8.2 upgrade - - - toolchains - - lazy Task creation - - documentation (documentation/ and release/) tasks - -commit d8d1113293b9c32b9b1032b1731fa20759dc4915 -Author: Steve Ebersole -Date: Tue Aug 8 18:11:13 2023 -0500 - - HHH-17047 - Follow up tasks for Gradle 8.2 upgrade - - - toolchains - - lazy Task creation - - documentation (documentation/ and release/) tasks - -commit 306adef2a73c3ae54d288978d37ea417d580437f -Author: Steve Ebersole -Date: Mon Aug 7 20:05:47 2023 -0500 - - General Gradle work - toolchains - -commit f49b87600ef0e5869d7d7d3d54bc8e72953737a7 -Author: Marco Belladelli -Date: Mon Aug 7 10:01:01 2023 +0200 - - HHH-16928 Add test for issue - -commit 599b064b8e8929b620d2213783694681895f361e -Author: Gavin King -Date: Sun Aug 13 10:27:00 2023 +0200 - - fix errors in code examples and add subsection on pad() to HQL guide - -commit deabfa0e47e60a6ad93b3ba45395e3fe59f23304 -Author: Andrea Boriero -Date: Tue Aug 8 17:16:36 2023 +0200 - - HHH-17041 Embeddable and Generics throws IllegalArgumentException - -commit 005e28113e370946363e5145a26b2137053977e8 -Author: Andrea Boriero -Date: Mon Aug 7 16:32:22 2023 +0200 - - HHH-17041 Add test for issue - -commit 267e65239ea819e58c80432241b8184d4ed4dc00 -Author: Andrea Boriero -Date: Mon Aug 7 16:32:04 2023 +0200 - - HHH-17034 Bytecode enhancement leads to broken constructor for a generic embedded field in a twice removed MappedSuperclass - -commit b250f3f1fb3bc979f33fc2f7cc5e6d07d910936c -Author: Yoann Rodière -Date: Fri Aug 4 18:32:59 2023 +0200 - - HHH-17035 Reproducer for Bytecode enhancement leading to StackOverflowError with specific setup involving different generic parameter names - -commit a7e9c8a7210a4589eaf4981e5423cfad00f1e778 -Author: Yoann Rodière -Date: Fri Aug 4 16:20:59 2023 +0200 - - HHH-17034 Reproducer for exception with bytecode-enhanced entity with embeddable in twice removed generic mappedsuperclass - -commit 4666d774e42266da90d6fc132193454020b37019 -Author: Steve Ebersole -Date: Fri Aug 11 08:19:41 2023 -0500 - - HHH-14306 - Passed TcclLookupPrecedence parameter in JPA properties is ignored - -commit 317334f14dd7bbcd1b8881114bb489e1dbb14525 -Author: Marco Belladelli -Date: Tue Aug 1 10:01:20 2023 +0200 - - HHH-16798 Fix check for supertype-treats in single table inheritance - - Also, fix a small bug in special not-null discriminator predicate rendering - -commit dbaf309050687520245ba924551b2effeca50846 -Author: Marco Belladelli -Date: Tue Jun 20 14:57:50 2023 +0200 - - HHH-16798 Add test for issue - -commit bbee6cd4aa2b7b302be16e07188aeb5138354c60 -Author: Gavin King -Date: Thu Aug 10 20:56:00 2023 +0200 - - improve generic typing of Hibernate.isPropertyInitialized() - -commit 09dd5daa73036ce7028975143fc15b27158a9d24 -Author: Gavin King -Date: Thu Aug 10 20:18:08 2023 +0200 - - HHH-16973 document optional 'from' clause and use it in @HQL examples - -commit 5b2d347b6fef8525984589ce74fa0c7901a76881 -Author: Christian Beikov -Date: Thu Aug 10 11:41:53 2023 +0200 - - Setup TiDB for local testing - -commit e275d5820b5ea2f9256200d13a7b1ea575ec5133 -Author: Sanne Grinovero -Date: Thu Aug 10 11:11:39 2023 +0200 - - HHH-17061 Cleanup of deprecated annotations and javadoc in PersistentClass - -commit 0252c16b4fb8e34f92edfa466080b7dae419769d -Author: Sanne Grinovero -Date: Wed Aug 9 16:05:00 2023 +0200 - - HHH-17061 Remove deprecated method PersistentClass#getDiscriminatorColumnIterator - -commit aea84e3fdc54a8b1b1429a411e711e76381fc3f7 -Author: Sanne Grinovero -Date: Wed Aug 9 16:02:48 2023 +0200 - - HHH-17061 Remove deprecated method PersistentClass#getJoinIterator - -commit 6970ddbbbf931a3645ae0c99ae479813b89b23ea -Author: Sanne Grinovero -Date: Wed Aug 9 15:52:49 2023 +0200 - - HHH-17061 Remove unused custom collection: JoinedIterator - -commit 5754cd608c7f75163c16d65382355948fcc21233 -Author: Sanne Grinovero -Date: Wed Aug 9 15:50:58 2023 +0200 - - HHH-17061 Remove PersistentClass#getPropertyIterator - -commit 0a5d9f293dc23cb6d4be3eac9a4aadcc7d19f969 -Author: Sanne Grinovero -Date: Wed Aug 9 15:44:13 2023 +0200 - - HHH-17061 Amend javadoc of PersistentClass#getProperties - -commit a1b899799a173d1486fe12992f87b8aeb95722ed -Author: Sanne Grinovero -Date: Wed Aug 9 12:27:54 2023 +0200 - - HHH-17061 Remove internal custom collection SingletonIterator - -commit ee85011c5db0c996e40fa5d1bea2810dfa51182d -Author: Sanne Grinovero -Date: Wed Aug 9 12:25:57 2023 +0200 - - HHH-17061 Remove PersistentClass#getUnjoinedPropertyIterator() - -commit 58c3460f1ffc9c863ac4e99a0a3a7b4403f0f4b5 -Author: Sanne Grinovero -Date: Wed Aug 9 12:21:49 2023 +0200 - - HHH-17061 Remove PersistentClass#getJoinClosureIterator - -commit c4b0a717220b29559bb1281dd432c020390e2151 -Author: Sanne Grinovero -Date: Wed Aug 9 12:17:55 2023 +0200 - - HHH-17061 Remove PersistentClass#getKeyClosureIterator - -commit d9e70896cd6b5fa48bebdf75a35199fb09cc2cfb -Author: Sanne Grinovero -Date: Wed Aug 9 12:15:52 2023 +0200 - - HHH-17061 Remove PersistentClass#getTableClosureIterator - -commit e5b0e71dfab20d04698942f211b3232b1f82f7b2 -Author: Sanne Grinovero -Date: Wed Aug 9 12:13:57 2023 +0200 - - HHH-17061 Remove PersistentClass#getDeclaredPropertyIterator - -commit e922b90c32444b5465a842da6fcf4459869f425e -Author: Sanne Grinovero -Date: Wed Aug 9 12:11:36 2023 +0200 - - HHH-17061 Remove getSubclassTableClosureIterator - -commit 1a4be30a705e9d7e28830b7d686051723141ce77 -Author: Sanne Grinovero -Date: Wed Aug 9 12:11:01 2023 +0200 - - HHH-17061 Remove getSubclassJoinClosureIterator - -commit be19f1547d43a3f899d3eed84f9e70aa5358b2c3 -Author: Sanne Grinovero -Date: Wed Aug 9 12:10:31 2023 +0200 - - HHH-17061 Remove getSubclassClosureIterator - -commit 41522333958fb49e732329d56bd38e646dde87e6 -Author: Sanne Grinovero -Date: Wed Aug 9 12:10:00 2023 +0200 - - HHH-17061 Remove PersistentClass#getSubclassIterator - -commit f42766e50573e51e3a6d70dd75e69aeeee08bebd -Author: Sanne Grinovero -Date: Wed Aug 9 12:09:05 2023 +0200 - - HHH-17061 Remove getPropertyClosureIterator - -commit e2ca0b74ee5205810a075807f7f6a9d40b9f1ef7 -Author: Sanne Grinovero -Date: Wed Aug 9 12:08:10 2023 +0200 - - HHH-17061 Remove PersistentClass#getSubclassPropertyClosureIterator - -commit ab77c82b8a16ab66678d41e6438f361fbef00bdd -Author: Sanne Grinovero -Date: Wed Aug 9 12:02:54 2023 +0200 - - HHH-17059 Remove deprecated method Table#getIndexIterator - -commit 86155f87059643e30f70f635d5eb9793b5454072 -Author: Sanne Grinovero -Date: Wed Aug 9 11:49:00 2023 +0200 - - HHH-17058 Remove PersistentClass#getReferenceablePropertyIterator - -commit 63473e99cd269fcdddc4cb72fbdfddee5bf3fde8 -Author: Sanne Grinovero -Date: Wed Aug 9 11:47:30 2023 +0200 - - HHH-17057 Remove PersistentClass#getNonDuplicatedPropertyIterator - -commit 524e36ed8775d36d1329affa9b1cf32d4d566e5e -Author: Sanne Grinovero -Date: Wed Aug 9 11:40:40 2023 +0200 - - HHH-17056 Deprecate SimpleValue#getConstraintColumnIterator() - -commit b602c9bddffe452bf0b321e2ac95a3bd867096b5 -Author: Sanne Grinovero -Date: Mon Aug 7 18:13:53 2023 +0200 - - HHH-17055 Remove deprecated method Value#getColumnIterator() - -commit 3b5d0d6bfbd92d1b990267c3e9468ff8f22f1a32 -Author: Sanne Grinovero -Date: Wed Aug 9 23:04:49 2023 +0200 - - HHH-17066 Upgrade H2 to version 2.2.220 - -commit c70b6946b15f896d1c715b1bf2e2e4dd401bc7f9 -Author: Gavin King -Date: Wed Aug 9 19:58:03 2023 +0200 - - mention Persistence.generateSchema() in doc - -commit d3b6eaea536f77f6e99560e4de295eab73bdcd6d -Author: Marco Belladelli -Date: Mon Aug 7 16:11:57 2023 +0200 - - HHH-16918 Unify column duplication checking logic under Value - -commit bafc2ae88ecd5468a1a10f62cf01727550cc7870 -Author: Marco Belladelli -Date: Mon Aug 7 16:17:46 2023 +0200 - - HHH-16918 Retain any key and discriminator (insert/updat)ability - -commit f5d806623e3e284192840de6c7ef9fe78a83a936 -Author: Marco Belladelli -Date: Thu Aug 3 10:37:56 2023 +0200 - - HHH-16918 Add test for issue - -commit 6f96ce41d1ce78b10b5efdfe8ca82b0be3fef108 -Author: Marco Belladelli -Date: Tue Aug 1 14:01:37 2023 +0200 - - HHH-16755 Consider inherited properties when handling generics - -commit 8ab82f1401c8f38332a046d231f4d6c712a2fc7b -Author: Marco Belladelli -Date: Tue Aug 1 14:01:29 2023 +0200 - - HHH-16755 Add test for issue - -commit 7a75a0734bf828d106169f24e8e254c92b5298ea -Author: Gavin King -Date: Wed Aug 9 11:05:15 2023 +0200 - - get rid of warnings in JdbcTypeJavaClassMappings - -commit ae8b3f9a33f204086cffcb857a4863f20c2953ad -Author: marko-bekhta -Date: Tue Jul 25 11:08:32 2023 +0200 - - HHH-16990 Add support for more hibernate-specific features to XML mappings - - - org.hibernate.annotations.Type - - org.hibernate.annotations.JdbcTypeCode - - org.hibernate.annotations.UuidGenerator - -commit 7edb7984a8be13d235924d2cc9b340f9d0d27f26 -Author: marko-bekhta -Date: Tue Jul 25 10:15:06 2023 +0200 - - HHH-16990 Make marshalling adapters null-safe - -commit 93f1ed6e767332c1c769e1673b46235b30cc017c -Author: Cedomir Igaly -Date: Wed May 31 09:53:09 2023 +0200 - - HHH-16591 - Replace thrre methods adaptToPreferredSqlTypeCodeForXXX with single adaptToPreferredSqlTypeCode - -commit 3f7e880f73c5adb0a8c3842164171ba6b66ab3af -Author: Cedomir Igaly -Date: Tue May 16 14:49:41 2023 +0200 - - HHH-16591 - Fixing preferred SQL type code change handling for UUID as previously for Duration - -commit 448f902ced587794c3bdb45a6bd7b3b9d1da8a03 -Author: Cedomir Igaly -Date: Tue May 16 14:48:47 2023 +0200 - - HHH-16591 Add a test case to check if PREFERRED_UUID_JDBC_TYPE can be overridden by annotations - -commit 3241c2d117e050af835aefa4b67217765666d936 -Author: Cedomir Igaly -Date: Sat May 13 17:57:29 2023 +0200 - - HHH-16591 - Handle preferred SQL type code change for Duration similar to Instant - -commit 280ff719bb750bdf2f8808eccb43236724fecf36 -Author: Cedomir Igaly -Date: Sat May 13 17:56:36 2023 +0200 - - HHH-16591 - See documentation 2.2.21 - "By default, Hibernate maps Duration to the NUMERIC SQL type." - -commit 049f24d67aded9b3a09786d7d4c63ab4340ba140 -Author: Cedomir Igaly -Date: Sat May 13 17:52:06 2023 +0200 - - HHH-16591 - Default JdbcType should be looked up by Duration class type, not by INTERVAL_SECOND - -commit c1ecd20850318e46cf1e77e6f0969517ea4f7c82 -Author: marko-bekhta -Date: Thu May 11 18:54:28 2023 +0200 - - HHH-16591 Update the docs to use `JdbcTypeCode` instead of `JdbcType` to override an SQL type for Duration - -commit 83d706d092f4648a69354c81e86b3142865e8c22 -Author: marko-bekhta -Date: Thu May 11 18:50:39 2023 +0200 - - HHH-16591 Add a test case to check if PREFERRED_DURATION_JDBC_TYPE can be overridden by annotations - -commit 63eedee7a2800b0f9258779591a0c74cf65ac09c -Author: Christian Beikov -Date: Wed Jul 26 16:37:26 2023 +0200 - - HHH-16759 When ComponentType is immutable, use instantiator instead of setting property values - -commit 24467aa86ef758a50eb8bd00a11df8b23f19d1b3 -Author: Cedomir Igaly -Date: Sat Jun 17 12:58:39 2023 +0200 - - HHH-16759 Added tests for transient and persistent entities - -commit 75f3ad96514c7bf7354d7462aba67ad718e9a4cd -Author: Gavin King -Date: Tue Aug 8 21:07:33 2023 +0200 - - fix type in jdoc - -commit 14ba8f5c20f8b6be12099cfae3b71a9ed305de38 -Author: Gavin King -Date: Tue Aug 8 15:37:46 2023 +0200 - - HHH-17046 make SchemaManager.truncateMappedObjects() repopulate table generators - -commit 4da2fe0f5b19c8cd170075f05933b9d3e9063ea8 -Author: Gavin King -Date: Tue Aug 8 14:03:36 2023 +0200 - - add a test for implicit collection joins in 'select' clause - -commit 2bd427befe1424d1dbbcf665e47ce69cad14391f -Author: Scott Marlow -Date: Fri Aug 4 10:44:40 2023 -0400 - - HHH-16971 Upgrade ByteBuddy to 1.14.5 - - Signed-off-by: Scott Marlow - -commit f2a0087757e43a10947a119c003566fd3f16aca4 -Author: Yoann Rodière -Date: Fri Aug 4 15:13:38 2023 +0200 - - HHH-16832 Add missing test annotation - -commit 4551f5bcc49a24787125c270f3357907fa153870 -Author: Christian Beikov -Date: Mon Aug 7 17:19:22 2023 +0200 - - Improve test reliability on Sybase - -commit 67c52f87bc8e9c28c15501531d60f6d341654f7b -Author: Christian Beikov -Date: Mon Aug 7 15:54:44 2023 +0200 - - HHH-16611 Switch NameQualifierSupport for Sybase to BOTH - -commit feb3b3fc3688a8ffbc0b58544270addda119d040 -Author: Christian Beikov -Date: Mon Aug 7 18:48:40 2023 +0200 - - HHH-17033 Fix invalid SQL being generated for implicit join in entity join on clause - -commit 185cfbc4cc5ce403171e4cf6ed0fd9e8b00d9c11 -Author: Sanne Grinovero -Date: Mon Aug 7 17:37:36 2023 +0200 - - HHH-17043 Remove unused internal collection JoinedIterable - -commit 869d857823c26639198bdbaa951ca591f8d79cc3 -Author: Marco Belladelli -Date: Mon Jul 31 12:08:26 2023 +0200 - - HHH-16988 Fix and simplify the getNavigablePathCopy method - - Handle implicitly treated navigable paths copy correctly. - Also, small change to findPluralAttribute() to correctly handle multiple inheritance types. - -commit e3ccfdf829b42ca79f74d39a8bd71d7612c928b7 -Author: Marco Belladelli -Date: Mon Jul 31 12:04:05 2023 +0200 - - HHH-16988 Add test for issue - -commit df88fd15fa72b436cded5a8e68e669c0a66cdad2 -Author: Davide D'Alto -Date: Mon Aug 7 10:15:53 2023 +0200 - - HHH-17037 Changes for Hibernate Reactive - - Make it possible to override the SingleIdLoadPlan - and the SingleIdEntityLoader. - -commit 000e21dad54ebcc74b27491f6a7979c73b4b95b8 -Author: Andrea Boriero -Date: Mon Aug 7 11:49:21 2023 +0200 - - HHH-16968 StackOverflowError when using NaturalIdLoadAccess and bi-directional association - -commit 6a1e4a5e454279879216ceff30258915cab81a21 -Author: Andrea Boriero -Date: Mon Aug 7 11:48:45 2023 +0200 - - HHH-16968 Add test for issue - -commit b43e32eb806a0a8b6405fd9df57423cffb5dcd10 -Author: Gavin King -Date: Mon Aug 7 18:23:43 2023 +0200 - - HHH-17009 put back AbstractPostInsertGenerator in deprecated mode - - I should not have removed this class, I messed up there. - -commit 351071296b9fd8e0620dd43a473a04a9ed079c6b -Author: Christian Beikov -Date: Mon Aug 7 11:08:36 2023 +0200 - - HHH-17001 Visit nested joins and predicates only once through special consume methods in BaseSemanticQueryWalker - -commit a4a75efcd3023498367094d5d46b184930850d9b -Author: Christian Beikov -Date: Mon Aug 7 11:08:02 2023 +0200 - - HHH-17001 Test for StackOverflowError during parameter collection - -commit 09c6c1d6e8cf1017143a2297d3150a16fdbfe4c8 -Author: Yoann Rodière -Date: Mon Aug 7 16:14:42 2023 +0200 - - Use JUnit 5 for Java Modules integration tests - - No idea why we weren't, but using JUnit 4 leads to problems with JDK 21 - (some classes being detected as tests even though they aren't), - so let's avoid that. - -commit 03e2fc96549c6aa023826ebf7128eebb612515db -Author: Yoann Rodière -Date: Mon Aug 7 15:52:00 2023 +0200 - - Use Java 21 bytecode for tests when testing against JDK 21 - -commit ffbced83a934e9832cf9c99280f853c0136a47c1 -Author: Gavin King -Date: Mon Aug 7 12:44:05 2023 +0200 - - HHH-17039 fix Session vs EntityManager confusion in doc code examples - -commit 36fc27dd4ad9aa68d8a8f93af76b88522bd4354f -Author: Marco Belladelli -Date: Fri Aug 4 10:24:40 2023 +0200 - - HHH-16919 Always skip initialization for non-owning entity initializers - -commit 55a5be5c9d999e69152b008146d96a40ccf57d0c -Author: Marco Belladelli -Date: Thu Aug 3 12:02:04 2023 +0200 - - HHH-16919 Add test for issue - -commit 44e48740a1b26833d64a573b5f46a8e64a400db6 -Author: Marco Belladelli -Date: Wed Aug 2 10:35:58 2023 +0200 - - HHH-16879 Handle parent injection in ComponentType#assemble - -commit f4807c02498e31e1bd08f0039cc9b3de8f0ccb4a -Author: Marco Belladelli -Date: Wed Aug 2 10:35:44 2023 +0200 - - HHH-16879 Add test for issue - -commit 2b1a5ae74f653691e13f0dd274bc960551f1b58e -Author: Christian Beikov -Date: Mon Aug 7 09:22:22 2023 +0200 - - HHH-16670 Test to ensure columnDefinition has precedence over specialized type declaration - -commit adc962957d5137daf5c442f0eb71cb44719db597 -Author: Andrea Boriero -Date: Fri Aug 4 12:26:36 2023 +0200 - - HHH-16762 SchemaMigrator generates ORA-22859 errors on columns annotated with @Lob - -commit db602cb535c1e73a99e7939787c465d311ef3c1f -Author: Andrea Boriero -Date: Thu Aug 3 11:34:10 2023 +0200 - - HHH-17011 Add test for issue - -commit b57fbb124546c7807a30a05e4545ef2d22493198 -Author: Christian Beikov -Date: Fri Aug 4 16:11:35 2023 +0200 - - Fix Sybase duration arithmetic problem - -commit 35fa14a666f307e1aecc5f877353439479e36b5d -Author: Christian Beikov -Date: Fri Aug 4 14:51:05 2023 +0200 - - HHH-16901 Add test for a partial null composite FK to a non-primary key - -commit 22535bbd92f1a515f238d0993939d0775edd6809 -Author: Andrea Boriero -Date: Tue Aug 1 15:08:58 2023 +0200 - - HHH-16997 Embedded components in HibernateProxy are not initialized when entity has reference to another entity of the same type + HHH-16901 Embedded field in entity association from composite key not correctly instantiated - -commit 7cb00f3521a37b37628890df9dccaaa62a68d70b -Author: Marco Belladelli -Date: Mon Jul 10 11:38:26 2023 +0200 - - HHH-16901 Add test for issue - -commit 424c6b447f31cb9c0560c2543dc0237b8488e67c -Author: Andrea Boriero -Date: Thu Jul 27 18:35:33 2023 +0200 - - HHH-16997 Add test for issue - -commit 40aa49b504e6a59acb0900e2e789dff7e5490dfe -Author: Andrea Boriero -Date: Thu Aug 3 17:39:17 2023 +0200 - - Fix java 17 build error with Gradle 8 - -commit 126a28e8f4b3ad49179d40262a7e23ff7cd4025c -Author: Andrea Boriero -Date: Thu Aug 3 15:38:03 2023 +0200 - - Fix jpamodelgen build error with Gradle 8 - -commit 345598aab68b00c2ed5219610791a643a81f4064 -Author: Andrea Boriero -Date: Thu Aug 3 15:21:22 2023 +0200 - - Fix documentation build error with Gradle 8 - -commit ac6ee6788b5f78448c760834b028707d999ccf65 -Author: Yoann Rodière -Date: Tue Jun 13 12:05:18 2023 +0200 - - Stop testing against JDK 19 - -commit 97a10e772dd3821b2bf729a171aaf022f57429f5 -Author: Yoann Rodière -Date: Tue Jun 13 12:04:56 2023 +0200 - - Test against JDK 22 EA - -commit a209b7ad46c07f165404005ae7b6a6530b330da9 -Author: Christian Beikov -Date: Fri Jun 16 12:07:59 2023 +0200 - - HHH-16737 Parse non-type-suffixed number literals as types that fit the number value - -commit 35a671e64e046b16177927b84194ca117d1d743b -Author: Andrea Boriero -Date: Wed Aug 2 15:04:09 2023 +0200 - - HHH-17019 EntityListener is not triggered for a LAZY loaded association - -commit 1b1ed2396439154658e517d8cf7d6e30a659af71 -Author: Andrea Boriero -Date: Wed Aug 2 11:46:36 2023 +0200 - - HHH-17019 Move tests to bytecode folder - -commit c971b16e14b6e08880898f68245196fedc39e74f -Author: marko-bekhta -Date: Tue Aug 1 15:39:48 2023 +0200 - - HHH-17019 Create a reproducer for the issue - -commit 537602b9934174f82c2e4c5f4bd0c78bb81cfd88 -Author: Christian Beikov -Date: Mon Jul 24 16:41:14 2023 +0200 - - HHH-16694 Generated enum columns should respect the enum's intended order - -commit 6a4b7467f7caf4d7655953799b368a6ef9428506 -Author: Christian Beikov -Date: Wed Aug 2 19:10:10 2023 +0200 - - Fix Oracle 11 test failure - -commit f2b4454c0e971d763d819d071b9f892ad0ceb6bb -Author: The-Huginn -Date: Wed Aug 2 15:28:27 2023 +0200 - - [HHH-16979] Change SqmPathSource resolution method call - -commit 71cb3477ca63e2fa0e98df75f9df7465ddb9d4d9 -Author: Clement Escoffier -Date: Thu Jul 27 10:15:50 2023 +0200 - - HHH-17005 - Replace monitor with a Java lock to avoid pinning when using virtual threads - - This commit replaces a `synchronized` with a ReentrantLock in: - - - PooledOptimizer - - PooledLoOptimizer - - LegacyHiLoAlgorithmOptimizer - - HiLoOptimizer - - The other implementations do not use a monitor lock. - -commit d825801f0da87de5f940570456273f83dae790a1 -Author: Marco Belladelli -Date: Wed Aug 2 14:03:02 2023 +0200 - - HHH-16751 Add test for issue - -commit 1656d26aa5aad23778d1a0da583e7a00d8491d14 -Author: Steve Ebersole -Date: Mon Jul 31 10:34:57 2023 -0500 - - HHH-17015 - Upgrade to Gradle 8 - - https://hibernate.atlassian.net/browse/HHH-17015 - -commit 19eb5a6e8ccc7a73cfe440f1650a59634b2f4185 -Author: Steve Ebersole -Date: Mon Jul 31 08:14:48 2023 -0500 - - HHH-17015 - Upgrade to Gradle 8 - - https://hibernate.atlassian.net/browse/HHH-17015 - -commit fe89b0b4b1792362084135d5044a6d768ac935b8 -Author: James Bodkin <45513568+JBodkin@users.noreply.github.com> -Date: Tue Jul 18 16:57:58 2023 +0100 - - HHH-16766: Load lazy hierarchical IdClass entities - -commit 91b17b8179e7027bb57853d90b96f105f0a1e41b -Author: Marco Belladelli -Date: Fri Jul 7 12:36:13 2023 +0200 - - HHH-16888 Return correlated root in findRoot() for entity joins - -commit be9465c1f984b9b7ebbff7c0e33c24344e532fb1 -Author: Marco Belladelli -Date: Fri Jul 7 12:07:47 2023 +0200 - - HHH-16888 Add test for issue - -commit 3365c6f5855a544de0d10979910cc1fcf6d78223 -Author: marko-bekhta -Date: Mon Jul 31 18:56:40 2023 +0200 - - HHH-17016 Cast to the correct MySQL dialect - -commit ba25ebbfb543b904a597c455403ad95b2c978f84 -Author: joohyukkim -Date: Sat Jul 29 16:01:14 2023 +0900 - - Update Database_Access.adoc - -commit 9d4d7288677f11cc10943b85cd76ae23b31ff9a9 -Author: joohyukkim -Date: Sat Jul 29 15:55:48 2023 +0900 - - FIx typo - -commit 1fa0694d6fc8473605821f713ecc369b0770876c -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Mon Jul 31 05:14:04 2023 +0000 - - Bump com.gradle.enterprise from 3.14 to 3.14.1 - - Bumps com.gradle.enterprise from 3.14 to 3.14.1. - - --- - updated-dependencies: - - dependency-name: com.gradle.enterprise - dependency-type: direct:production - update-type: version-update:semver-patch - ... - - Signed-off-by: dependabot[bot] - -commit 4af306f2c2a1c74d706bc0167d69be89bb814df6 -Author: Sanne Grinovero -Date: Sun Jul 30 23:42:00 2023 +0100 - - HHH-16911 Don't wait for 3m in the self-test of ClassLoaderLeaksUtilityTest - -commit ed88d050f87c0872b1829e6e1a0750ae18478c17 -Author: Gavin King -Date: Fri Jul 28 23:36:59 2023 +0200 - - HHH-17006 fix HQL ':enumValue is null' - -commit c74d6fa86f607c39d46cc42b1cbe12eefa55e61b -Author: Gavin King -Date: Thu Jul 27 15:27:24 2023 +0200 - - HHH-17006, HHH-13016 various refactorings/cleanups before fix - - - Misc cleanups and fixes to incorrect generic typing of some operations - - Try to fix bodgy type inference algorithm for case/when expressions - -commit 5daf7a03545248f5bec27fef3d9c7854a5b5abe0 -Author: Sanne Grinovero -Date: Fri Jul 28 14:57:32 2023 +0100 - - HHH-16911 Allow using 3GB of memory to build - -commit 1bc6b11ec52fc5396a54208bf86a1944ff7cd3d2 -Author: Sanne Grinovero -Date: Fri Jul 28 08:34:57 2023 -0400 - - HHH-16911 Ensure the PhantomReference doesn't get collected before having had a change to trigger - -commit d415b5f0d24e9cf1754e430e14bba592df5dd610 -Author: Christian Beikov -Date: Fri Jul 28 08:45:08 2023 +0200 - - HHH-16567 - Remove support for CockroachDB versions older than 22.1 - -commit ae934e72eebcefff219a45bc63d09b69c349f0f1 -Author: Sanne Grinovero -Date: Tue Jul 18 19:18:22 2023 +0100 - - HHH-16911 Save some memory in CallbackRegistryImpl - -commit a9f77b4cfb6e3923f36ca8880914a7ad83e0852b -Author: Sanne Grinovero -Date: Tue Jul 11 04:46:29 2023 -0400 - - HHH-16911 Ensure we don't leak references to JPA callbacks on SessionFactory close - -commit 4c3666babc3828bfc190eddcfd74c554668fbbc2 -Author: Sanne Grinovero -Date: Tue Jul 18 18:50:14 2023 +0100 - - HHH-16911 Integration test for SessionFactory using callbacks to not leak ClassLoader - -commit 5a215a146f089f98b602595b21b75b6d3083dda1 -Author: Sanne Grinovero -Date: Mon Jul 17 19:16:43 2023 +0100 - - HHH-16911 Integration test for empty SessionFactory to not leak the CL - -commit 9973c80a767e21ef9a1ee77b99b952875a160fb2 -Author: Sanne Grinovero -Date: Thu Jul 13 18:58:16 2023 +0100 - - HHH-16911 Introduce a testing utility to spot ClassLoader leaks - -commit a03c947b5d93fb4c93eefb76621b00864a8ad467 -Author: Sanne Grinovero -Date: Wed Jul 12 19:28:11 2023 -0400 - - HHH-16911 Introduce a testing utility to spot memory leaks - -commit dac96abd240b66f747ea01260207ce72f20dcef3 -Author: Sanne Grinovero -Date: Mon Jul 10 04:41:09 2023 -0400 - - HHH-16911 MapBackedClassValue ClassLoader leak - -commit d213fff3de94ce78788db742134c614b8bd40da4 -Author: Christian Beikov -Date: Thu Jul 27 18:28:35 2023 +0200 - - Make sure tests work with Oracle 11 - -commit c5cd1c26643aaee6b2952a708d372f5ee1caad00 -Author: Andrea Boriero -Date: Mon May 8 11:29:32 2023 +0200 - - Gradle add test logging exceptionFormat = 'full' - -commit 6c8cdb1b32efeb2586862383489219695e6e064a -Author: Andrea Boriero -Date: Thu Jul 27 11:41:37 2023 +0200 - - HHH-16816 Add test for issue - -commit d8363d720a1b8fbd97cc45d356176314cb2b6c1d -Author: Sanne Grinovero -Date: Wed Jul 26 16:11:32 2023 +0100 - - HHH-17003 Race conditions in LazyLoadingConnectionCloseTest and ConnectionsReleaseAutoCommitTest - -commit b561e64fca6909e681e6084133fd4ea6dd6553a2 -Author: Andrea Boriero -Date: Tue Jul 25 16:36:50 2023 +0200 - - HHH-16959 Add test for issue - -commit e2f92af59f6e04efe96944391d08e5ed8e855e56 -Author: Andrea Boriero -Date: Wed Jul 26 10:05:22 2023 +0200 - - HHH-16959 Fail to batch delete entities with nested embeddeds - -commit 9add83ec92d935a1b465486b8ef1278f5b0e38d2 -Author: Gavin King -Date: Wed Jul 26 13:44:15 2023 +0200 - - fix problem where Hibernate refused to instantiate non-public UserType - - also: - - - clean up some code with respect to generic typing - - improve some exception reporting - -commit 0725022d79b6c4553c333eaf6eed2458d50e67a7 -Author: Andrea Boriero -Date: Mon Jul 24 15:51:03 2023 +0200 - - HHH-16966 StackOverFlowError with @ManyToOne and @Proxy( lazy=false ) - -commit 87096e5a0a491bce76f8c9ffd6e9465f392041e7 -Author: gtoison -Date: Fri Jul 21 13:19:56 2023 +0200 - - HHH-16966 Test reproducing the issue - -commit bde1034aee8d55f240690738ff0a6d34eb235e81 -Author: Laurent Klock -Date: Mon Jul 24 11:26:36 2023 +0200 - - HHH-16977 Fixed in NullPointerException in EntityEntryContext.downgradeLocks - -commit c7bafd646aba6806270766fa8ca221ab1d25aadc -Author: Andrea Boriero -Date: Tue Jul 25 12:27:40 2023 +0200 - - HHH-16895 @Check constraint not generated when annotated on entity - -commit 9d8d6263239cf264cb23711678dcd61dc9d8b87d -Author: Andrea Boriero -Date: Tue Jul 25 11:58:23 2023 +0200 - - HHH-16895 Add test for issue - -commit 9bb1327581739c1e7894dd4b4ec325f1b45a5a89 -Author: Andrea Boriero -Date: Wed Jul 26 12:09:10 2023 +0200 - - Revert "HHH-16959 Fail to batch delete entities with nested embeddeds" - - This reverts commit 533c1cd22b00c294c99facf02200be494bf370c6. - -commit 5ca06af029f975bd6364d4fd969137002546176a -Author: Andrea Boriero -Date: Wed Jul 26 12:08:56 2023 +0200 - - Revert "HHH-16959 Add test for issue" - - This reverts commit 6c767eab1f3396526d377adc91253ab2bce752e1. - -commit 533c1cd22b00c294c99facf02200be494bf370c6 -Author: Andrea Boriero -Date: Wed Jul 26 10:05:22 2023 +0200 - - HHH-16959 Fail to batch delete entities with nested embeddeds - -commit 6c767eab1f3396526d377adc91253ab2bce752e1 -Author: Andrea Boriero -Date: Tue Jul 25 16:36:50 2023 +0200 - - HHH-16959 Add test for issue - -commit 148806fe2cc334201054cc7d4a2b2facc971811d -Author: Adrodoc -Date: Tue Jul 25 18:42:24 2023 +0200 - - HHH-16826: Refactor to avoid costly modulo operation for splitting in clauses - - Co-authored-by: Christian Beikov - -commit 68601df471f245da626fbdfb5f0d378a0713ceb9 -Author: Adrodoc -Date: Mon Jun 26 16:15:40 2023 +0200 - - HHH-16826 - IN-Clause Parameter Padding should grow exponentially for Dialects with InExpressionCountLimit - -commit f161386b36dccba63282cbcbd0f4d161a25e01ee -Author: Gavin King -Date: Tue Jul 25 20:50:56 2023 +0200 - - add a HINT and mention an alternative API - -commit 147cf6b1129fd49e7359aa277f13ad1f7fef1202 -Author: Gavin King -Date: Tue Jul 25 18:47:49 2023 +0200 - - remove CAUTION from doc because actually this is safe enough - -commit a438474f456988aa9332ac6f2ca474642c767e50 -Author: Gavin King -Date: Tue Jul 25 18:19:13 2023 +0200 - - add some javadoc - -commit cbc572427db1a3be4deffe5448f3f18233ac65f7 -Author: Gavin King -Date: Tue Jul 25 14:30:23 2023 +0200 - - disable some tests on MySQL due to HHH-16989 - -commit d3a1b4f33e1d3f286f6e3bb33d0eecc7b22b9f9c -Author: Gavin King -Date: Tue Jul 25 13:07:48 2023 +0200 - - add test for cast() with parameters in numeric expressions - -commit b53732d14136ef05c1c1b58573bd89ba1be20872 -Author: Gavin King -Date: Tue Jul 25 13:07:26 2023 +0200 - - fix bug where parameters of cast target type were not passed along - - This was yet another bug that resulted from what I've been warning about: - the use of untypesafe getChild() methods in SQB. So I've gone through and - removed even more of those, to further reduce the probability of this kind - of bug in the future. - -commit dfc282adb13a8ca3f5924a18c5c6d100d5a596a1 -Author: Gavin King -Date: Tue Jul 25 11:39:23 2023 +0200 - - extremely minor cleanups to type descriptors - -commit e83008e75d97462bbff2a88c51667a0cc83e92c3 -Author: Christian Beikov -Date: Tue Jul 25 15:47:08 2023 +0200 - - Fix DB2 10.5 testsuite issues - -commit b0ad374226588b0afc72e33917f5fa5cc828515f -Author: Christian Beikov -Date: Tue Jul 25 15:12:38 2023 +0200 - - Fix Cockroach test failures by configuring SQL sequence compatibility - -commit 1ba2203d7c60c2a11b47c53f141dca6639e3240b -Author: Christian Beikov -Date: Tue Jul 25 15:03:18 2023 +0200 - - Fix HANA and Oracle old testsuite failure due to id column only table with identity - -commit 7fbe3e1866756a968141fd1e39e812b50ccf1ba1 -Author: Simon Convent -Date: Mon Jul 24 18:19:35 2023 +0200 - - HHH-15824 Upgrade to Gradle 7.6.2 - -commit 7effc40e13c1d684e186dec3137395093d709ad1 -Author: Gavin King -Date: Mon Jul 24 18:10:43 2023 +0200 - - HHH-15939 test for fixed issue - -commit 05de3e487b012f19acb14928ddcd301499109a60 -Author: Gavin King -Date: Mon Jul 24 18:31:05 2023 +0200 - - clarify the semantics of hibernate.criteria.value_handling_mode - -commit ec9747983db5fd09b916ce1353e9612779da0eef -Author: Andrea Boriero -Date: Mon Jul 24 12:39:08 2023 +0200 - - HHH-16825 Cascading an entity with a composite key causes NullPointerException in AbstractClassJavaType.extractHashCode - -commit bf66bc7b78d142c8af37833a1a5ee1ba83c56ab5 -Author: Andrea Boriero -Date: Thu Jul 20 11:45:52 2023 +0200 - - HHH-16825 Add test for issue - -commit eb562d5078aa197c88b4fc8b764bd38b3004cc4f -Author: Christian Beikov -Date: Mon Jul 24 13:03:24 2023 +0200 - - HHH-16984 Disable use of arrays for batch and multi-loader on H2 - -commit 90eb697020722608c2ea420f408e361fa5ae48eb -Author: Christian Beikov -Date: Mon Jul 24 12:55:40 2023 +0200 - - HHH-16983 Avoid unnecessary allocations for HQL interpretation caching - -commit b9e5d3a6bc441a5173e879c8a7da69d95a611f49 -Author: Christian Beikov -Date: Mon Jul 24 12:52:21 2023 +0200 - - HHH-16982 Avoid unnecessary registerReloadedEntity calls - -commit 7915ad635aec67ae4fc32506912f0ea57ff37ad0 -Author: Christian Beikov -Date: Mon Jul 24 12:48:45 2023 +0200 - - HHH-16981 Improve JdbcOperation caching - -commit 023f6763d1e24ca000217f50a80da844c57b6bc7 -Author: marko-bekhta -Date: Mon Jul 10 11:02:40 2023 +0200 - - HHH-16915 Add community dialects to the platform - - - since it is one of the published artifacts - -commit 1d54f179b21b0ada52e38c2981a0a59275136cac -Author: Gavin King -Date: Mon Jul 24 14:27:19 2023 +0200 - - lightly reword javadoc for a setting - -commit aacf2af4869cacbb466196c93158e8804d8e4eaa -Author: Scott Marlow -Date: Thu Jul 20 12:47:04 2023 -0400 - - HHH-16971 upgrade ByteBuddy to 1.12.23 - - Signed-off-by: Scott Marlow - -commit e7445769ab7ad2c1639c449f0168c7906d3f4992 -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Mon Jul 24 10:35:31 2023 +0000 - - Bump com.gradle.enterprise from 3.13.4 to 3.14 - - Bumps com.gradle.enterprise from 3.13.4 to 3.14. - - --- - updated-dependencies: - - dependency-name: com.gradle.enterprise - dependency-type: direct:production - update-type: version-update:semver-minor - ... - - Signed-off-by: dependabot[bot] - -commit e30b1072999518b4459eeaea8908a55a97b3b9d2 -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Mon Jul 24 05:13:48 2023 +0000 - - Bump com.gradle.common-custom-user-data-gradle-plugin - - Bumps com.gradle.common-custom-user-data-gradle-plugin from 1.11 to 1.11.1. - - --- - updated-dependencies: - - dependency-name: com.gradle.common-custom-user-data-gradle-plugin - dependency-type: direct:production - update-type: version-update:semver-patch - ... - - Signed-off-by: dependabot[bot] - -commit 03d5ce08bc997bb562b8f8b28ccc77444987e787 -Author: Chris Cranford -Date: Fri Jul 21 17:20:41 2023 -0400 - - HHH-14176 Use column name 'description' rather than 'desc`. - - Using the `desc` keyword creates problems for certain dialects, so changed the - property's name so that there is no keyword conflicts. - -commit 940259dc4c1eeb25ced02b342e6c28f23e01a95e -Author: Christian Beikov -Date: Tue Jun 27 12:41:41 2023 +0200 - - HHH-14176 Handle embedded composite ids in envers specially to avoid lazy loading - -commit f1755811808c975b2c348e3a74e9148c793dbeef -Author: Jan Schatteman -Date: Thu Oct 6 23:22:27 2022 +0200 - - HHH-14176 Added test case for issue - - Signed-off-by: Jan Schatteman - -commit 4057245de202d921d64e1b6862c496d362c016e8 -Author: Gavin King -Date: Sun Jul 23 17:57:59 2023 +0200 - - jdoc the default for a setting + add @since tags - -commit 6c435b02c95959d9d465354a82216043eed56dab -Author: Gavin King -Date: Sun Jul 23 15:15:29 2023 +0200 - - support optional 'from' in @HQL query method generation - - (as desired by Stef) - -commit 8794f86ad2b20749983fbaee2c37340ef3754186 -Author: Gavin King -Date: Sun Jul 23 13:16:18 2023 +0200 - - allow criteria-based @Find methods to specify Page and Order - - This is not necessary for @Id or @NaturalId-based @Find methods, - because they don't return multiple results. - -commit 1c15267d3ae1515155263d13fe5984bec9155e60 -Author: Gavin King -Date: Sat Jul 22 18:50:24 2023 +0200 - - HHH-16973 optional 'from' clause - - (and cleanups to SQB) - -commit 2c5ee8f08886740f75fae09325a2fe65f676af7b -Author: Gavin King -Date: Sat Jul 22 13:00:38 2023 +0200 - - split UserComponentType out from ComponentType - - and add CompositeType.replacePropertyValues() - - this refactoring results in significant simplifications/cleanliness - -commit 47024e7bd5f1831174969a5edb1c468f236eb425 -Author: Gavin King -Date: Sat Jul 22 11:47:29 2023 +0200 - - miscellaneous code cleanups - -commit 57cbf2e16a329d9aa2fb044c44306387173b5ffd -Author: Gavin King -Date: Fri Jul 21 21:32:59 2023 +0200 - - update jdoc of @Find, @HQL, @SQL - -commit c15232141df54bcdb84431ca6e97c00c12c217e3 -Author: Gavin King -Date: Fri Jul 21 20:51:38 2023 +0200 - - add missing @since annotations - -commit 1d22d8e1742b656728c7141a7bb7159a69efbb55 -Author: Gavin King -Date: Fri Jul 21 20:51:18 2023 +0200 - - add some links to Javadoc overview - -commit 1994a5d14b1d9050d0eddd2e4d0ed05029612f7d -Author: Gavin King -Date: Fri Jul 21 20:04:32 2023 +0200 - - remove unnecessary spacing in doc - -commit a27f1e5cd802624d88acedcf25c0cb42e04ffed4 -Author: Sanne Grinovero -Date: Fri Jul 21 12:03:53 2023 -0400 - - HHH-16819 Pointing to legacy property (pre-Jakarta) in thrown exception of GroupsPerOperation - -commit 36f3e4c289b64dac0672aac96f577d3db2e59baf -Author: Victor Bonnier -Date: Tue Jun 20 23:06:25 2023 +0200 - - HHH-16819 Corrected typo in JAKARTA_JPA_GROUP_PREFIX - -commit 042ea16b37ea1c6418c9b955e43a4bb56de79331 -Author: Sanne Grinovero -Date: Tue Jul 18 00:12:33 2023 +0100 - - HHH-16963 Avoid H2's capability to register a JVM shutdown hook: causes classloader leaks during tests - -commit d812da65670adef303e0272fe32758f201017f71 -Author: Sanne Grinovero -Date: Tue Jul 18 01:13:23 2023 +0100 - - HHH-16964 Disable Log4J2's management beans during integration tests - -commit 0fa23aab8191a7ce8860eefcd690349d8eea2bbf -Author: Sanne Grinovero -Date: Mon Jul 17 21:34:58 2023 +0100 - - HHH-16965 ByteCodeHelper test utility might occasionally not read the full bytestream - -commit db908806611f63f504818c2fea968330319541a7 -Author: Steve Ebersole -Date: Thu Jul 20 14:12:12 2023 -0500 - - HHH-16598 - Add new documentation artifacts to release upload - - https://hibernate.atlassian.net/browse/HHH-16598 - -commit fb8a87d717b5245c4b68d8374b37f5775739dc8a (tag: 6.3.0.CR1) -Author: Hibernate-CI -Date: Thu Jul 20 19:01:36 2023 +0000 - - Post-steps for release : `6.3.0.CR1` - -commit c4a0d95b54fdc3de75b7424d05cbebb5991d763f -Author: Hibernate-CI -Date: Thu Jul 20 18:54:23 2023 +0000 - - Pre-steps for release : `6.3.0.CR1` - -commit 787244b988ee3f9df2a1db1e4cb84746b02652f6 -Author: Steve Ebersole -Date: Thu Jul 20 13:41:26 2023 -0500 - - HHH-16598 - Add new documentation artifacts to release upload - - https://hibernate.atlassian.net/browse/HHH-16598 - -commit 4726bf016e23fac0139eb10903f185e7583652e7 -Author: Steve Ebersole -Date: Thu Jul 20 11:42:02 2023 -0500 - - HHH-16598 - Add Introduction to Hibernate 6 to the website - - https://hibernate.atlassian.net/browse/HHH-16598 - -commit 38f5db334b0af6e0dd5b0633548e8bae4f496902 -Author: Jan Schatteman -Date: Sat Jul 1 00:12:12 2023 +0200 - - HHH-16872 - Verify that statement fetch size is properly used - - Signed-off-by: Jan Schatteman - -commit d80e27a17dec6650063e06e857c791976d635071 -Author: Steve Ebersole -Date: Thu Jul 20 11:20:43 2023 -0500 - - HHH-16598 - Add Introduction to Hibernate 6 to the website - - https://hibernate.atlassian.net/browse/HHH-16598 - -commit 382037ec9161041faf80d2c14e20c4a92012462c -Author: Marco Belladelli -Date: Wed Jul 5 16:38:35 2023 +0200 - - HHH-16860 Fix joined inheritance associations on root class - -commit 79fe21648ccd525925611d3ee5583f2441a7a444 -Author: Marco Belladelli -Date: Wed Jul 5 16:28:38 2023 +0200 - - HHH-16860 Add test for issue - -commit 94f94f745cb7e3df4d40947b89d3560d1d3dbf3e -Author: Gavin King -Date: Thu Jul 20 16:29:21 2023 +0200 - - HHH-16955 add test for query method generation with 'join fetch' - -commit 2a773b06ce61b49986876c5f04eaa9ea5d07150d -Author: Marco Belladelli -Date: Mon Jul 17 12:38:23 2023 +0200 - - HHH-16942 Make to-one's getJdbcTypeCount consistent with getSelectable - - Also, cleanup some duplicated code in UpdateCoordinatorStandard - -commit 78cc85aa0590aed7a7455c837da476b2b3d317ce -Author: Marco Belladelli -Date: Tue Jul 4 15:05:57 2023 +0200 - - HHH-16849 Fix partition key inside multi-column foreign key - -commit b9e8d71dc875d7450d7ea895c8a31212810fdf62 -Author: Marco Belladelli -Date: Tue Jul 4 14:19:15 2023 +0200 - - HHH-16849 HHH-16942 Add test for issue - -commit f55c017f59a1662a9d3554a82af39a7c5242f8b3 -Author: norbert_wirges -Date: Tue Jul 11 14:06:18 2023 +0200 - - HHH-16907 moved if from inside private method to around - - This improves performance of cascadeLogicalOneToOneOrphanRemoval - handling, because entity fields are only read by reflection if the field - is actually a 1:1 relation (before the change, this was done every time - for every field) - -commit 7c378847cbf635527d651c7c0711b5a55216b88a -Author: Gavin King -Date: Wed Jul 19 00:44:04 2023 +0200 - - HHH-16912 return null from deprecated method instead of producing a CCE - - This is a band-aid over an error occurring in Liquibase. But it seems to - me that Liquibase itself should be updated to use the new APIs. - -commit 75d834efe98369d2b5b3febff96af36508e1347a -Author: Andrea Boriero -Date: Thu Jul 6 15:09:11 2023 +0200 - - HHH-16890 StackOverflowError when loading entities with @Proxy(lazy = false) - -commit abaaa09225d61c93752954ffe500e223d3668b12 -Author: gtoison -Date: Tue Jul 4 18:26:09 2023 +0200 - - HHH-16890 Add test for issue - -commit fca25adde96e3c46cafde4c19fc567bd4daba854 -Author: Steve Ebersole -Date: Wed Jul 19 16:53:54 2023 -0500 - - HHH-16955 - Better define how joins are handled with implicit Query select clause - -commit 3e1411f6c029ff4f6dc0d972a1f231db72ffef46 -Author: Gavin King -Date: Thu Jul 20 13:40:07 2023 +0200 - - fix use of java.text.SimpleDateFormat and java.util.Date in metamodel generator - -commit 17503d93c633014c74a303ba23d93387fa53931b -Author: Gavin King -Date: Thu Jul 20 12:30:12 2023 +0200 - - misc Javadoc improvements around event listeners - -commit 28d9c652931e9964a4d2d3bdfcc0a4847050e1c9 -Author: Marco Belladelli -Date: Wed Jul 19 14:52:16 2023 +0200 - - HHH-16908 Mapping error when using unowned associations as identifiers - -commit 93b1b6a48c43cc3e673eb90719f1a6f862a1f8e6 -Author: Jan Schatteman -Date: Fri Jul 7 17:36:12 2023 +0200 - - HHH-16908 Add test for issue - -commit cd24ddf8e67c815f4d2290a6267d635bf9f3536a -Author: Steve Ebersole -Date: Wed Jul 19 12:08:12 2023 -0500 - - HHH-16765 - Cannot parse quoted table name - -commit e2504647d4f66ae8b56eb83030655f8c4b0bdb4d -Author: Steve Ebersole -Date: Wed Jul 19 09:19:25 2023 -0500 - - HHH-13741 - LOG_SLOW_QUERY parameter doesn't always log SQL - -commit 300667223c6c08c06fc822ae0761b045e1a3dfc5 -Author: Andrea Boriero -Date: Wed Jul 19 16:06:21 2023 +0200 - - HHH-16943 Column ordering leads to wrong column order in unique constraints + HHH-16953 Hibernate doesn't observe column order on multicolumn indexes - -commit 1e5b87f1d970899d46a66365e25b5abfa45e6560 -Author: Andrea Boriero -Date: Wed Jul 19 14:58:21 2023 +0200 - - HHH-16953 Ad test for issue - -commit bde99e8a1c7a4a724aabb202e25f94f40418bee8 -Author: Benedikt Waldvogel -Date: Fri Jul 14 15:05:48 2023 +0200 - - HHH-16943 Add UniqueConstraintColumnOrderTest showing the column order issue - -commit 085fd88a7f6bab47872bc2a437a67a87672a1ea2 -Author: Andrea Boriero -Date: Wed Jul 19 12:22:27 2023 +0200 - - HHH-15917 Unrelated Entity Join throws IllegalStateException - -commit b0ac15af425ec311c03d2beee9d91a7308c2712f -Author: Andrea Boriero -Date: Wed Jul 19 12:19:38 2023 +0200 - - HHH-15917 Add test for issue - -commit 97be9b31cf26a8080a17db990dc88515811e5882 -Author: Marco Belladelli -Date: Mon Jul 3 11:58:30 2023 +0200 - - HHH-16837 Avoid passing domain path's NP when resolving table reference - -commit 26eaa5a6df347e58461402655c1594cda6117d4e -Author: Marco Belladelli -Date: Mon Jul 3 10:23:25 2023 +0200 - - HHH-16837 Add test for issue - -commit 2c7706eac82f9cd20a66b636b6ebf2ab7ab55648 -Author: Marco Belladelli -Date: Wed Jun 28 12:55:47 2023 +0200 - - HHH-16803 Specially handle enum classes in nullLiteral - -commit 7333221c08ab03866ca43b572bbe313438e9daff -Author: Marco Belladelli -Date: Wed Jun 28 09:59:59 2023 +0200 - - HHH-16803 Add test for issue - -commit e5371386a4517885f4754c5bdbde468dd4c2601d -Author: Gavin King -Date: Tue Jul 18 18:55:59 2023 +0200 - - remove order-by list from the query plan cache key - - Roll back my always-intended-to-be-temporary bandaid to allow - caching of the query plan after calls to setOrder(). Instead, - just disable caching of the query plan. When the query plan - cache can handle caching of criteria queries, change to use - that strategy instead. - -commit e2ec3cd3e7fac1ccd79373230cd6dbec8608ddee -Author: Andrea Boriero -Date: Thu Jul 13 16:46:42 2023 +0200 - - HHH-16812 StackOverflowError an embeddable's @Parent is a subclass in an inheritance tree - -commit 2c2fd9df7594c5d59495a1b5d410ec03f52d9ac5 -Author: Andrea Boriero -Date: Thu Jul 13 16:45:35 2023 +0200 - - HHH-16812 add test for issue - -commit 4d79376be9b39ce34df3e56941dbeb62a45b031a -Author: gtoison -Date: Sat Jun 17 06:19:11 2023 +0200 - - HHH-16812 Test reproducing the issue - - It seems that when trying to call the Smell.setCheese()setter and when - the entity is an uninitialized Food proxy there’s a ClassCastException - (maybe the proxy should be narrowed to the actual class of the entity) - and then it tries to build an exception but to do that it needs to - initialize the entity and that fails again with the same problem. - Building the exception fails because PropertySetterAccessException tries - to call the toString method of the uninitialized proxy. - -commit 58c10758e0e96daea042158a8fe8248b5ddb6ccd -Author: Jan Schatteman -Date: Wed Jul 5 18:48:15 2023 +0200 - - HHH-16515 - Add o.h.property.access.spi to nullness checking - - HHH-16515 - Add o.h.property.access.internal to nullness checking - - Signed-off-by: Jan Schatteman - -commit 22091b22547a1d0cb78d2889170a6be0f1b8e120 -Author: Marco Belladelli -Date: Tue May 16 11:20:50 2023 +0200 - - HHH-16494 Reworked pruning for joined inheritance persister - - Added handling of subclasses with the same table name and discriminator condition. - Also avoid useless left-joins when not finding table references instead of throwing an exception. - -commit fed020e110fbe82aa9aeeed06bdc6de275df3140 -Author: Marco Belladelli -Date: Mon May 8 11:11:38 2023 +0200 - - HHH-16494 Treat entity and attribute joins for inheritance subtypes - -commit 3e3fd6f0beded3088cf8d70991af69d23842320a -Author: Marco Belladelli -Date: Mon May 8 09:47:44 2023 +0200 - - HHH-16494 Add test for issue - -commit 3c62691dc4d1c1de8d0d12cd6ce81964945a3095 -Author: Marco Belladelli -Date: Wed Jun 21 11:00:19 2023 +0200 - - HHH-16709 Use embeddable type's compare for embedded attribute mappings - -commit 54382e09ea4e7a92f324b63f34ca5bbee13785fa -Author: Marco Belladelli -Date: Wed Jun 21 10:39:58 2023 +0200 - - HHH-16709 Add test for issue - -commit baf667b47b65905cccda208a3b7ca11ebde4ca4c -Author: Marco Belladelli -Date: Thu Jun 22 14:40:10 2023 +0200 - - HHH-16667 Use identifier table key mapping in version update restriction - -commit 8f9d5e43220f7ff8f6a830eb98a71dc20670fff1 -Author: Marco Belladelli -Date: Thu Jun 22 14:39:26 2023 +0200 - - HHH-16667 Add test for issue - -commit 475ea7a895194c5d26cce60cc388e45a0c89736e -Author: Marco Belladelli -Date: Mon Jun 26 10:24:32 2023 +0200 - - HHH-16754 Use current query part when checking selected group by paths - -commit e17aa601ccbc5393931c011820e122f49cf6768a -Author: Marco Belladelli -Date: Fri Jun 23 13:10:48 2023 +0200 - - HHH-16754 Add test for issue - -commit 8f85f0a6d932c00204e2560ddce6b0e5bb5bba9b -Author: Marco Belladelli -Date: Mon Jul 10 16:04:49 2023 +0200 - - HHH-16871 Simplified maximum fetch depth condition - -commit 7be0411b4e4b1e668271bbbbe5e9dc8191384088 -Author: Marco Belladelli -Date: Mon Jul 10 16:04:07 2023 +0200 - - HHH-16871 Add test for issue - -commit d00fb626af70707386b183515c26ca5bbd256a6d -Author: Marco Belladelli -Date: Tue Jul 11 15:25:34 2023 +0200 - - HHH-16905 Account for identifiers in getNavigablePathCopy - -commit f368b320869b2228a9d7b653ddfe254016319987 -Author: Marco Belladelli -Date: Fri Jul 14 11:16:08 2023 +0200 - - HHH-16926 Add test for issue - -commit b738dc936cf853f9fa7975e5f385098aa01c23a3 -Author: Marcel Triller -Date: Thu Jul 6 15:40:12 2023 +0200 - - HHH-16905 Add Test for Issue - -commit ad36a76968efc1a5d4d40bf7d8c73136658ced3f -Author: Jan Schatteman -Date: Wed Jul 12 23:16:13 2023 +0200 - - HHH-16515 - Add o.h.jdbc to nullness checking - - Signed-off-by: Jan Schatteman - -commit 2e73795e4b4fc00bd29686843af346629aa8e7f4 -Author: Jan Schatteman -Date: Fri Jun 9 21:57:34 2023 +0200 - - HHH-16515 - Add o.h.exception to nullness checking - - HHH-16515 - Add o.h.integrator to nullness checking - - HHH-16515 - Add o.h.service to nullness checking - - HHH-16515 - Add o.h.engine.jndi to nullness checking - - HHH-16515 - Add o.h.engine.config to nullness checking - - Signed-off-by: Jan Schatteman - -commit 16dc63d55585db1631985e850b38fedb052eadfe -Author: Jan Schatteman -Date: Mon Jul 17 17:50:11 2023 +0200 - - HHH-16950 - Upgrade the local-build-plugins Jandex version to 3.1.2 - - Signed-off-by: Jan Schatteman - -commit a444d6bcbb7fba732c0c97996461af8155a5ab7f -Author: Sanne Grinovero -Date: Mon Jul 17 07:11:37 2023 -0400 - - HHH-16947 Upgrade to Narayana 7.0.0.Final - -commit 43954c45e98a408c49f4074deb0833382f7909da -Author: Marco Belladelli -Date: Fri Jul 14 13:31:37 2023 +0200 - - HHH-16790 Always lazily read SQL selection's jdbc values - -commit 1f0bfdcb86827a35c4b5886d09fe1ca4b3c1591e -Author: Marco Belladelli -Date: Mon Jun 26 16:36:36 2023 +0200 - - HHH-16850 Enable GH Bot automatic issue links - -commit 188529da36729116b7b59bbfa38bb5906841811e -Author: Andrea Boriero -Date: Tue Jul 11 16:37:09 2023 +0200 - - HHH-16833 Assertion Error when inserting two entities linked with a OneToOne relation - -commit 5d85db92116d1ce9fed0df562e7cc1252321a8ea -Author: Andrea Boriero -Date: Mon Jul 10 13:18:36 2023 +0200 - - HHH-16833 Add test for issue - -commit fef04bc62ed42b8471383ae32ff13cad88702c0b -Author: Andrea Boriero -Date: Thu Jul 13 18:42:09 2023 +0200 - - HHH-16923 Deleting all entities of a given type fails when using a composite primary key and order_updates - -commit c8842b4e5b0c62254a6490ae221da6f8e77de42c -Author: Andrea Boriero -Date: Thu Jul 13 18:41:12 2023 +0200 - - HHH-16923 Add test for issue - -commit 58aff00957721074a4a3937256edd64a067bc943 -Author: Gavin King -Date: Sun Jul 16 19:10:37 2023 +0200 - - update doc about query method return types - -commit 0918791f47da561e3c0a660bc7051436d5f14d13 -Author: Gavin King -Date: Sun Jul 16 17:42:16 2023 +0200 - - HHH-16633 support mutation query methods - -commit 4d005b3d19a99157fa468d01ab12480c8c33ec13 -Author: Gavin King -Date: Sun Jul 16 15:39:20 2023 +0200 - - more info about the metamodel in the javadoc for SessionFactory - -commit 5cee742698ea36c4d830b129f6f3d2187bc950df -Author: Gavin King -Date: Sun Jul 16 14:34:46 2023 +0200 - - HHH-16940 add typesafe ref to ManagedType in metamodel classes - -commit 8611abe902ff1d805000b66e829cd5c26a46a535 -Author: Gavin King -Date: Sun Jul 16 12:19:21 2023 +0200 - - improve a couple of exception messages - -commit 52bfbe06f2b613aabdf04d51baca4f06ad5b9833 -Author: Gavin King -Date: Sun Jul 16 11:56:31 2023 +0200 - - HHH-16633 validate the return type of @HQL query methods - - (including constructors for record returns) - -commit df11070c77198d76bc012a2644671f8bcf40db2d -Author: Gavin King -Date: Sun Jul 16 09:57:58 2023 +0200 - - fix three warnings in StringHelper - -commit 7634795f83f320aff3b5ad2ab80c92fd0ae09c3c -Author: Gavin King -Date: Sat Jul 15 20:54:01 2023 +0200 - - improved reasoning around nullability of finder method parameters - -commit 64216dd2c9feea050b9e8c22ee4799fdc9a9abd7 -Author: Sanne Grinovero -Date: Fri May 19 22:43:48 2023 +0100 - - HHH-16728 Optimise iteration of AssociationType properties within a Persister - -commit 7f003150da3a42822e78432c44fb0be21acbe14c -Author: Gavin King -Date: Sat Jul 15 13:37:40 2023 +0200 - - mention schema validation, and the need for @Entity etc annotations - -commit a1abc1af93b6bc3dc9593514e9a4869a83cf1f83 -Author: Gavin King -Date: Sat Jul 15 12:52:39 2023 +0200 - - make it easier to use the Action enum with Configuration - -commit b214eb332d570df78b27da68f8e7239e20a61a4f -Author: Sanne Grinovero -Date: Mon Jul 3 14:36:00 2023 +0100 - - HHH-16884 Improve efficiency of UpdateCoordinatorStandard in tracking tables to be updated - -commit 314f2d7b7a03161095485b7145514d3ef9ec8460 -Author: Jan Schatteman -Date: Fri Jul 14 23:11:03 2023 +0200 - - Revert "HHH-16515 - Add o.h.exception to nullness checking" - - This reverts commit c5c3bb8ac8ae3ec657126d0ac01b55f416a8ff99. - -commit 06ed2072ce4e4b7025b43313915818ac932dd99b -Author: Gavin King -Date: Sat Jul 15 00:17:38 2023 +0200 - - mention path-based matching in section on @Find methods - -commit 57e47e0ba15e9ae41fbccce3f9dc9ec35f698f58 -Author: Gavin King -Date: Fri Jul 14 23:23:09 2023 +0200 - - very minor improvements first doc chapter - -commit be75adbec89f52ac08175b4e5771b0b7c7a49a61 -Author: Gavin King -Date: Fri Jul 14 22:28:13 2023 +0200 - - aesthetic improvements to pdf docs - -commit ec8d574e4ac2440a84219bedebf931f118367cba -Author: Gavin King -Date: Fri Jul 14 21:21:42 2023 +0200 - - path expressions in finder method parameter names - - this sounds a bit crazy but why not? - -commit c5c3bb8ac8ae3ec657126d0ac01b55f416a8ff99 -Author: Jan Schatteman -Date: Fri Jun 9 21:57:34 2023 +0200 - - HHH-16515 - Add o.h.exception to nullness checking - - HHH-16515 - Add o.h.integrator to nullness checking - - HHH-16515 - Add o.h.service to nullness checking - - HHH-16515 - Add o.h.engine.jndi to nullness checking - - HHH-16515 - Add o.h.engine.config to nullness checking - - Signed-off-by: Jan Schatteman - -commit 781cdc88047005da64db12fefb73001de9cc4c85 -Author: Gavin King -Date: Fri Jul 14 17:44:42 2023 +0200 - - more improvements to the new chapter - -commit ae2f73a3150c34e6a3ca39da84a87d9f8ffa004c -Author: Gavin King -Date: Fri Jul 14 17:19:35 2023 +0200 - - use @Nonnull annotation in generated named query method - -commit ec830945e6d2e900b254585329ef6f35b5c34d07 -Author: Gavin King -Date: Fri Jul 14 14:37:04 2023 +0200 - - HHH-16633 improve jdoc for query methods - -commit ded5451436ce5e6e0358b89dc590b9ac047f5941 -Author: Gavin King -Date: Fri Jul 14 13:58:57 2023 +0200 - - HHH-16633 allow finder and query methods to accept the session (better impl) - -commit 803cd6aa1e8995a0504d5b997a30dde34f7c0582 -Author: Gavin King -Date: Fri Jul 14 00:56:22 2023 +0200 - - HHH-16633 allow finder and query methods to accept the session type as a parameter - -commit a80224f921e5e319d18f91314d05bf498c587510 -Author: Gavin King -Date: Fri Jul 14 15:06:57 2023 +0200 - - improvements to Generator doc chapter - -commit c0a6e6f0fc1ad13f20db9490a7c9b99ea9a7d4c4 -Author: Sanne Grinovero -Date: Fri Jul 7 12:19:33 2023 +0100 - - HHH-16900 Move EntityMutationOperationGroup to the same package as related APIs - -commit d0e3298e9dfcc061fed75475f6d446cbd98a9b02 -Author: Sanne Grinovero -Date: Wed Jul 5 17:32:44 2023 +0100 - - HHH-16900 Restore API combatibiliy by using deprecated default methods - -commit 7d0da9e505026c2da29b41fc42fe7af497378979 -Author: Sanne Grinovero -Date: Tue Jul 4 21:01:50 2023 +0100 - - HHH-16900 Optimise implementations of MutationOperationGroup - -commit 441d280109f3be31560f4ff41aca8fe05ca26518 -Author: Sanne Grinovero -Date: Tue Jul 4 20:42:02 2023 +0100 - - HHH-16900 Avoid using the old method, ensure by removing the deprecated methods - -commit 045f25511cf40f54e38be9e04200e7507bcb3cae -Author: Sanne Grinovero -Date: Tue Jul 4 20:41:30 2023 +0100 - - HHH-16900 Refactor integration tests - -commit c1767adee7006146cc0ac9307dbb87e96c7f1578 -Author: Sanne Grinovero -Date: Tue Jul 4 20:29:34 2023 +0100 - - HHH-16900 Rework also the MutationGroup APIs - -commit c608ee3a98027601e2ec19510833b3052f588a94 -Author: Sanne Grinovero -Date: Tue Jul 4 13:49:05 2023 +0100 - - HHH-16900 Rework mutation group API - -commit 814923dd464473b44a158026c78dab6d75bf6aea -Author: Andrea Boriero -Date: Tue Jul 4 15:23:52 2023 +0200 - - HHH-16810 Fail to delete entity with a composite id using an @IdClass with one of its fields mapped from the id of a @ManyToOne association - -commit b9e210563940f041253d5491223f60460b3c7c8e -Author: Andrea Boriero -Date: Mon Jul 3 17:51:15 2023 +0200 - - HHH-16810 Add test for issue - -commit dac288d1bb61c820211e5498481c47b268f49c1c -Author: Andrea Boriero -Date: Tue Jun 27 13:59:18 2023 +0200 - - HHH-16811 Dirty property lost and not detected with Batch Fetch, Embedded and FetchMode SELECT - -commit ac9a5fc42cbd0d708e5c1ef318dd21c0458167da -Author: Andrea Boriero -Date: Tue Jun 27 12:27:09 2023 +0200 - - HHH-16811 Add test for issue - -commit ebfaf1c707319a0f0d1f04c70f6b8d52488da2c7 -Author: Andrea Boriero -Date: Tue Jul 4 17:39:09 2023 +0200 - - HHH-16586 When merging a persisted entity with a null Version, Hibernate treats entity as transient instead of throwing an Exception - -commit daf8bcc58119fe19e51aa23e9bb2db943fd35c4a -Author: Andrea Boriero -Date: Tue Jul 4 17:37:26 2023 +0200 - - HHH-16586 Add test for issue - -commit 5a07e2b61dcb6d123c5e319c2b0f7c87c2f8f60e -Author: Gavin King -Date: Thu Jul 13 18:17:09 2023 +0200 - - fix a test which was failing on h2 version 1.x - -commit e125a818e33dee102cf9a020459edfbc83c481a8 -Author: Gavin King -Date: Thu Jul 13 20:26:44 2023 +0200 - - HHH-16899 add restrict() to CriteriaDefinition - -commit dc22773a9f0fa20ecfcd7b4364fd3b7bf18825ae -Author: Gavin King -Date: Thu Jul 13 20:38:01 2023 +0200 - - document CriteriaDefinition - -commit af7e7b9afca3b86f6367e7839be897ae01906a9e -Author: Gavin King -Date: Thu Jul 13 16:19:44 2023 +0200 - - make it possible to get a named EntityGraph without an unchecked typecast - -commit 35ea74ec54f427ffced6998ccbd7fb999c538ef8 -Author: marko-bekhta -Date: Wed Jul 12 14:31:00 2023 +0200 - - HHH-16695 Make AbstractQuery backwards compatible - -commit 8386e1851ed7eba146c98de3dc58eea32feb7111 -Author: Steve Ebersole -Date: Tue Jul 11 08:55:54 2023 -0500 - - HHH-16917 - Number not allowed as type for procedure query parameter - -commit 8031952d86832fb85ca74bd8d0459cfd967c0241 -Author: Gavin King -Date: Thu Jul 13 14:03:17 2023 +0200 - - document Query Validator, and add a TIP about Metamodel - -commit 0aa5b5018fc8a181da3caa46ad0dd1ec4feebd23 -Author: Marco Belladelli -Date: Tue Jul 4 10:27:57 2023 +0200 - - HHH-16845 Fix collection key parameter - -commit 29d2ef730ebaedb7d6ae7b87bb73664f728bf450 -Author: Marco Belladelli -Date: Mon Jul 3 16:16:27 2023 +0200 - - HHH-16845 Add test for issue - -commit 7c67097fb04fda0a26f5473b14b4f6ad3b9be841 -Author: Gavin King -Date: Thu Jul 13 11:45:18 2023 +0200 - - HHH-16815 fixes to Page class - - - prevent construction of negative Pages - - add Page.isFirst() - - fix impl of Page.previous() - -commit 96e6476199051c012a090e3c9189d382e52fb910 -Author: Gavin King -Date: Wed Jul 12 11:26:22 2023 +0200 - - HHH-16633 no need to cast to SelectionQuery to call setPage() - -commit 0c1a49604eb9c7803ac6acf68eaf8457f7e126bc -Author: Gavin King -Date: Thu Jul 13 12:37:50 2023 +0200 - - minor Javadoc improvement to SchemaManagementToolCoordinator - -commit 5c5d2c2f941b055bfd02702a1ccfc8e4a7f0afdb -Author: Gavin King -Date: Thu Jul 13 10:14:38 2023 +0200 - - HHH-16633 test for AccessType.PROPERTY in @Find method parameter matching - -commit 8681d702a4e93637793f9d6c558a4fbb58f1fae2 -Author: Gavin King -Date: Wed Jul 12 22:30:41 2023 +0200 - - HHH-16633 support AccessType.PROPERTY in @Find method parameter matching - -commit 376a90f9b5e347ab3ff1a077b0b142a731f0c304 -Author: Gavin King -Date: Wed Jul 12 21:45:26 2023 +0200 - - Bytebuddy -> Byte Buddy - -commit 45af5c2f5aef067c4bd06272c7dafc16655aab32 -Author: Gavin King -Date: Wed Jul 12 21:43:51 2023 +0200 - - oops, remove a debugging statement that I accidentally committed - -commit 69e0809bf496272037488401c70b8d39df4e1c31 -Author: Gavin King -Date: Tue Jul 11 23:40:08 2023 +0200 - - new documentation chapter for @HQL, @SQL, and @Find methods - -commit 59fdc462542ebe968c8086e5dcfd676f41d16c68 -Author: Gavin King -Date: Tue Jul 11 01:27:12 2023 +0200 - - HHH-16920 initial prototype support for Reactive in query/finder method generation - -commit 70a953e7a85c9982972b23597de0a62b7bf3e1fc -Author: Gavin King -Date: Mon Jul 10 23:16:37 2023 +0200 - - HHH-16633 completely rework validation for parameters of @HQL query methods - -commit b1bdd74432ca8a0695a801518fc6a8e84df4680a -Author: Gavin King -Date: Mon Jul 10 18:40:10 2023 +0200 - - HHH-16633 support @IdClass in finder methods - -commit 10b17a6430b59d120abaa4c0c3f54ce3c099b3bd -Author: Gavin King -Date: Mon Jul 10 18:12:16 2023 +0200 - - HHH-16633 unbreak support for @Embeddable Java records - -commit c8c5d0533097dc92b781df66959437402c31dfb7 -Author: Gavin King -Date: Mon Jul 10 15:00:18 2023 +0200 - - remove incorrect comment - -commit 447fa30a898a24a6a64fb4705d39936ffbc3a486 -Author: Gavin King -Date: Mon Jul 10 13:31:30 2023 +0200 - - HHH-16633 add CDI @Dependent annotation if in build path - -commit 24db891e846627278fec76017d810a82b8d4b5d5 -Author: Gavin King -Date: Mon Jul 10 13:13:45 2023 +0200 - - HHH-16633 better Javadoc and @Nonnull annotations in generated source - -commit 02e395c96dd0db360e487b9dfed9be1aa0ec81d6 -Author: Gavin King -Date: Mon Jul 10 12:30:51 2023 +0200 - - HHH-16633 correct handling of null values in criteria-based @Find methods - -commit 78843fb2a9f28f85a1b322c37e17b1385fb0c857 -Author: Gavin King -Date: Mon Jul 10 12:02:41 2023 +0200 - - HHH-16633 allow the "session getter" method to not be a getter - - add some Javadoc - -commit 99d8bf083257a94a7c6f4baeb53ae3d89bdaa600 -Author: Gavin King -Date: Mon Jul 10 11:52:59 2023 +0200 - - improve Javadoc of org.hibernate.annotations.processing - -commit 605a732e058d9cb81274bd8c02a08e0686f25d6b -Author: Gavin King -Date: Mon Jul 10 02:46:47 2023 +0200 - - HHH-16914 add support for EntityGraphs to NaturalIdLoadAccess and SimpleNaturalIdLoadAccess - -commit d5c4e2673be4ac5e031689a18a1b5e58e4abd47c -Author: Gavin King -Date: Mon Jul 10 02:05:01 2023 +0200 - - HHH-16695 fill in missing javadoc - -commit cd75b0baf1a024df3dc3a685f81d80a4c315c3aa -Author: Gavin King -Date: Sun Jul 9 22:17:23 2023 +0200 - - HHH-16633 minor cleanups - -commit db4d529f603bc952faa894fc06bb4045fb728b65 -Author: Gavin King -Date: Sun Jul 9 20:37:59 2023 +0200 - - HHH-16633 generate query methods from @NamedQuery annotations - -commit 16b433ebf1c9c30608991b54396af3318b1426b8 -Author: Gavin King -Date: Sun Jul 9 15:21:51 2023 +0200 - - HHH-16633 clean up - -commit 87a320615c6d66d9c3f4c4bfd4c8521716871b8c -Author: Gavin King -Date: Sun Jul 9 12:04:56 2023 +0200 - - HHH-16695 make fetch profiles actually work for natural id loading - -commit 3dfa70a78118894c5099469c28522fb537d9e143 -Author: Gavin King -Date: Sun Jul 9 09:44:57 2023 +0200 - - HHH-16633 use unwrap() in preference to typecasts - - perhaps it would be better to preemptively unwrap the - EntityManager to Session, because this approach results - in raw query types (but we don't really care since we - already know it's sound) - -commit 951207746251a82a529cb2cb3da49acdb1de6bb3 -Author: Gavin King -Date: Sun Jul 9 01:24:54 2023 +0200 - - HHH-16633 fix an issue with the lifecycle of annotation processing - - we could not see typesafe references to static strings we generate - -commit a4d85806068945165138115d2892e0c7475c15c5 -Author: Gavin King -Date: Sat Jul 8 23:17:13 2023 +0200 - - HHH-16633 fix for StatelessSession @Find methods - -commit 17ea1e28b975be0f038fb2aac704077308a75a83 -Author: Gavin King -Date: Sat Jul 8 22:45:25 2023 +0200 - - HHH-16633 add ability to specify fetch profiles in @Find annotation - -commit 09f110254f36af7c073834e8990f12956ecb39a8 -Author: Gavin King -Date: Sat Jul 8 22:41:46 2023 +0200 - - HHH-16695 add enableFetchProfile() to XxxxIdLoadAccess - -commit 2e351831f13ba6b008ae09762d8fef14abce8d0b -Author: Gavin King -Date: Sat Jul 8 21:00:55 2023 +0200 - - HHH-16695 add enableFetchProfile() to Query - -commit 2409e1a49bd553dc0f0323206020e16ba67017e1 -Author: Gavin King -Date: Sat Jul 8 19:08:51 2023 +0200 - - HHH-16633 support for StatelessSession in query methods/DAOs - -commit a36b68387044bd39691815ab6f982eb2210f8199 -Author: Gavin King -Date: Sat Jul 8 12:18:19 2023 +0200 - - more misc cleanups to modelgen code - -commit 7d9fa4a5366075bd99ee703b92f776f58e097490 -Author: Gavin King -Date: Sat Jul 8 11:33:34 2023 +0200 - - HHH-16633 more info in two error messages - -commit 0c4439b73187668fa91109df4914d4cd4ad845fc -Author: Gavin King -Date: Sat Jul 8 11:33:13 2023 +0200 - - copy some test entities from core tests to modelgen tests - -commit 294ec278857e16bb3656168fcb04f92ce6022cd4 -Author: Gavin King -Date: Sat Jul 8 16:38:33 2023 +0200 - - HHH-16913 EntityGraph support for StatelessSession - -commit 6b7d5bae3d7e501d800cf7fda6558fb9e3d15daa -Author: Gavin King -Date: Sat Jul 8 15:50:44 2023 +0200 - - HHH-16899 refinements to the CriteriaDefinition API - -commit f3eb0ec77061da4f131ee2d06e4b737659929350 -Author: Gavin King -Date: Wed Jul 5 20:28:24 2023 +0200 - - HHH-16899 allow the CriteriaDefinition to modify an existing query - -commit b4b2b295fca35ea85ab16169444d442622865e5a -Author: Gavin King -Date: Wed Jul 5 18:55:10 2023 +0200 - - HHH-16899 avoid capturing the Session in CriteriaDefinition [as suggested by Sanne] - -commit 2d92edd6bbb11c6da9c2f817502f275506aff349 -Author: Gavin King -Date: Wed Jul 5 18:44:13 2023 +0200 - - HHH-16899 add test for CriteriaDefinition - -commit 7db99d8661e629415a8c30863f3a7fa96d814925 -Author: Gavin King -Date: Wed Jul 5 18:42:51 2023 +0200 - - add a link in some package-level javadoc - -commit 67ac383c26ebc85ba629bc0804d320367f5dc770 -Author: Gavin King -Date: Wed Jul 5 18:18:35 2023 +0200 - - HHH-16899 add CriteriaDefinition utility class - -commit a44004655632142db89ef696059e06b69c1519d6 -Author: Gavin King -Date: Wed Jul 5 18:12:40 2023 +0200 - - HHH-16898 add JpaExpression.equalTo() - -commit d7fd5bd78a0df0646804844e4ce291840622f642 -Author: Gavin King -Date: Fri Jul 7 19:05:12 2023 +0200 - - HHH-16633 add ability to generate @Find methods for @NaturalIds and arbitrary field lists - -commit 0c40711563612043679bb722b2a89a0ad5165739 -Author: Gavin King -Date: Fri Jul 7 18:14:49 2023 +0200 - - HHH-16633 add ability to generate @Find methods - -commit 3969c74963d9c286fe437589f4f9ab6afb79a697 -Author: Gavin King -Date: Fri Jul 7 14:31:39 2023 +0200 - - HHH-16633 add DAO-style repository generation - -commit d83f472e18a7c5c392f4700bcb327658c00b64bb -Author: Gavin King -Date: Fri Jul 7 12:05:28 2023 +0200 - - HHH-16909 expose slow queries via Statistics API - -commit 3e8e9dd2199970984f8a9badc74bf7b842174d14 -Author: Gavin King -Date: Fri Jul 7 11:07:58 2023 +0200 - - new doc section on slow queries and SQL comments - -commit 33700597af67521c7e982aeb7d698c9fa9715f12 -Author: Gavin King -Date: Fri Jul 7 11:01:00 2023 +0200 - - HHH-16909 make setting for slow query logging obey our naming conventions - -commit 94b33e619820c00fd2199bb544ed4850e9622a57 -Author: Yoann Rodière -Date: Wed Jul 5 09:10:40 2023 +0200 - - HHH-16892 Fix LocalXmlResourceResolver not resolving some dtd URLs that use the https scheme - -commit 5aac28cb9ebfe67cb8abd0fff64b2f4e1882b915 -Author: Dennis Katz -Date: Tue Jul 4 11:16:15 2023 +0200 - - HHH-16886 fixed by adding parenthesis - - HHH-16886 fixed by adding parenthesis - - HHH-16886 test added - - HHH-16886 move test to query package and some fixes - -commit 677b9848a20040c9917c2fb036d5effb595f8550 -Author: Gavin King -Date: Thu Jul 6 14:08:27 2023 +0200 - - minor bug fixes and code cleanups to Metamodel Generator - -commit 84714ed585b644e75e50910cdd7e8abfa057f4a1 -Author: Gavin King -Date: Thu Jul 6 22:58:39 2023 +0200 - - more information about query methods and testing for first chapter of new doc - -commit 772cd5e315642602b6d95e40f7671e73e8131384 -Author: Jerome Prinet -Date: Tue Jul 4 10:53:27 2023 +0200 - - HHH-16896 Pass stubs location with a CommandLineArgumentProvider - -commit 135871dbd97e38e5e651be9fb692a51fbf140d8d -Author: Gavin King -Date: Thu Jul 6 11:47:14 2023 +0200 - - batch of minor improvements to the parser/SemanticQueryBuilder (typesafety) - -commit 980bf4d8ab7ac647d079764c5579d5788800404e -Author: Gavin -Date: Thu Jul 6 09:48:08 2023 +0200 - - restrict offset/fetch to be a Number in the Jpa/Sqm tree types - -commit 98a83a082c30a025e3eb1faf458b83bfc6a45baa -Author: Gavin -Date: Thu Jul 6 09:24:58 2023 +0200 - - add lots @Override annotations and some generic type args in Jpa types - - removed an unused and unimplemented interface - -commit 41fe405aa7e91485f3988ec092f41e3c2d45c627 -Author: Gavin -Date: Thu Jul 6 01:00:56 2023 +0200 - - HHH-16866 remove usages of Sqm types from Jpa APIs - - There were quite a few layer-breakers here. - - The org.hibernate.criteria package is supposed to be an abstraction over - the SQM tree. It should not leak types from the org.hibernate.sqm package. - -commit f933b064e98293a2a72dfea520583613b0d19931 -Author: Gavin King -Date: Wed Jul 5 22:50:47 2023 +0200 - - HHH-16633 support new Order and Page objects as parameters of query methods - -commit 19a75aad9e57ecc1c4c5413df3743eb7eaf83f55 -Author: Sanne Grinovero -Date: Tue Jul 4 20:01:42 2023 +0100 - - Add note about Hibernate Reactive usage - -commit 1f30de0ba279f19a0d8f4ac63ab7515f69aa2b9e -Author: Gavin King -Date: Wed Jul 5 15:06:11 2023 +0200 - - fix typo - -commit 5591423756db5cf33596138ff96278e84606c582 -Author: Gavin King -Date: Wed Jul 5 14:43:54 2023 +0200 - - update doc to latest work in 6.3 - -commit 73c8479bf43f7a4c2e6bb91d6a02124d2b206177 -Author: Gavin King -Date: Wed Jul 5 14:43:12 2023 +0200 - - HHH-16815 rename paginate() -> setPage - - fix a bug in Page class - -commit 7227831d56026bf993519643b6437ad5894053c5 -Author: Gavin King -Date: Wed Jul 5 13:09:51 2023 +0200 - - HHH-16815 rename getSortOrder() -> getSortDirection() - -commit f2d6373409d6e63b6d80e8c8246d40e2fc2a00e3 -Author: Gavin King -Date: Wed Jun 28 23:54:03 2023 +0200 - - HHH-16815 finally settle on using a List or Order objects - -commit c29db563b50e49081f98242ea8e4a5493f2ef7ed -Author: Gavin King -Date: Wed Jun 28 16:33:55 2023 +0200 - - aesthetic improvements to NullPrecedence enum - -commit 49f890d781dfb5822c72ccc9003d6977c5777ec2 -Author: Gavin King -Date: Wed Jun 28 16:33:25 2023 +0200 - - move NullOrdering to the Dialect package where its usages are - -commit 1e46146b548fbd63f1ef026126451276bfee0cb2 -Author: Gavin King -Date: Wed Jun 28 14:17:44 2023 +0200 - - HHH-16815 more convenient pagination via Query API - - - add Page convenience class - - add Query.paginate(int, int) - - add Query.paginate(Page) - -commit f7e12d49eda0a782df87aa1609d427f2b2d40345 -Author: Gavin King -Date: Wed Jun 28 13:39:53 2023 +0200 - - HHH-16815 more flexible sorting via Query API - - - added Query.sort(SortOrder,SingularAttribute) - - added Query.sort(Sort...) - - added Sort class for convenience - - moved SortOrder to org.hibernate.query - (its package was @Incubating) - - move NullPrecedence enum - -commit 8b6404eae60022c22e3350acb45383aa417c066b -Author: Gavin King -Date: Tue Jul 4 22:35:15 2023 +0200 - - HHH-16875 fix a test - -commit 5c318ea974d1631f4d21ffc24c49de3b6a76dc94 -Author: Gavin King -Date: Tue Jul 4 20:55:03 2023 +0200 - - HHH-16875 enable test on MySQL and Maria - -commit 01dabaa2de2f976d73d50e56b0348067befa1e4d -Author: Gavin King -Date: Tue Jul 4 19:17:58 2023 +0200 - - HHH-16875 add a test involving JPQL function() construct - -commit cd02a961c879b92d2b7d55b14361f80e09411073 -Author: Gavin King -Date: Tue Jul 4 19:17:26 2023 +0200 - - HHH-16875 be a bit more forgiving when type checking expressions involving unknown HQL functions - - Let's not reject expressions like: - - function('current_user') = 'username' - - also add QueryArgumentException - -commit a2defad7a41bf7a0cc9512788fba644b94df8885 -Author: Gavin King -Date: Tue Jul 4 17:16:24 2023 +0200 - - HHH-16887 smoke test HQL validation - -commit 28b1670d189b88cd8a96bc82ece7d34fdbd2ad91 -Author: Gavin King -Date: Tue Jul 4 16:58:24 2023 +0200 - - HHH-16887 also validate arguments of @NamedQuery if @CheckHQL is specified - -commit 13877a9a3e405b868cedf848145387bf4f0c3f54 -Author: Gavin King -Date: Tue Jul 4 15:13:14 2023 +0200 - - HHH-16887 update tests - -commit f61e00c6429a378a172d5c1b3adcdd4a714d3e7a -Author: Gavin King -Date: Tue Jul 4 12:46:06 2023 +0200 - - HHH-16887 integrate full HQL typechecking into Metamodel Generator! - -commit 445f2cbdd8ad08c7ac4c2a3b4a47d1096f482b5b -Author: Gavin King -Date: Mon Jul 3 19:45:22 2023 +0200 - - very minor change - -commit 445d92aedb0c084d114e9d596a2cd7ae65f70c38 -Author: Sanne Grinovero -Date: Thu Jun 29 22:00:34 2023 +0100 - - HHH-16877 Efficient lookup of MutationExecutorService - -commit 39bc616cd97a505f0a8816a3422e09a009eac576 -Author: Andrea Boriero -Date: Mon Jul 3 16:25:02 2023 +0200 - - HHH-16853 Setting Named Query Parameters is VERY slow - -commit de0a33542f6a2505861315ddac3a8ffd3e909fb8 -Author: Gavin King -Date: Fri Jun 30 20:54:06 2023 +0200 - - put sybase on port 9000 - - port 5000 does not work on my Mac laptops and I'm getting sick - of having to do this manually all the time - -commit 67fab3df5bfde27922b25b68714aa184919cfdd9 -Author: Gavin King -Date: Mon Jul 3 09:59:56 2023 +0200 - - rename Discriminatable -> Discriminable - - Since "discriminatable" is not standard English - -commit a2e95b2b7094b3572a941b8ad35e5924848a1fb3 -Author: Gavin King -Date: Mon Jul 3 09:54:02 2023 +0200 - - whitespace changes - -commit b6eabdf17d3ed4c612dc758171bf5f03db7e45c5 -Author: Gavin King -Date: Mon Jul 3 15:05:32 2023 +0200 - - add missing @Override annotations - - and Extract a function - -commit 617ce3206ed23dadc1daafe160e735f0fef5e96e -Author: Gavin King -Date: Mon Jul 3 13:26:11 2023 +0200 - - cleanup more generic typing issues around paths and graphs - - simplify the whole appliesTo() thing which was convoluted and overly-complex - -commit 6299ceb61d9e08b56f9877e576237babff676f34 -Author: Gavin King -Date: Sun Jul 2 15:03:57 2023 +0200 - - fix up lots of errors in generic typing related to DomainTypes... - - ...and reduce coupling to JpaMetamodel. This is useful for tools like - Query Validator which need to instantiate these metamodel objects in a - "mocked" environment. It will also make it possible for the Metamodel - Generator to generate static references to these metamodel objects. - -commit 4adafc275773dbbf6ea6a92ba663cf1638ee6daf -Author: Andrea Boriero -Date: Wed Jun 28 15:06:29 2023 +0200 - - HHH-15720 Using multiple select in a multiselect generates java.lang.ArrayIndexOutOfBoundsException - -commit 551043a4de281a680e3face4eb2119b084e5628f -Author: Andrea Boriero -Date: Wed Jun 28 10:25:01 2023 +0200 - - HHH-15720 Add test for issue - -commit d32e8adaf239aff7b9ccad5575f87245802a599f -Author: Gavin King -Date: Sat Jul 1 21:05:59 2023 +0200 - - detach EntityGraphs from the JpaMetamodel - - so that they can be newed more easily - -commit 1e05e8444e23e497060cd6712a1e801a0a5837ae -Author: Gavin King -Date: Sat Jul 1 18:44:00 2023 +0200 - - clean up lots of warnings in org.hibernate.graph - -commit bc901f516265b0ee6ded0419f083d2c184662c6f -Author: Gavin King -Date: Thu Jun 29 11:54:45 2023 +0200 - - HHH-16875 improve typechecking for comparisons of embeddables, tuples, entities - -commit 63cccf87dc8fed9fff97102694d8703e80fdc49e -Author: Marco Belladelli -Date: Mon Jun 19 11:10:27 2023 +0200 - - HHH-16792 Unqualify table expressions for cte table names - -commit 520394a790cea91451d3a8af7801747d62007505 -Author: Marco Belladelli -Date: Mon Jun 19 11:10:08 2023 +0200 - - HHH-16792 Add test for issue - -commit 33a3ff2994d8412ef3c3d68ebe8af5574d05d597 -Author: Christian Beikov -Date: Fri Jun 30 10:34:20 2023 +0200 - - Switch to correct skip-dialect annotation for Cockroach test-skipping - -commit 2acda737d282f262bfc91d6145b530dadd5aeaf7 -Author: Sanne Grinovero -Date: Thu Jun 29 19:23:15 2023 +0100 - - HHH-16873 Expose fast-path cloning constructors for UpdateCoordinatorStandard - -commit 11aa022aa212b3e160f9954b543133dbd0bd5544 -Author: Jan Schatteman -Date: Thu Jun 29 19:27:17 2023 +0200 - - HHH-16868 - add test for issue (no fix required) - - Signed-off-by: Jan Schatteman - -commit 58006ddf31780ed76411bdbf786bcdefa920711d -Author: Gavin King -Date: Thu Jun 29 10:13:28 2023 +0200 - - improvements to second half of entities chapter of new doc - -commit bdbff50dc2dc05bbb66f47edb1cf29dd6f20d33b -Author: Gavin King -Date: Thu Jun 29 03:04:47 2023 +0200 - - add a tip about @ManyToMany - -commit 1e4b9e8ffb8aeee024faa2160f3e79019564e424 -Author: Gavin King -Date: Thu Jun 29 00:36:29 2023 +0200 - - HHH-16858 improve typechecking for comparisons/assignments (#6910) - - * HHH-16858 improve typechecking for comparisons/assignments - - In particular, correctly typecheck comparisons between enums - and other enums, and literal integers / strings. Actually - I'm not a great fan of comparing enums with int/string literals - but since we used to support it in 5, and kinda mostly support - it in earlier releases of 6, on balance we might as well continue - to allow it. - - * improve typechecking for arguments to min() & max() - - - use the known JdbcType which previously we didn't have - proper access to - - and accidentally fix HHH-16859 by side-effect - (I didn't really want to fix that one, but it was easier - to fix it than to unfix it.) - - * HHH-16858 handle MySQL enum types correctly in comparison typecheck - -commit 9464aecc78a579946b1f017a5d87411f37949d1a -Author: Christian Beikov -Date: Wed Jun 21 13:39:06 2023 +0200 - - HHH-14078 Avoid duplicate elements when initializing bag with queued operations - -commit dfa26e0b5c8d58792b13813b7215bf85dc24b10d -Author: Sanne Grinovero -Date: Tue Jun 27 20:47:00 2023 +0100 - - HHH-16815 Improvements in SqmInterpretationsKey - -commit 4095e16212b394e340af731829485e9369b9eb89 -Author: Marco Belladelli -Date: Fri Jun 16 16:05:55 2023 +0200 - - HHH-16642 Restrict conjuct type predicate to treated roots - -commit 00d13050f16bd5a50a566ea2197e71924879e084 -Author: Marco Belladelli -Date: Fri Jun 16 16:05:12 2023 +0200 - - HHH-16642 Add test for issue - -commit 2a3bab5e81481b1d7816b94860c5db4a4223bef9 -Author: Gavin King -Date: Tue Jun 27 23:32:43 2023 +0200 - - HHH-16857 fix the syntax for NVARCHAR literals on SQL Server - - and improve an error message - -commit e76d1e57526c47e26228f7bbdc20750d68547412 -Author: Gavin King -Date: Tue Jun 27 14:58:01 2023 +0200 - - document some more things about criteria queries and names queries - -commit 3c2d4f9616866124802648c75fa7bc2759c0f831 -Author: Gavin King -Date: Tue Jun 27 14:57:29 2023 +0200 - - HHH-16814 add getRootList() - - The method getRoots() returning a Set is really inconvenient - -commit 95bcd9460f7ac92e28eba2a0a0c46d5f313569a0 -Author: Jan Schatteman -Date: Mon Jun 26 19:42:55 2023 +0200 - - HHH-13506 - Quickfix - - Signed-off-by: Jan Schatteman - -commit b6a1aefa6fded8d126b37939b91cc2ee94d489f6 -Author: Christian Beikov -Date: Tue Jun 27 15:53:53 2023 +0200 - - HHH-13857 Improve javadoc - - Co-authored-by: Steve Ebersole - -commit ed472eff8aabdd3d487bf80aa81b7fd3dcc892ae -Author: Christian Beikov -Date: Tue Jun 20 10:29:56 2023 +0200 - - HHH-13857 Avoid initialization when obtaining persistent class with Hibernate.getClass() - -commit 60b6fe3d9f05c194a12a7f1f59bb3b3b2e4b1d56 -Author: Steve Ebersole -Date: Wed Apr 26 17:54:23 2023 -0500 - - HHH-16514 - Property sorting can lead to incorrect column mappings with derived embeddable keys - -commit 145b7e5d909935dca4dec7e1aec02fcf2925833c -Author: Gavin King -Date: Tue Jun 27 11:43:47 2023 +0200 - - add decent javadoc blurb to HibernateCriteriaBuilder and package - -commit da7f169371c6a17836d573f96960a2507c5b26eb -Author: Gavin King -Date: Tue Jun 27 10:35:56 2023 +0200 - - HHH-16814 add HibernateCriteriaBuilder.createQuery(hql, resultType) - - - also add missing createCriteriaInsertValues() method - - also add some missing @Incubating annotations - -commit 7cbc0e01fee6b040d1601f54be531c031b8a2bc4 -Author: Christian Beikov -Date: Mon Jun 26 19:14:07 2023 +0200 - - HHH-16851 Upgrade Jandex to 3.1.2 - -commit 6328af32a9c49f3d8ea7a6619ae373d7ea89575a -Author: Andrea Boriero -Date: Thu Jun 22 12:00:48 2023 +0200 - - HHH-16820 updated userguide - -commit 192cb275fbbc76260524c9aa5e02cbcfcf5435fd -Author: Andrea Boriero -Date: Thu Jun 22 12:00:09 2023 +0200 - - HHH-16820 updated migration guide - -commit bdcc619e29e2e1fa5a9ddc6e5a58caf60029b897 -Author: Andrea Boriero -Date: Thu Jun 22 10:55:06 2023 +0200 - - HHH-16820 When batching enabled the LockModeType is ignored - -commit bbbf8e969b1b4a72c8291d284d567e5a72b5844b -Author: Andrea Boriero -Date: Thu Jun 15 19:03:50 2023 +0200 - - HHH-16820 Add test for issue - -commit ab36d29e1ac8e52c163152bd66db199e1608c723 -Author: Andrea Boriero -Date: Mon Jun 26 18:24:25 2023 +0200 - - HHH-16839 Failing to update a one-to-one lazy association with and enabled bytecode enhancement - -commit 387cde33d10a7dd59f43d48c86575f3b8fd169ca -Author: marko-bekhta -Date: Fri Jun 23 17:29:27 2023 +0200 - - HHH-16839 Add a test case to reproduce the issue - -commit cbf5ee8e45393407ab7ca8ea89f87adf3fe1f6b6 -Author: Christian Beikov -Date: Tue Jun 27 09:42:36 2023 +0200 - - Use VARCHAR registered JdbcType's type code instead of NationalizationSupport to fix HANA test issues - -commit c1c912d034321e78ee16c644d9673e435426f953 -Author: Marco Belladelli -Date: Mon Jun 26 12:45:20 2023 +0200 - - HHH-16733 Reuse correct navigable path for correlated and treated copy - -commit c06d6053b3d2bcdae829555f81e268fd8b73bf5b -Author: Marco Belladelli -Date: Mon Jun 5 13:05:05 2023 +0200 - - HHH-16733 Use existing SQM copy logic in QuerySplitter - -commit 0d3628afd3e11db46e4963745f46b12eaa783c7d -Author: Marco Belladelli -Date: Mon Jun 5 13:04:38 2023 +0200 - - HHH-16733 HHH-16582 Add test for issue - -commit eeebf20b9c9d411a3ec6dfaa084c331370d832db -Author: Gavin King -Date: Mon Jun 26 20:16:56 2023 +0200 - - allow overloaded query methods - -commit 5141e2b40e81628ae245c4e591b6160ed9edb5da -Author: Gavin King -Date: Mon Jun 26 19:52:56 2023 +0200 - - whitespace changes - -commit bec6cfab122a2a0a1d72002b0f0fe6a379808c54 -Author: Gavin King -Date: Mon Jun 26 18:09:57 2023 +0200 - - HHH-16848 add SelectionQuery.ascending(int) & descending(int) - -commit 23df9eb78591845fee2214dd20afd78f67223ca9 -Author: Jan Schatteman -Date: Mon Jun 26 19:47:55 2023 +0200 - - Fixing a few typos - - Signed-off-by: Jan Schatteman - -commit ade28621c241b421dec00a85913afa44cc5a3361 -Author: Gavin King -Date: Mon Jun 26 19:19:08 2023 +0200 - - don't throw away the cause of an exception - -commit 99da69fdc1c0d3826de39732e426060a557df141 -Author: franz1981 -Date: Wed Apr 12 13:34:52 2023 +0200 - - HHH-16462 Share the same Jandex Indexer while indexing different files - -commit eece96bb1260d4a68c02d6c65fa39e095a0ed4ba -Author: Christian Beikov -Date: Mon Jun 26 18:58:30 2023 +0200 - - Remove HANA related double precision tests that became obsolete since drivers were updated - -commit 4453681e006671f540bc9a4f6b8a3904f033ef9d -Author: Christian Beikov -Date: Mon Jun 26 18:57:53 2023 +0200 - - Use NationalizationSupport in some tests to fix HANA test issues - -commit 187b42391f8f26702b8a0adc95822aeaf5f2af04 -Author: Christian Beikov -Date: Mon Jun 26 18:57:23 2023 +0200 - - Add missing repeat function registration for HANA - -commit aeb78bc7d68b28d892fe08e3253aaacd6d483a26 -Author: Christian Beikov -Date: Mon Jun 26 18:17:06 2023 +0200 - - Fix QueryLiteral assertion error in table based multi-table insert handling - -commit 4903b2f14d02958edc7686c3e0f703ef67e24ffa -Author: Christian Beikov -Date: Mon Jun 26 18:16:00 2023 +0200 - - Skip a test on Cockroach and add PostgreSQL version requirement for other test. - -commit 876f6db487dca4b03c070ef30edb4d495bf22d34 -Author: marko-bekhta -Date: Wed Jun 14 18:38:39 2023 +0200 - - HHH-16799 Don't fall back to field access type too early - -commit b1b654d702a3faf6fdbfc1af1646b122c33f9e26 -Author: Andrea Boriero -Date: Fri Jun 23 12:04:44 2023 +0200 - - HHH-16821 Fail to delete entity with a composite id using an @IdClass with one of its fields mapped from the id of a @ManyToOne association - -commit 1139322f233a8a176ce50065d905fc42f448d0b7 -Author: Andrea Boriero -Date: Fri Jun 23 12:00:52 2023 +0200 - - HHH-16281 Add test for issue - -commit 1b3f72870308e66c07265d65dc6c0d02e4cf4b30 -Author: Andrea Boriero -Date: Wed Jun 21 16:38:43 2023 +0200 - - HHH-16832 Bytecode enhancement leads to broken constructor for a generic embedded field in a MappedSuperclass - -commit 35206ddb197d181e003f5da051d2703dbd6eb1f2 -Author: Yoann Rodière -Date: Wed Jun 21 11:07:47 2023 +0200 - - HHH-16832 Reproducer - - As far as I can see, the problem is in: - - https://github.com/hibernate/hibernate-orm/blob/5a63d8758a79d8bbcd923ace0bd111623659a6e8/hibernate-core/src/main/java/org/hibernate/bytecode/enhance/internal/bytebuddy/InlineDirtyCheckingHandler.java#L88-L90 - - `GetterMapping` doesn't seem to work correctly when the getter is - defined in the superclass with a more abstract type. - -commit a098abff4290e4959a8f8924507d0ed54150215e -Author: Christian Beikov -Date: Mon Jun 26 17:48:09 2023 +0200 - - Handle timeout exception for older H2 versions and igonre a test for Cockroach - -commit d16808e0156de9445d04341717c5d72690ce0333 -Author: Gavin King -Date: Mon Jun 26 15:23:15 2023 +0200 - - HHH-16815 tests for ascending()/descending() with parameters - -commit 5d05dd84789d4ca6da9da6390c38b92171197f8c -Author: Gavin King -Date: Mon Jun 26 14:45:42 2023 +0200 - - HHH-16815 don't copy parameters, since they have identity equality - -commit a3abac90659989ac6acf2c2c68d8e3d357d1c180 -Author: Jan Schatteman -Date: Fri Jun 2 22:29:12 2023 +0200 - - HHH-16515 - Add o.h.engine.transaction to nullness checking - - Signed-off-by: Jan Schatteman - -commit e7d0bd095582aa0af55bdd0cc09714abc27c4d8e -Author: Jan Schatteman -Date: Thu Jun 1 23:09:12 2023 +0200 - - HHH-16515 - Add o.h.engine.profile to nullness checking - - Signed-off-by: Jan Schatteman - -commit ea56fbdb53c09d42fe15b691686b05ef4dbd2ab7 -Author: Sanne Grinovero -Date: Wed Jun 21 14:47:46 2023 +0200 - - Deleting some unused code - -commit e9f879d9d65c15dc97b6773073321aaa8dd319b9 -Author: Sanne Grinovero -Date: Tue Jun 20 22:38:06 2023 +0200 - - Automated cleanup: inefficient branching (thanks IntelliJ) - -commit 0fb5895d08b221c113af2fff108e6190d864533e -Author: Sanne Grinovero -Date: Tue Jun 20 22:15:09 2023 +0200 - - Automated cleanup: suboptimal string handling (thanks IntelliJ) - -commit 3eb7e7aea947b17b7b7401824b1f8240fe19a928 -Author: ats1999 -Date: Sun Jun 25 15:23:20 2023 +0530 - - HHH-16842 Fixed typo - changed tye to type - -commit cd320671a88360c305befe3938019cac8e6450a8 -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Mon Jun 26 05:58:29 2023 +0000 - - Bump com.gradle.enterprise from 3.13.3 to 3.13.4 - - Bumps com.gradle.enterprise from 3.13.3 to 3.13.4. - - --- - updated-dependencies: - - dependency-name: com.gradle.enterprise - dependency-type: direct:production - update-type: version-update:semver-patch - ... - - Signed-off-by: dependabot[bot] - -commit 4bd5ebad4eeb6a9d02bc0bb7d194069671675e6a -Author: Gavin King -Date: Sun Jun 25 21:08:01 2023 +0200 - - HHH-16619 don't generate table aliases beginning with _ - - - because Oracle hates that - - also, as suggested by @sebersole common in code, start - generating "acronym"-based aliases - -commit cb7b364b464cb85bd54699ae99695628e8809de8 -Author: Gavin King -Date: Sun Jun 25 22:00:03 2023 +0200 - - fix 'is distinct from' predicate on HSQL - - the semantics of the built-in operator are different to our semantics - -commit 1807e1cc43163d6497780cfbb53d03ede6ce98f8 -Author: Gavin King -Date: Sun Jun 25 20:06:07 2023 +0200 - - extra test for 'is distinct from' - -commit b7120a60a3bb8f4427ff2cf255d7ebfb65dd326b -Author: Gavin King -Date: Sun Jun 25 19:56:07 2023 +0200 - - minor change to grammar for readability - -commit f77067b1b3d413c1bdc329bec2730bef0bfa28ad -Author: Gavin King -Date: Sun Jun 25 18:29:50 2023 +0200 - - HHH-16843 fix interpretation of 'value = null' in HQL - - the previous implementation was not compliant with the - JPA spec and defied logic - -commit e15bee589fb30d54fcd38e5a33542abf2469cb2c -Author: Gavin King -Date: Sun Jun 25 16:48:57 2023 +0200 - - fix a couple of mistakes in operator precedence list - -commit d1bb2f4402dcdc98a86642ce412bf5f1f45d4149 -Author: Gavin King -Date: Sun Jun 25 16:29:09 2023 +0200 - - HHH-16801 doc precedence of 'is true', 'is false' - -commit f13b6cc16bcd7cb63ab46462f656a3b5c128c6de -Author: Gavin King -Date: Sun Jun 25 15:43:15 2023 +0200 - - remove unused interface QueryPlanCache - -commit d6ffb75251642e9b894a78e4539b6ee356cb7812 -Author: Gavin King -Date: Sun Jun 25 15:26:13 2023 +0200 - - HHH-16829 skip test on TiDB - -commit 0126d96d03ea20e041da1e150e5cbbe9e0420ddb -Author: Gavin King -Date: Sun Jun 25 10:43:03 2023 +0200 - - HHH-16801 document 'is true', 'is not true', 'is false', 'is not false' operators - -commit 987a0dfe3cb138630a41aa637c8dcb7542917182 -Author: Gavin King -Date: Sat Jun 24 23:02:43 2023 +0200 - - HHH-16801 add HQL 'is true', 'is not true', 'is false', 'is not false' operators - -commit 158bf7e69727317d3612ab7364d1f6e478a427cf -Author: Gavin King -Date: Sat Jun 24 20:15:59 2023 +0200 - - update to latest HSQLDB release - -commit e2100bc18542d28da9889d7c58ef187020c4ccae -Author: Gavin King -Date: Sat Jun 24 19:28:54 2023 +0200 - - HHH-16829 fix test in CI - -commit ae1215ca359dfda063caedc8535f5cea1cc18169 -Author: Gavin King -Date: Sat Jun 24 18:23:21 2023 +0200 - - HHH-16829 add @Collate annotation - -commit f32f6b55155b2e46e940520292e59eeb5d29bcd9 -Author: Gavin King -Date: Sat Jun 24 13:54:06 2023 +0200 - - document hibernate.properties in intro doc - -commit 0b191e0b1bf7f02d92d0372754f825d052a981d3 -Author: Gavin King -Date: Sat Jun 24 12:48:09 2023 +0200 - - correct a ref to a property, and squash warnings in AvailableSettings - -commit a851f1cf8b3f257338a0476504fe24821e649ae9 -Author: Gavin King -Date: Sat Jun 24 12:40:15 2023 +0200 - - new doc section on testing, and simpler REST example - -commit 1603e4a4725a121afa0e3da7508f1d579e568a50 -Author: Gavin King -Date: Fri Jun 23 19:32:30 2023 +0200 - - add test for StatelessSession.upsert() - -commit 1797a9196e006db9ae7552095cc6dc9f27b7b0e9 -Author: Yoann Rodière -Date: Fri Jun 23 10:14:18 2023 +0200 - - Add some missing names in the user guide credits - - I tried to filter out contributors who only fixed typos, - hopefully I didn't forget anyone. - -commit 1c1c6bf06bb3f6dd48368569621ae5f6a202d31f -Author: Yoann Rodière -Date: Fri Jun 23 09:57:02 2023 +0200 - - Move credits to a dedicated section of the user guide - -commit 79c58bbcc873df7c9d3607f76f5788b6d119d99b -Author: Gavin King -Date: Thu Jun 22 20:41:35 2023 +0200 - - HHH-16815 fix issues with query plan cache and ascending()/descending() - -commit 28043f8fc4dc9950bdaaa926489b9d72ada25aac -Author: Christian Beikov -Date: Tue Jun 20 19:48:30 2023 +0200 - - HHH-16711 Ensure static accessor methods for accessing foreign package state use visible types - -commit 2076fc09765a492bf728aee97a8e923c9a671782 -Author: Jan Schatteman -Date: Tue Jun 20 01:04:10 2023 +0200 - - HHH-16711 / HHH-16707 - Added tests for these related issues - - Signed-off-by: Jan Schatteman - -commit f2493040e3aa8676954d59deff91dd8077ddb838 -Author: Christian Beikov -Date: Tue Jun 20 09:35:43 2023 +0200 - - HHH-15435 Improve error when using derived root in context that needs expansion - -commit 02e217277806d7973672625421785e41b47e50ab -Author: Marco Belladelli -Date: Mon Jun 19 16:13:19 2023 +0200 - - HHH-16602 Dedicated action queue priority for orphan collection removals - -commit 4d72a10cba2185baf0722eaac2c85b84daaa13c3 -Author: Jan Schatteman -Date: Mon May 29 23:20:18 2023 +0200 - - HHH-16701 Add test for issue - - Signed-off-by: Jan Schatteman - -commit c07f9062d33e4870c31f63da35ea5eb4cbc67279 -Author: Marco Belladelli -Date: Mon Jun 19 15:53:28 2023 +0200 - - HHH-16602 Add test for issue - -commit 2f1f766097a3ff9a7b184d02c624bc76d5580639 -Author: Gavin King -Date: Wed Jun 21 22:27:10 2023 +0200 - - document ascending()/descending() - -commit e0516136379107dd4962ca54c2da2ac58dd87aea -Author: Gavin -Date: Wed Jun 21 21:44:17 2023 +0200 - - two better words - -commit 550417be128b1e507877c562a780ea72cef3566c -Author: Gavin -Date: Wed Jun 21 21:33:23 2023 +0200 - - more work on the Introduction of the Introduction - - it's finally starting to come together - -commit f19e971de5bd4624117e358eb5e1e18d7f031a5e -Author: Christian Beikov -Date: Wed Jun 21 13:52:32 2023 +0200 - - HHH-14703 Testcase showing that @Enumerated is picked up through implicit access type - -commit 98e028c51d5dd8341626e05ff6433e078dd2f958 -Author: Christian Beikov -Date: Tue Jun 20 18:35:50 2023 +0200 - - HHH-14483 Split insert-values statement if dialect doesn't support values lists - -commit 88e07652c95301e969b5db31dd42cf47e527069a -Author: Gavin King -Date: Wed Jun 21 17:37:34 2023 +0200 - - more work on architecture session of doc - -commit 8809e5720cafce88b05015bc8b9fc7b676baf574 -Author: Christian Beikov -Date: Wed Jun 21 12:45:18 2023 +0200 - - HHH-16831 Replace string concat with proper string format for logging - -commit 6c6df62e362ef0f1a1af1c5c5a3e1068f6fbf18d -Author: Scott Marlow -Date: Wed Jun 7 12:45:04 2023 -0400 - - HHH-16275 fix whitespace - - Signed-off-by: Scott Marlow - -commit bb76426b5b03978761b7431701866e19a2c01330 -Author: Scott Marlow -Date: Mon Jun 5 17:22:58 2023 -0400 - - HHH-16275 also wait longer for LockTest.testLockUpdateFkTarget - - Signed-off-by: Scott Marlow - -commit d208dda7e79f9704bff0b0da6a62e09f04d93e0b -Author: Scott Marlow -Date: Mon Jun 5 14:51:23 2023 -0400 - - HHH-16275 wait longer for LockTest.testLock*FkTarget to insert row on the database server to avoid occasional fail with timeout getting lock - - Signed-off-by: Scott Marlow - -commit 23dafff99ef5891c4d1a85e7f01f6cb4daa08f88 -Author: Yoann Rodière -Date: Wed Jun 21 08:41:21 2023 +0200 - - Fix a few invalid file headers - - Looks like my IDE was misconfigured when I contributed those files. - -commit 8a82f0e63b2fe70d207e10576e1b707cd57074b5 -Author: Gavin King -Date: Wed Jun 21 01:16:27 2023 +0200 - - add an image - -commit c29837366a327a458fc0d9da1665f870502a07ab -Author: Gavin King -Date: Tue Jun 20 21:26:02 2023 +0200 - - discuss how to make use of query methods on first section of Introduction.adoc doc - -commit bbb7bcf38988dcd5ff8031751a7d28474e6acb13 -Author: Christian Beikov -Date: Wed Jun 14 19:02:31 2023 +0200 - - HHH-16721 Make sure join predicate is propagated to correlation on lazy initialization - -commit 1cc94c76b9ede65001923b9611208996222a1ad3 -Author: Christian Beikov -Date: Wed Jun 14 18:09:17 2023 +0200 - - HHH-16589 Limit in clause padding to Dialect.getInExpressionCountLimit and fix negated in predicate splitting - -commit 56955367bae9e14378ff3161061a4d659febef13 -Author: Adrodoc -Date: Thu May 11 19:24:06 2023 +0200 - - HHH-16589 In clause padding can no longer cause in clauses to exceed Dialect.getInExpressionCountLimit - -commit 4e7c5df4fe5a2c0e6308236847f44fea698f7386 -Author: Gavin King -Date: Tue Jun 20 17:53:04 2023 +0200 - - note uniqueness of names in the Javadoc - -commit a63eed837de32bd1c8d19b63eab65109562f988d -Author: marko-bekhta -Date: Mon Jun 19 09:17:52 2023 +0200 - - HHH-16815 Add default implementation throwing an exception for sorting methods on Query - -commit ada88805f874b6997c65a7c5f4cf7eadf4091374 -Author: marko-bekhta -Date: Mon Jun 19 08:38:58 2023 +0200 - - HHH-16815 Remove some unused methods - -commit cbac1b82c0315e8345f63f9c9bdcfdf1d1c133f0 -Author: Marco Belladelli -Date: Tue Jun 20 11:04:01 2023 +0200 - - HHH-16773 Fix functional dependency support for TiDB and Cockroach - -commit fd690f378d0566587b79981a862eb76df33bbb91 -Author: Marco Belladelli -Date: Fri Jun 16 11:48:42 2023 +0200 - - HHH-16784 Always resolve generic interface classes to Object type - -commit eb53368115bb9a8f6a489f03d724bde608cf9d9e -Author: Marco Belladelli -Date: Fri Jun 16 11:48:02 2023 +0200 - - HHH-16784 Add test for issue - -commit 55f46ced44087e6d96fde0c4141a71d70fa49191 -Author: Andrea Boriero -Date: Thu Apr 13 15:29:58 2023 +0200 - - HHH-16461 @Version + session.refresh(entity, LockMode.PESSIMISTIC_WRITE) leads to StaleObjectStateException - -commit f78c5d375d0997de9758088bf35a0c06e786cc3e -Author: Yoann Rodière -Date: Wed Apr 12 13:03:32 2023 +0200 - - HHH-16461 Test @Version + session.refresh(entity, LockMode.PESSIMISTIC_WRITE) - -commit fb4f5ba617e0d77f3a598811381c5c9a300b05aa -Author: Gavin King -Date: Mon Jun 19 22:55:17 2023 +0200 - - HHH-16823 support for nvarchar on MySQL - - In H6 we stopped producing nvarchar columns on MySQL, but it's - needed for MySQL 5.7. On the other hand, actually nvarchar is - deprecated in MySQL 8. - - So use 'varchar character set utf8' instead. - -commit c9baeb5c68ec810e6590e5312cc8b6eeda728b7a -Author: Andrea Boriero -Date: Wed Jun 14 13:15:49 2023 +0200 - - HHH-16794 With Bytecode enhancement a lazy ManyToOne association targeting an Entity annotated with @Proxy(lazy = false) is eagerly loaded - -commit d71a0f77e1948d75da9f1a7cccf828aa1d0a9c18 -Author: Andrea Boriero -Date: Wed Jun 14 13:15:25 2023 +0200 - - HHH-16794 Add test for issue - -commit 46bfc59cd1c83db9bcba3c6702ac2027fa173636 -Author: Andrea Boriero -Date: Tue Jun 13 10:00:37 2023 +0200 - - HHH-16743 StackOverflowError when loading a ManyToOne whith @Proxy(lazy=false) - -commit 4933303f0b5c07bece2e656e4002edd4bb82cdac -Author: gtoison -Date: Fri Jun 2 22:13:01 2023 +0200 - - HHH-16743 Add test for issue - -commit bc8c0a238c4c9934b8a7c639a029a68db697480a -Author: Gavin King -Date: Sun Jun 18 03:24:29 2023 +0200 - - clean up some imports in tests - -commit 7d79760b9adeff81b46ab58914096c285cbc1e60 -Author: Gavin King -Date: Sun Jun 18 03:21:05 2023 +0200 - - HHH-16633 make GenericDialect public - - oops, tests did not catch this - -commit 7ecec615d3d835d05cfce8c0ce78268bb26df5d6 -Author: Gavin King -Date: Sat Jun 17 21:52:02 2023 +0200 - - HHH-16815 fix generic signature of ascending() / descending() - - + code cleanups in the Query hierarchy - -commit 3211cb8e9b18b5d190da0328b5892053b9253dd4 -Author: Gavin King -Date: Sat Jun 17 18:51:29 2023 +0200 - - HHH-16633 add @see annotations to generated code - -commit c6658fbb8426c9a66668e780f1520fc733dadbd3 -Author: Gavin King -Date: Sat Jun 17 15:36:04 2023 +0200 - - HHH-16815 add ascending()/descending()/unordered() to SelectionQuery - - This is going to be very convenient - -commit e641cfceb70b2f5bd969cb23ae1fba1c50721c7c -Author: Gavin King -Date: Sat Jun 17 15:32:05 2023 +0200 - - HHH-16633 typecasts to org.hibernate return types + handle projections correctly - -commit 56cf0c414c796edf01c0329fbfcb123057a5653e -Author: Gavin King -Date: Sat Jun 17 12:26:38 2023 +0200 - - HHH-16813 don't add @Generated annotations if it's going to cause a compilation failure - -commit b1998782e9027ca1cca65f8a2b4f029d7309ed46 -Author: Gavin King -Date: Sat Jun 17 09:58:57 2023 +0200 - - HHH-16633 introduce new package for @HQL, @SQL, @CheckHQL annotations - -commit cfe545ec3d451b018457e3f3e61c38e27d3e8d00 -Author: Gavin King -Date: Sat Jun 17 02:25:51 2023 +0200 - - HHH-16633 introduce native query methods to JPA metamodel generator - -commit 698b245753a347e07ddcfd0008f3c1664638b2e6 -Author: Gavin King -Date: Fri Jun 16 21:02:39 2023 +0200 - - HHH-16633 introduce query methods to JPA metamodel generator - -commit d3e15a7cc17130424ea258e8dc6b391b4ca0130b -Author: Gavin King -Date: Sat Jun 17 14:08:14 2023 +0200 - - don't throw ParsingException (it represents a bug in the parser) (#6819) - - - we should throw SyntaxException for expected conditions - - also, avoid the use of weirdo non-standard hyphenation in error messages - -commit ce98e3ea49176e3ab48f4da2ebb70b043bf8e5a2 -Author: Gavin King -Date: Fri Jun 16 21:55:43 2023 +0200 - - ParsingException should extend QueryException (#6816) - -commit 336f83b03e445d5387b2902d010bd3af12abdc7e -Author: Marco Belladelli -Date: Tue Jun 13 11:22:04 2023 +0200 - - HHH-16537 Check correlated too for compatible joined group - -commit 562a3d901edf2a32c8c1db401ef38b5fe6f54976 -Author: Marco Belladelli -Date: Thu May 4 10:36:49 2023 +0200 - - HHH-16537 Add test for issue - -commit 4e72ccb097b95a9b0317e3c6557c67166e677dd5 -Author: Steve Ebersole -Date: Fri Jun 16 09:37:01 2023 -0500 - - HHH-16809 - Add JavaType#createArray - - https://hibernate.atlassian.net/browse/HHH-16809 - - Clean-up dead references to `JavaType#getSpecializedTypeDeclaration` - -commit fe1a8619ad025eeeb7af7f9a5d46f51f06151196 -Author: Gavin King -Date: Fri Jun 16 16:12:06 2023 +0200 - - add dependencies to PDF builds to staging tasks (#6813) - - (not certain this is necessary) - -commit e2714627d624cd739910fc4aff1729a58669d9fd -Author: Gavin King -Date: Fri Jun 16 16:01:05 2023 +0200 - - mention Envers in optional deps - -commit 9dca8f084be475d12590b70a70953a60d1120425 -Author: Marco Belladelli -Date: Thu Jun 15 10:35:28 2023 +0200 - - HHH-16713 Fix number of row counts check in BatchImpl - -commit de5987b3b3c07360355458042a558635a457907c -Author: Marco Belladelli -Date: Thu Jun 15 10:35:06 2023 +0200 - - HHH-16713 Add test for issue - -commit e5d59b64fdb99da61fcb8ebf57c67640cc845980 -Author: Marco Belladelli -Date: Mon Jun 12 10:20:30 2023 +0200 - - HHH-16773 Introduce support for group/order by PK functional dependency - -commit 51460470f45dea5357dda3d5460a23b2289c17ab -Author: Gavin King -Date: Fri Jun 16 14:00:09 2023 +0200 - - add AuditReader.find(Class,Object, LocalDateTime) (#6811) - - since java.util.Date is bad - - and add some Javadoc to AuditReader - -commit 7bec00cc86eacebd1ffd2eb5032b1b4acd67226c -Author: Gavin King -Date: Fri Jun 16 13:58:28 2023 +0200 - - (finally) document sorted/ordered collections and map keys - -commit 715212c6949e969a3b44bbc35a6f5521cc8c4125 -Author: Gavin King -Date: Fri Jun 16 13:57:31 2023 +0200 - - fix links to deprecated annotation in jdoc - -commit 8b86cb1cdf5d40028c844b843c9acf40684370d5 -Author: Gavin King -Date: Fri Jun 16 12:29:40 2023 +0200 - - add sidebar discussing Envers to Introduction - -commit 8761d6abb7f13f4ebfb55ff5e4da8e1624627218 -Author: Gavin King -Date: Fri Jun 16 08:00:43 2023 +0200 - - very minor "you" to "we" - -commit c937ac6f9de6d7c9b848053cfe8e3defb033f212 -Author: Gavin King -Date: Fri Jun 16 07:56:22 2023 +0200 - - mention upsert() in the doc - -commit 7cf4fd0626ade7b80b86baa3bf23502b91ce5b5b -Author: Gavin King -Date: Thu Jun 15 23:52:49 2023 +0200 - - update the QuickStart guide (#6807) - - * update the code examples in the quickstart - - * update the quickstart document - - * slightly restructure the quickstart document - -commit 126207bbfe93d3e1b9d84c6fe8836654caeb2de3 -Author: Gavin King -Date: Thu Jun 15 17:26:59 2023 +0200 - - HHH-16805 typecheck arguments of HQL arithmetic operators (#6804) - -commit aff3c105b6018c42a34c0907a87a8854c3eab2f4 -Author: Gavin King -Date: Thu Jun 15 16:22:36 2023 +0200 - - lighter punctuation in binding/extracting log message (#6790) - -commit 96941f377547605f25a5f5d3869cbac3b0a00ed2 -Author: Gavin King -Date: Thu Jun 15 11:51:08 2023 +0200 - - HHH-16802 typecheck subquery predicates (#6801) - -commit 9d052413fcd42f7e7108bc16eda4af919179faeb -Author: Andrea Boriero -Date: Thu Jun 15 10:41:06 2023 +0200 - - HHH-16797 - Mark org.hibernate.metamodel as incubating - -commit e8acf51608430d3d4b297233afc553e77f551080 -Author: Christian Beikov -Date: Fri Jun 9 14:51:55 2023 +0200 - - HHH-16739 Fix several failures when comparing enum parameters with constant values - -commit f24660e1fd6ca5706f452b735a64a15c7a6e9c28 -Author: Steve Ebersole -Date: Wed Jun 14 10:42:36 2023 -0500 - - HHH-16797 - Mark org.hibernate.metamodel as incubating - - https://hibernate.atlassian.net/browse/HHH-16797 - -commit b0419a8fe208488b3687f651b23426b3582bb31e -Author: Marco Belladelli -Date: Wed Jun 14 16:06:37 2023 +0200 - - HHH-16678 Add back query literal initialization assertion - -commit 6984c4a9e88f0e76c2a3b7f594f29abd03e21089 -Author: Marco Belladelli -Date: Wed Jun 14 11:09:09 2023 +0200 - - HHH-16678 Use seed and next for version increase query literal - -commit e31754086a14b2948ceea19fc2c3e37e3023e319 -Author: Marco Belladelli -Date: Wed Jun 14 10:40:11 2023 +0200 - - HHH-16678 Add test for issue - -commit 13dcc0721e6da303c847baa3b053a87ef95b7a18 -Author: Gavin King -Date: Wed Jun 14 13:15:15 2023 +0200 - - add a TIP and whitespace in some code fragments - -commit 4878a1d277dc8baee92efc72d57708ce6338287d -Author: Andrea Boriero -Date: Mon Jun 12 19:12:32 2023 +0200 - - HHH-16744 Wrong class created when reusing a join column for different entities in multiple ManyToOne - -commit 7223a5eb53b119eab6098b92f314938c67ffc2f5 -Author: gtoison -Date: Sat Jun 3 22:48:27 2023 +0200 - - HHH-16474 issue reproducer - -commit b971b1e377ffe1068ca95ab492525f935fcfd098 -Author: Gavin King -Date: Wed Jun 14 10:25:35 2023 +0200 - - introduce UnknownFilterException for consistency with UnknownProfileException - -commit d63323cb63403d7880643d1237dd228f89fc5fe6 -Author: Marco Belladelli -Date: Tue Jun 6 12:21:31 2023 +0200 - - HHH-16714 Add test and fix structured cache for inheritance subtypes - -commit 7d0f313efe1d1af0c4b5957f7331872ba0fe370f -Author: Andrea Boriero -Date: Mon Jun 12 11:46:54 2023 +0200 - - HHH-16767 From#getJoins throws exception if non-attribute was joined - -commit c6ae189ca5642cec31da6a116eace96fbd4354e8 -Author: Andrea Boriero -Date: Mon Jun 12 11:46:30 2023 +0200 - - HHH-16767 Add test for issue - -commit 37aa5b21a3d491830ca8076e74abe0980c9e4da2 -Author: Andrea Boriero -Date: Mon Jun 5 15:37:34 2023 +0200 - - HHH-16750 ClassCastException when an Entity with an ElementCollection has an EmbeddableId with just one field and Batch is enabled - -commit 254d01484dfe0e43c73fb54fa0332fa55f2a4315 -Author: Andrea Boriero -Date: Mon Jun 5 16:26:54 2023 +0200 - - HHH-16750 Add test for issue - -commit 6b8beaaf3a04eb41d57e4553dd264c3ca00db794 -Author: Andrea Boriero -Date: Mon Jun 5 13:34:36 2023 +0200 - - HHH-16740 Fetching an element collection on an entity with a composite id fails when batch size > 1 - -commit f3c21bbab266a0c8fac16beaba4481c45ab10935 -Author: marko-bekhta -Date: Fri Jun 2 12:31:21 2023 +0200 - - HHH-16740 Add a test case to reproduce the issue - -commit a64748ba8424bbe8e3c30e38484999d867a68721 -Author: Andrea Boriero -Date: Thu Jun 8 12:12:04 2023 +0200 - - HHH-16673 Fail to get access lazy fetched field ( @ManyToOne ) wich is part of a composite Id (using an @IdClass) when stored in L2 cache - -commit 036631f42cb51bc1a867b55daeecf8747306a5f9 -Author: Andrea Boriero -Date: Wed Jun 7 08:04:25 2023 +0200 - - HHH-16673 Add test for issue - -commit 9adffa4e4f28cfd4ca68c9bc7fa5aa79e87f7d7f -Author: Gavin King -Date: Tue Jun 13 21:29:06 2023 +0200 - - further work on query parser exceptions - - I missed a couple of things - -commit d859f43748c3b414d6f265e487e70d02d54db5d7 -Author: Christian Beikov -Date: Mon Jun 12 17:53:50 2023 +0200 - - HHH-16782 Allow query plan caching of criteria queries - -commit 97a699a3e193200b5eaf8834053e91d8dd5f14c9 -Author: Christian Beikov -Date: Tue Jun 13 11:48:23 2023 +0200 - - HHH-16749 Reuse BasicType from Value for JPA Metamodel instead of creating dedicated BasicDomainType instances - -commit 6ed858a46105317756b7d5988ee4375aaa46b075 -Author: Jan-Willem Gmelig Meyling -Date: Thu Mar 16 13:40:53 2023 +0100 - - HHH-16749 Reproducer for incorrect function argument domain type - -commit 70d8b8b10d338e83154780955673396c376a5feb -Author: Gavin King -Date: Wed Jun 14 01:24:28 2023 +0200 - - fix section title - -commit 9c4dc02b96a69535e533307c32619caafbbef304 -Author: Gavin King -Date: Wed Jun 14 01:18:33 2023 +0200 - - fix up flow of section on join fetching - - fix a link - -commit 95d3dfb85b6c95d97498d81a4fffeda9cc13d3df -Author: Gavin -Date: Sat Jun 10 23:08:49 2023 +0200 - - more use of typesafe metamodel gen refs - -commit fbb9df37bf18acaf9697f0ebaf865a91722f20d3 -Author: Gavin -Date: Sat Jun 10 14:13:46 2023 +0200 - - mention alternative APIs in doc - -commit 781b19d13660161a4c66010359ad35e5d66026b8 -Author: Gavin -Date: Sat Jun 10 00:41:44 2023 +0200 - - document new features for typesafety - -commit 727a9b2c03d6b646d85fac896d5a6d7ff64bf7bd -Author: Gavin King -Date: Tue Jun 6 15:55:59 2023 +0200 - - generate typesafe references to named queries, fetch profiles, entity graphs, fetch profiles - - add support for about @FilterDef - -commit 2fb7cdd08bc220b726de6fbe882787bbf04441a5 -Author: Christian Beikov -Date: Mon Jun 12 18:49:45 2023 +0200 - - HHH-16697 Fix auto type discovery for aggregate functions on Oracle - -commit 1a9732a5c238a61aab9b0cd610dbdaab5d7f1aba -Author: Christian Beikov -Date: Tue Jun 13 10:42:03 2023 +0200 - - HHH-16786 Fix NPE in SqmParameterInterpretation when binding null for select item in insert-select statement - -commit 2ad5cdd9b9ebc702c31a84c2edba05a3f532258b -Author: Christian Beikov -Date: Tue Jun 13 19:10:43 2023 +0200 - - HHH-16787 Multi-valued parameter with single element parameter list fails with no such element exception - -commit 694eee977fafeff9310d892f389c1fd21a06263a -Author: Gavin King -Date: Tue Jun 13 19:53:19 2023 +0200 - - Query parser exceptions (#6782) - - * clean up exception reporting in query translator - - especially, introduce SyntaxException, since SemanticException and - ParsingException were both being misused to report syntax errors - -commit f50cbce7ba2eeca53cb3d3c9776671b934bfa081 -Author: Christian Beikov -Date: Tue Jun 13 18:21:30 2023 +0200 - - Allow access to sqlBuffer via @Internal method - -commit d16482697ccf9ef9249cc87fa586c85bc3f42213 -Author: Steve Ebersole -Date: Tue Jun 13 11:05:30 2023 -0500 - - Add target and retention to `@JavaServiceLoadable` - -commit 12639834f31f6856a215a67c519b9e4bfeaa31bb -Author: Steve Ebersole -Date: Tue Jun 13 07:55:38 2023 -0500 - - branching guide - -commit 7450f916f1541650b24e43dae97c859fb2897fab -Author: Yoann Rodière -Date: Wed Jun 7 14:26:07 2023 +0200 - - Test non-standard access with extended bytecode enhancement - - Turns out there is nothing wrong and these tests already pass. - -commit d43f618ebaf8c0c70d285d967d46affef2b5b19e -Author: Gavin -Date: Mon Jun 12 23:38:01 2023 +0200 - - deprecated some exception constructors we need to migrate away from - - it's really important to report the actual HQL that caused the failure - -commit e2cf383f7a36ea3b391992a6212af1ef9d5a05c8 -Author: Gavin -Date: Mon Jun 12 23:31:41 2023 +0200 - - fix up the error message in InterpretationException - -commit 3a8e66d6004bc45bd12e564dd5f8ea7c18fd61db -Author: Gavin -Date: Mon Jun 12 22:39:12 2023 +0200 - - HHH-16783 split @Any discriminator handling into two subclasses - -commit 925d09528d8e4bcbfe3641295e5e8b4870015337 -Author: Gavin -Date: Mon Jun 12 18:02:45 2023 +0200 - - HHH-16783 allow implicit discriminator mappings in @Any - -commit b364a9d50a64e249a04123462c8cda47ffbddfca -Author: Cedomir Igaly -Date: Tue May 16 15:27:11 2023 +0200 - - HHH-16614 - Properly handling before/after tables on creation for auxiliary database objects - -commit 8408849a50f1c2eacabf9325e23eb5e882028ca9 -Author: Marco Belladelli -Date: Thu Jun 8 10:46:08 2023 +0200 - - HHH-16770 Only expand top level entity valued paths for group/order by - -commit 15310330f81ed72dfeb03ff6bf0f0af83c0fd42f -Author: Marco Belladelli -Date: Thu Jun 8 10:45:30 2023 +0200 - - HHH-16770 Add test for issue - -commit 3e8056de8eedfc1ede1114d6f6fea91c91232852 -Author: Cedomir Igaly -Date: Thu Jun 8 14:14:03 2023 +0200 - - HHH-16759 - ComponentType.isMutable should return false when component is record; replace method(s) should return original for immutable classes - -commit 86ed7abd97b07ef6cfa3f62b8eb216043cf5444c -Author: Cedomir Igaly -Date: Thu Jun 8 12:19:14 2023 +0200 - - HHH-16759 - Test case - merge embedded record - -commit a3534bcab4862b4df4969a5d0a715eb3c930ccf0 -Author: Gavin -Date: Mon Jun 12 14:09:21 2023 +0200 - - clean up RepresentationMode enum - -commit 2e5a2143fbaa0d220c6a8429879d999e2651ea17 -Author: Gavin -Date: Mon Jun 12 13:28:28 2023 +0200 - - refs to companion docs in preface - -commit 0f8a7f83bdd6dbf8bcb43f3a4472996ac410e80f -Author: Gavin -Date: Mon Jun 12 13:27:01 2023 +0200 - - minor improvs to section on join fetching, and a nice TIP - -commit 069a28970bed972a270b10a08427ed907a07081d -Author: Gavin -Date: Mon Jun 12 12:08:05 2023 +0200 - - fix ambiguity in wording - -commit f0ebb55026dc76f7349b0ab51ce0a6b23fb2efaf -Author: Christian Beikov -Date: Fri Jun 9 18:30:42 2023 +0200 - - HHH-16774 Ensure composite field tracking enhancement works also when @Embedded annotation is missing - -commit 47eb862e06910d8d38bdee0cbcbf2ef214955c71 -Author: Marco Belladelli -Date: Wed Jun 7 14:58:41 2023 +0200 - - HHH-16745 Consider loading entity entries when checking if transient - -commit b157ec35c67528a661c413db6f3e36cac40fd88f -Author: Benedikt Biallowons -Date: Sun Jun 4 17:42:44 2023 +0200 - - HHH-16745 Add test for issue - -commit ecc7dc1880330e9f9d46523c52a8f90e8def06f2 -Author: Marco Belladelli -Date: Mon May 29 15:46:27 2023 +0200 - - HHH-16761 Throw error for identifier properties not found in `@IdClass` - -commit 4317215ee1159a7df063844b620143a1b59162ea -Author: Gavin -Date: Sun Jun 11 14:47:12 2023 +0200 - - nice tip and segue into caching - -commit 711c22a712cd33bae5fab0ad757e4c017982e50b -Author: Gavin -Date: Sun Jun 11 14:18:27 2023 +0200 - - better explanation of batch/subselect fetching - -commit d7e55367b50e72a5c76166c7661b333cad42ab12 -Author: Gavin -Date: Sun Jun 11 11:02:19 2023 +0200 - - new section on selective column updates in Advanced chapter - -commit eb1f840d0126824c1f99281f99ae639d0790abe4 -Author: Gavin -Date: Sun Jun 11 10:14:33 2023 +0200 - - minor improvements to Advanced chapter - -commit 45133f1df2a84af13ffe50758fb7753b9d67b155 -Author: Gavin -Date: Sun Jun 11 09:43:18 2023 +0200 - - HHH-16777 add typesafe version of Hibernate.isPropertyInitialized() - - like in HR - -commit e6ec43f257abf3adb15de96d8badb122ff372be5 -Author: Gavin -Date: Sun Jun 11 09:40:41 2023 +0200 - - very minor code/comment changes - -commit bc81eb6d197698efc078e030f520089dd16ef972 -Author: Gavin -Date: Sat Jun 10 23:13:19 2023 +0200 - - fix error reported for empty HQL string - -commit e0d08a5f2697886faffe551c2353c0a9ffa5c474 -Author: Gavin -Date: Fri Jun 9 22:59:14 2023 +0200 - - avoid printing {element} in err message - -commit e18dde78bf6d76a07e8a2e622e7bc56a00429883 -Author: Jan Schatteman -Date: Tue Jun 6 17:51:47 2023 +0200 - - HHH-16472 - Add test for issue - - Signed-off-by: Jan Schatteman - -commit 43af98fa5295e412fea25f22df2d1de5a758439e -Author: Gavin -Date: Fri Jun 9 21:06:12 2023 +0200 - - HHH-16731 fix validation of @Any mappings - -commit 5110fd465323e9f812dec8cf3d664b6524b02a30 -Author: Gavin -Date: Fri Jun 9 17:46:39 2023 +0200 - - HHH-16776 more consistent reporting of errors in attribute paths - - and squash some warnings - -commit 9075cf84fb1a046903f1e62dcf56726051c98c6b -Author: Aurimas Niekis -Date: Fri Jun 9 19:49:24 2023 +0300 - - HHH-16772 Added a check method to `SetFieldOnArgument` setter bytecode generator to check if value type is 64-bit and adjust operand stack size accordingly. (#6756) - - HHH-16772 Added a check method to `SetFieldOnArgument` setter bytecode generator to check if value type is 64-bit and adjust operand stack size accordingly. - -commit 81deaa10492078e21cfb754730c5ac2a9a6b30b7 -Author: Gavin -Date: Fri Jun 9 17:24:31 2023 +0200 - - add missing @Override - -commit bdacc8b05f519dfe452fe9728e27d932c7a6638f -Author: Gavin -Date: Tue Jun 6 21:34:39 2023 +0200 - - make it easier to mock the QueryEngine - -commit 910c5d4276598e27023559c06d5e73c88b04e7c1 -Author: Gavin -Date: Fri Jun 9 16:10:43 2023 +0200 - - slightly improve some error messages - -commit f7ab7f4afc6b98736269470a69cd7fd3c0b6f973 -Author: Gavin -Date: Fri Jun 9 13:16:06 2023 +0200 - - fix error when treat target type is not found - -commit 0a98b41f0e1782c7ef6fa15504fc3a32e43222e3 -Author: Gavin -Date: Fri Jun 9 12:09:47 2023 +0200 - - fix an IOOB exception in SqmPathRegistryImpl - -commit a3e6e065198add152bbd5c6968efc03679f13c80 -Author: Gavin -Date: Fri Jun 9 11:09:51 2023 +0200 - - refactor out a function so that it can be used by query-validator - -commit 0ae432f0fba261409ae1ac550ed6b0f5bcf741e1 -Author: Gavin -Date: Fri Jun 9 00:45:10 2023 +0200 - - misc minor changes - -commit 3dff3fb20ec3f716abefd1e688c8d8fe6066bf34 -Author: Gavin -Date: Thu Jun 8 16:15:36 2023 +0200 - - API changes for query-validator - -commit 67f737f4ab9db23766f00e1f3fbd8524a39b473b -Author: Oleksii Klochko -Date: Fri May 19 14:02:53 2023 +0300 - - HHH-16640: Return this instead of null for method chaining - -commit a707d8e34522e8bd0b49010db8fc77e17861a0b2 -Author: Gavin -Date: Thu Jun 8 16:28:30 2023 +0200 - - remove obsolete warning suppression in test - -commit 4bbf67fb3b64dbc4d6f46c45af8fabb0f4aab0dd -Author: Gavin -Date: Thu Jun 8 16:27:54 2023 +0200 - - get rid of backticks in error message - -commit 33c9338520eb38b0cf1e4c514e62af791051e600 -Author: Gavin -Date: Thu Jun 8 16:27:31 2023 +0200 - - fix a CCE from SemanticQueryBuilder - -commit a415555df4125063164802c5627ac4d1ce41ea81 -Author: Francois Steyn -Date: Sat May 6 11:56:15 2023 +0200 - - HHH-16563: Using jakarta.annotation.Generated instead of javax versions - -commit 7e115eb8f42d7eb6092f81436bfcfd35267ab1b2 -Author: Marco Belladelli -Date: Tue Jun 6 15:38:25 2023 +0200 - - HHH-16719 Add test for issue - -commit 670db01c9a2402f00d02c7548bd3c190f936a9ed -Author: Cedomir Igaly -Date: Mon May 29 12:06:30 2023 +0200 - - HHH-16612 Use qualified table name for embeddable mappings - -commit bda41ec0b987c376b9ce836368e38464dd0424e3 -Author: Cedomir Igaly -Date: Mon May 29 12:05:12 2023 +0200 - - HHH-16612 Add test for issue - -commit bf1068be7ef357390cbe454d033bdc2be8afee80 -Author: Marco Belladelli -Date: Tue May 30 11:26:31 2023 +0200 - - HHH-16661 Use qualified table names for entity name by table name map - -commit 53d474d85fd70cd359a1712546b5fea5e6e9a504 -Author: Marco Belladelli -Date: Tue May 30 11:20:09 2023 +0200 - - HHH-16661 Add test for issue - -commit d567b839da11c3750a5237b264e3b0dea4ad98f7 -Author: Gavin -Date: Wed May 31 15:31:08 2023 +0200 - - HHH-16727 initial work on StatelessSession.upsert() - - marked @Incubating - -commit 3af493a344d2f4972509183bee54c6cbe52b76ae -Author: Gavin -Date: Wed May 31 22:07:13 2023 +0200 - - failure no longer expected for test - -commit 37c071fa20373dce279a1b8a5a2421ef8a682371 -Author: Gavin -Date: Wed May 31 12:45:52 2023 +0200 - - better formatting for 'merge' and 'case' - -commit 95e6ed10013adba768158f62a3c63e06c87eb4e0 -Author: Marco Belladelli -Date: Mon Jun 5 09:29:58 2023 +0200 - - HHH-16641 Add test and fix order column on generic non-map associations - -commit f8275f1a70d48a6e655fa63e9e69e0055cc88222 -Author: Andrea Boriero -Date: Tue May 23 17:03:16 2023 +0200 - - HHH-16624 Do not create subselects when there are fewer than 2 results - -commit 4c1d8a19bf4ed4f13b1e2594ddfe8d03f23a4616 -Author: Andrea Boriero -Date: Tue May 23 17:02:52 2023 +0200 - - HHH-16624 Add test for issue - -commit f36f7a08857c986b2866def438fc52d3bba069a1 -Author: Gavin King -Date: Mon Jun 5 22:10:04 2023 +0200 - - fix minor errors in queries in querylanguage doc - -commit 4eee30550ceef45dc594067c32f1562dd12b7c33 -Author: Gavin King -Date: Mon Jun 5 11:40:18 2023 +0200 - - HHH-16747 nail down query result types and actually document the semantics - -commit c5ecf5d41c7e81a03640cf80148b7ae29f639f30 -Author: Gavin -Date: Mon May 29 18:51:09 2023 +0200 - - HHH-16742 fix implementation of TupleMetadata - - fix issue when "same" selection item is assigned two different aliases - -commit acf9495af39e94969e3eec98466b525e90c20292 -Author: Gavin -Date: Mon May 29 15:52:17 2023 +0200 - - HHH-16710 constructor-based instantiation for native queries - -commit 280df7c98d22c385fd420e77c1b21e1bf620f7a3 -Author: Gavin -Date: Mon May 29 12:41:23 2023 +0200 - - fix javax package name + minor code example errors - - (spotted by @andrei-ivanov) - -commit 1557a66e6edbb6be4d6248ace3869c710c6a8615 -Author: Gavin -Date: Mon May 29 12:39:21 2023 +0200 - - HHH-16710 allow Map and List instantiation for native SQL queries - -commit ed75e24d944e842664507f87ac4a6f0da974cb80 -Author: Gavin -Date: Mon May 29 00:57:52 2023 +0200 - - move some material to 1st chapter of HQL guide - -commit cf7430831856e5f67a7c6e676dc2702c2d12d3e6 -Author: Gavin -Date: Sun May 28 18:46:36 2023 +0200 - - update docs with implicit instantiation - -commit 72f03d9d0fa25405bcadcbda4a9b714a99c1c63e -Author: Gavin -Date: Sun May 28 17:38:02 2023 +0200 - - HHH-16710 implicit instantiation of record classes - -commit 87a2b967c7735a53755effeee194d747c29faf28 -Author: Gavin -Date: Sun May 28 12:14:44 2023 +0200 - - HHH-16710 implicit instantiation of Lists, Maps - -commit 4bdfb2da258558ca99df420220d40a3b862bfae2 -Author: Gavin King -Date: Mon Jun 5 17:03:49 2023 +0200 - - clean up warnings in BaseCoreFunctionalTestCase - -commit 7a04ba3bfb7eb9858575fe01df788d8b31358176 -Author: Christian Beikov -Date: Thu Jun 1 12:45:58 2023 +0200 - - HHH-16682 Test and fix dirty checking for @JdbcTypeCode(SqlTypes.JSON) maps - -commit b5748fd22e98584ddcdaad8005904ab7c6774d45 -Author: Christian Beikov -Date: Thu Jun 1 15:48:27 2023 +0200 - - HHH-16490 Test case for allowing to map same column twice, once with a custom Java type - -commit 9e6cc04eb3503d6dfdf9ea6cf59d6e0cbbc1e419 -Author: Christian Beikov -Date: Wed May 31 18:55:36 2023 +0200 - - HHH-16250 Test case for allowing to map same column twice, once with a user type - -commit 2cc1362df7cd167ec12b53e60676c3f116316700 -Author: Christian Beikov -Date: Wed May 31 10:49:11 2023 +0200 - - HHH-15929 Handle the possibility of different JdbcMappings for the same column - -commit eedd6197ce1c2edcbdb6833f33251432a9983348 -Author: Jan Schatteman -Date: Thu May 18 19:18:10 2023 +0200 - - Ignore test for MariaDB - - Signed-off-by: Jan Schatteman - -commit fe958f9c124c70ac08471d9981429b35fde9f7d5 -Author: Jan Schatteman -Date: Thu May 18 18:06:02 2023 +0200 - - HHH-16578 - Add a test that shows the more restrictive schema validation (less dependant on columnDefinition info, and more on the use of @JdbcTypeCode) - - Signed-off-by: Jan Schatteman - -commit be9692765c52ec3c8e4d0b8e2755f51357fc953d -Author: Jan Schatteman -Date: Thu May 18 18:04:30 2023 +0200 - - HHH-16578 - Minor change to the column information extraction - - Signed-off-by: Jan Schatteman - -commit 9dad4c44bbbc3f0179e18ea3893fadc4051b9769 -Author: Gavin King -Date: Mon Jun 5 15:07:13 2023 +0200 - - HHH-16437 add test - -commit 15bdd9d60a9458b3bbf0276ca8996008a15d2d3b -Author: Marco Belladelli -Date: Mon May 22 10:25:25 2023 +0200 - - HHH-16574 Return treat type as path source for treated joins - -commit 1ac116c169ba497f559252c3f92b3300ddaf4f8d -Author: Marco Belladelli -Date: Mon May 29 09:34:39 2023 +0200 - - HHH-16693 Add test for issue - -commit 1be67bf222ae9ab509d1fac6355d95ab1688bf3e -Author: Marco Belladelli -Date: Mon May 22 10:24:15 2023 +0200 - - HHH-16574 Add test for issue - -commit 945f2b8adbba63beb3207ad4d1b36a91db6296b7 -Author: Christian Beikov -Date: Mon Jun 5 12:59:22 2023 +0200 - - HHH-16606 Only use RowTransformerArrayImpl when result type is Object[] - -commit 857a5c07249922c5e69040368e46f38b25696abf -Author: Cedomir Igaly -Date: Sun May 28 13:46:50 2023 +0200 - - HHH-16606 - Test for selecting only property of array type using criteria query - -commit f2cf18cb7589ee9bc1849b2456ea1c467d911f25 -Author: Christian Beikov -Date: Mon Jun 5 11:57:14 2023 +0200 - - HHH-16680 Add test for treating correlated from node - -commit 5aec65572d3d8ad5ffa46e167178461c321c823d -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Mon Jun 5 05:58:20 2023 +0000 - - Bump com.gradle.common-custom-user-data-gradle-plugin from 1.10 to 1.11 - - Bumps com.gradle.common-custom-user-data-gradle-plugin from 1.10 to 1.11. - - --- - updated-dependencies: - - dependency-name: com.gradle.common-custom-user-data-gradle-plugin - dependency-type: direct:production - update-type: version-update:semver-minor - ... - - Signed-off-by: dependabot[bot] - -commit 43a3bc588371028ef77c0645b6728592dcc1cf20 -Author: Gavin King -Date: Sat Jun 3 10:14:07 2023 +0200 - - HHH-16022 fix extremely ugly errors when HQL parsing failed - - the formatting of syntax errors was terrible - -commit f511282ce39efb76e7ade63b80e7f7d02bfa0963 -Author: Gavin King -Date: Sat Jun 3 10:41:40 2023 +0200 - - clean up IdentifierLoadAccessImpl - -commit 7c089a5c4bf5a20c62ea899b7128323b25295e62 -Author: Sanne Grinovero -Date: Fri Jun 2 16:22:05 2023 +0100 - - HHH-16741 Fully remove the deprecated method getJdbcMappings() - -commit 03132883f4e75fcc45f1a5767bb222b67427de46 -Author: Sanne Grinovero -Date: Thu Jun 1 22:09:59 2023 +0100 - - HHH-16741 Deprecate method getJdbcMappings() and prepare for its removal (backportable patch) - -commit f22d7e1328c0e063528eb8a16ccaf6a064e8f713 -Author: Gavin -Date: Thu Jun 1 00:34:55 2023 +0200 - - fix doc because @AnyKeyJavaClass seems to be required - -commit 8cc7eb7a6613b7775bce9bd4b35fbba590967df8 -Author: Gavin -Date: Thu Jun 1 00:34:21 2023 +0200 - - HHH-16732 make HQL id() function work for @Any mappings - -commit 2287f3ce3b73b2b624068ee47ffa346c9caf22fd -Author: Andrea Boriero -Date: Wed May 31 15:55:43 2023 +0200 - - HHH-16725 Persisting multiple entities with one-many association and composite key with ordered updates enabled fails - -commit 911b005d7d1d43c6fce4339580c1a67246be789d -Author: marko-bekhta -Date: Tue May 30 19:47:31 2023 +0200 - - HHH-16725 Add a test case to reproduce the issue - -commit 7157899079bc72d757bae23ed741f1ae191f7929 -Author: Andrea Boriero -Date: Wed May 31 12:53:16 2023 +0200 - - HHH-16613 @Lazy @ManyToOne @Cacheable association is retrieved as initialized - -commit f6ec141b4772a74714dfd40736ea6a6dbddaf596 -Author: marko-bekhta -Date: Tue May 16 12:45:26 2023 +0200 - - HHH-16613 Add a test case to display an issue - -commit a64490ed506751ea5bb92d4782d0d8554d03aa42 -Author: Marco Belladelli -Date: Wed May 10 13:00:03 2023 +0200 - - HHH-16559 Disable batch fetching for dynamic instantiation queries - -commit 2cd7104d9d3fc45c667d0412c79718de7b1b3f95 -Author: Marco Belladelli -Date: Wed May 10 11:37:42 2023 +0200 - - HHH-16559 Add test for issue - -commit 8e8a554eb9b12d9ccb78ede0b85e9e28eacc7c7b -Author: Andrea Boriero -Date: Mon May 29 17:56:32 2023 +0200 - - HHH-16379 @DynamicUpdate and 'enableDirtyTracking=true' leads to wrong update statement - -commit 198ede22e408852a9df7de283cf58bab7e9ac232 -Author: Andrea Boriero -Date: Mon May 29 17:55:28 2023 +0200 - - HHH-16379 Add test for issue - -commit 941b336143bd1354b8959445cf44582f02f74a6e -Author: Andrea Boriero -Date: Tue May 30 17:36:08 2023 +0200 - - HHH-16665 Add test for issue - -commit 4cb6823a056e8414b82592abbf18942190ee85d5 -Author: Christian Beikov -Date: Tue May 30 14:02:30 2023 +0200 - - HHH-16465 Fix String based CTE cycle emulation - -commit e7fa3cebb6dfd1f10fd2eb9fa38a142dea6ee11c -Author: Andrea Boriero -Date: Tue May 30 15:03:29 2023 +0200 - - HHH-16664 NPE in MappingMetamodelImpl if inheritance is used in IdClass - -commit 0147541b1c6a97a939a1b6f9f7f3902c53966cbd -Author: Andrea Boriero -Date: Tue May 30 15:03:07 2023 +0200 - - HHH-16664 Add test for issue - -commit 4efb4feb5c50c2f4e9732eee932c29429e0dd9f0 -Author: Andrea Boriero -Date: Wed May 24 15:15:30 2023 +0200 - - HHH-16639 Add test for issue - -commit 85db7ace9dba4fdb5d49ba7dee9180d758fa638a -Author: Gavin -Date: Tue May 30 18:35:52 2023 +0200 - - minor table formatting fix - -commit 68adf22b11a89522feee1ee85e80386fbb3c0b96 -Author: Marco Belladelli -Date: Thu May 25 16:11:57 2023 +0200 - - HHH-16540 Correct navigable path for embeddable valued path interpretation with plural attribute join - -commit 92281b8cd93be14adec15236b2f590ddfcb9b73f -Author: Marco Belladelli -Date: Thu May 25 16:11:41 2023 +0200 - - HHH-16540 Add test for issue - -commit 3c108d14131a693a059e705a844188a6183ef3d5 -Author: Gavin -Date: Tue May 30 15:47:58 2023 +0200 - - fix use of & character in javadoc - -commit fef4f904d70ff9715c5cb72b2077744fb74342a9 -Author: Gavin -Date: Tue May 30 15:42:30 2023 +0200 - - fix javadoc for PREFERRED_XXXX_JDBC_TYPE config settings - - it was wrong for the case of XXXX=DURATION - -commit 6ea37bfc308f48b9a5930c217d7f89ed5bc6d26c -Author: Gavin -Date: Tue May 30 00:51:43 2023 +0200 - - improvements to documentation of HQL functions - - - especially the collection-related functions - - also explain path expressions - -commit 6c36e98b1ac2496441d904d915a148ee4fc6d754 -Author: Gavin -Date: Mon May 29 22:55:22 2023 +0200 - - HHH-16715 clean up the code surrounding this stuff - -commit 3a40f9c829907e925875ff1f38925206926b6d95 -Author: Sanne Grinovero -Date: Tue May 30 09:02:52 2023 +0100 - - HHH-16716 Expose ParameterMarkerStrategy on JDBCServices - -commit 9da4ef0239f7882c67e3f31af6780adbea6b43d1 -Author: Sanne Grinovero -Date: Fri May 26 17:14:21 2023 +0100 - - HHH-16717 Type pollution fix for ExecutableList having to implement Comparable - -commit 7fc927194ba90682098564ca16a0b9c85bcc78ff -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Mon May 29 05:58:23 2023 +0000 - - Bump com.gradle.enterprise from 3.13.2 to 3.13.3 - - Bumps com.gradle.enterprise from 3.13.2 to 3.13.3. - - --- - updated-dependencies: - - dependency-name: com.gradle.enterprise - dependency-type: direct:production - update-type: version-update:semver-patch - ... - - Signed-off-by: dependabot[bot] - -commit 1f45639a5d28e0b6be534d33cf65c73ad0eaade7 -Author: Gavin -Date: Mon May 29 20:35:19 2023 +0200 - - add table of operator precedence to HQL guide - -commit 5315bb7840264313be4d6a7668b32dc2dcd11930 -Author: Gavin -Date: Mon May 29 17:41:15 2023 +0200 - - very tiny fix to code example - -commit 7f968cf4115d1a9296087871e15897f6c67cf720 -Author: Marco Belladelli -Date: Wed May 24 16:16:33 2023 +0200 - - HHH-16617 Add filter parameters to parameter bindings memento cache key - -commit a4acdce2fad1e05317543b4b6fce21728b9b9836 -Author: Marco Belladelli -Date: Wed May 24 16:41:01 2023 +0200 - - HHH-16617 Add test for issue - -commit 13662e7c7a9cf0991fb814b67eb1d038b08ccb04 -Author: Marco Belladelli -Date: Tue May 23 13:53:38 2023 +0200 - - HHH-16594 Preserve consistent query parameter processing order - -commit 8de77f0c43b925d70e3ff9fcfbdabb484153bc8e -Author: Marco Belladelli -Date: Tue May 23 12:18:15 2023 +0200 - - HHH-16594 Add test for issue - -commit 1ad471587e80f012f3881fdf19e4eca32e89845a -Author: clement -Date: Tue Mar 28 14:16:59 2023 +0200 - - HHH-16385 Ensure QueryKey is immutable and serializable - -commit cb79ffd994d92e52d5c9f2c511cd975d7ad3915a -Author: clement -Date: Sat Apr 1 13:33:35 2023 +0200 - - HHH-16385 Add test for issue - -commit 4fce4b13840fef24cef4ca1c1effc8768ed85c85 -Author: Gavin -Date: Mon May 29 12:26:58 2023 +0200 - - fix 2 warnings - -commit f278923c607a7c006ca538ff3da6f47bca92a64f -Author: Gavin -Date: Mon May 29 12:21:14 2023 +0200 - - fix formatting of two code examples in intro - -commit c85cd229569f4cd45d6024ad22fc1a1a87c87cb7 -Author: Gavin -Date: Mon May 29 11:57:18 2023 +0200 - - improve code example of tuple criteria - -commit 2728cbe0140816930a3e5c1cef28c767ecf06152 -Author: Gavin -Date: Mon May 29 11:32:00 2023 +0200 - - improve code examples for generated ids in Intro - -commit 81d0bbccc63f78f43feadd8bdd7350e5a4d8e1f7 -Author: Gavin -Date: Mon May 29 09:59:00 2023 +0200 - - fill out section on lexical structure in HQL guide - -commit 0c451854997ce327ba9e5931caa6779f8c614e30 -Author: Gavin -Date: Sun May 28 18:46:48 2023 +0200 - - improve rendering of subheadings - -commit 86e1cfd7d570f98f8d45e532aab275282c5b7607 -Author: Andrea Boriero -Date: Thu May 25 14:25:03 2023 +0200 - - HHH-16560 Nested @Embedded within an @EmbeddedId assertion failure - -commit af8d37c6c7a6e7cb4be16e368ad8c4d5723e3a2f -Author: Andrea Boriero -Date: Thu May 25 11:09:34 2023 +0200 - - HHH-16560 Add test for issue - -commit 36bdd9d0130ebc1e8a3a7eb5d7e5e2c4d9f1d84f -Author: Gavin -Date: Sun May 28 09:57:00 2023 +0200 - - fix NPE when ordered set agg function missing 'within group' - - - also refactor a bit that code in SQB to be more typesafe - - and get rid of some warnings - -commit a6f036d3201df80aad440578505f4a461caa07f2 -Author: Gavin -Date: Sun May 28 10:11:49 2023 +0200 - - improve error when a select item is missing its required alias - -commit 23b55db51ad5c583fa335b49e189c01256aa8e52 -Author: Gavin -Date: Sun May 28 01:42:58 2023 +0200 - - HibernateCriteriaBuilder should use varargs - - in some cases, it overrides JPA methods with non-varargs forms - -commit d8fb935ae008a26f5da53e73932a5670b6504392 -Author: Gavin -Date: Sun May 28 01:54:25 2023 +0200 - - fix minor typo - -commit e073e4e966210f895713719552e2a805c4de3a9c -Author: Gavin -Date: Sun May 28 00:59:37 2023 +0200 - - add toStrings() to Tuple impls - -commit 406b039f509cd8f6ae610bb7c4765729474edd3b -Author: Gavin -Date: Sun May 28 01:40:56 2023 +0200 - - add a very nice criteria example to Intro doc - -commit fab058a3a1b7b3babda943576fff9f4b35576389 -Author: Gavin -Date: Sun May 28 00:59:18 2023 +0200 - - minor improvements to new HQL guide - -commit f3fddf02da6f25faf9319be139e9dcda164ab237 -Author: Gavin -Date: Sat May 27 21:01:52 2023 +0200 - - split up chapters of HQL - -commit 9360af5d6b8a42bc527499b0aab928284f93e511 -Author: Gavin -Date: Sat May 27 19:56:48 2023 +0200 - - slight restructure of HQL guide - -commit 4c8ed70a69744705d97247513f4d9d7f5f109159 -Author: Gavin -Date: Fri May 26 10:56:04 2023 +0200 - - split + rewrite query language chapter to new HQL guide document - -commit cf9e57007ac4996d93c131933cff9329e671f20a -Author: bradbalogh <36998320+bradbalogh@users.noreply.github.com> -Date: Fri May 26 11:27:37 2023 -0500 - - HHH-16706 fix spelling mistake in Envers.adoc - -commit 310a3d2997614fabe2e2c7655aa42462c3a73f3f -Author: Sanne Grinovero -Date: Thu May 18 21:05:18 2023 +0100 - - HHH-16705 AttributeMappingsList should not implement Iterable - -commit 4e9789bdff7314640be64ca567503c6b118792c6 -Author: Jan Schatteman -Date: Fri May 26 00:49:26 2023 +0200 - - HHH-16686 - Fix for bug in LocalTimeJavaType.unwrap() - - Signed-off-by: Jan Schatteman - -commit 21b1c7194743ceb05b7b8d826eec612ac04bbb03 -Author: Sanne Grinovero -Date: Tue May 23 22:28:35 2023 +0100 - - HHH-16687 Remove unused internal interface ComparableEntityAction - -commit c9457db5b6932ea1407355192d6c59247b3df85d -Author: Sanne Grinovero -Date: Thu May 25 16:24:30 2023 +0100 - - HHH-16704 Avoid iterating a LinkedHashMap during ActionQueue processing - -commit 9e09c057c5f387da96e71b6573f8e8b7d3bdaa0f -Author: Marco Belladelli -Date: Mon May 8 11:12:32 2023 +0200 - - HHH-16495 SemanticException for non-cross entity joins without predicate - -commit 35b8bd13138a12e714f5de2ff6ef8f5cc8da374f -Author: Marco Belladelli -Date: Mon May 8 11:12:08 2023 +0200 - - HHH-16495 Add test for issue - -commit 5e13845f000822ed9bac9301f4dc123b47daf4be -Author: Marco Belladelli -Date: Thu May 25 10:51:59 2023 +0200 - - HHH-16668 Fix SqmWindow copy of partition and order lists - -commit 8c1839f7dc0f9f8ec4608a17d9dd1da11c53ef12 -Author: Gavin -Date: Fri May 26 00:18:34 2023 +0200 - - HHH-16699 add repeat() function to criteria API - -commit ed897c42087da11103a2dc7dde457455b20fe106 -Author: Gavin -Date: Fri May 26 00:08:46 2023 +0200 - - HHH-16699 add repeat() function to docs - -commit be2319b59cd9fe1d09127b7b64af9290f1ff17c9 -Author: Gavin -Date: Thu May 25 20:11:17 2023 +0200 - - HHH-16699 promote repeat() function - - emulate it on Oracle using rpad() - - unsupported on Derby - -commit b2dfe7148ac51b570e79e5ae51249f2af64b7df4 -Author: Jan Schatteman -Date: Sat Apr 29 01:09:25 2023 +0200 - - HHH-16515 - Add o.h.stat to nullness checking - - Signed-off-by: Jan Schatteman - -commit afc97ac6c95bcb13c6a88d8495d8f46b478e0c33 -Author: Gavin -Date: Thu May 25 16:55:35 2023 +0200 - - clean up the code in SingleIdEntityLoaderStandardImpl - - and remove an AtomicInteger that existed only for the benefit of LoadingSmokeTests - -commit ecbcc2d940f72f229c0fe10cd727c7e61b184a58 -Author: Christian Beikov -Date: Thu May 25 12:46:10 2023 +0200 - - HHH-16690 Fix re-saving for unloaded deletes - -commit b6733c413d6dbcf512cbf09b0afcac62a70f3f2a -Author: Gavin -Date: Thu May 25 14:53:38 2023 +0200 - - deprecate RowVersionJavaType - -commit 6fd0ddfbecd603caaecc37811cc352d7ecb778b8 -Author: Gavin -Date: Thu May 25 12:38:56 2023 +0200 - - mark some ancient hacks as deprecated - - because apparently some users depend on them - - also mark IdentifierGeneratorHelper as @Internal - -commit 4dc03a9c39e99c4995a470ee407284f794372573 -Author: Christian Beikov -Date: Thu May 25 10:37:18 2023 +0200 - - HHH-16691 Avoid join table joins for SqmPath in some more scenarios - -commit 908630a7f2bb3cc63c6fa06a32c59e27f6a2014f -Author: Gavin -Date: Thu May 25 11:46:10 2023 +0200 - - more accurate cross-links in doc - -commit d5184d07d0abe53d3588571ebe03fc066f978fdf -Author: Gavin -Date: Thu May 25 11:03:58 2023 +0200 - - prevent orphaned table titles - - split a section - -commit 5ed220f1139c89f49f9094f4041f7d4e95f52c7e -Author: Gavin -Date: Thu May 25 11:02:46 2023 +0200 - - better treatment of mutable natural ids in jdoc - -commit 297140734b6bdd2f34adb5ded4ebde59dd8a2539 -Author: Gavin -Date: Thu May 25 10:05:54 2023 +0200 - - minor changes for spacing - -commit 33d601f146cba462094e0291dbd2c8eff1a2b34e -Author: Christian Beikov -Date: Tue May 23 17:02:27 2023 +0200 - - HHH-16658 Propagate entity name uses from predicates and subqueries properly to the upper context - -commit cf09a8aa9907a77a43f85de64b3ca4415c4bbbf9 -Author: Gavin -Date: Thu May 25 09:48:08 2023 +0200 - - create two new sections of the Intro to improve organization - -commit e1af41173b983cfd08218f172e841214f3b667ba -Author: Gavin -Date: Thu May 25 09:46:43 2023 +0200 - - javadoc cleanups - -commit 156fd51e5c81dc3b5f7fec10bba191468530463e -Author: Gavin -Date: Thu May 25 00:42:24 2023 +0200 - - improve javadoc code examples in XxxxLoadAccess - -commit f881c5243f21d3dce30ec008b2f9eb7fe4fc392a -Author: Gavin -Date: Wed May 24 23:32:05 2023 +0200 - - show off typesafety with the metamodel and new API of NaturalIdLoadAccess - -commit 76fa597d1b8d50eec5942b8ad94104cfe1d00003 -Author: Gavin -Date: Wed May 24 22:47:20 2023 +0200 - - improvements to typesafety of NaturalIdLoadAccess - - and clean up its jdoc and the jdoc of its friends - -commit 5efa49f7d1e48bc5d12a11c41df18d4789bf3a4d -Author: Gavin -Date: Wed May 24 20:02:55 2023 +0200 - - HHH-16600 @Basic(optional=false) on embeddable held by single table subclass - - don't generate a 'not null' constraint for a field of an embeddable class if - it belongs to a subclass in single table inheritance hierarchy - -commit 84547e8f4c70922f89323485276a427e0e02e609 -Author: Andrea Boriero -Date: Thu May 4 15:36:24 2023 +0200 - - HHH-16370 Using MapKey on ManyToMany leads to wrong insert SQL - -commit d4d82e67fdcc6ee320513568e7479aa524a175b0 -Author: Andrea Boriero -Date: Wed May 3 12:33:02 2023 +0200 - - HHH-16370 Add test for issue - -commit 01f4c74d6bf5a6eb8dabece7f581f6f87d15c006 -Author: Guenther Demetz -Date: Fri May 5 14:43:13 2023 +0200 - - HHH-16558 - Detaching an entity removes natural-id cross-reference from shared cache - -commit 2b27d98a89ae69be9d9a7b8e35f7c42684e6262e -Author: Gavin -Date: Wed May 24 16:53:57 2023 +0200 - - HHH-16654 much more efficient implementation of default fetch profile - -commit 35da6000fd11f169d189fadb680e0c41e7230c27 -Author: Jan Schatteman -Date: Wed May 24 16:33:11 2023 +0200 - - HHH-16649 - This commit effectively reverts d8bf6499 (HHH-15910), in which static remove methods were added to the Hibernate class - The reason for this is that the methods in fact don't work, since the machinery behind - them just isn't there, nor has it even been. - The CollectionSizeTest that was modified to test these new methods was - incomplete and hid this fact. - - Signed-off-by: Jan Schatteman - -commit 1c55a4766f7f755ef2aa48b1035c7bd107866346 -Author: Marco Belladelli -Date: Wed May 24 10:32:57 2023 +0200 - - HHH-16532 Fix NPE for @Any association fetches - -commit a05e3cd2fadd5592a86312fbbb2fd5e904d1e4ea -Author: Marco Belladelli -Date: Wed May 24 10:32:47 2023 +0200 - - HHH-16532 Add test for issue - -commit 7116dc9def7fb4c478082798f4f4c775a006c667 -Author: Marco Belladelli -Date: Mon May 22 12:25:29 2023 +0200 - - HHH-16543 Correct check for polymorphic root common attributes - -commit c6c24700a5d9a2a6171df061e1080113ea716d77 -Author: Marco Belladelli -Date: Mon May 22 12:24:22 2023 +0200 - - HHH-16543 Add test for issue - -commit d3db740035b793728c0c289fe454ef7d6e24c0a6 -Author: Gavin -Date: Wed May 24 13:49:53 2023 +0200 - - HHH-16360 fix schema update precision/scale handling - -commit 57cbaed2a924f225290e6bca9328134d98fa8c68 -Author: Sanne Grinovero -Date: Fri May 19 11:11:02 2023 +0100 - - HHH-16685 Avoid extreme cache misses on EntityPersister#implementsLifecycle() - -commit 5c60b632a1bf120c894af3b9551c9569e0ef6a11 -Author: Sanne Grinovero -Date: Wed May 24 10:00:41 2023 +0100 - - HHH-16683 Micro optimisations for MappingMetamodelImpl.getEntityDescriptor - -commit 1d30b0161fd98d1a34d8319bfa80c5b9c90e92a1 -Author: Gavin -Date: Wed May 24 00:22:14 2023 +0200 - - add nissing

to javadoc - -commit 80feb108fb2246eb83774aedc016e5f1aba83875 -Author: Gavin -Date: Wed May 24 00:14:08 2023 +0200 - - javadoc improvements - -commit 7b3c77c0c3c8d533842f3fa0fe7af6c6b5502afa -Author: Gavin -Date: Mon May 22 09:05:23 2023 +0200 - - introduce @View annotation - -commit a4e7b7e482503c21dc9a5a50a20e77b31267e28f -Author: Gavin -Date: Tue May 23 18:53:14 2023 +0200 - - clean up some warnings - -commit 2e98c1678dd1361240bdea6a65931309c2ddaf08 -Author: Steve Ebersole -Date: Tue May 23 11:00:20 2023 -0500 - - HHH-16677 - Drop JPA static metamodel generation from Gradle plugin - -commit 2bebcf5e95bad6ada091057530ed29eff6553949 -Author: Andrea Boriero -Date: Mon May 22 16:58:33 2023 +0200 - - HHH-16669 Batch loading prevents throwing ObjectNotFoundException on initialization of non-existent enhanced entity - -commit f9954aa87392319ccbc745a01373c4abdfd780b9 -Author: Andrea Boriero -Date: Mon May 22 16:51:36 2023 +0200 - - HHH-16669 Test for issue: when batch loading not throwing ObjectNotFoundException on proxy init - -commit bf82d535166fbde3693e4d817b2cc9557d26f462 -Author: Sanne Grinovero -Date: Sat May 20 21:29:38 2023 +0100 - - HHH-16679 Avoid type pollution problems on iterations of List - -commit f54ff9de3eb7f9dcec2508d0fdb7f45b6abb2ccc -Author: Gavin -Date: Tue May 23 16:53:56 2023 +0200 - - remove redundant @SuppressWarnings - -commit f330c85c16fb87099a637e8508d45e293b227101 -Author: Gavin -Date: Tue May 23 15:45:49 2023 +0200 - - change the names in doc because Steve didn't like fetching()/loading() - -commit dc1fe43f5276333650b5230995feddf31318eb1e -Author: Gavin -Date: Tue May 23 15:32:32 2023 +0200 - - change the names because Steve didn't like fetching()/loading() - -commit d424957cac7e68ea47eb00d854f6796af6eb55d8 -Author: Gavin -Date: Fri May 19 15:52:29 2023 +0200 - - two API improvements to EntityGraphs - - 1. make fetch/load graph distinction clearer in the XxxxLoadAccess APIs - 2. addPluralSubgraph(), which is missing in JPA - -commit e84dfb2a8cfc5b1d7a6332177f7f305172273d93 -Author: Marco Belladelli -Date: Wed May 17 09:45:40 2023 +0200 - - HHH-16565 Clear PC entry for 2LC inconsistent return class entities - -commit f0affe78042dfd96855f62841a0a608a4060c673 -Author: Marco Belladelli -Date: Tue May 16 13:15:31 2023 +0200 - - HHH-16565 Add test for issue - -commit 2e502215d5edd018a7968b85b5f702d516fbc141 -Author: Gavin -Date: Tue May 23 14:27:45 2023 +0200 - - update the docs with new @FetchProfileOverride - - and the "default" profile - -commit 66d67795a3a5508e84574aaa580e9a6f95f5b079 -Author: Gavin -Date: Tue May 23 14:01:12 2023 +0200 - - HHH-16666 fix test - -commit 176abffdd520c59c43328f50961062bb7676566a -Author: Gavin -Date: Tue May 23 12:54:01 2023 +0200 - - HHH-16654 introduce a "default" fetch profile with eager to-ones in it - - also, make the query translator always respect the fetch type specified - in the fetch profile (previously it would ignore it for statically-EAGER - many-to-ones, which was inconsistent and made little sense) - -commit b3e27788fa203fc607e827e4a9b191f80c3c03be -Author: Gavin -Date: Tue May 23 12:13:30 2023 +0200 - - fix bug in query plan cache where fetch profiles were not considered - -commit ba0221da3658d8b01c86ddcc792d927895d4891a -Author: Gavin -Date: Tue May 23 10:43:03 2023 +0200 - - HHH-16666 introduce @FetchProfileOverride instead of reusing @Fetch - - There are differences in the implied timing, so this is more consistent - -commit c636c83d7e9f7f0eb6ce1c3661805742a6dbbed4 -Author: Gavin -Date: Tue May 23 09:12:59 2023 +0200 - - HHH-16651 cleaner separation of "fetch method" vs "fetch timing" - -commit 7ed0241dc5b8438f1b371a0d857845720e81b718 -Author: Christian Beikov -Date: Tue May 23 12:51:48 2023 +0200 - - HHH-16676 Handle treat expressions in toHqlString - -commit e79cbe866972537eeb7f346e249054e4ddd84aad -Author: Gavin -Date: Mon May 22 11:56:39 2023 +0200 - - disable a test on Oracle, because it fails on new JDBC drivers - - cc @beikov - -commit 201c08a8b75246ced57b6bc5b530daeeb1310d96 -Author: Gavin -Date: Sat May 20 20:40:54 2023 +0200 - - upgrade all the jdbc drivers - -commit 9cd1d788ea1171d40a64c069ae583a392105a75a -Author: Gavin -Date: Sat May 20 20:31:13 2023 +0200 - - use Oracle driver odbc11 since we now depend on Java 11 - -commit 3be2dc5978db063ee3e1e8f8829ad147dcb8617f -Author: Gavin -Date: Tue May 23 01:12:08 2023 +0200 - - HHH-16651 promote new operations from SessionBuilder to Session - - setFetchBatchSize() and setSubselectFetchEnabled() - -commit 6215a8ef423e0a4b2737a3168cba4b246a76c684 -Author: Gavin -Date: Tue May 23 00:08:19 2023 +0200 - - add some additional hints for EM.setProperty() - -commit bebde8499238ae976c527f9906da817e47b91cbd -Author: Gavin -Date: Mon May 22 23:48:09 2023 +0200 - - add logo to PDF - -commit 22a5cbb0a8cab6b47ec1845700aee87e2d2d80aa -Author: Gavin -Date: Mon May 22 22:50:04 2023 +0200 - - lots of new info on fetching and caching - - - proper coverage of subselect fetching - - how to handle reference data - -commit 9c90bd505d7f6d54d9f6fe77020f09702dcecc8b -Author: Gavin -Date: Mon May 22 21:29:31 2023 +0200 - - HHH-16651 clean up API of the engine.profile package - - FetchProfile should really be immutable so lets move toward that - -commit ad9fae044dc6ec0dd98dab00708fc5bd47d164f1 -Author: Gavin -Date: Mon May 22 20:28:09 2023 +0200 - - HHH-16651 fix test - -commit a5ae1a479a8b335baa38196f44c6dd921987af9b -Author: Gavin -Date: Mon May 22 19:56:08 2023 +0200 - - HHH-16651 support all fetch styles in fetch profiles - - Finally, after all these years! - -commit 4795b94f68976c92a0d7b4e66398afeff14a861e -Author: Christian Beikov -Date: Sun May 21 14:19:10 2023 +0200 - - HHH-16657 Propagate PROJECTION entity name use from subquery to outer table group - -commit 7f5ebc207e6c9d98d907a796387f96dd9164320a -Author: Christian Beikov -Date: Sun May 21 13:28:16 2023 +0200 - - HHH-16655 Fix parse error for HQL window frames - -commit f49bce8bde93bc243d2654d2a684e984695b05f8 -Author: Christian Beikov -Date: Sun May 21 13:27:49 2023 +0200 - - HHH-16656 Register ranking window functions for H2 1.4.200 - -commit e12b82033e9f2be60711db4d0140bc51aaad4ead -Author: Gavin -Date: Mon May 22 17:10:21 2023 +0200 - - HHH-16666 document fetch profiles now they are nicer to use - -commit 36a77785e8b8726a03b5a31823689b16d1dfdc66 -Author: Gavin -Date: Mon May 22 17:07:51 2023 +0200 - - HHH-16666 give @FetchOverride.mode a default (the only supported value!) - - Talk about low-hanging fruit! - -commit f2dbe7a9cbd43c441e41599989cf5c436caef089 -Author: Gavin -Date: Mon May 22 14:58:01 2023 +0200 - - HHH-16666 allow fetch profiles to be defined using the @Fetch annotation - - 1. You may now declare an empty named @FetchProfile, and - 2. add associations to it using @Fetch. - - Note that @Fetch becomes a repeatable annotation. - -commit 2daeadd4493b7dc4dab8a885b4470f91ca341e5b -Author: Gavin -Date: Mon May 22 13:13:16 2023 +0200 - - share more code between the batch loaders - -commit 2926d1781d8f706f9bdf448c8b02f083ab04c817 -Author: Gavin -Date: Sun May 21 10:02:31 2023 +0200 - - trim array holding batch of ids before passing to JDBC - - before this, the array length was the batch size, and - was padded with nulls, which isn't great if you have - a large batch size, I suppose - -commit f2017cd5a0d6c4fb38760a299ffc046b7576eb9f -Author: Gavin -Date: Sun May 21 23:31:59 2023 +0200 - - HHH-16651 improve probability of getting cached loader - -commit 8bf5bb0d98c3dbe8362335a3effcda4c81c4f203 -Author: Gavin -Date: Sun May 21 23:18:07 2023 +0200 - - HHH-16651 change a test since we don't use array batch loader for one id anymore - -commit 475aefb43420e946aba5b14b24aae02bf0f058d6 -Author: Gavin -Date: Sun May 21 23:06:00 2023 +0200 - - HHH-16651 use single id loader when there is one id in the batch - -commit 97b653aaecebc4bd51e59dc09bc9e0f0641b3b3c -Author: Gavin -Date: Sun May 21 22:23:47 2023 +0200 - - HHH-16651 ooops, fix condition on affected-by - -commit c2ceb4c2793d5e5fbcf2abfca506d374761d6f15 -Author: Gavin -Date: Sun May 21 22:23:23 2023 +0200 - - HHH-16651 get rid of Preparable interface - - I can't figure out why it's required but perhaps I'm missing something - -commit bbd8df93ca476e0669f08d95581b3e4d4abe8007 -Author: Gavin -Date: Sun May 21 18:37:49 2023 +0200 - - HHH-16651 make persisters return adapted loaders for session batch size - -commit 3097c47b3d98d766432e6e265a4c619a86a76080 -Author: Gavin -Date: Sun May 21 17:52:07 2023 +0200 - - HHH-16659 add Query.setEntityGraph() - - and turn a log message into an IllegalArgumentException - -commit e102dea3be519f794a24110dd58697dde31d8894 -Author: Gavin -Date: Sun May 21 11:47:07 2023 +0200 - - lay foundation for making batch/subselect fetching per-session - - still need to fix caching of loaders in persisters - -commit ed213d7cdf3f811fdd8177788c4d1acd21ca0fb0 -Author: Gavin -Date: Sun May 21 10:24:06 2023 +0200 - - add applySubselectFetchEnabled() to builder - - improve some Javadoc - -commit 12e1a97e5097296abbf2516ffa2672446c7ef80d -Author: Gavin -Date: Sun May 21 00:58:04 2023 +0200 - - update the doc to show how to enable subselects - -commit eb959722f91be6822fff2aaff20e34a11c817d78 -Author: Gavin -Date: Sun May 21 00:40:18 2023 +0200 - - HHH-16651 introduce new setting to globally enable the use of subselect fetching - - and lay foundation for making this settable on the Session - -commit 2b0bc618733d6597339267f014c08ebd72faa9b4 -Author: Felix -Date: Sun May 21 00:46:00 2023 +0300 - - HHH-16652 fix the broken link: hql-string-functions - -commit fa15bba8c8c75e4c8e2e7dc70630f248c6c83b40 -Author: Christian Beikov -Date: Mon May 22 13:32:19 2023 +0200 - - HHH-16663 Fix TCK failure due to wrong refactoring in schema management Action enum - -commit 4ebc24daa004422e5be2da2f16190d85feef0412 -Author: Gavin -Date: Sun May 21 17:13:38 2023 +0200 - - HHH-16650 add test - -commit eded6e8ff98e533fc43d0823262429f43f2dd62a -Author: Gavin -Date: Sun May 21 16:27:06 2023 +0200 - - HHH-16650 fix for native queries with "unknown" numeric types on Oracle - - Oracle reports FLOAT/DOUBLE PRECISION as NUMBER, which is wrong. The - workaround was to look at the scale, which it reports as -127 for - FLOAT. But certain other expression also get scale -127, and this - could cause truncation of least-significant digits when we read them - into a Java Double. - -commit 7aa1883c6da52e196eeb81006cfd24b8dd348dc2 -Author: Gavin -Date: Sat May 20 18:27:26 2023 +0200 - - more info about caching (Caffeine) and logging - -commit a2e463801bff8b83ac04fd7da80a802eb29d3c15 -Author: Gavin -Date: Sat May 20 17:09:42 2023 +0200 - - improve discussion of fetching + new section on Statistics - -commit 2bd5dc7e973c7dceddb0281ac6ed599b25edae22 -Author: Gavin -Date: Sat May 20 17:08:08 2023 +0200 - - more information about proxies - -commit d9d5ea57d4e7c4ae894cfc5a4bc511f1acdff8e6 -Author: Gavin -Date: Sat May 20 14:39:35 2023 +0200 - - change the format of an exception msg - -commit 60cec444673e19d40035c453aaa7988578f11a04 -Author: Gavin -Date: Sat May 20 14:38:55 2023 +0200 - - some minor cleanups - -commit fb28443081d16d678f307e80e23c73613ae6ae46 -Author: Gavin -Date: Sat May 20 12:10:36 2023 +0200 - - raft of minor code cleanups - -commit 4247f7b155d83591074a01567aa2fc81d8d2f4aa -Author: Gavin -Date: Sat May 20 11:10:01 2023 +0200 - - allow instantiation via non-public constructor in HQL - -commit f673441ab3b809f4b3e00c3c1831cf55b20a5c62 -Author: Gavin -Date: Sat May 20 10:28:55 2023 +0200 - - HHH-16647 allow unqualified use of query result type in HQL instantiation - -commit addd88000c769898ab3b4ff2b180b7e9b51872f6 -Author: Gavin -Date: Sat May 20 10:26:00 2023 +0200 - - improve error reporting in DynamicInstantiation stuff - -commit 4c489eedbdb8f918cf2eb36b1daa77f7f0786a27 -Author: Gavin -Date: Sat May 20 11:36:58 2023 +0200 - - add TIP about use of record types with 'select new' - -commit f38de6217bc6c5d8e43adc89e1b29ad7f3fdc4e9 -Author: Gavin -Date: Sat May 20 01:34:47 2023 +0200 - - HHH-16601 log second-level cache RegionFactory initiation - -commit 6d0c166414230ebdfdafef28898af949cad74194 -Author: Gavin -Date: Sat May 20 00:58:53 2023 +0200 - - slightly improve README - -commit ec03b6fd7f943f7a07217afb29a583f8916ca68b -Author: Gavin -Date: Fri May 19 23:03:48 2023 +0200 - - fix small error in doc - -commit fa5adc1979859352c407dbfd549f15e40628e9cd -Author: Gavin -Date: Fri May 19 21:43:20 2023 +0200 - - fix erroneous code example - -commit f3ca2d67d534edf98be5c785df1bf7cd864e1a2b -Author: Gavin -Date: Fri May 19 20:19:07 2023 +0200 - - talk about the MetamodelGenerator in Configuration - - since it's used in two places now - -commit 55d4f0f22cdec5a67a4e13621e8704fe9c9d0fc9 -Author: Gavin -Date: Fri May 19 16:27:55 2023 +0200 - - fix formatting in PDF - -commit 689414e34706c5b9d67354e95005c6d32c540270 -Author: Gavin -Date: Fri May 19 13:44:14 2023 +0200 - - improve some error messages - - also, tell StringType know how to convert ints and longs - -commit 8ddbb033cd0d9b225d2b94b97dad434aa06f8e03 -Author: Gavin -Date: Fri May 19 15:48:53 2023 +0200 - - document EntityGraphs - -commit 56ffbc104c8ceb474d0ec8c00f6b75fcdf2c439f -Author: Gavin -Date: Fri May 19 10:54:01 2023 +0200 - - document @DialectOverride - -commit 47d8a63f16ac08fb67a02fd4e382fef3ad738667 -Author: Gavin -Date: Fri May 19 10:41:26 2023 +0200 - - HHH-16638 allow @DialectOverride for @SQLInsert and friends - -commit 62c05eadb9ee858e12d564195b6f7a87dd49c16b -Author: Andrea Boriero -Date: Thu May 18 14:44:44 2023 +0200 - - HHH-16570 Batch fetch with FetchMode JOIN might lead to multiplication in OneToMany items - -commit 87fc258109265f80e3d9ec4126395555dc7422a4 -Author: Andrea Boriero -Date: Wed May 17 14:26:48 2023 +0200 - - HHH-16570 Add test for issue - -commit 6c8bb03c9370ea883d2ccf22d09446a3d4582921 -Author: Jarkko Hyöty -Date: Thu Apr 6 12:03:31 2023 +0300 - - HHH-16433 Fix forced follow on locking with order by - -commit 79d2e208a6519b522be6aaa2499c0b63c6d62494 -Author: Gavin -Date: Fri May 19 11:26:47 2023 +0200 - - explain the usefulness of java.sql.Xlob - -commit f0a17e98b9da6562f97cb5851e8646a39b6a6b78 -Author: Gavin -Date: Fri May 19 09:11:40 2023 +0200 - - doc new feature Steve just added - -commit eafe6fd79b4c56ea2f067775da0ac3313bd69a3a -Author: Gavin -Date: Fri May 19 08:38:16 2023 +0200 - - HHH-16637 add methods to SessionFactory for handling lifecycle of StatelessSession - - also clean up the related code - -commit e4b31c192e7402cbf0e32f433c5681fa0cf7bdce -Author: Gavin -Date: Fri May 19 00:14:01 2023 +0200 - - add new section about bytecode enhancer to intro - -commit 172b1c4d39cab57c94f0fb7546943db078603851 -Author: Gavin -Date: Thu May 18 19:10:33 2023 +0200 - - minor clarifications to named queries section - -commit 2ce3eef67adcf916828521105c67cce8fb9b27e7 -Author: Steve Ebersole -Date: Wed May 17 17:18:05 2023 -0500 - - HHH-16626 - JPA hint for Session (EntityManager) level tenant-id - -commit bbcb6ccedca5b23a0610d75f2411afd084ac8c1c -Author: Marco Belladelli -Date: Thu May 18 15:23:05 2023 +0200 - - Add description to hibernate-platform.gradle - -commit 03e6c747375d83d8d3c616b33662fdee65dbb6fb -Author: Gavin -Date: Thu May 18 14:52:33 2023 +0200 - - first draft of "general advice" section - -commit 84a1f227992f81d8787149de72b4fa6d1cd43810 -Author: Gavin -Date: Thu May 18 13:29:09 2023 +0200 - - warnings about pc lifecycle in doc - -commit 71a335dbe6cadecd06fb3d655f1dea91da4b4fcb -Author: Sanne Grinovero -Date: Thu May 18 12:47:49 2023 +0100 - - HHH-16630 Refactor code to avoid frequent lookup of Service MutationExecutorService - -commit 1c8e6fe462946e4d4cc481c0d1db9f49ac3d0832 -Author: Sanne Grinovero -Date: Thu May 18 11:56:39 2023 +0100 - - HHH-16631 Avoid unnecessary INFO logging at bootstrap - -commit 46d66ec141971d16c53440bbfc4e140879bed089 -Author: Sanne Grinovero -Date: Wed May 17 20:37:04 2023 +0100 - - HHH-16625 Introduce a compilation unit among tests to serve as reminder about Quarkus requirements - -commit 96a291058be9a46c83a96e7c62bc1fe6d1dc618e -Author: Gavin -Date: Thu May 18 12:57:53 2023 +0200 - - fix a diagram and add alt text - -commit 67488980e0f90da73a0d818cce5c97b9ad88d3b0 -Author: Sanne Grinovero -Date: Wed May 17 20:37:04 2023 +0100 - - HHH-16625 Introduce a compilation unit among tests to serve as reminder about Quarkus requirements - -commit a8ce9f615c9c57c70e3f935d96f493932072c8df -Author: Sanne Grinovero -Date: Wed May 17 20:11:58 2023 +0100 - - HHH-16625 Expose enough state from MetadataImpl to allow cloning it - -commit fbade45e7af726d529d13121269accd765f99032 -Author: Gavin -Date: Thu May 18 12:09:08 2023 +0200 - - add discrete headings to section on compositional basic types - -commit 15be098de7eb78c344472396a4963057ade90314 -Author: Gavin -Date: Thu May 18 11:47:13 2023 +0200 - - fix two more doc issues for Steve - -commit c5d7030741daa8c2c40bd8a17a5a83d945be18d0 -Author: Gavin -Date: Thu May 18 11:26:59 2023 +0200 - - fix misleading parameter name - -commit 75e387e81b1356a2dc3385261d20afd4d99e7c7d -Author: Gavin -Date: Thu May 18 11:26:25 2023 +0200 - - three clarifications from Steve - -commit 15422ea13bdf602b6c408e88750c6418fab173b9 -Author: Gavin -Date: Thu May 18 11:20:56 2023 +0200 - - improve section on versions - -commit bb1f5bf8e3ab9cc09509392ef428ca20646e8f82 -Author: Gavin -Date: Thu May 18 11:12:13 2023 +0200 - - move custom id generators to Advanced + expand it - - fix an ambiguity around "natural id" for Steve - -commit 97ab6f687958ce0903ae849ba012f0e2fa82ba16 -Author: Andrea Boriero -Date: Tue May 16 17:17:47 2023 +0200 - - HHH-16569 Batch fetch leads to some collections to be wrongly initialized with empty due to wrong generated SQL - -commit f4617621c6955638f2ea1e81bede91df99f4e5a6 -Author: Andrea Boriero -Date: Wed May 10 15:29:54 2023 +0200 - - HHH-16569 Add test for issue - -commit aa93bac00848e6443ff04de5a01843c48f771572 -Author: Andrea Boriero -Date: Wed May 10 12:52:13 2023 +0200 - - HHH-16573 NPE with embeddable element collection with updateable = false - -commit b6721961dddb72e7421dcf1b3b6c4f27a0524bc8 -Author: Yoann Rodière -Date: Tue May 9 11:37:51 2023 +0200 - - HHH-16573 Reproduce NPE with embeddable element collection with updateable = false - -commit edd825d1336126528ff1a1931516a1ad7547a176 -Author: Steve Ebersole -Date: Wed May 17 16:14:57 2023 -0500 - - hibernate-platform release - -commit 787ba8532d55d7256c5c37ef4b80e5d5f36346c9 -Author: Gavin -Date: Wed May 17 21:44:25 2023 +0200 - - add new section on @Any to new doc - - stolen str8 from the javadoc - -commit 2e921f7968d3a667e3fee0e270e7e0ce63014074 -Author: Gavin -Date: Wed May 17 21:22:44 2023 +0200 - - minor improvement to text - -commit f800c3dbfc0e7333049442dfc4b80b3e08894d4d -Author: Gavin -Date: Wed May 17 21:18:18 2023 +0200 - - move sidebar and make it less verbose - - so text flows much better in PDF - -commit e4b14b946077c45f093dfdb2c35602b296ee9360 -Author: Gavin -Date: Wed May 17 21:06:47 2023 +0200 - - improve a bit of flow by splitting a section - -commit d9a1980ee00fbf34d4436cb2265398c582323923 -Author: Gavin -Date: Wed May 17 21:01:04 2023 +0200 - - fix confusing/wrong para spotted by Steve - -commit 23de8a5e5de42944c8cd43ba968c588521e4f02c -Author: Gavin -Date: Wed May 17 20:56:42 2023 +0200 - - mention dynamic models and Envers - -commit eb21b1e05273632c34f2847e0afd843aaee83734 -Author: Gavin -Date: Wed May 17 20:51:00 2023 +0200 - - remove unnecessary FUD against enhancer - -commit 0d014be0341a82d9aba91bfd82c28e14e23c3182 -Author: Gavin -Date: Wed May 17 20:14:44 2023 +0200 - - easier links to user guide - - as suggested by Steve - -commit da03293cef18dc95f06bf10de949228484de040b -Author: Gavin -Date: Wed May 17 18:14:04 2023 +0200 - - doc Filters - -commit 491c02f935214b4096022ea8e28bd5aabf4fff04 -Author: Gavin -Date: Wed May 17 17:08:22 2023 +0200 - - some more tips - -commit a8fe62ebb364e5dea1626ceba134facabf446149 -Author: Marco Belladelli -Date: Mon May 15 14:57:15 2023 +0200 - - HHH-16472 Allow null discriminators for treated left/full joins - -commit 04684da0548cfc6de9f19a2e618c2a6c9adacce9 -Author: Marco Belladelli -Date: Wed May 3 12:43:15 2023 +0200 - - HHH-16472 Add test for issue - -commit bee160e9f20dd685f4ae5dd06fc645d6f36bbc6f -Author: Christian Beikov -Date: Wed May 17 16:22:21 2023 +0200 - - HHH-16541 Don't report supportsSkipLocked() for Sybase - -commit 8fcd3a1f542c220ebe486aa06cdbd9b27d5b1753 -Author: Gavin -Date: Wed May 17 12:20:17 2023 +0200 - - get rid of a stack trace - - because some amazing geniuses on stackoverflow who know - much more than me about Hibernate are obsessing over this - DEBUG-level log message - -commit a2f1ee336400057e475df9cc38f0ec77aab891eb -Author: Gavin -Date: Wed May 17 12:59:33 2023 +0200 - - squash two warnings - -commit 7372d6dc085c11ebf66b3e024dbe28b01eeedf8f -Author: Gavin -Date: Wed May 17 12:54:46 2023 +0200 - - intro doc for CRUD SQL and @Generated - -commit 7823b48a3a18426947a63b90df868063485a101f -Author: Christian Beikov -Date: Wed May 17 11:40:07 2023 +0200 - - HHH-16541 Fix Sybase test issues and HSQLDB hanging - -commit 2d833133b6e0ca3e5d5eff17046b26bed78b726b -Author: Gavin -Date: Wed May 17 11:34:01 2023 +0200 - - intro doc for Hibernate Spatial - -commit a498e4d501c4838f7fdfd4adb04f34d33bca4998 -Author: Gavin -Date: Wed May 17 02:04:50 2023 +0200 - - doc multi-tenancy and naming strategies - -commit e4539d9b447f58785d843cbe50477fcac9df4ce4 -Author: Gavin -Date: Tue May 16 22:52:28 2023 +0200 - - quit using abbreviations - - don't know quite what came over me... - -commit 6078e4792d9c975ea84fb6bdf6c395ab196def83 -Author: Gavin King -Date: Tue May 16 22:29:21 2023 +0200 - - more work on the preface to new doc - -commit 8298a27bf9d16484df37c773f931827bce7b1008 -Author: Gavin -Date: Tue May 16 22:17:17 2023 +0200 - - add some more marketing I mean information to doc - -commit f26b52c0c6ca8af79fbeaae91ac4a40857791c12 -Author: Gavin -Date: Tue May 16 20:39:24 2023 +0200 - - give the document title some more room to breathe - -commit e2e834c05f6b30cd4966b5238578204d5e74fe52 -Author: Gavin -Date: Tue May 16 20:27:19 2023 +0200 - - split out a separate file for the Introduction of the Introduction - -commit 362922512a67712ba2e3243335156f3144b93524 -Author: Gavin -Date: Tue May 16 20:14:43 2023 +0200 - - use Noto Serif consistently in documentation - - the combination of a serif body font with - sans serif headings just wasn't working for me - -commit 03352d4857956b06615ece29dcf9713f3ac08f11 -Author: Gavin -Date: Tue May 16 19:48:20 2023 +0200 - - customize the css for rouge highlighter - -commit 2276e2049d39c427cbac5210e4ff7f3f92bd4027 -Author: Gavin -Date: Tue May 16 19:47:14 2023 +0200 - - integrate rouge source highlighter into adoc build - - this is needed because prettify does not seem to - work for the PDF output (I have not dug deep) - -commit 031098a248783330fa0823f5c0b112f619b56c0b -Author: Christian Beikov -Date: Mon May 15 11:23:04 2023 +0200 - - HHH-16541 Don't consider uninitialized LazyTableGroup for follow-on locking emulation. Fix lock mode upgrade for follow-on locking - -commit 93d0121b9a17a92224f0ae615907e8f258f4dc42 -Author: Christian Beikov -Date: Thu May 11 11:57:55 2023 +0200 - - HHH-16541 - (Jakarta EE 10 Platform TCK) jpa/core/lock/query/Client.java#getResultListTest1 test regression - -commit 8f94719152c81cac4a3e7dd5d3a7e461602624f2 -Author: Steve Ebersole -Date: Tue May 16 12:36:32 2023 -0500 - - HHH-16538 - Remove BeanValidationIntegrator#BV_CHECK_CLASS - -commit bdc5d2fc6023964972d25c31cffe954485054a1a -Author: Gavin -Date: Tue May 16 15:42:35 2023 +0200 - - push the fonts used for rendering the Introduction to Hibernate 6 PDF - - I don't see any way to handle them as a regular dependency in Gradle - - Not very happy about doing this but ¯\_(ツ)_/¯ - -commit 8a1938d1e2bf11577100d9de36a2b833c9efda02 -Author: Gavin -Date: Tue May 16 14:15:49 2023 +0200 - - add a diagram of entity lifecycle to new doc - -commit f080a724a87c50d79537f678143101f98a9a01fd -Author: Gavin -Date: Tue May 16 12:53:21 2023 +0200 - - fix fonts and formatting of tables in pdf - -commit 9ae78dd1780a514f7c85269975d43d459f26b607 -Author: Gavin -Date: Tue May 16 01:54:11 2023 +0200 - - mis minor fixes to doc - -commit 289a43c5b5c1042227d4bacc0b6ef01ac81d7d42 -Author: Gavin -Date: Mon May 15 22:54:39 2023 +0200 - - decent-looking pdf output - -commit d43e89cc4a66a1071a715396d43425069a15fe5b -Author: Gavin -Date: Mon May 15 15:45:32 2023 +0200 - - HHH-16604 partial fix to 'ENUM member of collection' - - fix for the case of a fully-qualified name, i.e. org.package.Enum.ENUM - -commit 47915cfe5fc37c791acfc8b505acff76f6d1a7f1 -Author: Gavin -Date: Mon May 15 16:50:05 2023 +0200 - - add a summary section to the doc - -commit f310338198e473d17573481a1d4cbc03620d9336 -Author: Marco Belladelli -Date: Thu May 11 14:42:26 2023 +0200 - - HHH-16576 Fix column aliases when rendering query part with table reference aliasing emulation - -commit 8e21d0eb54653387b053f2bd6e98266e45c83e41 -Author: Zhihong Yu -Date: Sat May 13 00:31:36 2023 -0700 - - HHH-16542 - Correct typo in javadoc - -commit 7f361157e4b4e3572af8f97d9dd30a1ca04d1305 -Author: Gavin -Date: Mon May 15 14:04:26 2023 +0200 - - HHH-16603, HHH-9763 fix some tests: - - - test that @Cache on a subclass throws instead of WARNs - - remove @FailureExpected because HHH-9763 is now fixed - - correct test with wrong expectation for SharedCacheMode.UNSPECIFIED - - fix test that did not realize ImmmutableMutabilityPlan requires Serializable - -commit f709763dab7e45006cd09eb931a4e1b482bc5401 -Author: Gavin -Date: Mon May 15 12:42:06 2023 +0200 - - HHH-16603, HHH-9763 fix some issues with interpreting @Cache/@Cacheable annotations - - 1. throw instead of logging a WARN if @Cache is on a subclass. - I just lost 1/2 an hour of my life due to this being a WARN. - Logging WARNs is a terrible way to report user error! - - 2. Fix interpretation of SharedCacheMode.UNSPECIFIED - -commit 43fd8a7ced6b6c6be3b547d23736c9ec86ae73db -Author: Gavin -Date: Mon May 15 13:28:52 2023 +0200 - - note about embeddable types and polymorphism - -commit c35b229ba2895e787e393d989fee5b3f788b3b57 -Author: Gavin -Date: Mon May 15 13:14:14 2023 +0200 - - add a very important admonition to docs - -commit 3368c0c3ea70b956827df5c1ae8e4cf432c0f30c -Author: Gavin -Date: Mon May 15 13:04:00 2023 +0200 - - using infinispan + improve section on cache config - -commit 9aa6441212813ce72a2e9c600998e854ed91d59e -Author: Gavin -Date: Mon May 15 10:56:04 2023 +0200 - - document query cache - -commit eb6e848de384387c4341aff586805d75a375740f -Author: Christian Beikov -Date: Thu Mar 30 13:57:43 2023 +0200 - - HHH-15726 Fix treat disjunction handling and improve pushdown - -commit 4e9a64334657c98e95df30c7eaca7826ac5424ed -Author: Marco Belladelli -Date: Thu May 11 12:34:56 2023 +0200 - - Fix several tests failing on Oracle 11 and some others on older dbs - -commit 2c1ee27038fea9b58db1478782215f58212ff616 -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Mon May 15 06:08:20 2023 +0000 - - Bump com.gradle.enterprise from 3.13.1 to 3.13.2 - - Bumps com.gradle.enterprise from 3.13.1 to 3.13.2. - - --- - updated-dependencies: - - dependency-name: com.gradle.enterprise - dependency-type: direct:production - update-type: version-update:semver-patch - ... - - Signed-off-by: dependabot[bot] - -commit 32e13654c624b5299dfcd273da1e0cf93f6333ff -Author: Gavin -Date: Mon May 15 00:38:31 2023 +0200 - - improve the list of optional deps - -commit a4d9c85ba3495625c1c7287ac6d6abfa5aa8d84e -Author: Gavin -Date: Mon May 15 00:27:06 2023 +0200 - - discuss mapping embeddables to UDTs or JSON - -commit c76a36a1f2d13ed5c0458331f9b3ff26ea5253c1 -Author: Gavin -Date: Sun May 14 17:50:51 2023 +0200 - - add a diagram - -commit 864d7ed39e44851eb449fef67616ae7e02a63032 -Author: Gavin -Date: Sun May 14 13:03:22 2023 +0200 - - fix typo - -commit f84c533a6f3de9d365b17893e479b9de382bf9cb -Author: Gavin -Date: Sun May 14 12:48:48 2023 +0200 - - fix section on getSingleResultOrNull() - -commit 88fea9a2cf8e746f53d7160f43bfae03ed718dd3 -Author: Gavin -Date: Sun May 14 12:37:24 2023 +0200 - - improve code snippets in @Formula annotation jdoc - -commit 31574081b896af147f52a840010a640251ce0d14 -Author: Gavin -Date: Sun May 14 12:36:17 2023 +0200 - - add some additional material to doc - -commit 10ea3bfd0aa9cd6c50b9142eb287e34770cfdd66 -Author: Gavin -Date: Sun May 14 11:21:10 2023 +0200 - - clean up a couple of imports - -commit ac83f3e62faa60c2e925bb83f997f619391cc819 -Author: Gavin -Date: Sat May 13 21:24:12 2023 +0200 - - improve the aesthetics of some quite ugly log messages - -commit bf580b9e72f5bc6b76526d20c43ed703de5c766a -Author: Gavin -Date: Sun May 14 05:08:11 2023 +0200 - - add some words - -commit a9d27e0fb298c2cf771ce88b9a4e4d32df1107c7 -Author: Gavin -Date: Sat May 13 20:15:33 2023 +0200 - - fix incorrect javadoc of FlushMode - -commit c648aee954a1045f7b13051e3242d0f7be9a286e -Author: Gavin -Date: Fri May 12 18:09:28 2023 +0200 - - false is the default for getBoolean() - -commit 7ff2c86c6ebf7822c1b8d30337348ae1dbc3bea8 -Author: Gavin -Date: Fri May 12 18:08:42 2023 +0200 - - fix incorrect warning - - the warning was printed even when it should not be (my fault) - -commit cc3a17a972a8f122db8e9ceb63e3957014a28ef9 -Author: Gavin -Date: Fri May 12 18:04:34 2023 +0200 - - fix two jdoc typos - -commit 941fd1487477a1bc9eb744f468567c9513a8b58b -Author: Gavin -Date: Sat May 13 20:11:32 2023 +0200 - - Blob, Clob - -commit cc43b1fd1f3a2ecc3df567b71f7a7508b759252b -Author: Gavin -Date: Sat May 13 19:52:53 2023 +0200 - - add rant - -commit c2fe18796f73674baf9ad65d389149c26c2571e7 -Author: Gavin -Date: Sat May 13 19:23:33 2023 +0200 - - short section on named queries - -commit 032fc0753f9a0afb49a40b5e397b93fe26607068 -Author: Gavin -Date: Sat May 13 19:14:58 2023 +0200 - - short section on named queries - -commit f424a4b2f22f6459c07d5b900b246ae29eecdbc0 -Author: Gavin -Date: Sat May 13 18:59:35 2023 +0200 - - improve discussion of FlushModes and CacheModes - -commit 99ba5cba1e3811441df4d03eebddc6495297ab92 -Author: Gavin -Date: Sat May 13 11:51:45 2023 +0200 - - improve section on not null - -commit 12a380c6ea24e058356ebad1454db8f85f8f18ad -Author: Gavin -Date: Sat May 13 11:44:57 2023 +0200 - - use Validator for @NotNull - -commit a4392fdf2ff29135d93b8a959e5495cc636fc81a -Author: Gavin -Date: Sat May 13 11:34:08 2023 +0200 - - calling jdbc - -commit 5fd441df70e74c300ff9ee0148b078157c765fe1 -Author: Gavin -Date: Sat May 13 11:08:20 2023 +0200 - - improve discussion of foreign key mappings - -commit bb0acd29561b42f41cea799dd82098b019b2287c -Author: Gavin -Date: Sat May 13 10:21:24 2023 +0200 - - minor fixes - -commit 53fb19e170eb8980ea7217f3a431ab668cf7d06b -Author: Gavin -Date: Sat May 13 10:17:34 2023 +0200 - - hello JPA world - -commit b2509bbab6e6fa5ba51fc3084edf1aca1145ae9a -Author: Gavin -Date: Sat May 13 09:44:47 2023 +0200 - - hello world - -commit fa25afad0f671da7ee04d5e00cc14fd3201cbb0b -Author: Gavin -Date: Sat May 13 09:29:44 2023 +0200 - - add a couple of links - -commit f602b65b4fdf13a91fc5a5dfeb2d447060cf8e30 -Author: Gavin -Date: Sat May 13 00:27:38 2023 +0200 - - limits, pagination, and flush modes - -commit d182331cc481ca4764a2d21175d0fa1f9720240a -Author: Gavin -Date: Fri May 12 22:26:42 2023 +0200 - - more presentation cleanups - -commit 95b4829e086e74c76af42bf1c44aa297d9685be2 -Author: Gavin -Date: Fri May 12 22:26:09 2023 +0200 - - more presentation cleanups - -commit ccca560a9148dcb1b7c2614d1af723a48cefdbd4 -Author: Gavin -Date: Fri May 12 22:12:52 2023 +0200 - - get rid of useless titles on admonitions - - failed experiment - -commit 6369f29f1afe4a4f8164b137a58e5feb2930060d -Author: Gavin -Date: Fri May 12 22:05:20 2023 +0200 - - get rid of useless titles on admonitions - - failed experiment - -commit 843cc499d184f6e42619b38168aa057648b5c800 -Author: Gavin -Date: Fri May 12 21:56:42 2023 +0200 - - clean up more admonitions - -commit 259d86a4a2b3e4c61eeda8c3dfac7725423be66c -Author: Gavin -Date: Fri May 12 21:06:52 2023 +0200 - - discover sidebars - -commit 48e5cfbf2808be00f712e32c2763dc0486810a94 -Author: Gavin -Date: Fri May 12 20:22:19 2023 +0200 - - segues - -commit 24334d1dff7de007550253a267eb3d1b27353b83 -Author: Gavin -Date: Fri May 12 20:16:22 2023 +0200 - - finish off the section on session operations - -commit c2c7d4166b38d786f7223c06411908f764c18c73 -Author: Gavin -Date: Fri May 12 18:33:52 2023 +0200 - - more explanation cribbed from my jdoc - -commit b7a8f4940e0b2db3e2a34b851bc3eec704a4337d -Author: Gavin -Date: Fri May 12 18:02:56 2023 +0200 - - pool configuration - -commit 7b0e473358b25053c883841721f8b9592428fdba -Author: Gavin -Date: Fri May 12 14:17:37 2023 +0200 - - more about natural ids - -commit d14f3f011a35bea6b408c45980a94b197addba5c -Author: Gavin -Date: Fri May 12 13:23:54 2023 +0200 - - native SQL queries and placeholders - -commit 18e88b7358d026d0ec04def29b5078f1af55b5df -Author: Gavin -Date: Fri May 12 12:50:20 2023 +0200 - - executing queries - -commit 5881da56c8f6f17c372c99e773f74f18082a54c7 -Author: Gavin -Date: Fri May 12 09:59:38 2023 +0200 - - add diagram - -commit 71d8002c1bf9e846c8df721100e956f43ceeb28e -Author: Gavin -Date: Fri May 12 09:12:13 2023 +0200 - - add rant about repositories - -commit 5c24af1ed6ebef520270cc467f83856673c54400 -Author: Gavin -Date: Fri May 12 01:31:20 2023 +0200 - - reuse the query language chapter by reference - -commit c6b63693c6dcb415a150e3184c0a033a9a144da1 -Author: Gavin -Date: Fri May 12 01:24:22 2023 +0200 - - start on queries - -commit 02c179d07ff5b6e9fa4f438b1d5741161deeefc6 -Author: Gavin -Date: Fri May 12 00:58:47 2023 +0200 - - flushing, flush modes, and cache modes - -commit 05f4ac64838c093444ab51ae8edc9c9064f56480 -Author: Gavin -Date: Thu May 11 23:13:15 2023 +0200 - - shill for HR - -commit 85a156fd99679de6a2b6d8a2593b16cdc4ffa3c0 -Author: Gavin -Date: Thu May 11 23:05:49 2023 +0200 - - cannibalize some information from javadoc - -commit f8fd02d5f9eeb861f49e2a573aa81d1a69c2c992 -Author: Gavin -Date: Thu May 11 20:41:05 2023 +0200 - - sq - -commit db4c0d02ec44063586b90910a76e5918ac25290a -Author: Gavin -Date: Thu May 11 18:24:05 2023 +0200 - - discuss pesistence contexts - -commit bc85a250ef92975bb87330ddce3d9bf802e422aa -Author: Gavin -Date: Thu May 11 16:54:58 2023 +0200 - - compile introduction to PDF - -commit 28413883350b611e86090c9e33388c97db562ee8 -Author: Gavin -Date: Thu May 11 15:32:03 2023 +0200 - - fix build - -commit 5747725e0202b1bd0534074986de7700989a3e4f -Author: Gavin -Date: Thu May 11 15:30:27 2023 +0200 - - cannibalize good content from HR docs - -commit 7fd70a0284d97b98db2501640bcf1bb7ea5bbed6 -Author: Gavin -Date: Thu May 11 11:54:23 2023 +0200 - - mention constraints which Hibernate doesn't actually create due to bug - -commit 1d3f4f47f1fb5672e1ad6d960dff5e6e916c0664 -Author: Gavin -Date: Thu May 11 11:50:15 2023 +0200 - - diagram of associations - -commit 3e187ad82a3a296fb65b38f2b8fe9fa6f722d50d -Author: Gavin -Date: Thu May 11 11:03:20 2023 +0200 - - association table mappings - -commit 6edefe6f4d9a529f77cd7f74feda1604bc73bb24 -Author: Gavin -Date: Thu May 11 09:38:04 2023 +0200 - - column lengths and LOBs - -commit e1160fec9164f50060a4f23b0a8cc2b9f9cf98d5 -Author: Gavin -Date: Wed May 10 23:45:17 2023 +0200 - - more about table mappings - -commit 189951db109b51c388973c69a39cf79c8b85c86e -Author: Gavin -Date: Wed May 10 23:16:11 2023 +0200 - - join column mappings - -commit f9e9c9db862414a63c88a753e1098212fd16ce4b -Author: Gavin -Date: Wed May 10 20:28:46 2023 +0200 - - mapping tables and columns - -commit 77a48de89c9391dc7d481b110d2e429c00c67b71 -Author: Gavin -Date: Wed May 10 20:07:33 2023 +0200 - - more impressive converter example - -commit 16a132297418334db30b21c8e74b7000203844c4 -Author: Gavin -Date: Wed May 10 18:09:57 2023 +0200 - - more on inheritance - -commit 25d341f297af1bf7f3e3b917e5ecbe95aabb3cbc -Author: Gavin -Date: Wed May 10 17:28:07 2023 +0200 - - start on inheritance mapping - -commit eaa12db032bfc69207b3a44faddd2b1365e7dade -Author: Gavin -Date: Wed May 10 15:53:48 2023 +0200 - - missed one - -commit 349ecee46238b25e6bb1bd4beaf6e044296d8a42 -Author: Gavin -Date: Wed May 10 15:05:02 2023 +0200 - - mapped superclass, version, and summary - -commit 7b5f66c29284f8e6cf4af6769099f05b827b88b5 -Author: Gavin -Date: Wed May 10 13:10:04 2023 +0200 - - @ElementCollection mappings, etc - -commit fad5d6ee5ba3cbdac22c4e1b9955d2430ba16959 -Author: Gavin -Date: Wed May 10 11:38:48 2023 +0200 - - enum and array mappings - -commit 7619313d2f5e144f521eb6898a62c3d0d50f1f63 -Author: Gavin -Date: Tue May 9 23:30:21 2023 +0200 - - many to many - -commit 33a3af7abc96c06701a55ec088fd09a6e215885b -Author: Gavin -Date: Tue May 9 19:33:04 2023 +0200 - - one to one - -commit f012afe95fb6e4536399b5aa50a7f01d38ae6e4e -Author: Gavin -Date: Tue May 9 19:31:26 2023 +0200 - - many to one - -commit d9fae9454cbb5d56249f43ed001b6ab6167f654e -Author: Gavin -Date: Tue May 9 13:07:55 2023 +0200 - - improve converters discussion - -commit cf8aa0b02aea633ad61a601089304af1d3249faa -Author: Gavin -Date: Tue May 9 12:35:04 2023 +0200 - - add section on embeddables + and define "persistent identity" - -commit 5a036069fb82c8b368c460db6874dd42c8075748 -Author: Gavin -Date: Mon May 8 23:57:54 2023 +0200 - - much more about basic types - -commit 1f5a8c0f1b629ccc10586424965a56fece40702e -Author: Gavin -Date: Mon May 8 17:27:46 2023 +0200 - - make start on basic types - -commit 7a28b3caedac32f6944b99d10094a068c3c9d5ef -Author: Gavin -Date: Mon May 8 11:23:03 2023 +0200 - - finish section on ids - -commit 50373633d65591cf210645911d632f28fb644167 -Author: Gavin -Date: Mon May 8 01:37:14 2023 +0200 - - make a start on Entities chapter - -commit 9a726936e745c8a9ddaf715b77c2e61f9da820e3 -Author: Gavin -Date: Sun May 7 22:00:54 2023 +0200 - - revise what I have so far - -commit 01dcf0687db10045c65e51b04dcc771459125abc -Author: Gavin -Date: Sun May 7 18:41:05 2023 +0200 - - more on XxxxNamingStrategy - -commit deb19d02d0e8f99fd169bb72f71d00efb03593dd -Author: Gavin -Date: Sun May 7 14:00:24 2023 +0200 - - copy configuration section from HR intro - -commit 42819dd6f963511297e8a515c08d5743a9746dc3 -Author: Gavin -Date: Sun May 7 12:09:21 2023 +0200 - - add history of Hibernate - -commit 46ac4c07cf13ecc12128ead1557bc7cae3ce041d -Author: Gavin King -Date: Tue Feb 21 14:36:00 2023 +0100 - - initial blurbs for Introduction document - -commit bab2ae178242c0a9843ac788b2bc1a74e5a8f1be -Author: Gavin -Date: Thu May 11 20:40:39 2023 +0200 - - mark parameter as deprecated since it is always null - - leaving the parameter there seems to have been a mistake, - since it was _was_ removed from nullSafeSet() - -commit c9a161ebeef8715d899b3e63e17b263fe9a004bd -Author: Gavin -Date: Thu May 11 20:38:25 2023 +0200 - - allow mappedBy to refer to a non-association property - - (get rid of a totally unnecessary error) - -commit 2eed461b9e26e3fd47bc32f78e6f49565edd640c -Author: Marco Belladelli -Date: Thu May 11 10:26:07 2023 +0200 - - HHH-16555 Correct source alias for embedded virtual table group joins on implicitly treated paths - -commit 23a03fcb5860a88519946dc29490d56f9cc90193 -Author: Marco Belladelli -Date: Tue May 9 13:02:48 2023 +0200 - - HHH-16555 Consider implicit treats when creating SqmJoinable's navigable path - -commit 3bc4cac14f89d867a1c99db63f2d88fca118f146 -Author: Marco Belladelli -Date: Fri May 5 12:33:20 2023 +0200 - - HHH-16555 Add test for issue - -commit 725c29222729977da62d7beabeff677821c79318 -Author: Marco Belladelli -Date: Thu Apr 20 17:58:10 2023 +0200 - - HHH-16491 Special handling for generic component properties - -commit 5c2657d27c586fe9811c8e1e48642fcfd8eb46a1 -Author: Marco Belladelli -Date: Thu Apr 20 14:05:05 2023 +0200 - - HHH-16491 Add test for issue - -commit a7e3c8c7e913711d50d379165f3ba16c7801523e -Author: Marco Belladelli -Date: Tue May 2 10:52:58 2023 +0200 - - HHH-16505 Avoid using the FK for left joins with condition - -commit 6a659a7f32bed5859269580fe91ca874553f62ee -Author: Marco Belladelli -Date: Tue May 2 10:52:18 2023 +0200 - - HHH-16505 Add test for issue - -commit dcbbd289262e7f574bdb98cf8d982f857afa102e -Author: Marco Belladelli -Date: Thu May 4 16:02:03 2023 +0200 - - HHH-16517 Don't clear map to allow prepared statement group reuse - -commit 51b04ab0112cfa4b935522a86a4d6ef76880d469 -Author: Marco Belladelli -Date: Thu May 4 15:56:08 2023 +0200 - - HHH-16517 Add test for issue - -commit d4ed740e384df578f835bbb96a0579005620440a -Author: Gavin -Date: Thu May 11 12:44:47 2023 +0200 - - ExceptionConverterImpl was swallowing some root cause exceptions - -commit b208755db9eb190de71adcdb9d08acead0dcda76 -Author: Steve Ebersole -Date: Wed May 10 16:59:46 2023 -0500 - - fix sql highlighting - -commit 90227d94bdda269bda5d91409045485f125ab778 -Author: Steve Ebersole -Date: Mon May 8 13:05:57 2023 -0500 - - HHH-16542 - Bad get/is handling with bytecode enhancement - -commit 4f403a1815e29c1d0b523584a95e273dbefbf473 -Author: Jan Schatteman -Date: Wed May 10 17:30:22 2023 +0200 - - HHH-16579 - Make the parseVersion() method in CockroachDialect.java public for Reactive - -commit 21b7510c406c61d636b0c1366bc2bd96a2f93eda -Author: Davide D'Alto -Date: Wed May 10 15:41:28 2023 +0200 - - HHH-16579 Add constructor to CockroachDialect - - Hibernate Reactive needs a constructor that parses the version - and doesn't run a query on the database. - -commit 1bb1ef93eebdbdb0daae436e1c69f2cdd232f9d0 -Author: Felix -Date: Wed May 10 16:59:42 2023 +0300 - - HHH-16580 - Some typos in org.hibernate.query.sqm - -commit 36099deb2e180ecc3f2d8f1baaccab556782a486 -Author: Gavin -Date: Wed May 10 15:15:42 2023 +0200 - - make @Array apply to "implicit" columns - -commit 1d1053ef0811163611607286b0833d47f14e59d9 -Author: Jan Schatteman -Date: Wed May 10 00:15:26 2023 +0200 - - HHH-16549 - Fix potential NPE in LoadQueryInfluencers - - Signed-off-by: Jan Schatteman - -commit d933ad85945dd74a693ee5fd21a32e51f235fd2a -Author: Cedomir Igaly -Date: Tue May 9 08:47:06 2023 +0200 - - HHH-16498 - Removing (when needed) trailing chars after stripping arguments - -commit 43f0ed485575644813324551018c988350d343f1 -Author: Cedomir Igaly -Date: Wed Apr 26 12:24:16 2023 +0200 - - HHH-16498 - Test case showing the problem - -commit 19f6a60dccc637da1362a8889e4ced039df2318d -Author: Karel Maesen -Date: Wed May 10 10:00:13 2023 +0200 - - HHH-16552 - Add CockroachDB v23.1 to Jenkings nightly - -commit 2d345fc04bf4c2df1d76d5f89bd4dfc7e60eee02 -Author: Gavin -Date: Tue May 9 14:36:57 2023 +0200 - - add two new tests - -commit 3da745e62be7c7b7be186572318db1993ae46040 -Author: Gavin -Date: Tue May 9 19:50:20 2023 +0200 - - improve exception message - -commit 6a7295205756e686d3017a00e79e97b203001b21 -Author: Gavin -Date: Tue May 9 14:10:57 2023 +0200 - - add a missing @Override annotations - -commit 2e9737466040bf454803c0d4a85ab5d3a5690914 -Author: Jan Schatteman -Date: Tue May 9 00:01:15 2023 +0200 - - HHH-16567 - Remove support for CockroachDB versions older than 22.1 - - Signed-off-by: Jan Schatteman - -commit 467399437c80386c98ee7a10b6ec55083e22fca3 -Author: Christian Beikov -Date: Tue May 9 12:46:59 2023 +0200 - - HHH-16423 Improve optional object handling for entity refreshing - -commit 8786ee8d03957f134ace9a2ec892640fe1d5ddbc -Author: Christian Beikov -Date: Tue May 9 12:21:09 2023 +0200 - - HHH-16423 Switch to row cardinality state enum in LoaderSelectBuilder - -commit be773182a92d81b18d5cc841ddf2de50eeb7cc74 -Author: Marco Belladelli -Date: Thu May 4 17:23:41 2023 +0200 - - HHH-16453 Small changes for bag fetchables in LoaderSelectBuilder - -commit ab3986a5337943f9bf31eaadb4f33d1c26359321 -Author: Marco Belladelli -Date: Wed Apr 26 10:54:36 2023 +0200 - - HHH-16496 Add test for issue - -commit 036784b25734ab49d5d3032ae1010477492d231d -Author: Andrea Boriero -Date: Tue Apr 11 14:23:14 2023 +0200 - - HHH-16453 Loading an Entity with two eager collections, produces duplicates when one of the collection is a a bag - -commit a16e50597248f23efd387ec6f7813798cf9082b5 -Author: Andrea Boriero -Date: Tue Apr 11 14:21:12 2023 +0200 - - HHH-16423 Add tests for issue - -commit d777389ee0fa2672232c545fb33e02f118155d36 -Author: Andrea Boriero -Date: Tue Apr 11 14:17:54 2023 +0200 - - HHH-16447 Add test for issue - -commit 8480eca26feec4dc034f0f4c3cf49b377c2d21ce -Author: Andrea Boriero -Date: Thu Apr 6 12:52:36 2023 +0200 - - HHH-16423 LazyInitializationException when calling em.refresh() on entity with lazy and eager children - -commit 4c1fe081ba587cf0f877ea482d286038a558df3b -Author: Andrea Boriero -Date: Wed Apr 5 16:12:17 2023 +0200 - - HHH-16423 Add test for issue - -commit 43b54be622c40bdc32fd3e78e2bf42cd0ae5ee41 -Author: Cedomir Igaly -Date: Mon May 8 19:42:10 2023 +0200 - - HHH-16551 - Re-designed test case similar to org.hibernate.orm.test.annotations.beanvalidation.DDLTest - -commit f469c769f66fabd94c0ab3580e44584c4d023716 -Author: Cedomir Igaly -Date: Mon May 8 19:41:31 2023 +0200 - - HHH-16551 - Removed declared discriminator column length check - -commit bb49a26af91fea5fe6265cecb202d9ceb85fe3a2 -Author: Cedomir Igaly -Date: Thu May 4 19:00:38 2023 +0200 - - HHH-16551 - If discriminator column type is CHAR, set length to 1 - -commit eb630fb8e83bd53455e4363ba8064106e8222249 -Author: Cedomir Igaly -Date: Thu May 4 18:59:50 2023 +0200 - - HHH-16551 - Test case demonstrating the bug - -commit e12cfdb0b9aac4f2a39ed6658aff9c402fd92399 -Author: Jan Schatteman -Date: Thu Apr 27 00:50:25 2023 +0200 - - HHH-16515 - Add the org.hibernate.bytecode.spi package to nullness checking - - Signed-off-by: Jan Schatteman - -commit 1fed78d4e537bc484d165393838958281c7b0de2 -Author: Jan Schatteman -Date: Wed Apr 26 21:30:21 2023 +0200 - - HHH-16515 - Add the org.hibernate.context.spi package to nullness checking - - Signed-off-by: Jan Schatteman - -commit 924e3883d7ca83ba5f4cafb7ac4d749ed8272209 -Author: Jan Schatteman -Date: Wed Apr 26 18:27:28 2023 +0200 - - HHH-16515 - Add @nullable annotations to org.hibernate.action.spi - - Signed-off-by: Jan Schatteman - -commit 0d9ef5444afbb6da2185811564980824139ea402 -Author: Marco Belladelli -Date: Wed Apr 12 10:38:42 2023 +0200 - - HHH-16425 Handle path sources in function return type resolvers - -commit c5c237e70ea430b727abc0456ad7d575b205295e -Author: Marco Belladelli -Date: Tue May 2 17:02:11 2023 +0200 - - HHH-16425 Add test for issue - -commit e8008007de52a58264751d77d5ad48369182ae1a -Author: Yoann Rodière -Date: Wed May 3 15:07:52 2023 +0200 - - HHH-16546 Reduce verbosity of logs in a few edge cases - -commit 726a3929ba232b212b204b89984f497ce1d9b197 -Author: Andrea Boriero -Date: Wed May 3 09:49:35 2023 +0200 - - HHH-16298 Failure merging a referenced entity - -commit 4db54a931d5180f8a6cbd8da49e2cc957253cf25 -Author: Davide D'Alto -Date: Sat Mar 11 17:57:11 2023 +0100 - - HHH-16298 Add test for issue - -commit f3cf7eb87dc3e9d1d32d168b3b54d8cfc1971edb -Author: Andrea Boriero -Date: Tue May 2 10:05:52 2023 +0200 - - HHH-16469 Hibernate repeatedly issues identical SELECT queries to load an optional one-to-one association - -commit 291626eb041d9a4bbcb2f77a1a070c2887e63353 -Author: Andrea Boriero -Date: Mon Apr 24 14:23:00 2023 +0200 - - HHH-16469 Add test for issue - -commit 428130d5d82757cf9ced3827f568f8b9e392590d -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Mon May 8 06:09:32 2023 +0000 - - Bump com.gradle.enterprise from 3.13 to 3.13.1 - - Bumps com.gradle.enterprise from 3.13 to 3.13.1. - - --- - updated-dependencies: - - dependency-name: com.gradle.enterprise - dependency-type: direct:production - update-type: version-update:semver-patch - ... - - Signed-off-by: dependabot[bot] - -commit 3a3882155f814a207230286e24d309b9df8d0cd7 -Author: Maximilian Zellhofer -Date: Tue May 2 18:31:55 2023 +0200 - - HHH-15393: fix for what looks like a copy & paste error - - In the changes added to BasicCollectionPersister during HHH-15393, it looks as if generateUpdateRowOperation has maybe been copy-pasted from generateInsertRowOperation (which is perfectly fine), but when the custom sql update row operation is generated, the mutation details for the insert case rather than the ones for the update case are fetched. In case that this assumption is correct, there are some more in buildCustomSqlUpdateRowOperation, where getDeleteDetails() is used instead of getUpdateDetails(). - -commit 69f14f7a8bb7b0b205e5e33dc891ea1882958ce6 -Author: Gavin -Date: Sun May 7 18:48:53 2023 +0200 - - clean up two more enums - -commit d5b6f769a461461c521c68b46c2554c5835447ff -Author: Gavin -Date: Sun May 7 10:44:26 2023 +0200 - - HHH-16564 introduce BottomType - -commit 8c1f9c4aad6f00b8ab310678c7165ad7a6dd22b0 -Author: Gavin -Date: Sun May 7 10:42:08 2023 +0200 - - fix javadoc examples for @Array and @Struct - -commit 5f49441fcce49853f724485ff9db8ff135c5c94d -Author: Gavin -Date: Fri May 5 15:07:04 2023 +0200 - - fix the tests for Oracle nested tables / arrays - - I messed up - -commit c922a10df298e094efc5fff26be7e7009751a427 -Author: Gavin -Date: Sat May 6 22:22:58 2023 +0200 - - HHH-16564 allow null in 'select new' argument list - -commit 7eacbfab3c2a784f8995a844690504d7cb125bfb -Author: Sanne Grinovero -Date: Thu May 4 21:41:21 2023 +0300 - - HHH-16545 PersistenceUtil.MetadataCache needs to be threadsafe - -commit 60d449e8dad32439ef5f26418689060a3ad69731 -Author: Gavin -Date: Thu May 4 14:21:39 2023 +0300 - - improve reporting of errors in named queries - -commit e6fc35fa56d6f5b8b4a5eaa85da29c03b8409e37 -Author: Vincent Jansen -Date: Fri May 5 10:37:23 2023 +0200 - - HHH-16556 Correct MS SQL 2016 deprecation version - - Use version 13 as suggestion in the deprecation warning instead of 11 which is version MS SQL 2012 - -commit f2f19fecbf9f58830bd7b44d3c8cb951cf98c85f -Author: Gavin -Date: Wed May 3 21:06:42 2023 +0300 - - HHH-16125 add tests for Postgres enums and Oracle nested tables - -commit 84a3233267b6afda79c47f839c742b87a18452a4 -Author: Gavin -Date: Wed May 3 21:07:17 2023 +0300 - - minor - -commit d29fdbb8d5a9cc9999023e6dea0e96e5237bd39e -Author: Gavin -Date: Wed May 3 17:57:10 2023 +0300 - - remove unused import - -commit f87df304f94f94a0fc4f2918958e681b48f2ccce -Author: Steve Ebersole -Date: Wed May 3 09:55:45 2023 -0500 - - Add a Dialect report - - Also added - * H2Dialect#getMinimumSupportedVersion - * DerbyDialect#getMinimumSupportedVersion - -commit c08af7469c361b20e39410ca30dfdd69fa52020c -Author: Marco Belladelli -Date: Tue May 2 15:18:39 2023 +0200 - - HHH-16483 Delay copying of cte statement definitions to handle recursion - -commit 5578109fe750a855762a289f39fe0795fa855ba1 -Author: Marco Belladelli -Date: Tue May 2 14:52:12 2023 +0200 - - HHH-16483 Add test for issue - -commit 8bd99231a5cacbc673ab75a073d0610d643c6ca6 -Author: Gavin -Date: Wed May 3 16:34:20 2023 +0300 - - clean up obsolete javadoc which confused a user - -commit 7c22a537d191035e28b875895df1a6c9bc2ca1c3 -Author: Gavin -Date: Tue May 2 11:42:26 2023 +0300 - - HHH-16544 add support for Oracle nested tables - - ... and clean up of some stuff about array type initialization - -commit 18ddbe15d6a8b83f3bae25183518640b8c615cc7 -Author: Gavin -Date: Tue May 2 15:23:24 2023 +0300 - - cleanup Action enum - -commit 2538c96cad7641851c40dd749753f92af80c5356 -Author: Gavin -Date: Tue May 2 14:55:08 2023 +0300 - - cleanup two enums - -commit a56942ce3bfdc9843e649e8a33b54ce6dbfb7416 -Author: Gavin -Date: Tue May 2 13:49:12 2023 +0300 - - HHH-16535 introduce @Array annotation - -commit 57029ddc705212a3c5fa1204e9bbaf72bc6a2796 -Author: Christian Beikov -Date: Tue May 2 11:23:46 2023 +0200 - - HHH-15871 Update EDB testing to version 15 - -commit 53c7ef470a37ae85c918b9814b4b4449fa607147 -Author: Christian Beikov -Date: Fri Apr 28 13:31:37 2023 +0200 - - HHH-16533 Fix issues with jConnect driver related to temporal literals. Also improve truncation and casting SQL - -commit 473984f1eb3ea2895e36ccf3589a4bb647f525d8 -Author: Gavin -Date: Tue May 2 01:26:37 2023 +0300 - - HHH-16125 introduce JdbcTypeConstructor instead of using JdbcTypes as their own factories - - previously, there was a global instance of ArrayJdbcType registered by the Dialects, in - an inconsistent state, that acted as a factory for correctly-initialized instances - -commit cd0504ceda5b99e5aca7a8a6d85258c376ec5e85 -Author: Andrea Boriero -Date: Tue May 2 09:16:08 2023 +0200 - - Add to documentation drop-down selector links to 6.0 and 6.1 documentation pages - -commit 16915cec63acaae37f031fb8378fa2687cecce87 -Author: Gavin -Date: Mon May 1 19:02:40 2023 +0300 - - HHH-16125 some small cleanups - -commit aebd601845f6bed948f204d4bc99c2d327c19baa -Author: Gavin -Date: Sat Apr 29 22:01:09 2023 +0200 - - HHH-16125 fix tests after adding Oracle array support - -commit 07268d6568fdc61ea2ef263b56e638ce35397541 -Author: Gavin -Date: Sat Apr 29 17:00:47 2023 +0200 - - HHH-16125 Oracle array support using varray types - -commit 783e0772e6a75afd0d365fac82935ce11fe1554e -Author: Gavin -Date: Sun Apr 30 18:12:12 2023 +0200 - - fix rendering of in (...) lists - - they are not function calls - -commit 20b157000cc6869bdaa7b6d67eace7e846c2ac22 -Author: Gavin -Date: Sat Apr 29 13:54:07 2023 +0200 - - HHH-16125 final cleanup of legacy enum converters stuff - -commit 15d20113e75ed7d4895af9df4730ea9a69377faf -Author: Gavin -Date: Fri Apr 28 15:29:15 2023 +0200 - - HHH-16125 make tests work with postgres enums - -commit c91cfdf2f12a3472f52296fc10c20d418e5b6497 -Author: Gavin -Date: Fri Apr 28 00:32:19 2023 +0200 - - HHH-16125 delete/fix a bunch of assertions that constrain implementation details - - these are bad tests; they don't test observable behavior - -commit 7514f8ad00315557ea597f954c3eb72c598369f0 -Author: Gavin -Date: Sat Apr 29 11:26:51 2023 +0200 - - HHH-16125 introduce SqlTypes.NAMED_ENUM to make pg enums non-default - - and clean up the impl of enums - -commit bfb0fc6aba511102c527c7eb9547fef42f6645c5 -Author: Gavin -Date: Fri Apr 28 17:41:57 2023 +0200 - - HHH-16125 fix the encoding of enum arrays to varbinary - -commit 9c6c3eba81e29c58a1a8ca41b29f9c821226869c -Author: Gavin -Date: Fri Apr 28 14:45:43 2023 +0200 - - HHH-16125 fix enums in embeddable types on postgres - - fixes allowing correct serialization/deserialization of enums - includes workaround for StructJdbcType sending us a BigDecimal (need better solution) - -commit db4a1bb6ef5a54dabf9afa92fee5d685cb1825a2 -Author: Gavin -Date: Fri Apr 28 12:54:05 2023 +0200 - - HHH-16125 remove DDL generation stuff from converters - - it never belonged there! - -commit d075093ebfa7de6f5b7fb8c7f8021780e2b3059e -Author: Gavin -Date: Fri Apr 28 04:52:18 2023 +0200 - - HHH-16125 clean up legacy EnumType - -commit febf39cc553d9bdaded3a53c42747937888f4881 -Author: Gavin -Date: Thu Apr 27 16:36:37 2023 +0200 - - HHH-16125 complete redesign of how enum mappings work - - - introduce SqlTypes.ENUM - - no more converters! - - finish of Potgres enum support - - disable BIND for enums in Criteria on PostgreSQL - (PostgreSQL doesn't do the needed type conversion to the enum type) - -commit d348ae2d8c6f3d398f536aedf2094c5f44883c32 -Author: Gavin -Date: Thu Apr 27 14:06:30 2023 +0200 - - workaround issue on postgres - - this is probably a pre-existing hole in the logic, - not related really related to my work - -commit fb9c007bdd38e1acea15b84837ecfd10f8949d34 -Author: Gavin -Date: Mon Apr 24 22:34:32 2023 +0200 - - HHH-16125 attempt to support PostgreSQL enum types - -commit 1d7be9512adf050e1a49bc79c5d0e951c330e419 -Author: Gavin -Date: Tue Apr 25 15:44:26 2023 +0200 - - cleanups to InFlightMetadataCollector[Impl] - - incl attempt to fix PK to FK copying - -commit eefa1d9365f21ff16eb0cd7316e7b45642b9e122 -Author: Gavin -Date: Sat Apr 29 11:17:49 2023 +0200 - - improve an error message - -commit cebef1618db626e206281ed11bcb24c6231f1f3a -Author: Gavin -Date: Thu Apr 27 16:37:06 2023 +0200 - - clean up of VarcharJdbcType - -commit aa9bb2649811e398e068dc8e9098877ffcb474a8 -Author: Gavin -Date: Sat Apr 29 00:15:03 2023 +0200 - - fix some javadoc - -commit c36fdc4d06036f848710658ea3de33919c737fbe -Author: Gavin -Date: Thu Apr 27 16:36:53 2023 +0200 - - fix bug in SQL formatting on MySQL - -commit 784bc3463e13fffb48c2e260c813a38cc03399fc -Author: Jan Schatteman -Date: Fri Apr 28 18:28:40 2023 +0200 - - Remove the unused o.h.stat.internal.CategorizedStatistics - - Signed-off-by: Jan Schatteman - -commit 4a8c51f14f70471d45db8bde066070a2881ee347 -Author: Jan Schatteman -Date: Thu Apr 27 19:42:39 2023 +0200 - - HHH-16515 - Add o.h.pretty to nullness checking - - Signed-off-by: Jan Schatteman - -commit 6f189472494185eb241fbd77eb3be46c55b789cf -Author: Karel Maesen -Date: Fri Apr 28 11:28:59 2023 +0200 - - HHH-15160 - Fix unit test - -commit 174a9a700502b9f92458f007f62fac082a8419f1 -Author: Karel Maesen -Date: Thu Apr 27 21:40:36 2023 +0200 - - HHH-15160 - Properly validate the arguments in the distance operators. - -commit 559fbe77ce40df5fcb18a58f377d186d2c3a5b05 -Author: Karel Maesen -Date: Thu Apr 27 21:37:50 2023 +0200 - - HHH-15160 - Add SPATIAL FunctionParameterType - - This enables us to validate spatial arguments in functions. - -commit b46bc13813e5f86a8fa8719e36f1b22b3fd49c10 -Author: Karel Maesen -Date: Wed Apr 26 21:43:29 2023 +0200 - - HHH-15160 - Adds the Postgis distance operators - -commit 0854cd94080ba5b226d5b9de2fb244832757bb08 -Author: Marco Belladelli -Date: Fri Apr 28 11:19:26 2023 +0200 - - Fix test failing on H2 version < 2 - -commit f7eb58341e0fd33414818943007cf8e934798d71 -Author: Marco Belladelli -Date: Fri Apr 28 11:07:49 2023 +0200 - - Fix in-array predicate rendering for cockroachdb - -commit 203f28e14c3638ae152f6ea816a999c914704bc7 -Author: Christian Beikov -Date: Fri Apr 28 08:57:39 2023 +0200 - - HHH-16528 Revert SybaseDialect NameQualifierSupport to CATALOG only and fix ansinull option for jconnect - -commit aad0c55f9bcc93166afe136f7ee83ba69268cba0 -Author: Christian Beikov -Date: Thu Apr 27 13:12:03 2023 +0200 - - HHH-15833 Disable named parameters for jConnect JDBC driver - -commit e60d2c878b8dbad1d694c01e1a18424f951c2d31 -Author: Marco Belladelli -Date: Wed Apr 26 16:37:25 2023 +0200 - - HHH-16397 Allow fk optimization for correlated paths in subqueries - -commit 3fe9ac9e3218b0137ef1f25482d3e87a0e7c0b75 -Author: Marco Belladelli -Date: Thu Apr 6 10:23:27 2023 +0200 - - HHH-16397 Add test for issue - -commit c86c2b83003fa1e24ee1daad8282893683b1c558 -Author: Marco Belladelli -Date: Tue Apr 11 18:08:49 2023 +0200 - - HHH-16392 Add column qualifier support to Dialect - -commit a9080f5f7da83b506e1a9a1eb3c0aeacafb1734e -Author: Marco Belladelli -Date: Thu Apr 6 14:18:21 2023 +0200 - - HHH-16392 Fix where clause in collection cleanup subqueries - -commit c16cedf3276aa361d8eae641f579e305c948e52b -Author: Marco Belladelli -Date: Thu Apr 6 14:18:00 2023 +0200 - - HHH-16392 Add test for issue - -commit 5e4ca03260fd6c2a1cb4ae748f705f6f4c010e22 -Author: Jan Schatteman -Date: Thu Apr 27 22:11:43 2023 +0200 - - Correction to remove the main method from H2Dialect - - Signed-off-by: Jan Schatteman - -commit c6389efb1b512dc5c0022eabe7b63d53806a8ba5 -Author: Steve Ebersole -Date: Thu Apr 27 11:27:26 2023 -0500 - - Add a Dialect report - - Also added - * H2Dialect#getMinimumSupportedVersion - * DerbyDialect#getMinimumSupportedVersion - -commit 3ae07666abeb437535d50c56ad36a8b1f35c5b02 -Author: Christian Beikov -Date: Wed Apr 26 16:13:05 2023 +0200 - - HHH-16304 Default unquotedCaseStrategy to MIXED with Sybase - -commit 8ce01de60cf4c13077e6419b123cce1dc4c49814 -Author: Christian Beikov -Date: Thu Apr 27 09:52:27 2023 +0200 - - Fix build issues with JDK17+ - -commit 11b051ba95e1be660fd5eb087527b0a36463fd66 -Author: Steve Ebersole -Date: Wed Apr 26 22:57:15 2023 -0500 - - Improve the logging report - -commit f8379eefe1c605686c66d79ce4b7f67d044b74e5 -Author: Sven Strickroth -Date: Mon Apr 24 13:54:19 2023 +0200 - - HHH-16507 Use subsystem logger instead of hard-coded "SQL dialect" - - Signed-off-by: Sven Strickroth - -commit 25a23fd1c0462015697d1d13eab2ff4eae813ce5 -Author: Steve Ebersole -Date: Wed Apr 5 19:16:49 2023 -0500 - - HHH-16441 - Improve support for @BatchSize - HHH-16466 - ARRAY parameter support for multi-key loads - HHH-16509 - Split parameter limit and IN element limit - -commit e94d030458e49006fe6ad0380ed4d87ad36e0998 -Author: Marco Belladelli -Date: Wed Apr 26 16:20:53 2023 +0200 - - Fix some tests failing for older DBs - -commit 8564289c8367bb59662df4ac46ba6252707e74bb -Author: Steve Ebersole -Date: Wed Apr 26 12:16:06 2023 -0500 - - HHH-16511 - Ability to drop-in extra JDBC drivers - -commit d8b44d071e22c5418ce2f2f029aa3243977d0a91 -Author: Jan Schatteman -Date: Fri Apr 21 23:09:13 2023 +0200 - - HHH-16515 - Add @Nullable annotations to org.hibernate.spi - - Signed-off-by: Jan Schatteman - - Correction to gradle/java-module.gradle for the checkerframework - Co-authored-by: Christian Beikov - - Add @Nullable annotations to org.hibernate.spi - -commit 3543186ec78386142ad0e34452ad41f898745a49 -Author: Marco Belladelli -Date: Tue Apr 4 14:43:48 2023 +0200 - - HHH-16409 Rework entity valued path expansion for group by and order by - -commit 80988300a606b33dfa7b5d82ba150071f7eb119f -Author: Marco Belladelli -Date: Tue Apr 4 13:04:06 2023 +0200 - - HHH-16409 Add test for issue - -commit c18391e226a1fa7874e428c93bb17cb26bb1fe4b -Author: Staffan Hörke -Date: Fri Apr 14 11:25:31 2023 +0200 - - HHH-16473 Add test for issue - -commit cdec63199d54b1a07d228116037a4bfd6c3fbeaa -Author: Marco Belladelli -Date: Fri Mar 31 14:47:59 2023 +0200 - - HHH-16363 Add test for issue - -commit 0542257f15442b753aed95a479a08b6843261405 -Author: Marco Belladelli -Date: Tue Apr 18 16:34:44 2023 +0200 - - HHH-16488 Add test for issue - -commit 199201482dcb5396e38f12f562a3bac2bf756da9 -Author: Christian Beikov -Date: Tue Apr 25 14:08:54 2023 +0200 - - HHH-16271 Fix generated keys issues with Sybase JConn and insert-select statements - -commit 06381d2dd282ae4a317e54b390fa055d82ea8352 -Author: Steve Ebersole -Date: Tue Apr 25 20:13:13 2023 -0500 - - HHH-16321 - Hibernate maps NCLOB to ntext on Sybase - -commit 48c59392f6582a0f61ff51cf429108b4e1bf2e16 -Author: Steve Ebersole -Date: Tue Apr 25 09:06:01 2023 -0500 - - HHH-16314 - Skip NativeQueryResultTypeAutoDiscoveryTest#dateTimeTypes for Sybase - -commit 457ca8ddb5d9ac4fd88ee3d8cbc6fce492f0140e -Author: Jan Schatteman -Date: Wed Apr 26 00:33:31 2023 +0200 - - Add a class diagram for org.hibernate.spi to the design documentation - - Signed-off-by: Jan Schatteman - -commit c3ddd869c969eb85bcce83d2640e0b620a78d090 -Author: Steve Ebersole -Date: Tue Apr 25 07:28:34 2023 -0500 - - HHH-16270 - Support for null Query parameters on Sybase - -commit 4342b9832b2603cf257112585681e0fc8d4fe06f -Author: Christian Beikov -Date: Tue Apr 25 13:22:20 2023 +0200 - - Skip intermittently failing test on Sybase due to the driver/db omitting trailing zero bytes in varbinary - -commit d64c533f2b541ef7d64578152ec3432ffc066a34 -Author: Christian Beikov -Date: Tue Apr 25 10:16:05 2023 +0200 - - HHH-16382 Make sure joins are adapted to inner if non-FK parts of a path are de-referenced - -commit 519f0f7ced0d62abb216f5dbeb3d697e77e9787b -Author: Steve Ebersole -Date: Mon Apr 24 14:35:51 2023 -0500 - - HHH-16511 - Ability to drop-in extra JDBC drivers - -commit a79b4df426d427de7d885aa1641bb2bf6cf95119 -Author: Yoann Rodière -Date: Thu Apr 20 14:13:00 2023 +0200 - - HHH-16497 Deprecate JUnit 4 testing annotations - -commit 9a9f027f824d1838935e0382c8778098f96aad71 -Author: Yoann Rodière -Date: Wed Apr 12 09:53:22 2023 +0200 - - HHH-16458 Close JDBC statement when DeferredResultSetAccess fails to execute a query - -commit 29a4d6bf06eaee834628008237793de6c5353cb3 -Author: Cedomir Igaly -Date: Mon Apr 3 10:37:58 2023 +0200 - - HHH-16261 - Change Gradle build script to allow separate builds using JDK 11 and JDK 17 - -commit 2246f4225c7ea386ca2f539b3e61040ff1d9a29a -Author: Cedomir Igaly -Date: Sun Apr 2 13:48:54 2023 +0200 - - HHH-16261 - Avoid explicit use of ElementKind.RECORD to make code compilable under JDK 11 - -commit bb3c647252d1eade449848036a0db131d096554a -Author: Cedomir Igaly -Date: Sun Apr 2 12:34:16 2023 +0200 - - HHH-16261 - Fixed formatting - -commit dad3f500eb4e6af0b78d4596786f4cfa9438694a -Author: Cedomir Igaly -Date: Sun Apr 2 12:25:25 2023 +0200 - - HHH-16261 - Not ignoring JDK 14 records when processing - -commit 672eaed86ce3db574a10226b9b8286b1029b9041 -Author: Cedomir Igaly -Date: Sun Apr 2 12:24:55 2023 +0200 - - HHH-16261 - More strict test case - -commit 643cd325047205cbb5846c4a8528911edfbc40bd -Author: Cedomir Igaly -Date: Sun Apr 2 11:17:53 2023 +0200 - - HHH-16261 - Check if address field has been generated in Author_ class - -commit 52e84fb3e456f68d7e806f7e9d81bce2762484a7 -Author: Cedomir Igaly -Date: Sat Apr 1 14:02:09 2023 +0200 - - HHH-16261 - Test case for HHH-16261 - -commit c73f4e26a1d4eb4eb4bdf008051b88510e97cda3 -Author: Christian Beikov -Date: Tue Apr 25 09:32:41 2023 +0200 - - Ignore some random UUID tests on Sybase to reduce trailing zero bytes related failures - -commit 48b34b004adf63800f7d218bca6da2ca209888c7 -Author: Christian Beikov -Date: Tue Apr 25 08:25:45 2023 +0200 - - HHH-15602 Fix small typo - -commit fc069afed72322a013ee7758f58c70ccb1bc902a -Author: Christian Beikov -Date: Wed Apr 19 13:49:39 2023 +0200 - - HHH-16485 Insert ordering doesn't consider root entity names - -commit 982b132213077562e1a00b0271e862d2313d81c9 -Author: Christian Beikov -Date: Mon Apr 17 15:33:49 2023 +0200 - - HHH-15602 Fix bidirectional association management code - -commit a5ae8737a68adeb0e8eebeb15e73eb9eed98b41e -Author: Christoph Dreis -Date: Mon Apr 24 16:10:35 2023 +0200 - - HHH-16500 Remove unnecessary reflection from JpaStreamTest - -commit a8b1dfd7beff5c06ffec1e48896cafce00d4af50 -Author: Christoph Dreis -Date: Mon Apr 24 16:09:46 2023 +0200 - - HHH-16508 Remove StreamDecorators - -commit 911887328c691445f5b454c376f17bc0b94156da -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Mon Apr 17 05:59:27 2023 +0000 - - Bump com.gradle.enterprise from 3.12.6 to 3.13 - - Bumps com.gradle.enterprise from 3.12.6 to 3.13. - - --- - updated-dependencies: - - dependency-name: com.gradle.enterprise - dependency-type: direct:production - update-type: version-update:semver-minor - ... - - Signed-off-by: dependabot[bot] - -commit 75caf15e6b54dd534d191fbe9a23bea99a3a46c7 -Author: Christian Beikov -Date: Mon Apr 17 15:47:19 2023 +0200 - - HHH-16382 Fix resolving table references especially for self-referential associations - -commit 540fb0c99608fe73c24bc30ba98eca5ba00b5310 -Author: Gavin -Date: Mon Apr 24 13:18:59 2023 +0200 - - minor fixes to the SQL highlighter - -commit 99f45f042eb91728394914fe10c175ef58810a8a -Author: Andrea Boriero -Date: Mon Apr 24 13:30:57 2023 +0200 - - HHH-16492 Hibernate 6 does not auto flush when calling Query.stream() with NativeQuery - -commit 309cafbf938ae663d061ebec36641604d950bd6f -Author: Andrea Boriero -Date: Fri Apr 21 15:37:35 2023 +0200 - - HHH-16492 Add test for issue - -commit 5a49d042559f7350d8aa07aee27ad3d4ecec11e3 -Author: Andrea Boriero -Date: Mon Apr 17 12:43:30 2023 +0200 - - HHH-16479 Generic enum in @MappedSuperclass fails with java.lang.IllegalArgumentException: Named type [...] did not implement BasicType nor UserType - -commit 962d483684b2750978ea5b3ef4f31dd5dde5bb0c -Author: Andrea Boriero -Date: Mon Apr 17 12:43:09 2023 +0200 - - HHH-16479 Add test for issue - -commit 642959dc75f270dfb9870b7700c2a87cb57d203a -Author: Gavin -Date: Fri Apr 21 16:38:55 2023 +0200 - - clean up two SQL queries in OracleDialect - -commit 106dc33a18f1951c0ddc5b9c91d2fb5df0ffd5b4 -Author: Gavin -Date: Fri Apr 21 11:56:42 2023 +0200 - - proof of concept for auto-detection of Oracle MAX_STRING_SIZE - -commit 3aa47ad4231b4d44354286d05671f9927eed82ba -Author: Gavin -Date: Sat Apr 22 22:53:03 2023 +0200 - - fix test - -commit b2883fd9a20eec489d86a680f803b090a28aa101 -Author: Gavin -Date: Sat Apr 22 20:48:27 2023 +0200 - - log highlighted SQL from tests - -commit 19e2f1ce220d196de677239e9fccf0e2b7a7d328 -Author: Gavin -Date: Sat Apr 22 19:00:00 2023 +0200 - - HHH-16501 allow referencedColumnName to column mapped by superclass of target entity - -commit 6a03676c9fa69acac6bda65309a505302fc489cc -Author: Marco Belladelli -Date: Mon Apr 17 13:46:06 2023 +0200 - - HHH-16362 Don't set fetched on nested non-terminal attribute joins - -commit ff4bcafd521a614758dbc3cf84b505f94bd796ba -Author: Marco Belladelli -Date: Mon Apr 17 12:26:28 2023 +0200 - - HHH-16362 Add test for issue - -commit 0addc00d10677f3343f8627f6743e12cddc2e792 -Author: Marco Belladelli -Date: Mon Apr 17 13:47:22 2023 +0200 - - HHH-16347 Disable alias and positional order-by items in OVER and WITHIN GROUP clauses - -commit 1b3209f38a7234864fa7aeaaf353f7230be118c5 -Author: Marco Belladelli -Date: Wed Apr 5 12:11:22 2023 +0200 - - HHH-16347 Add test for issue - -commit add6d8431004fbaa43ea08c4ea5b504d5cb6289a -Author: Andrea Boriero -Date: Fri Apr 21 11:28:16 2023 +0200 - - HHH-16471 Entities serialized in QueryKey causes java.lang.ClassCastException - -commit b1a4890c3ef078ea61e7ca06ff269f73531cd22b -Author: Andrea Boriero -Date: Thu Apr 20 15:31:03 2023 +0200 - - HHH-16471 Add test for issue - -commit 2c16e25a71161479f854ceaed65b7cc1b7d4b894 -Author: Gavin -Date: Fri Apr 21 11:14:48 2023 +0200 - - add some examples of interpretation of column Length - -commit 6c69c45af84e14af4b761410fb98b5fbabfdff64 -Author: Andrea Boriero -Date: Mon Apr 17 16:59:06 2023 +0200 - - HHH-16477 LAZY @ManyToOne may again break EAGER @ManyToOne with Bytecode Enhancement - -commit 98e12e541feb54646b3a2a843444ad59b9469e53 -Author: Tomas Cerskus -Date: Sat Apr 15 20:14:55 2023 +0100 - - HHH-16477 LAZY @ManyToOne may again break EAGER @ManyToOne with Bytecode Enhancement - -commit 9b85afc88c9bd3b0602de543906adad41866f7c5 -Author: Andrea Boriero -Date: Wed Apr 19 14:09:16 2023 +0200 - - HHH-16457 Values returned in ValueAccess.getValues() and getValue(…) not alphabetical for Java records - -commit 6e4b5cc0a0b70e32958735e53d165dd1bf3fe82e -Author: Andrea Boriero -Date: Wed Apr 19 13:43:53 2023 +0200 - - HHH-16457 Add test for issue - -commit 6188eeb68125acad8577889e3f8213aa4457633a -Author: Andrea Boriero -Date: Wed Apr 19 16:12:05 2023 +0200 - - HHH-16493 OneToManyCollectionPart doesn't disassemble properly embeddable IdClass - -commit 60b209e6ee26852446005a8a5049f5c138a9ea4a -Author: Andrea Boriero -Date: Wed Apr 19 16:11:20 2023 +0200 - - HHH-16493 Add test for issue - -commit 959858f8bcc702e8a0d8313cc885a7abd6110b7f -Author: Steve Ebersole -Date: Mon Apr 17 16:34:22 2023 -0500 - - HHH-16481 - Add a new WrapperArrayHandling for enabled JPA compliance - -commit d7c5db47f6ed912e5776a610791f0f55a322d5a5 -Author: Steve Ebersole -Date: Tue Apr 18 04:51:42 2023 -0500 - - HHH-16482 - Convert Functions in StandardConverters to static methods that can be used as method references - -commit 85a636c8569e65e7d3d31aae201c4310a75c8c89 -Author: Jan Schatteman -Date: Tue Apr 18 17:24:54 2023 +0200 - - HHH-16438 - Apply some suggestions from Christian's code review - Co-authored-by: Christian Beikov - -commit 6b21d436ce291d8a0371ec61ac50a3e74867d97d -Author: Jan Schatteman -Date: Fri Apr 14 17:08:41 2023 +0200 - - HHH-16438 - fix for issue - - move the discriminator condition from the where clause to the join clause - - add another test to JoinWithSingleTableInheritanceTest - - Signed-off-by: Jan Schatteman - -commit 11012ea2c895ff37fee506b80739d4785a10b0c4 -Author: Jan Schatteman -Date: Fri Apr 14 17:07:27 2023 +0200 - - HHH-16438 - Add test for issue where left outer joins do not work with single table polymorphic entities because of the discriminator in the where clause - - Signed-off-by: Jan Schatteman - -commit 0674300d87c30a5719a0b6f1d31474e982ea8180 -Author: Gavin -Date: Tue Apr 18 14:17:39 2023 +0200 - - fix outdated section of user guide relating to Dialects - -commit 19da8f3e7ccc82a320a2f4dc5753c85306618106 -Author: Christian Beikov -Date: Mon Apr 17 14:18:42 2023 +0200 - - HHH-16468 Simplify embeddable key handling - -commit d95b800d15d0c0fb7b03a36298bdbd4f046628d1 -Author: Andrea Boriero -Date: Tue Apr 11 16:14:52 2023 +0200 - - HHH-16468 Don't create fetch for _identifierMapper anymore - -commit 9a12cae280a5da90f8d4e6df91bcb3d30cb23d87 -Author: Christian Beikov -Date: Tue Apr 11 13:33:26 2023 +0200 - - HHH-16468 Don't create fetch for _identifierMapper anymore - -commit cb413fe134d81acc75742af8fe1dba64f2b4b100 -Author: Gavin -Date: Sun Apr 16 13:35:40 2023 +0200 - - squash 3 warnings by adding wildcard - -commit 61696189f58be0ac99dc23c5ab166108d1df23fb -Author: Gavin -Date: Sat Apr 15 16:19:36 2023 +0200 - - minor changes - -commit 98f8e7ecfa76193fe3948b03fbb74a81e3cbf74c -Author: Marco Belladelli -Date: Fri Apr 7 10:15:28 2023 +0200 - - Fix fragile tests - -commit 83478f5cf6631fc56f72ccc2d2bbd5b3d0ac5aed -Author: Marco Belladelli -Date: Fri Apr 14 11:45:50 2023 +0200 - - Fix GenerateDescriptorTask - -commit a034550bc24f774438364e7e919ef0042fb9dea2 -Author: Marco Belladelli -Date: Fri Apr 14 11:22:59 2023 +0200 - - Make ReleaseFamilyIdentifier serializable - -commit 787eaf5f606bd25f2aa393db45ac3643c099915f -Author: Marco Belladelli -Date: Wed Mar 29 12:43:06 2023 +0200 - - HHH-16349 Correct entity valued path selectable expansion - -commit 54619fd536dcc73bbdb7df5961d4325a7e850984 -Author: Marco Belladelli -Date: Wed Mar 29 12:33:35 2023 +0200 - - HHH-16349 Add test for issue - -commit a69dec8ecf3dd3b38f7fb3032cf7babbba060989 -Author: Marco Belladelli -Date: Wed Apr 12 16:24:49 2023 +0200 - - HHH-16459 Fix inline dirty checking with generics and inheritance - -commit 634d590e72a218c4c2b1e86adae82614974ee447 -Author: Yoann Rodière -Date: Wed Apr 12 11:34:49 2023 +0200 - - HHH-16459 Test bytecode-enhanced inline dirty tracking for generic associations from mapped superclasses - -commit 33ed78df5befff243eb8d71b417da0b5ea9783b9 -Author: Yoann Rodière -Date: Wed Apr 12 11:03:14 2023 +0200 - - HHH-16459 Expand existing test of generic associations to ToOne associations - -commit 81d1d95e4cb340b32bbe6b9dd15920778ba25fba -Author: Jan Schatteman -Date: Thu Apr 13 22:53:44 2023 +0200 - - Add @EmbeddableInstantiator, @EmbeddableInstantiatorRegistration and @EmbeddableInstantiatorRegistrations to the annotations chapter of the user guide - - Signed-off-by: Jan Schatteman - -commit 2fd6f548e4f935520f85ac85b9f962858077790e -Author: Gavin -Date: Thu Apr 13 18:38:35 2023 +0200 - - minor cleanups following from HR review - -commit a4d7b0df674ac39d5c467cf6bb44a9e9cfb6d201 -Author: Sanne Grinovero -Date: Wed Apr 12 11:42:57 2023 +0100 - - HHH-16460 Upgrade to Jandex 3.1.1 - -commit 8f5d5fd14cd88e2dbab99bab1532b1ee2516e917 -Author: Gavin -Date: Thu Apr 13 14:29:18 2023 +0200 - - make some methods protected for the benefit of HR - - misc minor changes - -commit 577b6b1403a120019f4a090482ad5f314262f72e -Author: Gavin -Date: Thu Apr 13 12:09:49 2023 +0200 - - clean up GraphSemantic - -commit 0b54c1d0838ca50a1f28ffc60583e3775c790576 -Author: Andrea Boriero -Date: Wed Apr 12 10:10:01 2023 +0200 - - HHH-16394 Statement Batch + Version + Dirty Collection leads to OptimisticLockException: Batch update returned unexpected row count from update - -commit b2f2547d3c16f0478e3c9fec89af8c8c7193b1c6 -Author: Andrea Boriero -Date: Wed Apr 12 10:08:19 2023 +0200 - - HHH-16394 Add test for issue - -commit c498bf376d27072884eeef41cab224ec86a602ad -Author: Andrea Boriero -Date: Wed Apr 5 10:15:08 2023 +0200 - - HHH-16387 Entity in key not returned when querying - -commit cceac9bda3a45addc2a7515b5850259aacdb2852 -Author: Andrea Boriero -Date: Fri Mar 31 16:11:03 2023 +0200 - - HHH-16387 Add test for issue - -commit 8415ffefda07ec00d2abc5499f03c9680146462e -Author: Gavin -Date: Wed Apr 12 16:07:33 2023 +0200 - - minor code changes to SessionImpl and supertype - -commit e5c9b2a865154add2efe4fa5c1623b27687ab734 -Author: Gavin -Date: Wed Apr 5 21:45:58 2023 +0200 - - test for trunc() with timezone offset - -commit a6f355a78cfa87eee64e3631d0f8198406426ffc -Author: Gavin -Date: Thu Apr 6 23:50:22 2023 +0200 - - add a space - -commit 969eb9fb5a7624295a85ea29a6183e9ebf1320f2 -Author: Gavin -Date: Thu Apr 6 23:49:57 2023 +0200 - - fix some slightly misleading javadoc about the @Where annotation - -commit 176978cc429775019e8561e573f67044bdcdbe45 -Author: Gavin -Date: Tue Apr 11 17:39:10 2023 +0200 - - add toString()s to DialectResolutionInfo - - to fix an ugly log message - -commit dd370313f2ca420638c829e4f94919a953fc8a47 -Author: Gavin -Date: Tue Apr 11 16:23:20 2023 +0200 - - add test showing how to use gen_random_uuid() on postgres - -commit c70d9853c7ac9499ff511f10604ebfe4a23d128b -Author: Gavin -Date: Tue Apr 11 15:39:59 2023 +0200 - - clarify some logic around @GeneratedValue - -commit 91eb9e1f2065f093decaa192d5c1f7d6a18764ee -Author: Gavin -Date: Tue Apr 11 08:45:25 2023 +0200 - - clean up SequenceStyleGenerator + StandardOptimizerDescriptor - -commit b682a1036c3e6939a493db47edf86558f910fff8 -Author: Gavin -Date: Mon Apr 10 16:05:15 2023 +0200 - - improve javadoc fo @Subselect - -commit 86d924787d4764f9fd0acdc71fe33ab9f8e2db7e -Author: Gavin -Date: Mon Apr 10 16:03:28 2023 +0200 - - whitespace changes - -commit 7bfab04e63c06504620ef4411a0e626363bccbc2 -Author: Gavin -Date: Mon Apr 10 11:43:56 2023 +0200 - - expose some methods for HR - -commit af256607206851a171013187aad0d71c9c2f1329 -Author: Gavin -Date: Mon Apr 10 01:43:15 2023 +0200 - - expose some methods of EntityDeleteAction to HR - -commit 49fb2dce8a372fb2d7b412e5acf7041b7c3a024b -Author: Gavin -Date: Mon Apr 10 01:42:53 2023 +0200 - - misc cleanups to default events listeners - -commit bd57af6d9798b304a2fb0ef5d3325cc63765f2e7 -Author: Gavin -Date: Sun Apr 9 18:41:58 2023 +0200 - - HHH-16449 accept underscores in HQL integer and long literals - -commit 34f05d183a96234c5a7d3f9558503f71b14474cf -Author: Gavin -Date: Sun Apr 9 17:00:17 2023 +0200 - - cast DateTimes to Instants and vice versa - -commit 77b96a6b4b97a8cf59493df676d4e05c67703a66 -Author: Gavin -Date: Sun Apr 9 16:41:27 2023 +0200 - - cast integers to Durations - -commit 511399c152d4b1ee0a18b15ddf952441a0a34012 -Author: Gavin -Date: Sun Apr 9 19:32:59 2023 +0200 - - update the docs to reflect the new @SQL annotations - -commit d34a0899a24a53bf895e88e49b586a92a4b89561 -Author: Gavin -Date: Sat Apr 8 18:05:46 2023 +0200 - - add a hyphen - -commit 559c325759bc6b0a0a4f779054cdbcaecd62dd4c -Author: Gavin -Date: Sat Apr 8 11:52:45 2023 +0200 - - add @DialectOverride.SQLSelect - -commit adffa890b161b31f696cb7d23366397d69bd27a4 -Author: Gavin -Date: Sat Apr 8 00:08:30 2023 +0200 - - HHH-16163 replace @OrderBy and @Where by @SQLOrder and @SQLRestriction - -commit 7b8cd1405248aa50237110a74d2909a417cef9d9 -Author: Gavin -Date: Sat Apr 8 01:43:08 2023 +0200 - - HHH-16163 update tests to use new annotations - -commit e6c8fbc7af18848551957dd70a4bdc9bb703c16b -Author: Davide D'Alto -Date: Thu Apr 6 10:29:23 2023 +0100 - - HHH-16443 Convert SqlStatementLogger into a Service - - This way is possible to get the logger without having - to initialize the JdbcServices service. - - Without this change, in Hibernate Reactive, we have a cyclic - dependency during the initialization of the services between - JdbcEnvironment and JdbcServices. - -commit 07a9cee9233ded931b007db7535f7ef912ea302a -Author: Gavin -Date: Sat Apr 8 03:09:32 2023 +0200 - - fix inconsistently-formatted log message - -commit e5545492cc79fe197ad209726f59016c375d3a70 -Author: Gavin -Date: Fri Apr 7 23:28:05 2023 +0200 - - proper logging and documentation for semi-deprecation of 'hibernate.dialect' - - and code cleanup - -commit d8c300dcf13b385cd02f90a4aca2ac3bb7fd41b2 -Author: Gavin -Date: Fri Apr 7 12:26:35 2023 +0200 - - add two missing keywords to the list of "soft" keywords - -commit 5902d0b4db14a49bee7c21f4fc7acc034610d543 -Author: Andrea Boriero -Date: Mon Apr 3 21:49:48 2023 +0200 - - HHH-16429 WF SessionFactoryTestCase test fails - -commit 543226087f0a0eda7ae14a45ababa81f6efb604d -Author: Gavin King -Date: Tue Feb 21 12:49:15 2023 +0100 - - add a test for round-tripping Instant - -commit 53f752d138050f7704673c29fdf87bce851708e2 -Author: Jan Schatteman -Date: Thu Apr 6 17:30:53 2023 +0200 - - Remove some unnecessary code duplications in AbstractSelectionQuery and AbstractQuery - - Signed-off-by: Jan Schatteman - -commit 1de4a760080c08a6ba7da7d2fa423d0f906458d3 -Author: Davide D'Alto -Date: Thu Apr 6 11:19:56 2023 +0100 - - HHH-16444 When logging the selected dialect, log the db version too - - The db version used by the dialect makes a huge different on the - sql queries used. - - The log before this commit: - ``` - INFO SQL dialect [vert.x-worker-thread-0] HHH000400: Using dialect: org.hibernate.dialect.MariaDBDialect - ``` - - The log after this commit: - ``` - INFO SQL dialect [vert.x-worker-thread-0] HHH000400: Using dialect: org.hibernate.dialect.MariaDBDialect, version: 10.11 - ``` - - I've also updated the HANADialectTestCase because now the error message - contains the db version - -commit 4eef64f81efe262733cdf5f48702165636d2f86f -Author: Jan Schatteman -Date: Thu Apr 6 00:47:43 2023 +0200 - - HHH-16435 - Fix for issue (combine filterpredicates with potential already existing ones) - - Signed-off-by: Jan Schatteman - -commit 7f6b054a14bb2d6390a607e76af7d5c349a5ede2 -Author: Jan Schatteman -Date: Wed Apr 5 21:42:08 2023 +0200 - - HHH-16435 - Added test for issue - - Signed-off-by: Jan Schatteman - -commit 1b2107e7b476b033266cad9fa022ed566da6b14c -Author: Gavin -Date: Thu Apr 6 10:56:19 2023 +0200 - - make a code comment even clearer b/c apparently some don't get it - -commit 2927c006b213d717d1929b39564fb95d76ba4822 -Author: Gavin -Date: Thu Apr 6 01:33:13 2023 +0200 - - allow @UuidGenerator to be applied to a non-@Id field - -commit 783da2a906d5e20d4d1c9708c0cf2c2db54df8a5 -Author: Christian Beikov -Date: Wed Apr 5 13:59:39 2023 +0200 - - HHH-16389 Introduce checkerframework for nullness marking/checking and null check the JPA metamodel generator - -commit 169757d5b156ed809da10d68225dd336dd05f9b9 -Author: Marco Belladelli -Date: Fri Mar 24 10:15:33 2023 +0100 - - HHH-16340 Avoid checking discriminator duplication when not insertable - -commit 814cddfeb4e9d7f8745699626591a0d2ab379d6e -Author: Marco Belladelli -Date: Fri Mar 24 10:10:16 2023 +0100 - - HHH-16340 Add test for issue - -commit 7452319807bca352c29554b4f8c5cd638322e9b7 -Author: Jan Schatteman -Date: Wed Apr 5 14:22:57 2023 +0200 - - HHH-16418 - Improve error message - - Co-authored-by: Christian Beikov - -commit 76ea320cdb3016511fff724be39ca2fe075197dd -Author: Jan Schatteman -Date: Tue Apr 4 14:27:46 2023 +0200 - - HHH-16418 - Added test and improvement for issue - - Signed-off-by: Jan Schatteman - -commit 9884afe78b01e4b5634d9e523bd07135aefd21f4 -Author: Yoann Rodière -Date: Thu Mar 30 17:38:58 2023 +0200 - - HHH-16403 Avoid unnecessary wrapping for exceptions/errors thrown by getters/setters - -commit 01b0ff7940c7eea15cba8aa60f2a75b59d3acea8 -Author: Yoann Rodière -Date: Thu Mar 30 17:33:44 2023 +0200 - - HHH-16403 Upgrade to assertj 3.22.0 - -commit 0bf50ae3f55ff7791e9c787a9fd8288a89361d28 -Author: Gavin -Date: Wed Apr 5 13:27:39 2023 +0200 - - improve tests for truncate(datetime) function - -commit e38b85ea86ac53dd6578256e675be6d6bce0461d -Author: Sanne Grinovero -Date: Mon Apr 3 22:30:20 2023 +0100 - - Retained memory analysis: ReflectHelper#JAVA_CONSTANT_PATTERN - -commit 2ab56b3ece7706bd456663726b16063c6d9c72e6 -Author: Sanne Grinovero -Date: Mon Apr 3 22:21:33 2023 +0100 - - Retained memory analysis: remove unused field JdbcTypeNameMapper#JDBC_TYPE_NAME_MAP - -commit a5315c7e506a17bb1c72b3e33dd5f4051287bc35 -Author: Sanne Grinovero -Date: Mon Apr 3 17:07:55 2023 +0100 - - HHH-16430 Small optimisation in Dialect initializations - -commit 845e9770d5e79fe18cbbe18cef4f3e22dca3e634 -Author: Sanne Grinovero -Date: Mon Apr 3 17:02:23 2023 +0100 - - HHH-16430 Avoid AnsiSqlKeywords to retain all keywords as static constants - -commit ca3e69a4f65c0b96fbde8d9339a0ec0ebf9cf40e -Author: Sanne Grinovero -Date: Mon Apr 3 16:56:59 2023 +0100 - - HHH-16430 Strictly define ansiSQL2003 as lowercase - -commit 049a25aa665dde5023eb49a3e5095358571fa005 -Author: Sanne Grinovero -Date: Mon Apr 3 15:24:27 2023 +0100 - - HHH-16430 Simplify construction of set of ansiSQL2003 keywords - -commit 8e1247c9098c20827885ca65cf58023601303ed2 -Author: Steve Ebersole -Date: Mon Apr 3 19:54:24 2023 -0500 - - HHH-16012 - Develop an abstraction for domain model Class refs - -commit 3092eed9b01a6d334fa7959bc7a792315eb91b87 -Author: Jan Schatteman -Date: Fri Mar 31 23:12:12 2023 +0200 - - Contribute a query class diagram - - Signed-off-by: Jan Schatteman - -commit f6e3a56b8e1c9f93330fc18447ea24a845f140d7 -Author: Andreas Asplund -Date: Sat Apr 1 10:39:24 2023 +0200 - - HHH-16413 Add test for issue - -commit 288242a10fb8bc8f3b9bf689db4e12f952d6f043 -Author: Marco Belladelli -Date: Fri Mar 31 20:29:02 2023 +0200 - - HHH-16414 Improve TableGroup resolution for get or create - -commit bc31a9532a1e177d9e0df5f267bc492fd57ffd6e -Author: Marco Belladelli -Date: Fri Mar 31 16:38:45 2023 +0200 - - Fix failing tests on CockroachDB and Oracle 11 - -commit 4b8167c7fd811944db87aa07aba4364c390bdf0b -Author: Steve Ebersole -Date: Sat Apr 1 09:33:34 2023 -0500 - - PublishMigrationGuide task - -commit 9991b9d32c03ea2e4c80427b96737584f3a1a603 -Author: Jan Schatteman -Date: Wed Mar 29 19:46:57 2023 +0200 - - HHH-16406 - Fix error in PaginationTest for Sybase - - Signed-off-by: Jan Schatteman - -commit 7db9bc83c15f94dd2389d300687321a3e6437186 -Author: Steve Ebersole -Date: Thu Mar 30 11:46:31 2023 -0500 - - HHH-16407 - EntityPersister and CollectionPersister deprecations - -commit 6b8efd01fac21ce345fd14629de283d0a5ff0cf8 -Author: Andrea Boriero -Date: Mon Mar 27 15:44:15 2023 +0200 - - HHH-16368 UnsupportedOperationException: compare() not implemented for EntityType - -commit fb174d19c7fd41e597af0664a6a10ed8d28b843b -Author: Andrea Boriero -Date: Wed Mar 29 16:43:48 2023 +0200 - - HHH-16396 HQL with SubQuery having same alias of root Query generates wrong SQL - -commit b26d8765c22e21b230135123d1685c9c47979fc0 -Author: Jan Schatteman -Date: Wed Mar 29 19:46:57 2023 +0200 - - HHH-16384 - Fix NPE in AbstractSelectionQuery.setFirstResult - Included check for that in PaginationTest - Moved PaginationTest to Junit5 - - Signed-off-by: Jan Schatteman - -commit 40f22e482f38fe783fa2e189f7e9003dd15b1896 -Author: Andrea Boriero -Date: Mon Mar 27 12:00:51 2023 +0200 - - HHH-16218 Natural id cache is extremely slow for entities with compound natural id - -commit c5897db95490c94c1bb9b377e06f9820394903f7 -Author: Sylvain Dusart -Date: Wed Feb 22 17:45:05 2023 +0100 - - HHH-16218 Natural id cache is extremely slow for entities with compound natural id - -commit 201f10db026e4d82f9c59dbb4741023f4bacb6e6 -Author: Marco Belladelli -Date: Thu Mar 9 10:36:44 2023 +0100 - - HHH-16241 Add relational java type to SqmExpressible for function argument validation - -commit bf9f3488f2099eb0abe036986d763b53e2bd7198 -Author: Marco Belladelli -Date: Wed Mar 8 15:24:12 2023 +0100 - - HHH-16241 Add test for issue - -commit b4a306e3e40b563a870dbbeec398604cd87bc101 -Author: Christian Beikov -Date: Sat Mar 25 15:30:45 2023 +0100 - - HHH-16372 Fix NPEs in some Bindable implementations that operate on values - -commit 51660d1784b4374ff5b13e0c241634a79969d9bb -Author: Christian Beikov -Date: Fri Mar 24 19:05:57 2023 +0100 - - HHH-16359 Make attributes non-optional which have only non-nullable columns - -commit 80065dabdfd16bab840c9463c6892329334e74df -Author: Christian Beikov -Date: Thu Mar 23 18:54:35 2023 +0100 - - HHH-16358 Make OneToMany with abstract TABLE_PER_CLASS element work again - -commit a35234a1495d62a73d78a0e9d39ad745fc856259 -Author: Christian Beikov -Date: Thu Mar 30 17:32:51 2023 +0200 - - HHH-16388 Treat wrapper arrays with @Lob like the legacy mapping would - -commit b5220ff9297385ce63ec3e1d00d242e308fe6cab -Author: Christian Beikov -Date: Thu Mar 30 10:36:48 2023 +0200 - - HHH-16388 - Configuration setting for wrapper Byte[]/Character[] treatment - -commit f209423797d000ce3111d7f7de3e084d2dbbf0af -Author: Steve Ebersole -Date: Tue Mar 28 19:02:36 2023 -0500 - - HHH-16388 - Configuration setting for wrapper Byte[]/Character[] treatment - -commit e54b4dee545a41c6f3a8da54a425056f917eeed6 -Author: Yoann Rodière -Date: Thu Mar 30 17:04:34 2023 +0200 - - HHH-16400 Avoid reflection for calls to StackWalker - -commit 31f1a30c7d75002fcb38ae199751fd707a27a140 -Author: Christian Beikov -Date: Thu Mar 30 15:43:30 2023 +0200 - - Fix issues with nightly tests - -commit bddfa7c5c65ae1a650b62c53b37dc5ff5d8f9cdd -Author: Marco Belladelli -Date: Mon Mar 27 13:29:10 2023 +0200 - - HHH-16350 Pass correct state to pre-load events - -commit ab91f08ad886dec05d7ce6223a243f9234551e2f -Author: Marco Belladelli -Date: Mon Mar 27 13:28:26 2023 +0200 - - HHH-16350 Add test for issue - -commit 9b7e4d7cfa51601f8eabcf02231d1953078469df -Author: Christian Beikov -Date: Thu Mar 30 13:35:31 2023 +0200 - - HHH-16402 Fix default window frame mode to be RANGE instead of ROWS - -commit e1d926356f7a0d3613c5006391b7c643912f3926 -Author: Christian Beikov -Date: Thu Mar 30 14:26:23 2023 +0200 - - HHH-16404 SkipFirstLimitHandler calls insertAfterSelect with parameter in wrong order - -commit 8f6260fa5edd41ea1a269f2bcf3cb3edeb11436c -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Mon Mar 27 06:03:23 2023 +0000 - - Bump com.gradle.enterprise from 3.12.4 to 3.12.6 - - Bumps com.gradle.enterprise from 3.12.4 to 3.12.6. - - --- - updated-dependencies: - - dependency-name: com.gradle.enterprise - dependency-type: direct:production - update-type: version-update:semver-patch - ... - - Signed-off-by: dependabot[bot] - -commit dc87f4bf187221b75bee9aae256e9ee6383642d5 -Author: Marco Belladelli -Date: Mon Mar 27 15:54:14 2023 +0200 - - HHH-16378 Handle non-embeddable generic attribute paths - -commit b703f23a928a344b886cb66cae54b832852f2d3a -Author: Yoann Rodière -Date: Mon Mar 27 12:01:59 2023 +0200 - - HHH-16378 Add test for issue - -commit 107b6e495b65215a8fc36da694783857c9d8ca5f -Author: Yoann Rodière -Date: Mon Mar 27 16:15:32 2023 +0200 - - HHH-16255 Avoid confusing logs "Executing import script" - - 1. Only log this when we're actually executing the script, i.e. when - the target is the database. - 2. Log "Executing script" rather than "Executing import script" since - sometimes we're executing a drop script - ("jakarta.persistence.schema-generation.drop-script-source"). - -commit 943fd55ba25f535332731853b603b9df2e3b99d6 -Author: Yoann Rodière -Date: Mon Mar 27 15:57:32 2023 +0200 - - HHH-16255 De-duplicate a few methods from SchemaCreatorImpl/SchemaDropperImpl/SchemaTruncatorImpl - -commit d99889359d39d15cfcfb20a6bb61d927938cdcd7 -Author: Davide D'Alto -Date: Thu Mar 30 10:35:21 2023 +0200 - - HHH-16399 Minor refactoring - -commit 6cdef8beab8909ee5cbf47991f4f41893721ae99 -Author: Davide D'Alto -Date: Thu Mar 30 10:33:25 2023 +0200 - - HHH-16399 Recognize ConstraintViolationException form errorCode in MSSQL - - This is for Hibernate Reactive. - - Hibernate ORM recognizes the error because, when it comes from the JDBC driver, - it's an instance of `java.sql.SQLIntegrityConstraintViolationException`. - -commit 715a12ba7eaf8fe56e6bc591d5e9fa0655a3d16a -Author: Marco Belladelli -Date: Wed Mar 22 16:46:46 2023 +0100 - - HHH-16305 Skip checking JavaObjectType function arguments - -commit 3942961eebf9ce0486d2924bfb484be240b4e7bd -Author: Marco Belladelli -Date: Wed Mar 22 11:28:18 2023 +0100 - - HHH-16305 Add test for issue - -commit c9640c2ee3fa1007ea0233db9e516d8e9ea5d97f -Author: Andrea Boriero -Date: Mon Mar 27 12:06:41 2023 +0200 - - HHH-16281 Inconsistent Behaivor of L2 cache between Hibernate 5 and 6 - -commit 52e95aec462a35abc27f01284bcc879f264706e5 -Author: Steve Ebersole -Date: Tue Mar 28 16:28:04 2023 -0500 - - HHH-16391 - Incorrect mutability-plan resolution for converted collection-as-basic mappings - -commit 53b3ea6b3b8b5c65e0e076a5f6a2702ec56e353c -Author: Andrea Boriero -Date: Tue Mar 28 12:39:11 2023 +0200 - - HHH-16272 Hibernate 6 fails to refresh when collections are accessed in entity setter method when access type is property - -commit 8c9497b63ac7c617d2d3d317d422908edf861e04 -Author: Andrea Boriero -Date: Tue Mar 28 10:10:21 2023 +0200 - - HHH-16272 Add test for issue - -commit be10b32b94935bc6993a39faeccd1ff480939223 -Author: Marco Belladelli -Date: Tue Mar 28 09:01:49 2023 +0200 - - HHH-16390 - Execution of non-batched statements do not force execution of current batch - HHH-16319 - test - -commit a9f51a3eaebe288fee2b66c73ee8a8bbaf1b2e8d -Author: Steve Ebersole -Date: Tue Mar 28 14:15:49 2023 -0500 - - oracle test fix up - -commit 1b86b2228c9f9f47c5629e1477d5a75b41c9ccd3 -Author: Jan Schatteman -Date: Mon Mar 27 16:49:56 2023 +0200 - - HHH-16386 - Disable batching for dynamic-insert and dynamic-update - - Signed-off-by: Jan Schatteman - -commit 0455e2d67682ade2a2d22b0a9928cc12f2b505f9 -Author: Steve Ebersole -Date: Tue Mar 21 14:46:49 2023 -0500 - - HHH-16339 - Unify entity and any discriminator handling - -commit 055aeba6b9e7ff57b8506b2afec60ddd4666141f -Author: Marco Belladelli -Date: Mon Mar 27 13:27:12 2023 +0200 - - HHH-16380 Avoid metamodel access when instantiating entity instances - -commit c2a3bd3b485b46faadbfedf59e07d57dc6f06f3e -Author: Jan Schatteman -Date: Tue Mar 7 23:35:03 2023 +0100 - - HHH-16249 - Add test for issue - Disable batching in a stateless session when no transaction is active - - Signed-off-by: Jan Schatteman - -commit 943c2210dde2bf5d120721fa9e5944036d031a19 -Author: Marco Belladelli -Date: Thu Mar 23 17:35:17 2023 +0100 - - HHH-16274 Fix sorting of DependantValue's properties - -commit 0a8cf3f6bfc59ef5c8b5a7a9fcdd1f8f8e76111c -Author: Marco Belladelli -Date: Thu Mar 23 16:38:06 2023 +0100 - - HHH-16274 Add test for issue - -commit a367da6d096070160992f944d0a7df067c9a6ded -Author: Andrea Boriero -Date: Wed Mar 22 10:59:49 2023 +0100 - - HHH-16334 Persist and load an entity with an all-delete-orphan collection null - -commit 79c34b97d31796e1ff246fda4134b8f633d07b97 -Author: Andrea Boriero -Date: Tue Mar 21 17:09:00 2023 +0100 - - HHH-16334 Add test for issue - -commit 973437cecae0affc23bbd871ca8dd37a943cd2a0 -Author: Andrea Boriero -Date: Tue Mar 14 19:04:40 2023 +0100 - - HHH-16281 Inconsistent Behaivor of L2 cache between Hibernate 5 and 6 - -commit 76de84e7c67d1c5a80e48a600cf7e88f89fef78a -Author: Andrea Boriero -Date: Tue Mar 14 19:03:58 2023 +0100 - - HHH-16281 Add test for issue - -commit 9e59e5f23cd0608d39e85ce4d651f796008c517e -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Mon Mar 20 06:00:43 2023 +0000 - - Bump com.gradle.common-custom-user-data-gradle-plugin from 1.9 to 1.10 - - Bumps com.gradle.common-custom-user-data-gradle-plugin from 1.9 to 1.10. - - --- - updated-dependencies: - - dependency-name: com.gradle.common-custom-user-data-gradle-plugin - dependency-type: direct:production - update-type: version-update:semver-minor - ... - - Signed-off-by: dependabot[bot] - -commit 6f3feca7f4149fdcb9fd292f7cb81ea67bb50d30 -Author: Andrea Boriero -Date: Mon Mar 20 14:52:52 2023 +0100 - - HHH-16337 Bytecode enhancement : ElementCollection is not deleted when replaced - -commit 570ccae476aab2a9f5a23eb7f55b5cc72153e99b -Author: Andrea Boriero -Date: Mon Jan 30 17:34:42 2023 +0100 - - HHH-16097 Move all tests from documentation into hibernate-core - -commit 07e0a7aaa432fc017e5aaf378491eff5446ebd54 -Author: Davide D'Alto -Date: Wed Mar 22 16:26:12 2023 +0100 - - HHH-16353 Convert comments to Javadoc for Hibernate Reactive - - So they get moved with any refactoring - -commit f28933a0cc9e9be89d1852774854bd7bab6fbb1c -Author: Davide D'Alto -Date: Wed Mar 22 16:09:46 2023 +0100 - - HHH-16353 Make it possible for Hibernate Reactive to override the creation of AttributeMapping and Fetch strategies - -commit 7028c614e0d534c847b071801f3b3d2f1bccc4aa -Author: Marco Belladelli -Date: Thu Mar 16 17:40:05 2023 +0100 - - HHH-16248 Check referenced model part declaring type when batch fetching associations - -commit fdee401f0993e709a583edfc763826ed19b7a475 -Author: Marco Belladelli -Date: Thu Mar 16 17:39:45 2023 +0100 - - HHH-16248 Add test for issue - -commit bee9ea6ae0764c2da500081bc77c3cbe67d18916 -Author: Marco Belladelli -Date: Thu Mar 23 10:34:22 2023 +0100 - - HHH-16355 Fix check for binding inverse many to many foreign key - -commit 01ce5c63f06b182f0a46c6456e321c8f820bfaf7 -Author: Marco Belladelli -Date: Wed Mar 22 17:45:33 2023 +0100 - - HHH-16355 Add test for issue - -commit eb9e16c83fdd92b1284e03e9527224cf367cd16f -Author: Christian Beikov -Date: Wed Mar 22 21:36:45 2023 +0100 - - HHH-16317 Don't use InstantAsTimestampWithTimeZoneJdbcType for PG-JDBC and MSSQL due to a bug - -commit 41bec6d5f9bbc8ec60fa4e88c9ce0d68f1345328 -Author: Christian Beikov -Date: Fri Mar 17 10:08:20 2023 +0100 - - HHH-16287 Consider hibernate.timezone.default_storage for OffsetTime typing and storage - -commit 30943e12147e71448d338dec6e14837ce8d7f265 -Author: Christian Beikov -Date: Mon Mar 20 17:35:38 2023 +0100 - - HHH-16189 Skip test for H2 1.x due to a H2 issue - -commit a4bcc4240bb7fae4816ac40b4b51d00d8c9dc678 -Author: Christian Beikov -Date: Mon Mar 20 17:31:53 2023 +0100 - - HHH-16311 - Fix HANA test issues - -commit 64d139325acad118683450201a259146d87ec42b -Author: Christian Beikov -Date: Thu Mar 23 10:29:38 2023 +0100 - - HHH-16333 Get rid of special Character[] and Byte[] handling - -commit eeccc9c99df57306c96f64a8ac84c64c62aac6c8 -Author: Davide D'Alto -Date: Tue Mar 21 16:08:41 2023 +0100 - - HHH-16346 Relax scopes for TableBased*Handler - - So that Hibernate Reactive can create a custom LocalTemporaryTableStrategy - -commit 3598ee25a9de00ace28071a959841b80e63d768d -Author: Christian Beikov -Date: Wed Mar 22 18:07:44 2023 +0100 - - HHH-16280 Fix Jackson XML mapper support for Oracle Array data types - -commit ef874b22683e744fa2ab0dbf6994a69e685251ad -Author: Christian Beikov -Date: Wed Mar 22 18:03:48 2023 +0100 - - HHH-16348 Re-add JdbcOperationQuery#getAppliedParameters for query extensions - -commit 195cbdb342b8cfeb57c28a4b8416d8463ffc3b03 -Author: Christian Beikov -Date: Wed Mar 22 17:31:59 2023 +0100 - - HHH-16348 Re-add JdbcOperationQuery#getAppliedParameters for query extensions - -commit e632981e4b3e38174f9ed13cdd28804af4265e9b -Author: Christian Beikov -Date: Wed Mar 22 10:08:33 2023 +0100 - - HHH-16333 Get rid of special Character[] and Byte[] handling - -commit 0b68a36f8b628ef483698d1987a93432dc6f9d3a -Author: Christian Beikov -Date: Fri Mar 17 11:52:02 2023 +0100 - - HHH-16333 Handle converters properly in BasicPluralType - -commit 87e378a9a43377c957df6bd40b2e2ca62f3f16d0 -Author: Christian Beikov -Date: Wed Mar 22 10:07:23 2023 +0100 - - Respect precision for VM generated temporal values - -commit 892976187b5cc655ea15dbde0921f77e5ac8f5a1 -Author: Marco Belladelli -Date: Mon Mar 20 11:07:10 2023 +0100 - - HHH-16336 Allow same table and subtypes in mappedBy check - -commit 15873c17fb7bd03e2579d8e3b6ab800734c21545 -Author: Jan Schatteman -Date: Fri Mar 17 21:49:14 2023 +0100 - - HHH-16295 - trivial correction in JdbcUpdateMutation - - Signed-off-by: Jan Schatteman - -commit 6d968dc0ef36c563254f97911f2bcd5f96b4df62 -Author: Steve Ebersole -Date: Fri Mar 17 14:36:42 2023 -0500 - - HHH-15108 - tweak to not ignore exceptions in AggregateClassLoader.findClass() - -commit 26a173ff8e333863f9c7ec77c19775c9a3d973ca -Author: Jan Schatteman -Date: Thu Mar 16 22:08:49 2023 +0100 - - HHH-15108 - tweak to not ignore exceptions in AggregateClassLoader.findClass() - - Signed-off-by: Jan Schatteman - -commit c6fa754f06ba5a4a125ec77681ead42f8cac3bed -Author: Marco Belladelli -Date: Fri Mar 10 14:37:23 2023 +0100 - - HHH-16280 Fix JacksonXmlFormatMapper handling of array data types - -commit e6759627792396ffc376675d8f536d305c699090 -Author: Steve Ebersole -Date: Tue Mar 14 09:14:08 2023 -0500 - - HHH-16311 - Migrate away from UserType for enum handling - -commit bcb50d10528f530ea71f7465f7e43267cae071cb -Author: Andrea Boriero -Date: Thu Mar 16 16:41:36 2023 +0100 - - HHH-16322 Merge of entities having a collection with orphanRemoval true fails when bytecode enhancement is enabled - -commit cdada7a916c1800961d22966e4ba65168be19c09 -Author: Marco Belladelli -Date: Wed Mar 15 11:40:51 2023 +0100 - - HHH-16313 HHH-16313 Check mappedBy type when binding entity associations - -commit 83894d39ab704305e64c27d584c092fd93989581 -Author: Marco Belladelli -Date: Wed Mar 15 11:40:40 2023 +0100 - - HHH-16313 Add test for issue - -commit bc582290a064ff4b4d3ae6ffe25efdcb6fb31f3f -Author: Andrea Boriero -Date: Mon Mar 6 12:41:03 2023 +0100 - - HHH-16015 Merge operation throws a NPE: Cannot invoke org.hibernate.property.access.spi.Setter.set(Object, Object) when using CompositeUserType - -commit 7aea8723f24219b515453691d61762b837f819b8 -Author: Andrea Boriero -Date: Mon Mar 6 12:36:16 2023 +0100 - - HHH-16015 Add test for issue - -commit 664b10abc3a40315988d08f2bc534ba234300378 -Author: Andrea Boriero -Date: Mon Mar 13 16:05:17 2023 +0100 - - HHH-16189 Wrong order by and group by generated - -commit 75d1f36dedb32813290715e417a17ab652235034 -Author: Andrea Boriero -Date: Thu Mar 9 16:36:59 2023 +0100 - - HHH-16189 Add test for issue - -commit 42f64f1c2ec843028e8b51388108db9d39af7ad2 -Author: Jan Schatteman -Date: Fri Mar 17 14:36:33 2023 +0100 - - Merge org.hibernate.testing.orm.ExceptionHelper into org.hibernate.internal.util.ExceptionHelper - - Signed-off-by: Jan Schatteman - -commit 575847322d7c992808d20fe5c479ba0ee23d8539 -Author: Marco Belladelli -Date: Fri Mar 17 15:59:57 2023 +0100 - - HHH-16248 Fix h2 json test - -commit 272df3ebe2def7bf1906a6a152ae1ac4741d37ce -Author: Christian Beikov -Date: Fri Mar 17 12:10:41 2023 +0100 - - Remove SelfInterpretingSqmPath and remove some warnings - -commit cf5eafdd1349eb12867f086c06b386a9b5884233 -Author: Sanne Grinovero -Date: Fri Mar 17 09:52:40 2023 +0000 - - HHH-16331 Upgrade to Mockito 5.2 - -commit 46e3c542712c713226dda5c2c9a642e7122ef742 -Author: Marco Belladelli -Date: Wed Mar 15 16:36:20 2023 +0100 - - HHH-16166 Correct Plural and ToOne attribute mapping declaring types - -commit d6b5357c7b103c14d60cd68b2c3759485d8cd596 -Author: Marco Belladelli -Date: Wed Feb 22 14:59:27 2023 +0100 - - HHH-16166 Change subtype property access and deprecate unused method in PersistentClass - -commit 06490876d69480af4741c2ccb986c76c0d212375 -Author: Marco Belladelli -Date: Wed Feb 22 11:26:35 2023 +0100 - - HHH-16166 Add test for issue - -commit 3f029e1ddebb7afc30e5b6d47f9af4b2d3ffdd8a -Author: Marco Belladelli -Date: Fri Mar 10 10:20:46 2023 +0100 - - HHH-13627 Invalidate cache on update for CacheMode GET and IGNORE - -commit af074e2b1d1a7ed601884db45ab0b172b1c6e44b -Author: Marco Belladelli -Date: Thu Mar 9 16:47:19 2023 +0100 - - HHH-13627 Add test for issue - -commit 22c3edc0dc0609b3b7ae892ef9d27d75886b5f9e -Author: Marco Belladelli -Date: Tue Mar 7 17:52:34 2023 +0100 - - HHH-16237 Restore version update group for subtype entities - -commit b385ee578fd4d86056fc9e7b76963c57a4c1164e -Author: Marco Belladelli -Date: Tue Mar 7 16:13:50 2023 +0100 - - HHH-16237 Add test for issue - -commit 5aaf6f75c416ec6323c3162bd4eb5521c46ab423 -Author: Andrea Boriero -Date: Thu Mar 16 11:50:03 2023 +0100 - - HHH-16247 Criteria Query with Object-Typed Embedded Parameter throws AssertionError - -commit 91228ca72c663711f63af747a399c067a6f3a831 -Author: Andrea Boriero -Date: Thu Mar 16 11:44:40 2023 +0100 - - HHH-16247 Add test for issue - -commit e9ba27e88fb6842247b3254be0ec5ded8bbe14ae -Author: Andrea Boriero -Date: Tue Mar 14 13:27:46 2023 +0100 - - HHH-16297 Removing an element from a collection of elements removes the whole collection - -commit b56be6cdabf900c3fa38d82911e98b83c687bfb1 -Author: Davide D'Alto -Date: Sat Mar 11 17:23:08 2023 +0100 - - HHH-16297 Add test for issue - -commit 19619cbcf0eb80dafea1d685036523602a8d6972 -Author: Sanne Grinovero -Date: Fri Mar 17 09:36:28 2023 +0000 - - HHH-16330 Various micro upgrades of Jakarta EE10 APIs and references used by integration tests - -commit c6509af9d2d13c38e662f07eafde2c5618856016 -Author: Sanne Grinovero -Date: Fri Mar 17 09:30:52 2023 +0000 - - HHH-16327 Upgrade to Micrometer 1.10.4 - -commit 5a6be7ba29b2896cf72502a696e0d43a6fe2936b -Author: Sanne Grinovero -Date: Fri Mar 17 09:30:01 2023 +0000 - - HHH-16328 Upgrade to Ehcache 3.10.8 - -commit 7b5b8626917c0a651d7863de31d8240d06ba9002 -Author: Sanne Grinovero -Date: Fri Mar 17 09:29:33 2023 +0000 - - HHH-16329 Upgrade to Mockito 5.1.1 - -commit a9e1cbffc3ce7bce07d1171a44034ed878cb81da -Author: Sanne Grinovero -Date: Fri Mar 17 09:25:08 2023 +0000 - - HHH-16326 Upgrade to JUnit 5.9.2 - -commit f621dcd7e869f97c0ce92a17444de09e9a5f3c4c -Author: Sanne Grinovero -Date: Fri Mar 17 09:22:00 2023 +0000 - - HHH-16325 Upgrade Hibernate Validator to 8.0.0.Final - -commit c3fa3ae777da28deb769dffcae2a3823262bf0ce -Author: Marco Belladelli -Date: Tue Mar 14 12:38:47 2023 +0100 - - HHH-16320 Handle json columns with native ddl type on H2 - -commit 39f4fdda5ebfe8e437930e141e058122d96b68fb -Author: Christian Beikov -Date: Wed Mar 15 20:07:19 2023 +0100 - - HHH-16316 Move version specific dialects of unsupported versions to hibernate-community-dialects - -commit b631b0224ceaa486a210c3a731194d3fc5eb191e -Author: Christian Beikov -Date: Fri Mar 17 10:11:04 2023 +0100 - - HHH-16324 Update JPA TCK to 3.1.2 - -commit faf98a14afe130abbe406561574b147f032f3dd7 -Author: Sanne Grinovero -Date: Thu Mar 16 16:15:59 2023 +0000 - - HHH-16323 Ensure new service ParameterMarkerStrategy can be looked up efficiently - -commit 85f98d21f98dc0cd95504a51549c140bfe172650 -Author: Steve Ebersole -Date: Thu Mar 16 09:07:54 2023 -0500 - - HHH-16132 - Dirty checking for collection-as-basic mappings - -commit 56223d3ebc7f0dda490b9c343191f63b119f47be -Author: Steve Ebersole -Date: Thu Mar 16 08:41:21 2023 -0500 - - HHH-16257 - Add `@JavaServiceLoadable` to document Services or strategies that are loadable as Java services - -commit e72d58161c9609f344b7bd60778479dd55804388 -Author: Steve Ebersole -Date: Thu Mar 16 00:38:26 2023 -0500 - - HHH-16276 - More readable exception for non-compliant @OrderBy expressions - -commit eaeb7f38ae2b5394bf08960a4caa6a0bb5508fee -Author: Steve Ebersole -Date: Wed Mar 15 19:16:17 2023 -0500 - - HHH-16276 - More readable exception for non-compliant @OrderBy expressions - -commit e5aa1413d8bfbf2ab2bc5f5161d2c48d9eab6186 -Author: Steve Ebersole -Date: Tue Mar 14 15:20:38 2023 -0500 - - HHH-16307 - Gradle plugin DSL - -commit 187bf4f5e708988ee65e4bca25122b9a91643ff9 -Author: Réda Housni Alaoui -Date: Thu Jan 26 15:22:36 2023 +0100 - - HHH-15972 entitygraph load error when Inheritance JOINED is used in 6.1.6 - -commit d09640fe369bec354c5cb6b2fdc5cecd832b220d -Author: Yoann Rodière -Date: Tue Mar 14 13:47:47 2023 +0100 - - HHH-16302 Clarify that the JDBC timezone is supposed to match the database timezone - - See https://hibernate.zulipchat.com/#narrow/stream/132094-hibernate-orm-dev/topic/hibernate.2Etimezone.2Edefault_storage/near/341706032 - -commit fa53e6da985207d1466c3801d2514ca2a9750db8 -Author: Yoann Rodière -Date: Tue Mar 14 13:32:55 2023 +0100 - - HHH-16302 Document all TimeZoneStorageType values in reference documentation - -commit 4a8bb326de5f94205aa5a83bf1f640ab4861c9d9 -Author: Yoann Rodière -Date: Tue Mar 14 13:18:06 2023 +0100 - - HHH-16302 Document that TimeZoneStorageType.NORMALIZE normalizes to the JVM timezone, not to hibernate.jdbc.time_zone, upon reading values - -commit a358d1d2d07ebebbff18fa2c758fb51be5ff39dc -Author: Marco Belladelli -Date: Tue Mar 14 12:03:55 2023 +0100 - - HHH-16234 Log identity hash code instead to calling instance.toString() - when resolving entity instance - -commit 343eda7b141ea6245a002f9712adae50f5db7532 -Author: Marco Belladelli -Date: Tue Mar 14 12:03:41 2023 +0100 - - HHH-16234 Add test for issue - -commit 9c1d455c8a0d4d7dff8cfeb9e2d1374b85ce0e81 -Author: Yoann Rodière -Date: Wed Mar 15 10:50:19 2023 +0100 - - HHH-16310 Centralize the detection of multitenancy - -commit 5bff5a383cf3129ccbebd771df6cba88d762ef0b -Author: Yoann Rodière -Date: Wed Mar 15 10:33:26 2023 +0100 - - HHH-16310 Fix retrieval of JDBC metadata when MultiTenantConnectionProvider is set through the service registry builder - - ... as opposed to setting it through settings. - -commit cc8f1f1020bdc20d648a109ed779c5348d68b182 -Author: Yoann Rodière -Date: Wed Mar 15 09:58:38 2023 +0100 - - HHH-16310 Update reference documentation regarding multitenancy - - * Remove mentions of 'hibernate.multiTenancy'. This setting no longer exists. - * Fix a few other inconsistencies. - -commit 615267f61ddf8d30a4646f4c63e9f6ea8504e06c -Author: Marco Belladelli -Date: Mon Mar 13 17:08:02 2023 +0100 - - HHH-16210 Avoid join fetching multiple bag-type collections - -commit 8700f6f93b1bf82e2296632bd35bcdc578b90a53 -Author: Marco Belladelli -Date: Mon Mar 13 13:45:57 2023 +0100 - - HHH-16210 Add test for issue - -commit f8494fa0971701315272b7fd79e40cf582a44e70 -Author: Yoann Rodière -Date: Fri Mar 10 14:03:58 2023 +0100 - - HHH-16279 Test extracting SQL from import.sql containing only comments - -commit 0094616d2da191ff58ec3df2d4478a7593d242e4 -Author: Yoann Rodière -Date: Fri Mar 10 14:13:41 2023 +0100 - - HHH-16279 Allow scripts containing only comments in MultiLineSqlScriptExtractor - -commit cc01f2da3f52631c610786a90a2872173998d25d -Author: Florian Hof -Date: Tue Mar 14 09:30:01 2023 +0100 - - update maven dependency of hibernate-spatial - - the new Maven group is org.hibernate.orm (and so referenced in Spring Boot 3) - -commit a32d741bbcf8e6d8da5b0fbec9312f3d27f7742b -Author: Christian Beikov -Date: Mon Mar 13 11:32:37 2023 +0100 - - HHH-15664 Fix array section in documentation - -commit b276128f56ba6ac16f50a15d69ab326de0450d54 -Author: Steve Ebersole -Date: Mon Mar 13 13:58:25 2023 -0500 - - HHH-16284 - Rename JdbcParameterRender to ParameterMarkerStrategy - -commit f45dcf4c2f604ef2420cdd72a32bcbc521f56ee9 -Author: Steve Ebersole -Date: Mon Mar 13 14:20:40 2023 -0500 - - HHH-16290 - Mark `o.h.persister.entity` and `o.h.persister.collection` as internal - -commit 0000347b03c02a8396108711b9c21426d7070953 -Author: Christian Beikov -Date: Mon Mar 13 10:58:28 2023 +0100 - - Fix issues with too long table/column names for Oracle 11 - -commit 51b683387633b6d71417d0c5af2a3b862c6a79dd -Author: Christian Beikov -Date: Wed Feb 8 16:36:56 2023 +0100 - - HHH-15885 Fix wrong collection fetch element ordering - -commit 44ad64b971779a8adaab1104eb59414de614a989 -Author: Jan Schatteman -Date: Fri Jan 20 18:58:10 2023 +0100 - - HHH-15885 Add test case for issue - - Signed-off-by: Jan Schatteman - -commit 06e24bd42054085403d57dc32f48d4f3ca6da35f -Author: Davide D'Alto -Date: Fri Mar 10 17:43:22 2023 +0100 - - HHH-16282 Make it possible for Hibernate Reactive to plug in custom fetch initializers - -commit ff19a9124f7408fed2098a26a7aa103eac72c5a0 -Author: Sanne Grinovero -Date: Fri Mar 10 11:35:56 2023 +0000 - - HHH-16260 DialectDelegateWrapper needs to be updated to delegate the new Dialect#getNativeParameterRenderer method - -commit 99f8b0fd3de590880ae2a27ccc57f3b9f79c73d0 -Author: Steve Ebersole -Date: Thu Mar 9 17:59:55 2023 -0600 - - HHH-16260 - JdbcParameterRenderer not called with dynamic filters - HHH-16256 - JdbcParameterRenderer to have an impact on write operations - HHH-16273 - Support for Dialect native JdbcParameterRenderer - -commit a98ab519bab7d3faad90ee4b03d2dd385ba49d98 -Author: Steve Ebersole -Date: Thu Mar 9 10:00:50 2023 -0600 - - HHH-16260 - JdbcParameterRenderer not called with dynamic filters - HHH-16256 - JdbcParameterRenderer to have an impact on write operations - HHH-16273 - Support for Dialect native JdbcParameterRenderer - - agroal tests :( - -commit 2936e5bd7500718192831da6a4f4307be520c7e8 -Author: Steve Ebersole -Date: Thu Mar 9 07:14:25 2023 -0600 - - HHH-16260 - JdbcParameterRenderer not called with dynamic filters - HHH-16256 - JdbcParameterRenderer to have an impact on write operations - HHH-16273 - Support for Dialect native JdbcParameterRenderer - -commit 1e66f36b3985c514d73d5fa58f93123634dc90d2 -Author: Steve Ebersole -Date: Wed Mar 8 21:30:21 2023 -0600 - - HHH-16260 - JdbcParameterRenderer not called with dynamic filters - HHH-16256 - JdbcParameterRenderer to have an impact on write operations - HHH-16273 - Support for Dialect native JdbcParameterRenderer - -commit 9fc49d6ccdc5fde6573d2249594d4e5e8c542d55 -Author: Steve Ebersole -Date: Wed Mar 8 18:06:19 2023 -0600 - - HHH-16260 - JdbcParameterRenderer not called with dynamic filters - HHH-16256 - JdbcParameterRenderer to have an impact on write operations - -commit 5de2e6c19d0e07753ca973561ee0df983654bc73 -Author: Steve Ebersole -Date: Tue Mar 7 21:26:54 2023 -0600 - - HHH-16260 - JdbcParameterRenderer not called with dynamic filters - -commit 1196eff98d731d40c652940bc7d3698e46363131 -Author: Christian Beikov -Date: Thu Mar 9 18:18:41 2023 +0100 - - HHH-15766 Fix parenthesis for Oracle 11 - -commit 6792403f48ccc748ed12e8489e12ed5d13fa2c0c -Author: Andrea Boriero -Date: Tue Mar 7 11:30:47 2023 +0100 - - HHH-16215 Composite primary key @IdClass attribute mapping is borrowed from the first OneToMany backref and cannot be set - -commit 761df4fcbdc55c76e5d31f63052b5803aa496686 -Author: Marco Belladelli -Date: Tue Mar 7 11:30:30 2023 +0100 - - HHH-16215 Add test for issue - -commit deb376ab5da71ca5cf2d885e331dfb7e8fb76070 -Author: Gavin King -Date: Thu Mar 9 14:41:17 2023 +0100 - - fix for HHH-16263 - - use a LinkedHashSet so that things are more deterministic - - this is perhaps not a "complete" fix, but it will have to do for now - -commit d21b5c21becd419a82e718212b7d559d36caeeb8 -Author: Andrea Boriero -Date: Tue Mar 7 12:02:39 2023 +0100 - - HHH-16258 NPE with SubselectFetch and inheritance - -commit f03179345b54db34c4a18932b66be8d134336c4d -Author: Andrea Boriero -Date: Tue Mar 7 11:11:56 2023 +0100 - - HHH-16258 Add test for issue - -commit 53a8d5cd8e1b34e93a00903cc676a2c56962903d -Author: Sanne Grinovero -Date: Tue Mar 7 20:09:44 2023 +0000 - - HHH-16223 Get SchemaManagementToolCoordinator to log deprecation warnings on legacy property - -commit c8111fc75390e04d9d03cfd1834b2bae79d60a1f -Author: Sanne Grinovero -Date: Tue Mar 7 19:59:45 2023 +0000 - - HHH-16223 Avoid using legacy HBM2DDL_CONNECTION - -commit cf42df65501c074399a12de9a657686e2dbe09db -Author: Sanne Grinovero -Date: Tue Mar 7 19:58:44 2023 +0000 - - HHH-16223 General cleanup of use of deprecated constants - -commit 6724f7aeb50247427b56b6d8648371e27d25ed7b -Author: Sanne Grinovero -Date: Tue Mar 7 15:16:02 2023 +0000 - - HHH-16223 Deprecate HBM2DDL_SCRIPTS_ACTION - -commit f7d383320b4a06ab6dd249008e4b3939117f85f5 -Author: Sanne Grinovero -Date: Tue Mar 7 15:11:05 2023 +0000 - - HHH-16223 Deprecate HBM2DDL_SCRIPTS_DROP_TARGET - -commit f9c0761268f92c2bae936b1e63651604a2af26be -Author: Sanne Grinovero -Date: Tue Mar 7 15:08:38 2023 +0000 - - HHH-16223 Deprecate HBM2DDL_SCRIPTS_CREATE_TARGET - -commit 39f05629fc62c77d3fc5beb3fd761628ef81e301 -Author: Sanne Grinovero -Date: Tue Mar 7 15:03:35 2023 +0000 - - HHH-16223 Deprecate HBM2DDL_CREATE_SCRIPT_SOURCE - -commit b86758ecabe2198dfd7719495eceb24f628b4812 -Author: Sanne Grinovero -Date: Tue Mar 7 15:00:43 2023 +0000 - - HHH-16223 Deprecate HBM2DDL_DROP_SOURCE - -commit d0cdcb006ddc280debe648140c1cb51a78ce6338 -Author: Sanne Grinovero -Date: Tue Mar 7 14:58:35 2023 +0000 - - HHH-16223 Deprecate HBM2DDL_DATABASE_ACTION - -commit bb751da34d57f91b71484e3b563efcad5f406ff1 -Author: Paul Ferraro -Date: Tue Mar 7 16:26:34 2023 -0500 - - HHH-16172 BasicCacheKeyImplementation must be public to support externalization. - -commit 30f8e8d3b02bde5cca4ae65e5bd20d8d284c37f6 -Author: Steve Ebersole -Date: Mon Feb 20 09:23:56 2023 -0600 - - HHH-16019 - @Where not consistently applied across association boundaries - HHH-16264 - Deprecate `hibernate.use_entity_where_clause_for_collections` - HHH-16265 - Remove `@Where#applyInToManyFetch` - -commit 07be7731f462c7f01f14da20ea6b9cb3f395c186 -Author: Christian Beikov -Date: Mon Mar 6 14:00:26 2023 +0100 - - Fix default charset testing for JDK21 - -commit f9bc29f4849e0bd5b7a413459c5946c9371ee38b -Author: Marco Belladelli -Date: Wed Mar 1 11:04:13 2023 +0100 - - HHH-16213 Avoid initializing lazy table group joins in AbstractSqlAstWalker - -commit 7c832c024c0df1b0ca09a0003887e709c096e0a5 -Author: Marco Belladelli -Date: Wed Mar 1 10:17:56 2023 +0100 - - HHH-16213 Add test for issue - -commit c555fcc302d9e1cd391559b61dd5faf62c95b998 -Author: Marco Belladelli -Date: Mon Mar 6 09:37:56 2023 +0100 - - Fix date truncation for HANA - -commit 27cab33cc50dff262ce449980e249e4ba50e8777 -Author: Andrea Boriero -Date: Fri Mar 3 12:02:56 2023 +0100 - - HHH-16126 TransientObjectException when loading versioned entity from second-level cache - -commit 540c9f8e283bd94b3c77090baf4eb51637c534cd -Author: Andrea Boriero -Date: Thu Mar 2 17:11:16 2023 +0100 - - HHH-16126 Add test for issue - -commit 3cae865ab332de1c4f150bb6fad225e8e6585d70 -Author: Christian Beikov -Date: Mon Mar 6 09:50:34 2023 +0100 - - Drop usage of identity generator - -commit 46d82bd90cc13958cfd4d9cec8f7f1f7246a7112 -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Mon Mar 6 08:47:00 2023 +0000 - - Bump com.gradle.common-custom-user-data-gradle-plugin from 1.8.2 to 1.9 - - Bumps com.gradle.common-custom-user-data-gradle-plugin from 1.8.2 to 1.9. - - --- - updated-dependencies: - - dependency-name: com.gradle.common-custom-user-data-gradle-plugin - dependency-type: direct:production - update-type: version-update:semver-minor - ... - - Signed-off-by: dependabot[bot] - -commit 18302b691b4b8a3f4a65f7279adeea26b3ac95ac -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Mon Mar 6 06:02:58 2023 +0000 - - Bump com.gradle.enterprise from 3.12.3 to 3.12.4 - - Bumps com.gradle.enterprise from 3.12.3 to 3.12.4. - - --- - updated-dependencies: - - dependency-name: com.gradle.enterprise - dependency-type: direct:production - update-type: version-update:semver-patch - ... - - Signed-off-by: dependabot[bot] - -commit 2c666c3835e5300047af16e33c3240a3aa366fc2 -Author: Christian Beikov -Date: Fri Mar 3 15:25:20 2023 +0100 - - HHH-15766 Add query spec parenthesis also when order by is used within query group - -commit 59f57b681120b0dc83ca23ca0f06f01b6ac65693 -Author: Andrea Boriero -Date: Mon Dec 12 12:26:21 2022 +0100 - - HHH-15766 Add test for issue - -commit ff6d79ca636615cd5e0044b32c0227bcbf41940a -Author: Steve Ebersole -Date: Sun Mar 5 12:54:45 2023 -0600 - - HHH-16115 - Develop an intermediate metamodel binding model - HHH-16116 - Bind intermediate metamodel into PersistentClass, et al. - -commit 8e8bc0043435a418d4b8d77325c683c5ff9acaa0 -Author: Sanne Grinovero -Date: Sat Mar 4 09:24:26 2023 +0000 - - HHH-16252 SQL syntax error on drop constraint - -commit f271ef2328696d52ab2a8b432346b2ff5517bb58 -Author: Steve Ebersole -Date: Fri Mar 3 18:08:41 2023 -0600 - - HHH-16115 - Develop an intermediate metamodel binding model - -commit b82fa307ea351d8f81398279f4e9b2a9e67efabb -Author: Christian Beikov -Date: Fri Mar 3 12:08:56 2023 +0100 - - HHH-15802 - Fix some expression comparison type checks - -commit eed870c0e81a55c6eb5f202cd38cd68391f9fae1 -Author: Andrea Boriero -Date: Mon Dec 19 15:04:12 2022 +0100 - - HHH-15802 SubQuery with 'in' results in java.lang.ClassCastException class org.hibernate.metamodel.mapping.internal.BasicEntityIdentifierMappingImpl cannot be cast to class org.hibernate.metamodel.mapping.EntityValuedModelPart - -commit b5be86076f218ffa52e7608653093d9ec28bd665 -Author: Marco Belladelli -Date: Thu Mar 2 16:29:52 2023 +0100 - - HHH-16238 Correct path model in createSqmPath for SingularAttributeImpl - -commit ccdc1a9cacffedfaa9195685673204e97c6f9413 -Author: Marco Belladelli -Date: Thu Mar 2 15:11:22 2023 +0100 - - HHH-16238 Add test for issue and handle generic non-id embaddable properties - -commit 2421496c189fc9f806292a51e77c1786c2396b3f -Author: Marco Belladelli -Date: Tue Feb 28 10:26:44 2023 +0100 - - HHH-16188 Register concrete embeddable type to use when creating SqmPath - -commit 57f5f4aaee2b0539d42cab79cf6e4d2993dc514a -Author: Marco Belladelli -Date: Mon Feb 20 09:22:44 2023 +0100 - - HHH-16188 Add test for issue - -commit 8d93c0ca3387a71c4055a840b1118148577f9530 -Author: Christian Beikov -Date: Thu Mar 2 20:36:48 2023 +0100 - - HHH-16224 Refactor discovery of exact JDBC drivers, avoid static state in specialized types - -commit 02b7c5afb5d19155beb2b55aaadb676881d32416 -Author: Jan Schatteman -Date: Thu Mar 2 23:32:48 2023 +0100 - - Add a note w/ respect to native queries and inheritance - - Signed-off-by: Jan Schatteman - -commit 58e858bf71291783209aa06e36b55c4e0e90bbd2 -Author: Jan Schatteman -Date: Fri Feb 17 22:27:43 2023 +0100 - - HHH-16180 - Add test and fix (AssertionError when using using native query on table with InheritanceStrategy.JOINED) - - Signed-off-by: Jan Schatteman - -commit 14611bdebab5e4c477ae726a16585510831f1dc2 -Author: Christian Beikov -Date: Thu Mar 2 23:03:48 2023 +0100 - - HHH-16191 Fix issues uncovered by recent not-found fetchin changes - -commit 1bd0180172e17c0e9803792ca3c90fe3d875766e -Author: Christian Beikov -Date: Thu Mar 2 21:53:38 2023 +0100 - - HHH-16182 Fix some tests for older databases and adapt assertion for boolean function - -commit 2a017db0bc05e1f6b2cbcf32314516d9cfeec3f0 -Author: Sanne Grinovero -Date: Thu Mar 2 22:32:24 2023 +0000 - - Some comments and notes for StandardServiceInitiators - -commit 253aacc53d2356e8728edc943ddd5a0d9f67bbfb -Author: Marco Belladelli -Date: Wed Mar 1 15:34:37 2023 +0100 - - HHH-16191 Add test and fix checks for skipping resolving polymorphic associated entity instances - -commit 7e305df0f848603f60cf9835d176a3654839f437 -Author: Marco Belladelli -Date: Tue Feb 21 18:11:41 2023 +0100 - - HHH-16191 change @NotFound semantic, do not force a join but trigger a subsequent select - -commit 1f4f0c6ec135f3272a908e0fa18771ffa66db302 -Author: Marco Belladelli -Date: Tue Feb 21 17:40:02 2023 +0100 - - HHH-16191 Fix eager associations not fetched with native queries - -commit e3c36691148ac65639a332c9e0409dbb0dd8c05f -Author: Marco Belladelli -Date: Tue Feb 21 13:16:43 2023 +0100 - - HHH-16191 Add test for issue - -commit 6118369a5662c0d36942037a25cd7706ab022fbe -Author: Jan Schatteman -Date: Wed Mar 1 22:19:44 2023 +0100 - - HHH-16240 - Add test and fix for issue, and refactor TimestampGenerators out of CurrentTimestampGeneration - - Signed-off-by: Jan Schatteman - -commit 1ff682438d09235cd776e35cd07430d63a79d31c -Author: Christian Beikov -Date: Thu Mar 2 13:10:38 2023 +0100 - - HHH-16179 Session.find should not apply filters - -commit f5741e9b7ed83a4c21ed42f255867b019d425688 -Author: Christian Beikov -Date: Thu Mar 2 12:23:50 2023 +0100 - - Revert "HHH-14772: Fix filter direct fetching documentation" - - This reverts commit 446908f643a301a78aa6b20f7eb4cf456ffcb69e. - -commit cb8a17a42bba2b47ad9d95ed2caaddb33a8abab6 -Author: Andrea Boriero -Date: Thu Mar 2 16:18:15 2023 +0100 - - Fix Sybase UniqueConstraintTest failure - -commit 3dc855aa31054e623fd23a30489bd6c55e6c6c03 -Author: Steve Ebersole -Date: Thu Mar 2 09:19:00 2023 -0600 - - HHH-16182 - Converted boolean values not always properly handled in predicates - -commit 48236e388fad7750bc90d88eeb31a000e710e078 -Author: Christian Beikov -Date: Thu Mar 2 12:05:18 2023 +0100 - - HHH-16198 - Fix splitting of SqlAstCreationState - -commit 7b58a335200b9ebb829be58f8d41f1bb25f57fdb -Author: Steve Ebersole -Date: Thu Feb 23 11:17:59 2023 -0600 - - HHH-16198 - Fix splitting of SqlAstCreationState - -commit e509625af8720717d8611317d29b3bb6587be6b9 -Author: Marco Belladelli -Date: Mon Feb 27 10:46:38 2023 +0100 - - HHH-16211 Remove type inference from like predicate's escape character - -commit 065245ec1ae143dff2c781d16e8329a4be4aa745 -Author: Marco Belladelli -Date: Mon Feb 27 10:46:01 2023 +0100 - - HHH-16211 Add test for issue - -commit abc44004caa910e2be5336635af325a2e930f090 -Author: Steve Ebersole -Date: Wed Mar 1 17:20:12 2023 -0600 - - test cleanup - -commit e37db163a001ee1138629655a0aa0253f16de7e3 -Author: Steve Ebersole -Date: Wed Mar 1 13:45:08 2023 -0600 - - HHH-16182 - Converted boolean values not always properly handled in predicates - -commit 31738d436a09463f7b4ae4e794cb83a08f99857c -Author: Steve Ebersole -Date: Wed Mar 1 12:58:42 2023 -0600 - - HHH-16182 - Converted boolean values not always properly handled in predicates - -commit b8d500ec41d4f5e71b5a828e286befc01d42a3c8 -Author: Steve Ebersole -Date: Mon Feb 27 18:06:38 2023 -0600 - - HHH-16182 - Converted boolean values not always properly handled in predicates - -commit cb2af521a5f1ed7936a4e2702b5aca3c7ac2c157 -Author: marko-bekhta -Date: Wed Feb 22 20:15:28 2023 +0100 - - HHH-16217 Clean up some available settings javadocs - -commit d447d1fd4071df056aaf6b97fe8bc873ef43a346 -Author: marko-bekhta -Date: Wed Feb 22 19:57:47 2023 +0100 - - HHH-16217 Do not rely on passthrough and convert docs to asciidoctor format - -commit 5d61b03b20dce0c6343dd11d0f9b073c8df5d775 -Author: marko-bekhta -Date: Fri Jan 27 15:01:39 2023 +0100 - - HHH-16217 Use only rendered Javadocs for collecting configuration properties - -commit 5f3bd06bf8d0503febee8cf04aeb4cb86c15b702 -Author: Réda Housni Alaoui -Date: Tue Jan 31 21:43:40 2023 +0100 - - HHH-15964 Adapt failing tests - -commit 7902c0d35a892b6273f551a4446cb51d08987d67 -Author: Réda Housni Alaoui -Date: Tue Jan 31 17:49:56 2023 +0100 - - HHH-15964 Incorrect results for pageable EntityGraph with Hibernate 6.1.6 - -commit b308fd2d05ef7529414936076d74260982381463 -Author: Davide D'Alto -Date: Wed Mar 1 17:23:46 2023 +0000 - - HHH-16243 Change scope of AbstractEntityPersister#generateNonIdAttributeMapping - - For Hibernate Reactive - -commit bbe17b940a47337423a93d5a7d384a218182db85 -Author: Steve Ebersole -Date: Mon Feb 27 09:39:51 2023 -0600 - - HHH-16229 - Consider pluggability for rendering "JDBC" parameters - -commit 04ce594959c222885bc161297293b5f6a3b26672 -Author: Andrea Boriero -Date: Tue Feb 28 10:12:02 2023 +0100 - - HHH-16209 Identically-named association in entity root and embeddable leads to mixup during association loading - -commit fd7b599d6b0fcc6bad4c17404de92ed170609175 -Author: Andrea Boriero -Date: Mon Feb 27 15:46:23 2023 +0100 - - HHH-16209 Identically-named association in entity root and embeddable leads to mixup during association loading - -commit 37459baf2d5b59487c02312f38b6222a49d994c2 -Author: Andrea Boriero -Date: Mon Feb 27 15:45:52 2023 +0100 - - HHH-16209 Reproducer for mixup during loading of identically-named association in entity root and embeddable - -commit 8e6d9abc8c06a8758c4805c128bf315e925b0445 -Author: Yoann Rodière -Date: Tue Feb 21 10:53:48 2023 +0100 - - HHH-16209 Reproducer for mixup during loading of identically-named association in entity root and embeddable - -commit bcf1df9b6588aaec4eab77a7bb59dde6af9d422c -Author: Steve Ebersole -Date: Wed Mar 1 08:20:53 2023 -0600 - - HHH-16198 - Fix splitting of SqlAstCreationState - -commit 1cc5ccfcb76da46961a9a9480b51a830ad04c814 -Author: Christian Beikov -Date: Mon Feb 27 18:45:15 2023 +0100 - - Resolve table references before pruning, when the access to the processing state is still there - -commit 6e4bee8c570103de82dc04aabd98da34ce61cd00 -Author: Andrea Boriero -Date: Wed Feb 22 21:01:33 2023 +0100 - - HHH-16197 Circular references of the same entity result in different Java objects when caching is enabled and using a query - -commit c5769ad06e6d48575a82c9d1d52d4b74140d2911 -Author: Andrea Boriero -Date: Tue Feb 21 13:12:39 2023 +0100 - - HHH-16197 Add test for issue - -commit ca94f9d805164537eb49e740cb9cd5d098e4298b -Author: Andrea Boriero -Date: Mon Feb 20 20:11:29 2023 +0100 - - HHH-16193 LazyInitializationException when accessing loaded reference after session is closed using bytecode enhancement - -commit 1c92fb08c4cc8b02b84327ee1ef1e6be2ddf449d -Author: Andrea Boriero -Date: Mon Feb 20 20:10:08 2023 +0100 - - HHH-16193 Add test for issue - -commit b10f99ae546fe8c86843b7bee534882ffba8864b -Author: Steve Ebersole -Date: Wed Mar 1 09:41:37 2023 -0600 - - HHH-15895 - IllegalArgumentException :Cannot create binding for parameter referencen with criteria builder - -commit c430834f65e05e7ebc08c3291ad9a780caa201a4 -Author: Andrea Boriero -Date: Tue Feb 28 20:53:04 2023 +0100 - - HHH-15895 IllegalArgumentException: Cannot create binding for parameter referencen with criteria builder - -commit df6ec5697869413919e3cf94ce99b476835641bb -Author: Andrea Boriero -Date: Tue Feb 28 18:13:59 2023 +0100 - - HHH-15895 Add test for issue - -commit b38bd55a72ca680d103b259850e1383293ae1bc0 -Author: Marco Belladelli -Date: Thu Feb 23 15:01:21 2023 +0100 - - HHH-16195 Restore logic for declared non-identifier Component properties that use generics - - Also remove some duplicate logic for setting declared properties on superclass and add some test cases with embeddables and generics - -commit 5fe6238a1c959cd2d1e3f32835922f8cd271ca20 -Author: Marco Belladelli -Date: Thu Feb 23 14:29:35 2023 +0100 - - HHH-16195 Add test for issue - -commit e802294c45481f42fc1464e9ca3c0b53321be26a -Author: Davide D'Alto -Date: Wed Mar 1 10:16:27 2023 +0000 - - HHH-16242 Change scopes in AbstractEntityInitializer - - and add getters/setters. - - Hibernate Reactive needs custom initializers - -commit 0d2e99a2e85b1a3705deafc33dcfbf5b39517d0c -Author: Andrea Boriero -Date: Tue Feb 28 12:27:56 2023 +0100 - - HHH-16230 Wrong data in self-reference using L2C and BatchSize - -commit a8fb3cc8c086a637004ecc5b29ea9d9c6b5a326e -Author: Andrea Boriero -Date: Tue Feb 28 12:27:24 2023 +0100 - - HHH-16230 Add test for issue - -commit caf20a41e308a9ba1b0e204e0e14a8f35ea01a19 -Author: Georgios Andrianakis -Date: Wed Mar 1 11:38:05 2023 +0200 - - Allow access to fields of MutationExecutorPostInsert - - This is useful for implementing the reactive version of the class - -commit cf42b134d251be5def379e7f557aafd4be7ba59e -Author: Marco Belladelli -Date: Tue Feb 28 12:30:51 2023 +0100 - - HHH-16130 Add javadoc for dateTrunc - -commit 5da810236be84fff84a634bd32331a624d17326d -Author: Marco Belladelli -Date: Tue Feb 14 16:49:23 2023 +0100 - - HHH-16130 New dateTrunc criteria function - -commit cf2e723d6f916d58892288f483d03a71ee3d2ab5 -Author: Sanne Grinovero -Date: Mon Feb 27 15:32:34 2023 +0000 - - HHH-16228 Dialect instance might be wrapped when doing instanceof checks for capabilities - - To properly support the idea of wrapping the Dialect, we need - to take this into account whenever an `instanceof` is used - to check for Dialect capabilities. - Also some code is casting to the expected Dialect. - -commit d5145e1f5a4eed8045e73db99ade2315c3a15844 -Author: Barry LaFond -Date: Mon Feb 27 12:02:08 2023 -0600 - - method access changes for reactive overrides in AbstractEntityPersister - -commit 2331389b5f64fbfecd33feb01e53b7c9f76e437f -Author: Andrea Boriero -Date: Thu Feb 16 15:14:24 2023 +0100 - - HHH-16009 jakarta @OrderBy annotation generates a non-transformed column name in the SQL query for a composite key's field - -commit 32ee9f8d93da27f918c40208ab52f37d41f7fec2 -Author: Andrea Boriero -Date: Thu Feb 16 15:11:53 2023 +0100 - - HHH-16009 Code refactoring - -commit d6fd1dd0565a77db38a20729a78cc5fac446351a -Author: Andrea Boriero -Date: Wed Feb 15 18:49:29 2023 +0100 - - HHH-16009 Add test for issue - -commit b16ad226ba6216d1206a02095952a057ae3b6874 -Author: Marco Belladelli -Date: Wed Feb 15 18:28:15 2023 +0100 - - HHH-16185 Custom trunc/truncate implementation that handles both numeric and datetimes - -commit 789c131c2d187b3f970b368213833dd003de051d -Author: Marco Belladelli -Date: Tue Feb 14 22:11:45 2023 +0100 - - HHH-16185 Implement portable date_trunc function emulation and tests - -commit d52a44c8eb0b38fe8c722973c7c106da41937e81 -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Mon Feb 27 06:13:16 2023 +0000 - - Bump actions/checkout from 2 to 3 - - Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3. - - [Release notes](https://github.com/actions/checkout/releases) - - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - - [Commits](https://github.com/actions/checkout/compare/v2...v3) - - --- - updated-dependencies: - - dependency-name: actions/checkout - dependency-type: direct:production - update-type: version-update:semver-major - ... - - Signed-off-by: dependabot[bot] - -commit 9cec39c316fe40f0fcc44423595033df91a17160 -Author: Georgios Andrianakis -Date: Thu Feb 23 07:29:22 2023 +0200 - - Fix logging in AbstractCollectionInitializer - - The previous version of the code lead to misleading - log statements being printed when debug logging - was enabled for 'org.hibernate.orm.results.loading.collection' - -commit 346da699797923f988bc072757a59dd83d149e82 -Author: Andrea Boriero -Date: Mon Feb 20 13:46:38 2023 +0100 - - HHH-16202 @OrderBy not applied to collections when @Fetch(value = FetchMode.SUBSELECT) - -commit 8776a8068a4e6b6b71ba20e95d0bcd93b79779bb -Author: Andrea Boriero -Date: Mon Feb 20 13:46:12 2023 +0100 - - HHH-16202 Add test for issue - -commit 3edb588ca22959db38424bbe76b7dd075130df5e -Author: shin-mallang -Date: Mon Feb 27 12:07:47 2023 +0900 - - HHH-16233 Fix logs for mutable non-root entity - -commit c7a651660efb8267cc07de0133ef8dc88f8b6476 -Author: Davide D'Alto -Date: Wed Feb 22 21:13:48 2023 +0000 - - HHH-16220 Add MutationExecutorStandard#getNonBatchedStatementGroup - - For Hibernate Reactive - -commit 598b782387a24996b6355968d0a7fb7ce997fa5a -Author: Sanne Grinovero -Date: Fri Feb 24 22:04:09 2023 +0000 - - HHH-16228 Allow Dialect wrapper to expose the wrapped instance - -commit 9ec32782a020c12bf3241eeaad292d832eae7f00 -Author: Sanne Grinovero -Date: Fri Feb 24 19:37:09 2023 +0000 - - HHH-16228 Avoid delegating protected methods using during construction - -commit 5451ed743784c7f70eef48d9c8f9b2078186f31c -Author: Steve Ebersole -Date: Fri Feb 24 09:51:32 2023 -0600 - - HHH-16227 - Introduce SqmMultiTableMutationStrategyProvider - -commit 132ac1bd21ef2a519a104e098fdda52c5ea559d6 -Author: Sanne Grinovero -Date: Thu Feb 23 15:17:38 2023 +0000 - - HHH-16228 Introduce a Dialect wrapper base class - -commit b3619cc129d53a5fcfd738065cd3d0f2d3aafc7d -Author: Steve Ebersole -Date: Thu Feb 23 17:33:34 2023 -0600 - - HHH-16226 - Introduce JdbcValuesMappingProducerProvider - -commit ce9501e0e5ff1db1e81515b701a4087428ec127c -Author: Sanne Grinovero -Date: Thu Feb 23 12:20:21 2023 +0000 - - HHH-16222 Improve warning triggered when the PostgreSQL JDBC driver is not accessible - -commit b328b1a3fb2c1c5d1af8a6521431d2b2c7ac5737 -Author: Sanne Grinovero -Date: Thu Feb 23 10:59:35 2023 +0000 - - HHH-16221 Improve extensibility of CockroachDB and PostgreSQL dialects - -commit 87bf20f1bbe9a6ff59ecd9388dcf683806111904 -Author: Andrea Boriero -Date: Tue Feb 21 10:38:12 2023 +0100 - - HHH-16175 Fix sybase test failure - -commit 0d729feb6a6d4e61dba69f9d8d38dddfa57f5670 -Author: Jan Schatteman -Date: Wed Feb 22 21:09:18 2023 +0100 - - Fix broken doc link in native.adoc - - Signed-off-by: Jan Schatteman - -commit 56cd6a2ca0650926ea3f0370a16210726d9d9104 -Author: Sanne Grinovero -Date: Tue Feb 21 14:25:23 2023 +0000 - - HHH-16214 Use a more efficient Map implementation in SqmFunctionRegistry - -commit b600f36d7e4a3aa7db785da9528a9691d5df08b0 -Author: Steve Ebersole -Date: Tue Feb 21 09:00:46 2023 -0600 - - Fixed up some SessionFactory-related deprecation warnings - -commit 100d9351cdcc6afa6120ee321c8f2bb07e13fdcb -Author: Yoann Rodière -Date: Mon Feb 13 13:32:22 2023 +0100 - - HHH-16177 Test catalog/schema creation/dropping in DefaultCatalogAndSchemaTest - -commit 0233d8ebd9df0b6ec94e703dac6cf09f2741deaf -Author: Yoann Rodière -Date: Mon Feb 13 14:14:05 2023 +0100 - - HHH-16177 Take into account the default catalog/schema when creating/dropping catalogs/schemas - -commit 35fbd6695ac1a6b904b804cfd583a79f6962a5fe -Author: Andrea Boriero -Date: Wed Feb 15 00:00:20 2023 +0100 - - AssertionError in StandardEntityGraphTraversalStateImpl.traverse when using entity graph - -commit 5589583ca6c48f8841fa5dc1e855a26ccd799ef5 -Author: Yoann Rodière -Date: Mon Feb 13 12:01:47 2023 +0100 - - HHH-16175 Test entity graphs when including either all attributes or no attributes - -commit f10d3e68418bfa812afa14fdca418470855ddc3f -Author: Gavin -Date: Mon Feb 20 16:39:45 2023 +0100 - - fix mistake in Oracle timestamp rendering - - we need to include the time zone - -commit 696bbf3ff88a47395333261a66d703d5c9a42fcf -Author: Gavin King -Date: Mon Feb 20 13:35:32 2023 +0100 - - add tests for casts to/from OffsetDateTime - -commit 3dc196c67350aa2106a43f1cc294381c41fcd412 -Author: Andrea Boriero -Date: Mon Feb 20 14:37:56 2023 +0100 - - HHH-16119 Fix test typo - -commit aac3f5fc85b7ae98478eb3fc74909ef7aacd3051 -Author: Andrea Boriero -Date: Tue Feb 14 16:35:40 2023 +0100 - - HHH-16184 Two queries are execute to initialize empty collections - -commit 2ee1c970a36932d7187906df5745fa2769cbfa35 -Author: Andrea Boriero -Date: Tue Feb 14 16:35:11 2023 +0100 - - HHH-16184 Add test for issue - -commit 7e629957e45e1c1466eb0b7f9cb9c316c4705fa3 -Author: Gavin King -Date: Mon Feb 20 12:40:06 2023 +0100 - - very minor javadoc formatting change - -commit f2782f2b507caa63f5f0dea0ee74129f5d1d9506 -Author: Sanne Grinovero -Date: Sun Feb 19 16:47:12 2023 +0000 - - HHH-16200 Upgrade to Narayana 6.0.0.Final and matching jboss-transaction-spi 8.0.0.Final - -commit 61e078fbd8f22eba2def3498167b3f16cf6a0c41 -Author: Georgios Andrianakis -Date: Fri Feb 17 13:14:34 2023 +0200 - - Apply changes needed for support of @ValueGenerationType in Hibernate Reactive - -commit 4cc59417989ebe1392354146446fa6ea7ce6ad9b -Author: Marco Belladelli -Date: Thu Feb 16 11:05:22 2023 +0100 - - HHH-16155 Disable batching when generated properties are found - -commit c3174e6b62d937ccb032272ceb779f3a754bc3fa -Author: Marco Belladelli -Date: Mon Feb 13 14:42:56 2023 +0100 - - HHH-16155 Add test for issue - -commit 73ce912dc2d3b828c43b1fbb35413f61ee181e61 -Author: Sanne Grinovero -Date: Fri Feb 17 14:50:51 2023 +0000 - - HHH-16194 Failure to automatically integrate with Bean Validation is excessively noisy - -commit 1db04f54af52f939095aeab8727818d00e9d2511 -Author: Steve Ebersole -Date: Thu Feb 16 21:00:33 2023 -0600 - - Misc - -commit e20b863c9b69a4a6aa46f68efe9132c6f97aa451 -Author: Sanne Grinovero -Date: Thu Feb 16 19:43:32 2023 +0000 - - HHH-16190 Update the GraalVM module to match the reflective needs of StandardStack - -commit 01659ed71d5b7659b1cdc0131c055416cd57edbc -Author: Christian Beikov -Date: Tue Feb 14 12:03:47 2023 +0100 - - HHH-14514 Fix auto eviction of collection cache - -commit 2019fca0cb405cf60fcab6099e850be9dabd0a74 -Author: Jan Schatteman -Date: Wed Feb 15 21:19:37 2023 +0100 - - HHH-16082 - Correction to the epoch extraction for DB2 - - Signed-off-by: Jan Schatteman - -commit 20c901ff9105cf7aadb37251e5637966ca450fe2 -Author: Steve Ebersole -Date: Wed Feb 15 11:56:06 2023 -0600 - - Document JUnit 5 extensions - -commit a82c2169cf105870c1cae5da06b0b981c52151a7 -Author: Steve Ebersole -Date: Wed Feb 15 08:18:12 2023 -0600 - - HHH-16182 - JPA derived query methods failing when boolean mapping using YesNoConverter - -commit 7ba3bb98a4e7d5f4f4b31da342581c45e7cc86dc -Author: Jan Schatteman -Date: Fri Feb 10 21:00:47 2023 +0100 - - HHH-16169 - Fix potential NullPointerException in CollectionEntry - - Signed-off-by: Jan Schatteman - -commit ab860995efa9fd2752c3d36b9501bb3f64253db6 -Author: Jan Schatteman -Date: Tue Feb 14 17:49:54 2023 +0100 - - HHH-16082 - Correction to the epoch extraction for HANA - - Signed-off-by: Jan Schatteman - -commit 3992f722a87bcc738b3e2dd7825e36cf7bfb8010 -Author: Davide D'Alto -Date: Tue Feb 14 14:11:56 2023 +0100 - - HHH-16183 Change scopes of private methods in InsertCoordinator - -commit d8669092859ef78ace9511fe3ddb1a156aaed1bc -Author: Marco Belladelli -Date: Tue Feb 14 10:59:26 2023 +0100 - - HHH-16080 Add test for issue - -commit 105253df5f6427873d42df52b7de4e20f5d5f3b8 -Author: Paul Ferraro -Date: Sat Feb 11 22:01:13 2023 -0500 - - HHH-16172 Expose internal state of 2nd-level cache keys - -commit 4e961e85c84c87637a5175cc3f1e35ba47336f36 -Author: Christian Beikov -Date: Tue Feb 7 17:42:55 2023 +0100 - - HHH-16150 Fix a little issue with SessionFactoryImpl#disintegrate - -commit 6a96986ec1a53fdad393d042183cf495c7a25a94 -Author: Yoann Rodière -Date: Tue Feb 7 16:32:01 2023 +0100 - - HHH-16150 Fix schema not being dropped on bootstrap failure with the "create-drop" strategy - -commit 50b835b145b24424cd47e6bea3ac51d38e0f9b2c -Author: Andrea Boriero -Date: Thu Feb 9 12:13:40 2023 +0100 - - HHH-16119 Named native queries do not work with jakarta.persistence.Tuple result class - -commit 41961d457a068940c10ed402e2e176747f45e370 -Author: Andrea Boriero -Date: Thu Feb 9 10:56:35 2023 +0100 - - HHH-16119 Add test for issue - -commit 404698b004391ca357d46d3cb576f8fe15dacbf6 -Author: Christian Beikov -Date: Mon Feb 13 16:52:04 2023 +0100 - - Replace mockito for some tests with custom spies - -commit edd1c7b7ae93f578ba29ddcf3242952175d6d3e6 -Author: Marco Belladelli -Date: Tue Feb 7 14:24:08 2023 +0100 - - HHH-16109 Don't add limits to named queries when not needed - -commit 98ca6fcfb39823559c1dc72f4e7f5fe71d473bf8 -Author: Marco Belladelli -Date: Tue Feb 7 13:14:06 2023 +0100 - - HHH-16109 Add test for issue - -commit 6f23c6fd00142ad1a56fea6bce00f1846fab1883 -Author: Andrea Boriero -Date: Sun Feb 12 10:13:18 2023 +0100 - - HHH-15990 unable to determine TableReference when associate ManyToOne fetch lazy and NotFound IGNORE - -commit 77ae4201d1bdbc27c6bd912f6ba39b49af8bab18 -Author: Andrea Boriero -Date: Fri Feb 10 14:53:26 2023 +0100 - - HHH-15990 Add test for issue - -commit 9ef49c596dae5934a52769be34a33d8fa0188de5 -Author: Christian Beikov -Date: Fri Feb 10 18:12:14 2023 +0100 - - Get rid of most capturing lambdas in write path - -commit 57f5769ee56d43828626445fe8688f928235879a -Author: Marco Belladelli -Date: Fri Feb 10 23:10:13 2023 +0100 - - HHH-16170 Check for enums in update statement - -commit 984f7ff5714e8bf31157fc50c0d07fa8c9e33b69 -Author: Marco Belladelli -Date: Fri Feb 10 23:07:14 2023 +0100 - - HHH-16170 Add test for issue - -commit f3833e71a973b8ae576b0b53a6bef7e9e16fd993 -Author: Gavin King -Date: Sat Feb 11 00:11:01 2023 +0100 - - HHH-16174 support for extract(epoch from ...) in HQL - -commit b430c6066a5851ed7cc2002b3f8d3f7b0d119f9b -Author: Jan Schatteman -Date: Fri Feb 10 19:30:54 2023 +0100 - - HHH-16131 - Correction to workaround for date calculation errors on Oracle (first workaround failed on Oracle 11) - - Signed-off-by: Jan Schatteman - -commit 300a792bb6c34e9e745054bb84578ba257cf4a4a -Author: Christian Beikov -Date: Mon Feb 13 10:06:50 2023 +0100 - - Fix TenantIdTest when VM has nanosecond precision - -commit 0769c8c9173d12e57da82debd48fe77f42a2434a -Author: Christian Beikov -Date: Fri Feb 10 18:22:09 2023 +0100 - - Use an instant in tests that fits the millisecond resolution of Sybase - -commit 9d254f4f8e5832d8c99ac3701c8d710493cb0121 -Author: Gavin King -Date: Fri Feb 10 13:09:50 2023 +0100 - - HHH-16133 allow before-execution generators for embeddable properties - - and by side-effect allow @TenantId for embeddable properties - -commit 19c559dfb9bac814fbe7bf91eab4093671a27a9d -Author: Gavin King -Date: Fri Feb 10 11:17:31 2023 +0100 - - very minor jdoc changes - -commit 241cdf16d9e2f598b5e2bf3933507eb755f6b5d4 -Author: Christian Beikov -Date: Fri Feb 10 11:49:36 2023 +0100 - - Get rid of capturing lambdas for Bindable#JdbcValueConsumer - -commit 973434c8f14b2d1de486ec92906ea0b7ca25ab7c -Author: Steve Ebersole -Date: Thu Feb 9 13:21:11 2023 -0600 - - HHH-16148 - Introduce Immutability (MutabilityPlan) for use with @Mutability - HHH-16141 - Support @Mutability and @Immutable on UserType - HHH-16147 - Support @Mutability and @Immutable on AttributeConverter - HHH-16146 - Improve User Guide documentation for (im)mutability - -commit ecf8e1ce39dc27633b3d9753daeaaa91b6d10830 -Author: Christian Beikov -Date: Fri Feb 10 11:16:00 2023 +0100 - - Get rid of Clause parameter in JdbcParameterBindings - -commit 6e87e4ba1d2f3f2052e3033d9a2f4ed58c006286 -Author: Andrea Boriero -Date: Fri Feb 10 12:23:11 2023 +0100 - - HHH-16165 Incorrect SQL generated when using SELECT DISTINCT and @OrderBy - -commit 32f0981b5b2b5ef9be94e6367df1e540b773bde3 -Author: Andrea Boriero -Date: Fri Feb 10 12:22:35 2023 +0100 - - HHH-16165 Add test for issue - -commit 74b811d99a79a281527ec2dfe273f79ad67e173e -Author: Marco Belladelli -Date: Tue Feb 7 21:41:01 2023 +0100 - - HHH-16137 Fix check when replacing jdbc parameter - -commit 4c699f8d7553c0fc6c7f7921a168d0ef78a4db8f -Author: Marco Belladelli -Date: Tue Feb 7 21:12:38 2023 +0100 - - HHH-16137 Add test for issue - -commit 8e0e4caa610628690817bebaeefe3c8fcbc7e65b -Author: Christian Beikov -Date: Fri Feb 10 14:59:18 2023 +0100 - - Remove identity generation strategy from entity in tests that doesn't need it - -commit 68f50c26e72f1dfcf90a12ef3fc3294b43fc5ec2 -Author: Marco Belladelli -Date: Thu Feb 9 16:12:35 2023 +0100 - - HHH-16157 Add test for issue and fix duplicate discriminator conditions in join fetch queries - -commit ac359b6736b580f7f26d6fec0c20d0249fe676db -Author: Marco Belladelli -Date: Thu Feb 9 15:13:13 2023 +0100 - - HHH-16037 HHH-16053 Add test for issues - -commit 7af29eacd764845a98ded1f5bca6ec772c724c42 -Author: Marco Belladelli -Date: Thu Feb 9 11:51:37 2023 +0100 - - HHH-15829 Add test for issue - -commit 1d6951aac3c4f3fa8d17de2d78040fd916dd5b5e -Author: Christian Beikov -Date: Thu Feb 9 12:56:46 2023 +0100 - - HHH-16123 Add another test and fix rendering the pruned subquery in UnionSubclassEntityPersister - -commit 6fc3ec69019cabbdc8d2024aa0d3b2799dd8f06b -Author: Marco Belladelli -Date: Fri Feb 3 17:24:04 2023 +0100 - - HHH-16123 Add test for issue - -commit 2de37ed5e3f594fc79aef66eda250a411d40ce18 -Author: Christian Beikov -Date: Mon Feb 6 18:00:01 2023 +0100 - - HHH-16143 Documentation for composite aggregates - -commit 8f4cbd335fdbaeb985035707af21df7fac0dc040 -Author: Marco Belladelli -Date: Thu Feb 2 14:08:04 2023 +0100 - - HHH-16112 No expectation for one-shot collection delete using update - -commit 6feaf2a9e99ed848983599b2d071df3f901e4d63 -Author: Marco Belladelli -Date: Thu Feb 2 14:06:46 2023 +0100 - - HHH-16112 Add test for issue - -commit 958cdfb09f105f619c4cf54cf55e240cafaa5706 -Author: Gavin King -Date: Wed Feb 8 15:50:33 2023 +0100 - - remove an obsolete constructor no longer called by Quarkus - - and delete the stupid InformixDialectTestCase - -commit 1fcd53dc7866a287b896668ee0153151b099eb58 -Author: Marco Belladelli -Date: Wed Feb 8 16:19:26 2023 +0100 - - HHH-16136 Initialize bytecode-enhanced proxy for associated entities - -commit 521f85a20de979249629f4eb9c710acbc10911cf -Author: Marco Belladelli -Date: Tue Feb 7 15:56:42 2023 +0100 - - HHH-16136 Add test for issue - -commit f8a17f16c4a00506b09a18607a5213966b6e0a67 -Author: Christian Beikov -Date: Wed Dec 21 18:59:46 2022 +0100 - - HHH-15898 Allow explicit configuration of the UDT column order - -commit 60520667c12fdb9d7d49e450c2e3f5890716b0ae -Author: Jan Schatteman -Date: Tue Feb 7 20:54:08 2023 +0100 - - Remove calls to deprecated createQuery method from FunctionTests - - Signed-off-by: Jan Schatteman - -commit 35682e50da614e9e5c57953fa69087cb08854a75 -Author: Jan Schatteman -Date: Thu Feb 2 16:15:28 2023 +0100 - - HHH-16131 - Added workaround and test for date calculcation errors on Oracle - Temporarily excluded TiDB from that test (until they fix https://github.com/pingcap/tidb/issues/41052) - - Added tidb to the docker_db script - - Signed-off-by: Jan Schatteman - -commit 0b4b52b08ae15f59529a9477518c923cc0b1e38c -Author: Christian Beikov -Date: Wed Feb 8 15:00:56 2023 +0100 - - HHH-16152 Documentation for @PartitionKey - -commit 8b9d199fcf8babb1d9435a0e0dc32874a81f7007 -Author: Jan Schatteman -Date: Wed Feb 8 15:51:27 2023 +0100 - - HHH-16151 - Fix potential NullPointerException in SqmTreePrinter for the like excape character - - Signed-off-by: Jan Schatteman - -commit 5e26bf0c3e52caeb58ada393cfe0897becf68d0e -Author: Christian Beikov -Date: Wed Jan 11 12:50:57 2023 +0100 - - HHH-15875 Fix join fetch support for associations within embedded ids - -commit f2842732f89281d53df79fcee5409fc681444e80 -Author: Christian Beikov -Date: Tue Feb 7 13:43:41 2023 +0100 - - [HHH-16122] Fix determining the type of a property during type variable resolving for mapped superclasses - -commit aa76d057d940b555a11cee507c34ce3d940aa051 -Author: Markus Heiden -Date: Fri Feb 3 12:00:24 2023 +0100 - - [HHH-16122] Add test to reproduce problem - -commit 63715770e94f18137d9d63f7d105fafa62ca687f -Author: Steve Ebersole -Date: Thu Feb 2 12:23:40 2023 -0600 - - HHH-16081 - Converted collection-as-basic values are considered immutable - HHH-16132 - Dirty checking broken for collection-as-basic mappings (test) - -commit 2f6f17912f2f94dfa103dbabc766a9d05749afab -Author: Marco Belladelli -Date: Mon Nov 28 19:06:14 2022 +0100 - - HHH-15733 Change convert logic to default to value for Map collections of basic types - -commit b1a16f419c0e7d4cbfd780e6b52530d688b0cc87 -Author: Marco Belladelli -Date: Thu Nov 24 16:48:42 2022 +0100 - - HHH-15733 Add test for issue - -commit 07529c309dcd8f9292a3f3140abb3fd7b13f128e -Author: Tomas Cerskus -Date: Sat Feb 4 19:17:32 2023 +0000 - - HHH-15707 - Fix Gradle plugin with Kotlin 1.7.0 or higher - - Since Kotlin version 1.7.0 the KotlinCompile task no longer extends - Gradle's AbstractCompile. - - This commit updates Hibernate Gradle enhancement plugin to not cast to - AbstractCompile and instead use reflection to invoke the - "getDestinationDirectory" method. - - It also updates the Kotlin version on used to test the Gradle - enhancement (but remains backwards compatible with previous Kotlin - versions). - -commit 0e6c1110fa6a357ef16e0b3bb9d8b222349eeba3 -Author: Christian Beikov -Date: Mon Feb 6 12:22:14 2023 +0100 - - Fix possible Mockito concurrency issue - -commit 563880037e6f6540a70cb50c2f35147e0c4c94e1 -Author: Christian Beikov -Date: Mon Feb 6 12:17:59 2023 +0100 - - Fix possible Mockito concurrency issue - -commit 3df56ac794bab078caac2b266e117f84d64e208b -Author: Christian Beikov -Date: Mon Feb 6 10:10:14 2023 +0100 - - Fix tests for Oracle 11 - -commit c7541cf06a732ebcf8c073a5639e5a203d8adab0 -Author: Marco Belladelli -Date: Mon Jan 30 11:30:06 2023 +0100 - - HHH-15998 Check dynamic instantiation arguments in group by clause - -commit a34182d3f56699601374958caff3618cdfab8024 -Author: Marco Belladelli -Date: Mon Jan 30 11:29:46 2023 +0100 - - HHH-15991 Add test for issue - -commit 027c3081047e1b744dcdaaa6fb5506846216a96a -Author: Marco Belladelli -Date: Mon Jan 30 10:33:31 2023 +0100 - - HHH-15998 Add test for issue - -commit 8bce5959a2ab1afc590840ea855c40823c197ca1 -Author: Christian Beikov -Date: Fri Feb 3 18:00:08 2023 +0100 - - Update 'com.gradle.enterprise' to '3.12.3', 'com.gradle.common-custom-user-data-gradle-plugin' to '1.8.2', GitHub actions workflow steps setup-java, cache and upload-artifact to v3, and run dependabot on github actions versions - -commit 890e4ad62c1d9757c5181c1496efacff6460f24b -Author: Marco Belladelli -Date: Wed Jan 25 18:26:52 2023 +0100 - - HHH-16040 New coercing assembler when types are different from expected - -commit b2689fa9299f1f8f97492f4da4fe7e4bbbae0b84 -Author: Marco Belladelli -Date: Fri Jan 27 11:55:25 2023 +0100 - - HHH-15916 Add test for issue - -commit bb0f4b2807927856e810bf2232e48186d352c65c -Author: Marco Belladelli -Date: Mon Jan 16 11:32:25 2023 +0100 - - HHH-16040 Add test for issue - -commit 974afe26f0327a1eecf08ca33cdc57be55748f4f -Author: Andrea Boriero -Date: Tue Jan 31 11:19:02 2023 +0100 - - HHH-16117 Querying entity with collection in Embeddable causes 'A collection with cascade=all-delete-orphan was no longer referenced by the owning entity instance' - -commit 7b6d158245504c12a12f5afee9d853b76b605ddd -Author: Andrea Boriero -Date: Mon Jan 30 18:52:06 2023 +0100 - - HHH-16117 Add test for issue - -commit b2f0ead7408fd86ab7bc2034c045a6b748ff0497 -Author: Andrea Boriero -Date: Wed Feb 1 08:38:47 2023 +0100 - - HHH-16075 Add test for issue - -commit d34f50589ca8c0a164823006f007f00af946a1e8 -Author: Andrea Boriero -Date: Mon Jan 30 12:47:28 2023 +0100 - - HHH-16120 Error advancing (next) ResultSet position - -commit 3f814d88450cf45b02066fa40742187533ef42eb -Author: Andrea Boriero -Date: Mon Jan 30 12:47:13 2023 +0100 - - HHH-16120 Add test for issue - -commit bea5bfbe893a43f64bd9b9bcc49f4d50c9a9ebf6 -Author: Andrea Boriero -Date: Fri Jan 20 21:23:51 2023 +0100 - - HHH-15944 Joins on non-managed-type polymorphisms don't work - -commit ab7d05c15074345e573f993d3988168964611720 -Author: Andrea Boriero -Date: Fri Jan 20 15:13:42 2023 +0100 - - HHH-15944 Add test for issue - -commit 9b59f7c1b6b9748c40ebc997dc73e64bd575e1fd -Author: Andrea Boriero -Date: Wed Feb 1 17:38:10 2023 +0100 - - HHH-15970 Add test for issue - -commit ba0fa8c26d154abcf77a2dcd0f581504335bf588 -Author: Andrea Boriero -Date: Wed Feb 1 16:13:32 2023 +0100 - - HHH-15969 Inheritance: org.hibernate.PropertyAccessException Exception - -commit 08941ba7fc681c8f3c70a84c156d3c99dbeb274c -Author: Andrea Boriero -Date: Wed Feb 1 11:19:21 2023 +0100 - - HHH-15969 Add test for issue - -commit 0cac3155190cf60b1b804f6f2b5951add9f78da7 -Author: Jan Schatteman -Date: Thu Feb 2 16:18:38 2023 +0100 - - HHH-15665 - Fix and added test for issue - - Signed-off-by: Jan Schatteman - -commit e884ab3082eea99beeab0756e6658ff01d03d991 -Author: Marco Belladelli -Date: Mon Jan 30 18:23:51 2023 +0100 - - HHH-16003 Create correct table group for embedded valued paths - -commit 2e3a18a3c6880bd1b8c89651e84781e166a9cda0 -Author: Marco Belladelli -Date: Mon Jan 30 18:23:43 2023 +0100 - - HHH-16003 Add test for issue - -commit f11a18dae00181b6d376c03958cf45049bfe76fc -Author: Christian Beikov -Date: Thu Feb 2 18:04:21 2023 +0100 - - Fix HANA test issues - -commit f6f2db18daf2521fbeee5f869220d979cf77c5dd -Author: Gavin King -Date: Thu Feb 2 11:03:10 2023 +0100 - - remove unused imports - -commit b1030044f5130085c8a5c10463e1f468c22258e2 -Author: Sanne Grinovero -Date: Tue Jan 31 16:28:18 2023 +0000 - - HHH-16124 Remove deprecated method CacheTransactionSynchronization#getCurrentTransactionStartTimestamp - -commit cc42864351ab571cd1b85347fdc323764a35fa30 -Author: Gavin King -Date: Tue Jan 31 11:54:11 2023 +0100 - - javadoc some things about falling back from JPA to native APIs - -commit cd50a98c665d61659a46b1aefa957418df94f5f3 -Author: Yanming Zhou -Date: Sun Jan 29 15:38:34 2023 +0800 - - Fix wrong @Deprecated since version - -commit ff8b673689b9cfcc2e18b023d8c1621731e56cc4 -Author: Yoann Rodière -Date: Thu Jan 26 09:45:06 2023 +0100 - - HHH-16104 Clarify that tests in package org.hibernate.orm.test.cdi.general.nonregistrymanaged are about Hibernate Search - - By renaming that package to - org.hibernate.orm.test.cdi.general.hibernatesearch, renaming the test - classes to include "HibernateSearch" in their name, and adapting - comments. - -commit 2c78d83b5a47bbaee0a5522d0167c944634bcedd -Author: Steve Ebersole -Date: Fri Jan 27 22:19:39 2023 -0600 - - HHH-16113 - Add version checks for MERGE support to dialects - -commit fd3670bbeb263d42c13e2cedec9c23d1dd6062c9 -Author: Steve Ebersole -Date: Fri Jan 27 17:25:22 2023 -0600 - - Unify example includes in terms of well-defined asciidoc attributes - - preparation step for moving tests out of `documentation` and into the proper projects (core, envers and spatial) - -commit 16ca1a0595eb304348ebe2a2a126b0362f30d1ef -Author: Christian Beikov -Date: Tue Aug 23 14:47:31 2022 +0200 - - HHH-15443 Allow JdbcType to wrap read and write expressions - -commit 67f8bee35ac67e7dcc90bc7054785387a7e2d3de -Author: Steve Ebersole -Date: Thu Jan 26 20:57:57 2023 -0600 - - HHH-16110 - MERGE for optional table update PostgreSQL - -commit b39c52b4d90617bfc8658eb50bc849518dd17d6b -Author: Jan Schatteman -Date: Thu Jan 26 22:53:12 2023 +0100 - - HHH-4299 - Add test for issue - - Signed-off-by: Jan Schatteman - -commit 46104cc50e49337a1d0b0f3909dec6186779963d -Author: Marco Belladelli -Date: Tue Dec 13 12:52:27 2022 +0100 - - HHH-15822 Make sure MappedSuperclass can act as type for entity valued paths - -commit 0a434325b0a1cb4066723c28ff94a1594bdde027 -Author: Christian Beikov -Date: Fri Jan 27 10:23:01 2023 +0100 - - HHH-15822 Update to HCANN 6.0.6.Final - -commit dcf62801dce11eaa4c992f46bafa60a7a5fa944d -Author: Marco Belladelli -Date: Tue Dec 13 12:50:41 2022 +0100 - - HHH-15822 Add test for issue - -commit cbf63345d433ce0ab1b1b407c8d108d539aed001 -Author: Jan Schatteman -Date: Wed Jan 25 22:21:23 2023 +0100 - - HHH-16020 - Fix for error that surfaced in the LegacyOracleLimitHandler due to the fix for HHH-16020 - - Signed-off-by: Jan Schatteman - -commit 640161fcf2a65e1353522755480cf11de16e612f -Author: Christian Beikov -Date: Fri Jan 27 10:28:55 2023 +0100 - - Switch version on main to 6.3.0-SNAPSHOT - -commit 1d62d2d66e9d35fcd51a22ed87b52121f8c840d1 -Author: Steve Ebersole -Date: Wed Jan 25 23:06:38 2023 -0600 - - HHH-16101 - MERGE for optional table updates on Oracle - -commit ee8d80a8bd0dd16699235de2e1c7d7e3720765cd -Author: Steve Ebersole -Date: Thu Jan 26 12:19:31 2023 -0600 - - HHH-16069 - Skip CDI for Hibernate extensions by default - -commit 6ebafc1cae91e51431e0c9141919d8578a9ab89c -Author: Andrea Boriero -Date: Thu Jan 26 15:17:44 2023 +0100 - - HHH-16108 NullPointerException when flushing a (simple) entity update for models with bytecode enhancement and multiple one-to-one associations (some lazy) - -commit 6bc1b244434a880b021739de721e6fb2fab588b1 -Author: Yoann Rodière -Date: Thu Jan 26 14:07:12 2023 +0100 - - HHH-16108 Test a (simple) entity update for models with bytecode enhancement and multiple one-to-one associations (some lazy) - - Stack trace: - - java.lang.NullPointerException: Cannot invoke "org.hibernate.metamodel.mapping.SelectableMapping.isFormula()" because "selectable" is null - - at org.hibernate.persister.entity.mutation.UpdateCoordinatorStandard.processSet(UpdateCoordinatorStandard.java:665) - at org.hibernate.persister.entity.mutation.UpdateCoordinatorStandard.processAttribute(UpdateCoordinatorStandard.java:640) - at org.hibernate.persister.entity.mutation.UpdateCoordinatorStandard.analyzeUpdateValues(UpdateCoordinatorStandard.java:600) - at org.hibernate.persister.entity.mutation.UpdateCoordinatorStandard.performUpdate(UpdateCoordinatorStandard.java:256) - at org.hibernate.persister.entity.mutation.UpdateCoordinatorStandard.coordinateUpdate(UpdateCoordinatorStandard.java:203) - at org.hibernate.persister.entity.AbstractEntityPersister.update(AbstractEntityPersister.java:2766) - at org.hibernate.action.internal.EntityUpdateAction.execute(EntityUpdateAction.java:165) - at org.hibernate.engine.spi.ActionQueue.executeActions(ActionQueue.java:616) - at org.hibernate.engine.spi.ActionQueue.lambda$executeActions$1(ActionQueue.java:487) - at java.base/java.util.LinkedHashMap.forEach(LinkedHashMap.java:721) - at org.hibernate.engine.spi.ActionQueue.executeActions(ActionQueue.java:484) - at org.hibernate.event.internal.AbstractFlushingEventListener.performExecutions(AbstractFlushingEventListener.java:358) - at org.hibernate.event.internal.DefaultFlushEventListener.onFlush(DefaultFlushEventListener.java:39) - at org.hibernate.event.service.internal.EventListenerGroupImpl.fireEventOnEachListener(EventListenerGroupImpl.java:127) - at org.hibernate.internal.SessionImpl.doFlush(SessionImpl.java:1412) - at org.hibernate.internal.SessionImpl.managedFlush(SessionImpl.java:485) - at org.hibernate.internal.SessionImpl.flushBeforeTransactionCompletion(SessionImpl.java:2277) - at org.hibernate.internal.SessionImpl.beforeTransactionCompletion(SessionImpl.java:1942) - at org.hibernate.engine.jdbc.internal.JdbcCoordinatorImpl.beforeTransactionCompletion(JdbcCoordinatorImpl.java:426) - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl.beforeCompletionCallback(JdbcResourceLocalTransactionCoordinatorImpl.java:169) - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.commit(JdbcResourceLocalTransactionCoordinatorImpl.java:267) - at org.hibernate.engine.transaction.internal.TransactionImpl.commit(TransactionImpl.java:101) - at org.hibernate.testing.transaction.TransactionUtil2.inTransaction(TransactionUtil2.java:128) - at org.hibernate.testing.transaction.TransactionUtil2.lambda$inTransaction$0(TransactionUtil2.java:76) - at org.hibernate.testing.transaction.TransactionUtil2.inSession(TransactionUtil2.java:35) - at org.hibernate.testing.transaction.TransactionUtil2.inTransaction(TransactionUtil2.java:74) - at org.hibernate.testing.junit4.BaseNonConfigCoreFunctionalTestCase.inTransaction(BaseNonConfigCoreFunctionalTestCase.java:590) - at org.hibernate.orm.test.bytecode.enhancement.lazy.proxy.LazyOneToOneMultiLevelTest.testPersist(LazyOneToOneMultiLevelTest.java:56) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:568) - at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:59) - at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) - at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:56) - -commit 6c385f7890c2bad40e1e41b805de7d597d5ee297 -Author: Andrea Boriero -Date: Thu Jan 26 14:19:23 2023 +0100 - - HHH-16106 Using BatchEntitySelectFetchInitializer causes PostLoad to be called before references are initialized - -commit 10458da7118dcf548989b2186f510f2ee71fe99d -Author: Andrea Boriero -Date: Thu Jan 26 14:18:41 2023 +0100 - - HHH-16106 Add test for issue - -commit d18cdbec350c83df53d4867868cbf2dbb8a9f66c -Author: Vedran Prišćan -Date: Wed Jan 25 12:00:14 2023 +0100 - - HHH-16096 Passing an ExtendedBeanManager which is notified too late leads to initialization error - -commit 94b20bafc84d3f26fa37bf41ed79f7be0f75a71c -Author: Marco Belladelli -Date: Tue Jan 24 18:07:14 2023 +0100 - - HHH-16070 Check for type parameters when setting declared identifier - -commit 3bfb2f66a152b67eaa048fac04fcebc4cb6c66c2 -Author: Marco Belladelli -Date: Tue Jan 24 12:47:39 2023 +0100 - - HHH-16070 Add test for issue - -commit 7cd6d0422f7ca0160cc12ed2bd7c0f141c4d2506 -Author: Marco Belladelli -Date: Tue Jan 17 15:49:31 2023 +0100 - - HHH-16023 Check fetchable declaring type when not found in persister - -commit 64b3855c7353d65f7c8b98963cc182a32c7ec668 -Author: Marco Belladelli -Date: Tue Jan 17 15:45:57 2023 +0100 - - HHH-16023 Add test for issue - -commit ae37509b11c6f8b5201aa203654181331fd34981 -Author: Sanne Grinovero -Date: Wed Jan 25 21:49:38 2023 +0000 - - HHH-16099 Introduce three-state handling for dirty levels to avoid excessive warnings - - We now differentiate between an Attribute which has been marked as "real dirty" from - one which needs to be "treated like dirty", so to not bother end users with a WARN - log when a non-updateable property had not been updated explicitly by them. - -commit 4fc7293c663c7532cce5396000d168a0330819f4 -Author: Yoann Rodière -Date: Thu Jan 26 09:22:49 2023 +0100 - - HHH-16069 Fix typo in migration guide - -commit df1ebfe32ab69456fe5bdcd71c56fe942fa66ca3 -Author: marko-bekhta -Date: Wed Jan 25 15:27:50 2023 +0100 - - Remove the support for HibernateOrmConfiguration annotation when collecting config properties - -commit d770ff159732438735d1d2a7da69cf524c760ec8 -Author: marko-bekhta -Date: Wed Jan 25 14:49:28 2023 +0100 - - Remove the notion of API/SPI when collecting properties - -commit 8562e4b94754595291609fca50ea1afe7bb1ae54 -Author: marko-bekhta -Date: Tue Jan 24 21:48:30 2023 +0100 - - Use -proc:only inside of task so that additional compilation is not performed - -commit e2640fc1925e35ece8d7374d518949cbdf6e5942 -Author: marko-bekhta -Date: Tue Jan 24 21:00:39 2023 +0100 - - Remove API/SPI grouping into different files - -commit 9f3a3520afd7559ee87dc144046618003ce74da8 -Author: marko-bekhta -Date: Tue Jan 24 13:36:22 2023 +0100 - - Remove default value extraction - -commit 8fa8b23d63f74e22e8846c609ae526954a8524cd -Author: marko-bekhta -Date: Mon Jan 23 19:54:31 2023 +0100 - - Add tasks to process sources and collect config properties - -commit e27dc5bc47d15aa9ed25738a60601f5276be533c -Author: Steve Ebersole -Date: Wed Jan 25 21:44:37 2023 -0600 - - HHH-16103 - MERGE for optional table updates on SQL Server - -commit 5525b8d9b7b3cc526b648c9be837a2024dcfcb40 -Author: Steve Ebersole -Date: Wed Jan 25 17:07:03 2023 -0600 - - HHH-16103 - MERGE for optional table updates on SQL Server - -commit 375f6b5f142857315d41334d9826bef9dd5ea01a -Author: Steve Ebersole -Date: Wed Jan 25 23:34:08 2023 -0600 - - HHH-16069 - Skip CDI for Hibernate extensions by default - -commit a742f5e98882190959582d5a44d132c9973cd19b -Author: Steve Ebersole -Date: Wed Jan 25 16:26:44 2023 -0600 - - HHH-16069 - Skip CDI for Hibernate extensions by default - -commit 9e033c8aeab2b2723a25b55b1ce9c2acbca085d7 -Author: Sanne Grinovero -Date: Wed Jan 25 18:02:13 2023 +0000 - - HHH-16099 Minor refactoring, extract local constants in UpdateCoordinatorStandard - -commit e00bdc7cb23fda8cb5aa57506aaa178722653508 -Author: Gavin -Date: Wed Jan 25 22:03:46 2023 +0100 - - fix typo in jdoc - -commit 0b5cb6c649e346e849266da32ad5e4282ef00a33 -Author: Sanne Grinovero -Date: Tue Jan 24 16:20:51 2023 +0000 - - HHH-16090 BasicResultAssembler logging optimisations - -commit 033eeb724112bf164a31e773c9f9fc6fe659b8f6 -Author: Christian Beikov -Date: Tue Jan 24 17:56:05 2023 +0100 - - Make session part of JdbcValueBindings - -commit e841b0aaaecc8d7d5ee3ed826b1197e314b2c6c9 -Author: Christian Beikov -Date: Tue Jan 24 14:51:51 2023 +0100 - - Get rid of some capturing lambdas - -commit 420e561f2106634f541d9f5d45b8f1738e65b7c4 -Author: Steve Ebersole -Date: Wed Jan 25 10:37:51 2023 -0600 - - HHH-16099 - Log about immutable properties only if dirty on update - -commit eca3ff13bd30309cf6e884f7d7d73a5d1d563915 -Author: Marco Belladelli -Date: Mon Jan 23 14:24:00 2023 +0100 - - HHH-16062 Apply settings and hints to criteria queries - -commit 136169d43af1c02d7f97bf117b6fc5ccf7cf8199 -Author: Marco Belladelli -Date: Mon Jan 23 14:23:34 2023 +0100 - - HHH-16062 Add test for issue - -commit 528d897c4d18281c26c587ff900883dd6da997ad -Author: Yoann Rodière -Date: Tue Jan 24 12:03:12 2023 +0100 - - HHH-16085 Test mapping arrays with @JdbcTypeCode(Type.VARBINARY) - - This is useful to revert to pre-6.1 behavior for array mapping in particular. - -commit e464f53df8b98ca7e5f42de8210ef988e1797206 -Author: Christian Beikov -Date: Wed Jan 25 17:34:15 2023 +0100 - - Fix compile error - -commit 49779ed4dc2e43bc6e94aeb986c17db1758a71d9 -Author: Andrea Boriero -Date: Wed Jan 25 15:34:54 2023 +0100 - - HHH-16005 Add test for issue - -commit f15d6ee5fb587cdb9cc93d9b04fb149cf1475bae -Author: Andrea Boriero -Date: Wed Jan 25 15:01:41 2023 +0100 - - HHH-16025 Using BatchEntitySelectFetchInitializer with caching leads to caching wrong values - -commit ac0a27eca27ce7045ca6c1beebefa7f55403aca5 -Author: Andrea Boriero -Date: Wed Jan 25 14:09:54 2023 +0100 - - HHH-16025 Add test for issue - -commit b033b884727e189da7bdc2a1aa3bb7eb02a960f1 -Author: Andrea Boriero -Date: Thu Jan 19 15:06:21 2023 +0100 - - HHH-15921 @BatchSize and @IdClass on join column throws exception - -commit dbaca049c8b09b09ae3ccd24aa69342f273adbda -Author: Andrea Boriero -Date: Wed Jan 25 13:09:11 2023 +0100 - - HHH-16039 Add test for issue - -commit 8d0729f543280602c3250fd50c0cce792555faab -Author: Andrea Boriero -Date: Thu Jan 19 15:05:50 2023 +0100 - - HHH-15921 Add test for issue - -commit f9b169242a6a5ffbc7a7003563ecc3d9d528abdf -Author: Marco Belladelli -Date: Thu Jan 19 17:09:49 2023 +0100 - - HHH-16043 Correct single ID and init empty for batch collection loading - -commit 17506b7f80f3acb0ab11e94584b62ee288826ff4 -Author: Marco Belladelli -Date: Thu Jan 19 17:06:14 2023 +0100 - - HHH-16043 Add test for issue - -commit 2d7774b9ab933b9ee306a6e33c168557447229ac -Author: Sanne Grinovero -Date: Tue Jan 24 17:45:51 2023 +0000 - - HHH-16091 Optimize also AbstractStandardBasicType#compare and #fromString - -commit 12c7252c596e3e2a26bb3e7b9c1a22b6705863d0 -Author: Sanne Grinovero -Date: Tue Jan 24 17:36:29 2023 +0000 - - HHH-16091 Make AbstractStandardBasicType#getMutabilityPlan return a constant too - -commit b77bbf06506ad3aeda64b046c0cfe4e9c3b8ba82 -Author: Sanne Grinovero -Date: Tue Jan 24 17:32:49 2023 +0000 - - HHH-16091 Make AbstractStandardBasicType#getReturnedClass return a constant - -commit 12abcc4c6077e5b722af8dc2e3a452a976c5f2c0 -Author: Sanne Grinovero -Date: Tue Jan 24 15:12:01 2023 +0000 - - HHH-16091 AbstractStandardBasicType to avoid megamorphic dispatch when dealing with AbstractClassJavaType - -commit 567697db550573f4170908733f9fcd54806b302e -Author: Christian Beikov -Date: Wed Jan 25 09:35:11 2023 +0100 - - Update Mockito to 5.0.0 - -commit 1652102c1a9ad86ff11a1d8cd786284a20f6a659 -Author: Sanne Grinovero -Date: Tue Jan 24 21:56:43 2023 +0000 - - HHH-16092 Trim allocation size of CacheKeyImplementation, avoid Objects::deepEquals - -commit 4ca590267235e05a55d6916c82874d64661d5ea7 -Author: Gavin -Date: Wed Jan 25 09:52:37 2023 +0100 - - mention the query result set cache in the javadoc - -commit a0d162cde896d3dce1ab7a9109388d8a976c2549 -Author: Christian Beikov -Date: Wed Jan 25 09:32:16 2023 +0100 - - Fix test failure by respecting custom insert/delete SQL for secondary tables - -commit 0bb04b102136a3703cfbfa6b865169450002eb2e -Author: Gavin -Date: Tue Jan 24 22:07:11 2023 +0100 - - HHH-16089 allow @Synchronize for a collection - -commit 803a9a0ffbd24078b7f78fcd2e5ea156d9a9deaa -Author: Karel Maesen -Date: Tue Jan 24 19:09:30 2023 +0100 - - Update memory config for CockroachDB configuration - - With the previous setting the cockroach process is killed by the OOM-killer. - -commit 2a24876f69415bee327645ea0a8b86f3db4acc19 -Author: Steve Ebersole -Date: Tue Jan 24 03:58:32 2023 -0600 - - HHH-16084 - MERGE (upsert) for optional table updates - H2 - -commit 21b7745768110a555b4b81117a0e4ee4b582129e -Author: Steve Ebersole -Date: Tue Jan 24 01:31:46 2023 -0600 - - HHH-16084 - MERGE (upsert) for optional table updates - H2 - -commit 998f2ef21f0510cc0e2c50132aed6804e0c2c96a -Author: Marco Belladelli -Date: Mon Jan 23 16:59:35 2023 +0100 - - HHH-15933 Better property owner check + new test case for JoinedSubclass - -commit 49690bf4ce9c9d4c3f7c260a85f94df7a37825ed -Author: Marco Belladelli -Date: Wed Jan 18 18:27:54 2023 +0100 - - HHH-15933 Table reference by name and change referenced property owner - -commit a4e2fe57cc91d550da881f87a7d9eb6c86c9617a -Author: Andrea Boriero -Date: Thu Jan 12 18:12:21 2023 +0100 - - HHH-16033 Many-to-Many inverse mapping referencing the same class uses pk instead of fk field for removal - -commit ea8b0649a2c7d35b99b6517202ba75295faa6671 -Author: William Burns -Date: Thu Jan 12 08:18:26 2023 -0800 - - HHH-16033 Many-to-Many inverse mapping referencing the same class uses pk instead of fk field for removal - - * Just reproducer for issue - -commit 1638c074d515aa903bf65ad2c886e0ea715ed03e -Author: Andrea Boriero -Date: Tue Jan 17 10:19:55 2023 +0100 - - HHH-16031 @ManyToMany with @JoinTable(inverseColumn = ...) and SortedSet may results in data loss - -commit f4aec1cd0a8f9692e60d054d726f9cb2ad641a8c -Author: Andrea Boriero -Date: Mon Jan 16 14:03:58 2023 +0100 - - HHH-16031 @ManyToMany with @JoinTable(inverseColumn = ...) and SortedSet may results in data loss - -commit 241fe54d0a42a1451155a8ef667528a762ddf67f -Author: Yoann Rodière -Date: Thu Jan 12 13:38:47 2023 +0100 - - HHH-16031 Test @ManyToMany + @JoinTable(inverseColumn) on a SortedSet - -commit 0983b4725245a8f7a6e6014b697e10ff19f90b45 -Author: Andrea Boriero -Date: Tue Jan 17 12:53:03 2023 +0100 - - HHH-16049 Setting a property to its current value with bytecode enhancement enabled results in unnecessary SQL Update in some (many) cases - -commit 3d9a1bce9b9222439b0d43078e3459c9cd27bd5b -Author: Andrea Boriero -Date: Tue Jan 17 12:50:28 2023 +0100 - - HHH-16049 Test setting a property to its current value with bytecode enhancement enabled - -commit 5bd1f7c05b54b8089883286c10978465e5e16156 -Author: Yoann Rodière -Date: Mon Jan 16 15:17:32 2023 +0100 - - HHH-16049 Test setting a property to its current value with bytecode enhancement enabled - -commit acbfa0a060b479f9c56d3c276e01a0ad0f858b2a -Author: Yoann Rodière -Date: Mon Jan 16 13:54:19 2023 +0100 - - HHH-16049 Restructure lazy-basic tests for easier re-execution and better test reports - -commit 12c69c85288fd3e3269fda77e569ee6b0105a1cd -Author: Marco Belladelli -Date: Wed Jan 18 14:14:22 2023 +0100 - - Fix wrong version check in from dual for select only for MySQL - -commit 6e442aaed5ff247a14e8123f3465a665e21063c9 -Author: Steve Ebersole -Date: Mon Jan 23 21:32:31 2023 -0600 - - HHH-16077 - Added named native queries cannot specify result-class - -commit e7b2f9b121ea12faf3b03b12dd212cecbba28cb1 -Author: Steve Ebersole -Date: Mon Jan 23 20:26:49 2023 -0600 - - HHH-16077 - Added named native queries cannot specify result-class - -commit 4a37bf8017e036a517ff189ce3cae9661a4b2666 -Author: Gavin -Date: Mon Jan 23 16:54:34 2023 +0100 - - fix another typo - -commit ea6d76b9b47d8614481155ab35ad8b420a22c7ed -Author: Gavin -Date: Mon Jan 23 16:48:50 2023 +0100 - - fix typos - -commit 6e590a0149a7d6bab28ef4ec7fe43f131e6a0f43 -Author: Gavin -Date: Mon Jan 23 15:18:25 2023 +0100 - - clean up impl of query hint interpretation - - use 'switch' statements - -commit 8755129648dd2ff40625d86b136befb92953c612 -Author: Marco Belladelli -Date: Tue Jan 17 17:45:58 2023 +0100 - - HHH-16050 StandardStack optimization using custom array implementation - -commit 01db71c2725fa99ae05773ce36d11b28dcdd2915 -Author: Andrea Boriero -Date: Thu Jan 19 16:02:28 2023 +0100 - - HHH-16061 SqmDynamicInstantiation warns about dynamic Map instantiation when using an entity - -commit e6b94398de2d81eaebdcf40c9a04feb617df4dc2 -Author: Andrea Boriero -Date: Thu Jan 19 16:02:03 2023 +0100 - - HHH-16061 Add test for issue - -commit e0e3921503f87e66a22e47910e3a271bc2df6d87 -Author: Gavin -Date: Sun Jan 22 21:25:13 2023 +0100 - - more query space javadoc improvements - -commit 662594fd5f7f4c91de5ae11e7c81924c9915c0b1 -Author: Gavin -Date: Sun Jan 22 12:27:58 2023 +0100 - - HHH-16079 rewrite javadoc relating to query spaces + add @Synchronize(logical=false) - -commit 75f3f699b52fbf554949969f2980c8a7a8dc8d12 -Author: Gavin -Date: Sun Jan 22 11:22:58 2023 +0100 - - very minor cleanups - -commit 35f0c57f07a7e3510b07b6fd8b0f2f469fec1e38 -Author: Steve Ebersole -Date: Fri Jan 20 17:45:11 2023 -0600 - - HHH-15949 - Make MetadataBuilderContributor discoverable - -commit b5022f94d3b9b3a78d3c15c4156a3478a6eefe19 -Author: Steve Ebersole -Date: Fri Jan 20 16:42:14 2023 -0600 - - HHH-15949 - Deprecate MetadataContributor - -commit f310f80e33126e1b6467dbaab90d2f0f2a3a98c9 -Author: Scott Marlow -Date: Fri Jan 20 11:58:49 2023 -0500 - - HHH-16076 upgrade to EE 10 versions of EE SPEC API + impl - - Signed-off-by: Scott Marlow - -commit bab25b42e46d68fda007f0cb5855d306473ce3fc -Author: Steve Ebersole -Date: Fri Jan 20 15:47:37 2023 -0600 - - HHH-16077 - Added named native queries cannot specify result-class - -commit ba53bc4dad24112fed402f452e51df720354ceb3 -Author: Sanne Grinovero -Date: Thu Jan 19 12:16:23 2023 +0000 - - HHH-16067 Upgrade to Jackson 2.14.1 - -commit 216b0fc629a0107c1adacdd89582f83743404720 -Author: Sanne Grinovero -Date: Thu Jan 19 12:14:26 2023 +0000 - - HHH-16066 Upgrade Jandex to 3.0.5 - -commit 381eaf5723515de756585273136013cb36560b6b -Author: Sanne Grinovero -Date: Thu Jan 19 12:13:45 2023 +0000 - - HHH-16065 Upgrade Jakarta CDI API to 4.0.0 - -commit b3d6d6c76be686191cedf36990dc041a93b9e91e -Author: Sanne Grinovero -Date: Thu Jan 19 12:13:28 2023 +0000 - - HHH-16064 Upgrade JBoss Logging to 3.5.0.Final - -commit 58b7fb235a358bfccd60b93c4c377b0c63c5ca67 -Author: Sanne Grinovero -Date: Thu Jan 19 12:13:13 2023 +0000 - - HHH-16063 Upgrade Micrometer to 1.10.3 - -commit 94054f6a57e203fefe352cc6bb9da7788d0685c5 -Author: Sanne Grinovero -Date: Tue Jan 10 15:19:14 2023 +0000 - - HHH-16072 Restore SPI removal SharedSessionContractImplementor.getTransactionStartTimestamp() - -commit 800873c43d44bc954cef8f4abb11bfe4719570a8 -Author: Sanne Grinovero -Date: Wed Jan 18 14:41:42 2023 +0000 - - HHH-16058 Removing Environment#getBytecodeProvider - -commit 1e21d1c6d1a1df453d81ebcb21592451f3a27310 -Author: Andrea Boriero -Date: Fri Jan 20 14:53:41 2023 +0100 - - HHH-16006 Fix checkstyle error - -commit 1b09d20da03c1615e0c4c68d9fad9e7849b821ca -Author: Gavin -Date: Fri Jan 13 22:31:40 2023 +0100 - - deprecate config property org.hibernate.flushMode on AvailableSettings - - it's actually a JPA hint, and rightfully belongs on HibernateHints - -commit a986a3806a2756b73845a2e9942b5ea86b0893fd -Author: Gavin -Date: Tue Jan 17 00:27:41 2023 +0100 - - add convenience method to retrieve Dialect from FunctionContributions - - because in fairness this is a little hard to find - -commit a552a7363270b84f0590003b973a3701b2f9be0f -Author: Steve Ebersole -Date: Thu Jan 19 16:30:32 2023 -0600 - - HHH-16006 - Implement an "additional mapping" contributor SPI - -commit 863faf4c980ce67dee03b785a17980dc94ae5f57 -Author: Sanne Grinovero -Date: Thu Jan 19 11:55:26 2023 +0000 - - HHH-16060 Upgrade Narayana used for integration testing to version 6.0.0.CR1 - -commit e03b3f051a4ee7b1924c0713c48231eb7d982976 -Author: Davide D'Alto -Date: Thu Jan 19 12:27:15 2023 +0100 - - HHH-16059 Add getters to CteInsertHandler - - And the relax scope of a private method. - - This way Hibernate Reactive can access them. - -commit e2baceb38205d249da8915aa4bb417a12d6f4cbd -Author: Davide D'Alto -Date: Thu Jan 19 10:20:11 2023 +0100 - - HHH-16059 Add getters and relax scopes - - extending CteInsertStrategy and CteMutationStrategy - -commit f53a29ab12e0eda878a68c3ae974c6eaf5accfb8 -Author: Jan Schatteman -Date: Thu Jan 12 23:20:55 2023 +0100 - - HHH-16020 - Fix for incorrect offset parameter index and add test for - issue - - Signed-off-by: Jan Schatteman - -commit 4d78b132932def788d9845850ac6595fae88f552 -Author: Yoann Rodière -Date: Wed Jan 18 10:08:17 2023 +0100 - - Stop testing against JDK 18 - - JDK 18 EOL'd on 2022-09-20 - See https://endoflife.date/java - -commit eefe445ac9dd82138a421d2728c8565a39ea17de -Author: Yoann Rodière -Date: Wed Jan 18 10:07:53 2023 +0100 - - Test against JDK 21 EA - -commit 67dc1ed835c59bf322ffdd3a464a6bf7fe2d5f5c -Author: Sanne Grinovero -Date: Mon Jan 16 12:27:17 2023 +0000 - - HHH-16052 EntityKey and CollectionKey equality optimisation - -commit cf65a2d27571491a11f933a61864732ff95d47f0 -Author: Gavin -Date: Tue Jan 17 00:43:47 2023 +0100 - - improve javadoc for hibernate.hbm2ddl.import_files_sql_extractor - -commit 84a652bfe7cad2e27f1001187faf3f965fde44e2 -Author: Sanne Grinovero -Date: Mon Jan 16 18:20:36 2023 +0000 - - HHH-16051 Avoid stateful lambdas on invocations of Stack#findCurrentFirst - -commit c570b11dcd64d76e939aa9fe318197fd474c7274 -Author: Sanne Grinovero -Date: Sun Jan 15 23:19:50 2023 +0000 - - HHH-16047 Allow reusing of FlushEntityEvent instances - -commit 9f88b560996caaa3e58209de730b53c499b2f17f -Author: Sanne Grinovero -Date: Sat Jan 14 22:19:43 2023 +0000 - - HHH-16046 Improve memory safety of mutations in EventListenerGroupImpl - - Also avoid for method listeners() to allocate a new List at each use; - this method was deprecated but it appears it’s still being used in - various event processors, which is being flagged as a performance issue. - -commit 48df4e15aaa02060311bd1d1c4721c6844806b8c -Author: Sanne Grinovero -Date: Fri Jan 13 14:35:25 2023 +0000 - - HHH-16046 EventListener iterations should avoid using EventListenerGroup#listeners when possible - -commit a1d43adad48950be9b6028069affc0d9face4475 -Author: Gavin -Date: Sat Jan 14 12:25:35 2023 +0100 - - Oracle does support offsets/zones in datetime literals - - + some minor cleanups - -commit 6a238adc6cc38f93b1c7ca93fd8e22624b5b806e -Author: Gavin -Date: Sat Jan 14 11:00:55 2023 +0100 - - tolerate 'local' keyword in date and time literals - - no reason to choke on this, doesn't seem to be ambiguous - -commit 4a87bc4bb814782eb0f188ccbac7c1023e69e7b9 -Author: Gavin -Date: Sat Jan 14 10:59:58 2023 +0100 - - use custom-rendered datetime literals on MySQL instead of JDBC escapes - -commit 2aece6fb952c1e2be9d7ffb4ea8912a8d2456d33 -Author: Gavin -Date: Sat Jan 14 01:42:18 2023 +0100 - - HHH-16035 use custom-rendered datetime literals on DB2 instad of JDBC escapes - - The JDBC escapes didn't play so well with duration arithmetic. - -commit 8f29ae95c98ccb295fe9ddbc059d3eaa1e874473 -Author: Gavin -Date: Fri Jan 13 23:48:36 2023 +0100 - - more javadoc for Dialect.getFractionalSecondPrecisionInNanos() - -commit 56774f80d7732bcb10d638b65e6b6b7e2cf14bb2 -Author: Gavin -Date: Fri Jan 13 22:07:55 2023 +0100 - - fix handling of typestamp arithmetic on Sybase - - this was a total inconsistent mess that made no sense - -commit c852d1ca0d98d802ac79cad7a7a5db915c883cd6 -Author: Gavin -Date: Fri Jan 13 18:01:54 2023 +0100 - - more HQL duration tests - -commit a9414fa6be224bed717baf5df6b2347359f159b2 -Author: Gavin -Date: Fri Jan 13 15:47:14 2023 +0100 - - disable test for no-longer-allowed literal syntax - - I had to disallow this because it was too ambiguous - -commit ae978b3d10fa77da691c7751764edc97062fe5b3 -Author: Gavin -Date: Fri Jan 13 14:56:34 2023 +0100 - - fix an ambiguity in the grammar of datetime literals - - this was my very stupid mistake - -commit 43cce5fe5e2fba4f06299d912f57adbe8b7a8423 -Author: Gavin -Date: Fri Jan 13 14:54:20 2023 +0100 - - HHH-16035 fix bug with Durations magnitude being off by 10^9 - -commit 2f5f5b9a50c2eae1730cde744040b07be96b7b44 -Author: Gavin -Date: Fri Jan 13 10:44:47 2023 +0100 - - HHH-16035 add a test for cast(duration as Long) + tests for duration arithmetic/literals - - (pulls in duration arithmetic tests from other branch) - -commit 6ca9643c72c76556f7adb26262df61669480abad -Author: Gavin -Date: Fri Jan 13 11:23:14 2023 +0100 - - HHH-16035 document Duration -> NUMERIC mapping - -commit 6f7b17d36b0a3fc7876dd8880988aff011925b7c -Author: Gavin -Date: Fri Jan 13 10:31:43 2023 +0100 - - HHH-16035 change the default for hibernate.type.preferred_duration_jdbc_type to NUMERIC - - There's really no value at all in having h2 as the only platform where Duration - is persisted as 'interval second' by default. People usually use h2 for testing, - and probably actually prefer if the schema is more similar to the schema of - their "real" database. - - Also, this tiny change fixes issues 1. and 2. of HHH-16035 as a side-effect. - -commit 669be6a776d9b7cb7b3fec0e210c2e466f9dba3c -Author: Matías Santurio -Date: Fri Jan 13 10:09:12 2023 -0300 - - HHH-16038 Fix PersistenceContext.setDefaultReadonly javadoc mistake - -commit 85a5b17ae38587c6e1289f56541601d8299106f1 -Author: LLEFEVRE -Date: Fri Jan 13 10:14:30 2023 +0100 - - HHH-16036 Fix Oracle CI parameter STATISTICS_LEVEL - -commit 80b638aecad8228365033623f6182c47559282b2 -Author: Christian Beikov -Date: Mon Jan 9 12:31:01 2023 +0100 - - Introduce getSingleJdbcMapping() and getJdbcMapping(int) to improve JdbcMappingContainer accesses - -commit d64873bde6d00aa5ed456aef06c6208c1fd31eb5 -Author: Sanne Grinovero -Date: Thu Jan 12 22:24:39 2023 +0000 - - HHH-15305 Some dead code elimination and analysis cleanup - -commit 3d4cb14627dcc0f0e3f8af91dd0d4c853bd127e5 -Author: Sanne Grinovero -Date: Thu Jan 12 22:00:36 2023 +0000 - - HHH-15305 Switch size management in BoundedConcurrentHashMap to use an AtomicInteger - -commit 7e5c3c8dde3093d6132798ffaebbfd289768dec4 -Author: franz1981 -Date: Tue May 31 16:30:19 2022 +0200 - - HHH-15305 Update custom LIRS implementation based on BoundedConcurrentHashMap - -commit 2143ced49ea9a0f9739b36591de8310a9c5e6236 -Author: Andrea Boriero -Date: Thu Jan 12 15:19:08 2023 +0100 - - HHH-15604 Identically-named association in entity root and elementcollection of embeddables leads to assertion error - -commit b774f80ce987296cf79af3efb202acf9983dce59 -Author: Andrea Boriero -Date: Thu Jan 12 12:12:41 2023 +0100 - - HHH-15966 ElementCollection with nested Embeddables fails with ArrayIndexOutOfBoundsException - -commit 00018731f891d25088483ce13790d084465a6899 -Author: Andrea Boriero -Date: Fri Dec 30 22:41:35 2022 +0100 - - HHH-15604 Identically-named association in entity root and elementcollection of embeddables leads to assertion error - -commit cfc7b7ba6620a1a4c6c7b6067905295c5e59ff85 -Author: Yoann Rodière -Date: Fri Oct 14 14:44:30 2022 +0200 - - HHH-15604 Test identically-named association in entity root and elementcollection of embeddables - -commit b5d58e69ae30b1875fad6e897a7f8dcc4f37808c -Author: Marco Belladelli -Date: Wed Jan 11 13:02:53 2023 +0100 - - HHH-15928 Check distinct and sub-queries for SQLServer fetch / offset - -commit 21d7d2bb102cec81c76db4e25a33c7a38afb1ccc -Author: Marco Belladelli -Date: Tue Jan 10 12:25:38 2023 +0100 - - HHH-15928 Add test for issue - -commit 73da49626ddaefa651b4f50923965f6076ab5cda -Author: Marco Belladelli -Date: Thu Jan 12 13:46:33 2023 +0100 - - Fix select without from in old versions of MySQL and MariaDB - -commit 7b308d048f3ef36615be1a51b542b370c37f5fc3 -Author: Andrea Boriero -Date: Wed Jan 11 17:46:54 2023 +0100 - - HHH-15902 @OneToMany relationship with @Where on child table generates wrong sql - -commit 3765837b9e6e6ab25e17391da310e5dbcd6fade2 -Author: Andrea Boriero -Date: Wed Jan 11 17:46:16 2023 +0100 - - HHH-15902 Add test for issue - -commit b037047e2476295ebbb7b04c392df00ce5b9c197 -Author: Sanne Grinovero -Date: Thu Jan 12 11:34:04 2023 +0000 - - HHH-16030 Improve name for method EntityInitializer#isInitialized and avoid providing a default implementation - -commit 146f7fc2341f3d12a473e7a42d7eeb74114c51bd -Author: Sanne Grinovero -Date: Thu Jan 12 11:30:18 2023 +0000 - - HHH-16029 Remove misleading method EntityInitializer#isEntityResultInitializer - -commit b725dc4f2025d77733ad44c92c4cdaef75eb304f -Author: Sanne Grinovero -Date: Thu Jan 12 11:37:58 2023 +0000 - - Prefer using asEntityInitializer() over direct cast - -commit 8fa39d773b767846c3bcb7362592ed0bfc2ab913 -Author: Marco Belladelli -Date: Wed Jan 11 10:54:01 2023 +0100 - - HHH-16014 Cache treated paths + root logic in copy context for paths - -commit b0d03e39e2b5872851e1084d7a0f2b6ef03be722 -Author: Marco Belladelli -Date: Tue Jan 10 14:17:56 2023 +0100 - - HHH-16004 Add test for issue - -commit 303da7fca896f8a543b7b102ed9ca60eaab51d8c -Author: Andrea Boriero -Date: Wed Jan 4 11:43:15 2023 +0100 - - HHH-15986 Eager Bidirectional association, initializing an HibernateProxy should associate to the circular association the HibernateProxy itself - -commit e0ff4309360e50774080d9eb98333e3f655dbdcd -Author: Andrea Boriero -Date: Wed Jan 4 11:20:28 2023 +0100 - - HHH-15986 Add test for issue - -commit a3b2e9b4ae93c6ae89230446ebadac115aba7678 -Author: Gavin -Date: Wed Jan 11 23:41:17 2023 +0100 - - HHH-16028 allow FunctionContributor to be registered programmatically - - since we can do this with its friend TypeContributor - -commit 2e84d51838eaab0c535aa06cf285fad6e32ff13f -Author: Gavin -Date: Wed Jan 11 20:32:01 2023 +0100 - - HHH-16027 add TypeContributions.contributeAttributeConverter() - -commit 7444b26db4572902844ffb816f356a91a4b6596a -Author: Gavin -Date: Wed Jan 11 17:10:20 2023 +0100 - - HHH-15948 move org.hibernate.metamodel.model.convert to org.hibernate.type.descriptor.converter - -commit 32c8977406d8219e87a0a024410f46dd218dfa0c -Author: Gavin -Date: Wed Jan 11 12:17:13 2023 +0100 - - deprecate layer-breaking method SessionFactory.getSessionFactoryOptions() - -commit e23318aa956d3c42cae96cd95ca5a4ed96a5edf7 -Author: Gavin -Date: Wed Jan 11 12:07:54 2023 +0100 - - remove type parameter from StatelessSessionBuilder - - this was already done for SessionBuilder, but apparently StatelessSessionBuilder got forgotten - -commit 1606953a32426bc41a36371afdbc694a8fabb1a2 -Author: Gavin -Date: Wed Jan 11 11:12:24 2023 +0100 - - make SelfRenderingFunctionSqlAstExpression not blow up with NPE - - this doesn't exactly *fix* cases with a nonsensible argument list, - but it at least gives us a chance to produce a more meaningful error - -commit 296cbb88bd81d8c3735e673286cb28d1e3ce929a -Author: Gavin -Date: Wed Jan 11 10:36:04 2023 +0100 - - fix queries like 'select ... where ...' with no 'from' clause - - this was another bug that resulted from the unnecessary use of - the untypesafe getChild() method in SemanticQueryBuilder. It's - really important that we migrate away from that, who knows how - many other bugs are lurking? - -commit c402431b9fc35bc9fc38acc9df125b8984be0e0a -Author: Christian Beikov -Date: Wed Jan 11 12:07:33 2023 +0100 - - Fix null constraint violation issue introduced in previous commit - -commit ce0084cf187596dabf02fa391955beb6e2e35045 -Author: Christian Beikov -Date: Tue Jan 10 18:13:14 2023 +0100 - - Update CockroachDB testing to use version 22.2.2 - -commit 82fbbd6c0eb9ba33d91f9b5f4aa3f18dc113d9f1 -Author: Christian Beikov -Date: Tue Jan 10 18:12:47 2023 +0100 - - Remove unnecessary usage of identity generation to avoid Oracle 11 issues - -commit 722a216593ee312ce5f8005995bcad0d2d301f96 -Author: Jan Schatteman -Date: Mon Jan 9 20:50:10 2023 +0100 - - HHH-15372 - Update the jpa schema versions - - Signed-off-by: Jan Schatteman - -commit 3eff73a2082cd77828340888fc9b0cc4924597c8 -Author: Christian Beikov -Date: Tue Jan 10 15:57:34 2023 +0100 - - Update to JPA TCK 3.1.1 - -commit 2a302a59fff04eed091c1b9e96d20e15ff7dfaea -Author: Steve Ebersole -Date: Tue Jan 10 08:40:17 2023 -0600 - - Move IndexedConsumer and IndexedBiConsumer to more top-level package - -commit 5d86d88c0303ec102099085e35c9bd37b039cf51 -Author: Gavin -Date: Tue Jan 10 12:16:52 2023 +0100 - - HHH-16010 fix two bugs in natural id handling found just by inspection of code - - - fix place where id and entity had always been passed in reversed order - - fix place where whole state array was passes instead of natural id array - - change the API of NaturalIdResolutions because it never needs the session, - and the fix involved calling it from a place we did not have one - - and also clean up a bunch of warnings - - improve some visually-ugly code in AbstractEntityEntry - -commit 6d15c1d1152975b34e912a85f5ad360e8e48c874 -Author: Andrea Boriero -Date: Tue Jan 10 10:10:18 2023 +0100 - - HHH-15647 Add test for issue - -commit d1a890a9cca300dd5e7ea519c2e9a2a232411a34 -Author: Steve Ebersole -Date: Mon Jan 9 18:14:27 2023 -0600 - - HHH-16006 - Implement an "additional mapping" contributor SPI - -commit a9ef9045f2e2956f004bea5b8d1170bf00558d37 -Author: Steve Ebersole -Date: Mon Jan 9 15:41:56 2023 -0600 - - HHH-16006 - Implement an "additional mapping" contributor SPI - -commit ab860555656604530d6ed31a45b2a675cb6e1c40 -Author: Marco Belladelli -Date: Mon Jan 9 17:15:06 2023 +0100 - - HHH-15890 Fix shouldEmulateFetchClause method for DB2(i)SqlAstTranslator - -commit dcc05b8c6ce11ea064e32f67fc750af7aa5fa074 -Author: Gavin -Date: Sun Jan 8 14:32:40 2023 +0100 - - HHH-16008 promote joinTransaction() and isJoinedToTransaction() to SharedSessionContract - - so they are available on a StatelessSession - -commit 436527b4ba13bb15829003a2db7fb0e5610a0bf7 -Author: Marco Belladelli -Date: Mon Jan 9 15:10:56 2023 +0100 - - HHH-15982 Check property type when setting bidirectionalAttributeName - -commit e26f4d25ab1ccf5711f7fbd4ad6cd41aa1844e1c -Author: Marco Belladelli -Date: Mon Jan 9 12:13:41 2023 +0100 - - HHH-15982 Refactor tests to use StatementInspector - -commit bf60dd9d2a541dd6d7e04865a4830f8f93ec0645 -Author: Gavin -Date: Mon Jan 9 13:42:49 2023 +0100 - - add some cross-links to Configuration to javadoc - -commit a48422ee9b91d98f4b0c58163706539a10e89efc -Author: Gavin -Date: Mon Jan 9 13:06:09 2023 +0100 - - try to make StatementInspector a little more prominent in the javadoc - -commit 8b86e082ef79bcee57a3470cb1d675c9891bf66f -Author: Andrea Boriero -Date: Sat Dec 31 20:21:01 2022 +0100 - - HHH-15851 Mixup of entities in refresh with BatchSize - -commit 72985d7c4df1ddbe14864b621e7e020713f83a2f -Author: Andrea Boriero -Date: Sat Dec 31 16:21:12 2022 +0100 - - HHH-15851 Add test for issue - -commit 87ba85232f5159f92cfeb281725c8a3a1181a6a8 -Author: Marco Belladelli -Date: Wed Jan 4 11:37:42 2023 +0100 - - HHH-15982 Fix bidirectional one-to-one detection for mappedBy side - -commit 5f08ffed8373c9a89e0935e305e902e77d2e25c3 -Author: Marco Belladelli -Date: Tue Jan 3 17:47:09 2023 +0100 - - HHH-15982 Add parentAccess logic to unique key initializer - -commit 39f2482ebf16109ba5c06f7b74acb4ec9558ccbc -Author: Marco Belladelli -Date: Mon Jan 2 17:35:42 2023 +0100 - - HHH-15950 Add test for issue - -commit 6f7b9362d2f9e8f8066f6973f4e731ccb059d5fe -Author: Andrea Boriero -Date: Sat Dec 31 12:24:41 2022 +0100 - - HHH-15839 CriteriaBuilder treat method on Path causes ClassCastException - -commit f7ae48ad0853d9b3345beed701e07ed0c5122a55 -Author: Andrea Boriero -Date: Sat Dec 31 12:22:01 2022 +0100 - - HHH-15839 Add test for issue - -commit 82c94ec1425311a9d5ba17aa5427840d4edee561 -Author: Gavin -Date: Sun Jan 8 14:21:23 2023 +0100 - - add BinaryLengthTest - - to make sure it's possible to have programs with byte[] fields work across Postgres and others - -commit 1f0a7e176064c0f51c29d313e45296f23db6fa50 -Author: Gavin -Date: Sat Jan 7 21:43:11 2023 +0100 - - clean some unused imports - -commit 0007820abaeb532748c6f7b1ff8c180fd9ea3fc5 -Author: Gavin -Date: Sat Jan 7 20:06:48 2023 +0100 - - HHH-16000 improve javadoc for @HQLSelect and @SQLSelect - -commit f8f6e4d54195a369042b68407e41de7342a0e0d6 -Author: Gavin -Date: Sat Jan 7 13:54:45 2023 +0100 - - HHH-16000 Add @HQLSelect annotation as abbreviation for @NamedQuery + @Loader - - and deprecate @Loader - -commit 3ceb91d28097fe43459b9d64002526564e172ced -Author: Gavin -Date: Sat Jan 7 11:32:41 2023 +0100 - - HHH-16000 Add @SQLSelect annotation as abbreviation for @NamedNativeQuery + @Loader - -commit bfdd7f648b3258902025414cddd6ccae9874176e -Author: Gavin -Date: Sat Jan 7 02:53:26 2023 +0100 - - HHH-10557 fix @Loader applied to a collection - - the issue here is we have no @CollectionResult for annotation-based result set mappings - -commit 0db49aa2d598f953060cd2231750731c3ecf8842 -Author: Gavin -Date: Sat Jan 7 02:57:49 2023 +0100 - - fix character encoding problem - -commit 54402da721cb0e2273c073511c2d3cf4045aa432 -Author: Marco Belladelli -Date: Wed Jan 4 18:27:36 2023 +0100 - - HHH-15985 Custom trunc and round function for PostgreSQL and Cockroach - -commit 74689f26a557f91b38a052d14850ba82d619cb40 -Author: Jan Schatteman -Date: Fri Dec 23 23:16:26 2022 +0100 - - Get rid of a bunch of deprecated api usages - - Signed-off-by: Jan Schatteman - -commit ff635b7e995345c61f6e7833a6ef6f5373b0b545 -Author: Gavin -Date: Fri Jan 6 13:32:37 2023 +0100 - - add a historical note to the jdoc of org.hibernate.usertype - -commit 5fb04fb6f67cc21c9e8fbe64f3d5d4fa9788d31c -Author: Gavin -Date: Fri Jan 6 12:15:36 2023 +0100 - - give UserType.replace() a sensible default impl that's essentially always correct - -commit fe9f909dceb1783c8968e3ac597c09d2ec98377f -Author: Gavin -Date: Fri Jan 6 12:11:00 2023 +0100 - - add an extended example to UserType jdoc - -commit a4ad36e7f8aea82058865f38115c35d9921053e8 -Author: Gavin -Date: Fri Jan 6 11:07:35 2023 +0100 - - fix escaping in code block - -commit 8aa1647aa299c7b4eb35dc142cbbee78bd77e291 -Author: Gavin -Date: Fri Jan 6 01:38:43 2023 +0100 - - add MonetaryAmount example to javadoc - -commit 1f755e0598a1e7dc8a06fa6757b42a4915bbb5f8 -Author: Gavin -Date: Fri Jan 6 01:28:50 2023 +0100 - - work on the jdoc about type annotations - -commit ccff90b211249373b9190250c7ed960ce244d4e9 -Author: Gavin -Date: Thu Jan 5 22:52:31 2023 +0100 - - example config files in javadoc, and squash some warnings from jdoc tool - -commit 5c6127848f5ec2b404af01a222b9d8e90849a772 -Author: Gavin -Date: Thu Jan 5 21:30:47 2023 +0100 - - link to config properties from overview - -commit b72d332b34cc98d0b60c7a7d70110aa9e7943917 -Author: Gavin -Date: Thu Jan 5 21:06:53 2023 +0100 - - add temporary table-related settings to AvailableSettings - -commit ab48dc9ba11e0e5eac80d39dc07f11b583e792f1 -Author: Gavin -Date: Thu Jan 5 18:22:53 2023 +0100 - - remove an email address I missed - -commit 663c6c2c71d65dfc606b3483ec86ad7eddad6bd0 -Author: Gavin -Date: Thu Jan 5 18:22:23 2023 +0100 - - minor jdoc refresh and deprecations to org.hibernate.id - -commit d4cc873ad05aaebd11536712e60890630622fb0d -Author: Jan Schatteman -Date: Wed Jan 4 23:48:15 2023 +0100 - - Add useCollectingStatementInspector() to @Jpa and refactor tests that can use it to do so - - Signed-off-by: Jan Schatteman - -commit 1e87b3399ffebad1dcbc49c11c3918d35321e701 -Author: Sanne Grinovero -Date: Thu Jan 5 00:13:50 2023 +0100 - - HHH-15976 Further optimise InitializersList to avoid resizing collections - -commit 04becd0aa4e565913620aab9c929bf8080916dd6 -Author: Sanne Grinovero -Date: Wed Jan 4 13:07:40 2023 +0100 - - HHH-15976 Introduce InitializersList helper and optimise Row processing - -commit e1ecf734c2f380ef6d154999ac5a0990b2485ffe -Author: Sanne Grinovero -Date: Wed Jan 4 11:56:23 2023 +0100 - - Trivial cleanup of dead code - -commit cfeddf85311337c525d083dd0dddac7a330a16c4 -Author: Sanne Grinovero -Date: Wed Jan 4 18:30:16 2023 +0100 - - Deprecate dead method RowReader#toMemento - -commit 80feec0c539f1af7266518096445a74a6bee2e4c -Author: Gavin -Date: Thu Jan 5 12:12:36 2023 +0100 - - use @value instead of @link + delete an obsolete logger - -commit f0cc803b50a90a6c57fd29b6128bba61b454108c -Author: Christian Beikov -Date: Thu Jan 5 11:37:52 2023 +0100 - - Javadoc for TemporaryTableKind - -commit 1fd45b607c2c422b425d2ce55d6e10e3b72a8644 -Author: Gavin -Date: Thu Jan 5 01:11:29 2023 +0100 - - thorough jdoc review and trivial changes to Dialect - -commit 6f4fe47c54206df8a46362d454633d8849c47774 -Author: Gavin -Date: Wed Jan 4 22:55:12 2023 +0100 - - update log message about hibernate.create_empty_composites.enabled - -commit 9dad80c2582cb907a3e8be79ac47f6450f0d7f01 -Author: LLEFEVRE -Date: Thu Jan 5 09:06:47 2023 +0100 - - HHH-15975 documentation tests must rely on SharedDriverManagerConnectionProviderImpl instead of DriverManagerConnectionProviderImpl - -commit d7201815d5985837c42d6185f5b85f75fad7ade4 -Author: Steve Ebersole -Date: Wed Jan 4 13:35:53 2023 -0600 - - HHH-15977 - Deprecate @Persister - -commit 43316e9101c9ed3b5e6f1cf6ee26054ffd0b5065 -Author: Gavin -Date: Wed Jan 4 19:46:58 2023 +0100 - - fix a minor bug in RowIdJdbcType - -commit b233904c6e033011fa5917fa936aed0f1ae75530 -Author: Gavin -Date: Wed Jan 4 19:46:37 2023 +0100 - - add two @Override annotations - -commit b515ec45a0c3a2c39f71cc3d436b7c40a46cc47e -Author: Christian Beikov -Date: Wed Jan 4 19:56:15 2023 +0100 - - Mark @Struct annotation to be incubating - -commit 1117436090f7ebbf0a9038ecb857c607c7e81b2a -Author: Gavin King -Date: Wed Jan 4 18:06:05 2023 +0100 - - Update hibernate-core/src/main/java/org/hibernate/boot/model/FunctionContributor.java - - Co-authored-by: Steve Ebersole - -commit ecf4d30c50ec27fa629aa97a5382b90a84fcc033 -Author: Gavin -Date: Fri Dec 30 22:49:31 2022 +0100 - - make Dialect implement TypeContributor and FunctionContributor - - there is little *concrete* benefit to this change, and it's slightly break-y but: - - - it removes a dependence on the @Incubating type QueryEngine from Dialect - - we eat our own dogfood, that is, use our own abstractions - - it appears that this was how it was *originally* intended to be - -commit 9080a387fa88d72cf12e0d77350bb0543a9579f3 -Author: Christian Beikov -Date: Wed Jan 4 18:02:22 2023 +0100 - - Fix HANA test failures on CI - -commit fc57bd6a1788049fce28f9b997ecd20a8f956e86 -Author: LLEFEVRE -Date: Wed Jan 4 17:15:51 2023 +0100 - - HHH-15973 hibernate-envers tests must rely on SharedDriverManagerConnectionProviderImpl instead of DriverManagerConnectionProviderImpl - -commit 80a27ebcbe31ffde33a9622d245e4600ab8bdc4b -Author: Gavin -Date: Wed Jan 4 17:21:32 2023 +0100 - - add a note about integrations to the overview - -commit 08de2ff104ea221a4ef4258a1204c30df4347e36 -Author: Gavin -Date: Wed Jan 4 15:58:43 2023 +0100 - - after all that, we've decided that a better solution is to coerce the enum to the right type - - so I'm going to accept both interpretations of the enum, which is better for the user, - and this is also much cleaner implementation-wise - - This effectively rolls back most of the previous work on HHH-15711 - -commit 1074891a360a073298577e8c2fa17e035ae261c4 -Author: Gavin -Date: Wed Jan 4 01:50:18 2023 +0100 - - migrate to accessing QueryParameterBindingTypeResolver via MappingMetamodelImplementor - - it's just not elegant to have it as a supertype of SessionFactoryImplementor (so deprecate that) - -commit 196d7a1b5a4f4bd91fde02d7914a32ba35bf33f5 -Author: Gavin -Date: Wed Jan 4 13:37:29 2023 +0100 - - resolve an issue with ArgumentsValidator and access to the MappingMetamodel - - (ideally we should never access the MappingMetamodel from ArgumentsValidator) - -commit e3ed3028c40f00bdf872781f51f2872b48fcbe49 -Author: Gavin -Date: Wed Jan 4 13:39:38 2023 +0100 - - Revert "disable fragile test" - - This reverts commit 2d3b787fc02c1182f862d50ff7e81344cbbad66d. - -commit 9369fbd59781bc40e82c687deb571f33f37627bf -Author: Marco Belladelli -Date: Wed Jan 4 15:12:42 2023 +0100 - - Fix date_trunc function for DB2 10 - -commit 2c724d917214f39603d4df8fbad44181592b5f31 -Author: Christian Beikov -Date: Wed Jan 4 16:05:30 2023 +0100 - - Fix entity naming for Oracle 11 - -commit 39d876e4d3823b78e26fed15794f95bae842189a -Author: Christian Beikov -Date: Wed Jan 4 14:29:46 2023 +0100 - - Fix array value binding for native queries on DBs that have a TINYINT DDL type - -commit 85a96de1315f1ffe7311e2eefdd51d34d153daff -Author: Christian Beikov -Date: Wed Jan 4 12:29:51 2023 +0100 - - Fix identity select statement caching - -commit e3f1c2741d0981291f142c65a8d21d7edd5ba750 -Author: Gavin -Date: Wed Jan 4 11:54:57 2023 +0100 - - HHH-15960 make @Comment annotation repeatable and properly test it - - I didn't quite nail this one first time round :-/ - -commit 98957c350993dcfdb7c396d21346322a817cd1c7 -Author: Andrea Boriero -Date: Sun Dec 11 15:01:41 2022 +0100 - - HHH-15854 Improve CollectionInitializer and EntityDelayedFetchInitializer resolveInstance methods performance when the parent entity is initialized - -commit 312d7e11a6ef9e029edbb58cc0f8ff7b6435969d -Author: Andrea Boriero -Date: Mon Dec 19 13:08:57 2022 +0100 - - HHH-15794 NullPointerException when constructing mapping model for nested embeddables with not optional ManyToOne - -commit 17e48d2ace49f997ad80168c8ad3d26c59971002 -Author: Andrea Boriero -Date: Mon Dec 19 13:07:52 2022 +0100 - - HHH-15794 Add test for issue - -commit 2ed4d2c87be9a5b9af71e27c0d75a78a578162de -Author: LLEFEVRE -Date: Wed Jan 4 11:15:43 2023 +0100 - - HHH-15971 Fix Oracle CI build for 11g version - -commit a3038f94fa8f64de622018fdfd18cf94ac8df935 -Author: Andrea Boriero -Date: Tue Jan 3 16:19:05 2023 +0100 - - HHH-15967 @OneToOne(mappedBy = ..., fetch = LAZY) in embedded referencing an association within another embedded - -commit ecde949c7fc8d0c2439d6c48f33c00c77c4a6642 -Author: Andrea Boriero -Date: Tue Jan 3 14:27:39 2023 +0100 - - HHH-15967 Add test for issue - -commit 475e4944dfbe772915410321a780660bd76902fa -Author: Marco Belladelli -Date: Tue Jan 3 13:49:32 2023 +0100 - - HHH-15866 Handle nested embeddables inside EmbeddedId - -commit 60fc0c018abbc33e235ca2d71a4ae865fb521f4f -Author: Marco Belladelli -Date: Mon Jan 2 17:15:05 2023 +0100 - - HHH-15866 Handle DependantValue when building embedded attr mapping - -commit 461383c8d1b7b869ad4a6da1a4836767ec57f3c4 -Author: Marco Belladelli -Date: Mon Jan 2 12:10:47 2023 +0100 - - HHH-15866 Add test for issue - -commit e39473139ee31e15f3d79edae88fd91c6abe84aa -Author: Marco Belladelli -Date: Tue Jan 3 14:38:09 2023 +0100 - - HHH-15865 Fix CI test failures due to GenerationType.IDENTITY - -commit 446908f643a301a78aa6b20f7eb4cf456ffcb69e -Author: Akshit Agarwal -Date: Mon Oct 17 23:43:11 2022 +0530 - - HHH-14772: Fix filter direct fetching documentation - -commit 2d3b787fc02c1182f862d50ff7e81344cbbad66d -Author: Gavin -Date: Tue Jan 3 18:22:42 2023 +0100 - - disable fragile test - -commit b7b5fb755931f44b8cb6aa2d386e18f61ac2b10b -Author: Gavin -Date: Tue Jan 3 17:24:58 2023 +0100 - - avoid the use of TypeConfiguration.getServiceRegistry() - -commit e8f899ffbcc97f72e1b300a92afcb5ab1041e410 -Author: Gavin -Date: Tue Jan 3 15:01:51 2023 +0100 - - avoid the use of TypeConfiguration.getSessionFactory() which is not very typesafe - - continue sorting out issues with lifecycle of SessionFactoryImpl and friends - -commit 91c69d72a7cdea81138e46579c0a11e4941d2263 -Author: Gavin -Date: Tue Jan 3 10:41:29 2023 +0100 - - work on jdoc of Dialect (mostly just formatting) - -commit d285464302cb9dbd3e04c5ec8f5716106fde9cc8 -Author: Gavin -Date: Tue Jan 3 09:38:29 2023 +0100 - - refresh jdoc for TC and TCA - -commit b47049f89208ffe672585d50bde10d94c1736ad5 -Author: marko-bekhta -Date: Mon Jan 2 11:08:05 2023 +0100 - - HHH-15962 Provide simple default impl for new members of `SchemaManagementTool` interface - - - make both `getSchemaTruncator/buildGenerationTargets` as default methods throwing `UnsupportedOperationException` - -commit 0962144583a2a33da6585bda4df5da2fa719822c -Author: Christian Beikov -Date: Tue Jan 3 10:31:05 2023 +0100 - - Don't show SharedDriverManagerConnectionProviderImpl usage in event documentation - -commit ccf4fac124b0283980bbf7d34a57354b8216bd58 -Author: LLEFEVRE -Date: Mon Jan 2 16:28:22 2023 +0100 - - HHH-15961 Speed-up Oracle CI build - -commit 4670087c1acab4b2e2618d9a2fdf0c47bb04203e -Author: Gavin -Date: Mon Jan 2 22:26:31 2023 +0100 - - mention XML mappings in overview - -commit c7a26efed543c93fcf68f1f4efe63cad9a091cac -Author: Gavin -Date: Mon Jan 2 21:48:47 2023 +0100 - - more jdoc improvements to annotations - -commit b7f34795df817055080126b19e75bf862cad6ff6 -Author: Gavin -Date: Mon Jan 2 20:31:02 2023 +0100 - - fix for databases which don't like multiple 'check' keywords - - - also check for dupe constraints (for some reason they get added) - -commit f385fa063ac16a4cb76b0d0b84beda9b84358348 -Author: Gavin -Date: Mon Jan 2 15:59:01 2023 +0100 - - consistently allow multiple @Check constraints - - + improvements to jdoc of @Formula and @Check - -commit aeabc0e48e5ecd5b96c60576ede86ba3e5ae9e12 -Author: Gavin -Date: Mon Jan 2 15:03:04 2023 +0100 - - eliminate SQL parsing when there are no secondary tables - -commit 822153948c857e5a6e2b4bf561a3f039c9419d3d -Author: Gavin -Date: Mon Jan 2 14:56:35 2023 +0100 - - further reduce direct use of SessionFactory during metamodel building - -commit 102ef2f469e3df12f8a90f0df4ac89206ac24580 -Author: Gavin -Date: Mon Jan 2 13:29:43 2023 +0100 - - refactor some functionality out of constructor SessionFactoryImpl into observers - -commit 7aa92a7c0585b83229c39474dd7da25fad08b2f0 -Author: Gavin -Date: Mon Jan 2 10:55:51 2023 +0100 - - allow @Formulas to refer to columns of @SecondaryTables - - (this is something that was previously only possible using hbm.xml) - - also attempt a partial fixup of the initialization process where SessionFactoryImpl - constructor leaked out an uninitialized reference to itself (it still leaks, but - not as badly) - -commit 1eba25a4663b60562acb22908a82406166f74f5b -Author: Gavin -Date: Mon Jan 2 08:03:44 2023 +0100 - - add some doc to AttributeContainer - -commit 117851e4a4ed7ff119c469882ae7b7ae2bae9e70 -Author: Gavin -Date: Mon Jan 2 02:28:56 2023 +0100 - - add example to @Comment - -commit 1657c22aca5b8a68bd844b34ab5466103a32ccb1 -Author: Gavin -Date: Mon Jan 2 00:07:32 2023 +0100 - - automatically detect when a @Check refers to a @SecondaryTable - - - also support named check constraints (multiple of them) - - also support check constraints on collection tables - -commit abb89a32b1abc0e4b41b82fe02469319fcf07385 -Author: Gavin -Date: Sun Jan 1 21:02:58 2023 +0100 - - minor change to code - -commit c718a462850d781c5842a76f61f3b016459fc9dd -Author: Gavin -Date: Sun Jan 1 20:50:50 2023 +0100 - - improve some error messages - -commit 90c767681e1f13ea291a00b889b7a92b1a4d3340 -Author: Marco Belladelli -Date: Fri Dec 23 15:35:58 2022 +0100 - - HHH-15865 Store attribute metadata for inverse EmbeddedAttributeMapping - -commit 8f7b8b8fa2ccdb34ae6aca82fe10f70039673113 -Author: Marco Belladelli -Date: Fri Dec 23 12:27:49 2022 +0100 - - HHH-15865 Add test for issue - -commit 8b7ad247561e87ce231a7da5e5abcad2cd384cbe -Author: Marco Belladelli -Date: Fri Dec 23 16:35:57 2022 +0100 - - HHH-15868 Fix log function test on CockroachDB - -commit a1853a8c056d83662e075616119798e8fdaadd9f -Author: Gavin -Date: Sun Jan 1 19:42:28 2023 +0100 - - HHH-15960 reimplement @Column using the o.h.binder infrastructure and add @Comment(on ="...") - - this lets me deprecate @Table(comment = "...") and gets rid of all the passing-Comment-objects-around - -commit df5980226ca4dc654479ff03ff6dfa0a798fc520 -Author: Gavin -Date: Sun Jan 1 18:21:07 2023 +0100 - - HHH-15959 add TypeBinders + fix multiple AttributeBinders on a single field - -commit e48a8120a93e1f42c3e7bb7b4e1b20dcd664e471 -Author: Gavin -Date: Sun Jan 1 16:11:08 2023 +0100 - - improve some error messages - -commit 76b2f92f396f3f42cfba524ef734c5c49fc59ebc -Author: Gavin -Date: Sun Jan 1 16:09:26 2023 +0100 - - HHH-15958 support the @RowId annotation on DB2 LUW - - ... and perhaps also on DB2 for z and i (no way to test it) - -commit 366208924fa51ae7ab7acca88ec9bc772535cc40 -Author: Gavin -Date: Sun Jan 1 13:38:57 2023 +0100 - - clean up the JdbcSessionContext SPI + related code - - - encapsulate stuff better within JdbcSessionContext - - fix lots of warnings - - deprecate stuff - -commit 689cca1963dd5ad01a008e59cdb227396b650961 -Author: Gavin -Date: Sun Jan 1 04:26:02 2023 +0100 - - HHH-15958 much better support for @RowId annotation - - - the rowid pseudo-column and type are now determined automatically from Dialect - - works (after all these years) in Postgres (and also on h2) - - introduce RowIdJdbcType (not strictly necessary, but a nicety) - -commit 6da38d0b0537d06d3f2e7f5f3ebb4ed1aa9cd68f -Author: Gavin -Date: Sat Dec 31 20:15:12 2022 +0100 - - examples of a couple of nice ways to use the Session - -commit 2576f74ade8c184bcf2df12ca646190721fde489 -Author: Gavin -Date: Sat Dec 31 19:01:12 2022 +0100 - - jdoc for org.hibernate.engine.jdbc.connections.spi - -commit 6eccc49856ff18033ab9b8b4e4e52928ddd536af -Author: Gavin -Date: Sat Dec 31 18:37:11 2022 +0100 - - new blurb about OptimisticLocking in package-level doc for annotations - -commit 5bc6558b074671dee8e62828a6acb210cde5fd2e -Author: Gavin -Date: Sat Dec 31 17:22:43 2022 +0100 - - allow @Nationalized to be used as a meta-annotation - -commit 65235991063add1866fad938d9e397de4a0e6160 -Author: Gavin -Date: Sat Dec 31 17:16:23 2022 +0100 - - allow @CollectionIdType to be used as meta-annotation - - this was always intended, I believe - -commit e89015fd8cbb450140ace5b111f874ae5d264463 -Author: Gavin -Date: Sat Dec 31 17:15:18 2022 +0100 - - document the use of typing annotations as meta-annotations - -commit 60e5b7528265a8411a1ba8aab51a6f2a648df100 -Author: Gavin -Date: Sat Dec 31 17:06:07 2022 +0100 - - fix the misleading documentation of the @Bag annotation - - and improve error reporting when used in a nonsensical way - -commit a1d52b0bb1db8e57be3ed108aa5888e637fc5a14 -Author: Gavin -Date: Sat Dec 31 16:37:57 2022 +0100 - - minor cleanups to HCANNHelper - -commit 327342b39e238c46af9655904f2388319cdd91d9 -Author: Gavin -Date: Sat Dec 31 11:44:32 2022 +0100 - - correct implementation of JPA SharedCacheMode for .hbm.xml - - - even though I hate most of its members, I think NONE is pretty useful - - anyway we may as well make it work, since it's trivial - -commit 1db1c08d3b593b491f0efc32caa64a5ac256926a -Author: Gavin -Date: Sat Dec 31 13:27:03 2022 +0100 - - document a couple of limitations - -commit 1fe2509b3b86b54ea9a71d2515e07222c5aab83e -Author: Gavin -Date: Sat Dec 31 13:11:22 2022 +0100 - - minor edits to the jdoc of o.h.boot.spi package - -commit 699e333ff13bb5e211e1d5e553ccc0a7bd78d652 -Author: Gavin -Date: Sat Dec 31 12:31:45 2022 +0100 - - javadoc for MetadataBuildingOptions - -commit d1c9c4abac4e804f08ca8cd9a0e53deb3296c74b -Author: Gavin -Date: Sat Dec 31 12:06:57 2022 +0100 - - very minor doc fixes - -commit 98d693501abd10b56a1153a8ac4d330826393c98 -Author: Gavin -Date: Sat Dec 31 12:06:25 2022 +0100 - - mark Caching and TypeBeanInstanceProducer for potential package moves - -commit cb103256e1ae672d4e95ac983dffa1b36ec9d98c -Author: Gavin -Date: Sat Dec 31 10:22:13 2022 +0100 - - misc minor doc fixes and compiler warning fixes - -commit 1d7ecf61c545bf452c67354fc1a3000e15757170 -Author: Gavin -Date: Sat Dec 31 09:58:51 2022 +0100 - - improve doc for SqmFunctionDescriptor - -commit 46dec087fcb779f0b730c122b4e8134dba736104 -Author: Gavin -Date: Sat Dec 31 09:30:38 2022 +0100 - - @link -> @linkplain - -commit 1a0be6e887880c7e87976cfc88587e10efd416e4 -Author: Gavin -Date: Sat Dec 31 09:09:31 2022 +0100 - - add a code example lifted from the Native Bootstrapping guide to jdoc - -commit e9f826ee3cd132360c2d1f7f0899091ba287f0d2 -Author: Gavin -Date: Sat Dec 31 09:18:15 2022 +0100 - - improve SchemaAutoTooling enum, making it usable for config - -commit 66a2f492aa70fa5e1e70b378f4f4a9ddee6a9ee6 -Author: Gavin -Date: Sat Dec 31 01:05:13 2022 +0100 - - mention dialects in overview - -commit 0d9a32a9df3d1a5cf87251a65981265082f7ddd3 -Author: Gavin -Date: Sat Dec 31 00:17:14 2022 +0100 - - java-document the use of @Immutable and @Mutability with AttributeConverters - -commit efd6c8c6fd4ba77a33b8ede2195a4ec21bd8ad4b -Author: Gavin -Date: Fri Dec 30 21:59:40 2022 +0100 - - add cross-refs I missed - -commit a3059fb9d713308a173302602739e36fcdfc715b -Author: Gavin -Date: Fri Dec 30 20:59:44 2022 +0100 - - properly document TypeContributor and FunctionContributor - -commit ce7193696d2f5070addac3d7401d5dbd6836e801 -Author: Gavin -Date: Fri Dec 30 20:13:45 2022 +0100 - - improve package doc for o.h.query.sqm - -commit 1a28bb2a3cefd13677a518351fb2818536eb1fd1 -Author: Gavin -Date: Fri Dec 30 19:34:19 2022 +0100 - - bootstrapping overview - -commit 0157d1a1b6cb95747176ea7effe8f02e0f859e0b -Author: Gavin -Date: Fri Dec 30 18:47:30 2022 +0100 - - attempt to make better sense of some of this service-related stuff in the docs - -commit 3381ac28872aa944bad5300152f6dc36fc12974f -Author: Gavin -Date: Fri Dec 30 16:04:17 2022 +0100 - - document natural ids and generators in annotations package - -commit 6b4d787caf180321021caf49b3eeb0a191448bd6 -Author: Gavin -Date: Fri Dec 30 14:40:16 2022 +0100 - - document the boolean converters - -commit 263e3038299c7f81a175a74b1ddf04832d6b526b -Author: Gavin -Date: Fri Dec 30 14:01:09 2022 +0100 - - add documentation about filters - -commit 9ea6f162fd0d278a451b9017e37007a474e7e081 -Author: Gavin -Date: Fri Dec 30 13:39:18 2022 +0100 - - slight cleanup to the docs for o.h.cache.spi.support - -commit 61f71030fff62118aecc71fbb24908f44b64b2e8 -Author: Gavin -Date: Fri Dec 30 13:24:07 2022 +0100 - - incorporate a useful rant about caching in javadoc - -commit 31f11f4e3c4a422b975561c6b1c236ca550063d9 -Author: Gavin -Date: Fri Dec 30 11:29:08 2022 +0100 - - more information about Types in javadoc - -commit 1991e7d6a7a61cbcc2a064577c76703ff0b18271 -Author: Gavin -Date: Fri Dec 30 00:10:11 2022 +0100 - - clean imports - -commit ca25c114bebbf241bfc6b5bc1ee6fc0bdbbfb215 -Author: Gavin -Date: Fri Dec 30 00:10:00 2022 +0100 - - add some missing doc to MetadataBuilder stuff - -commit fc6db246a876339ecec43c852a11fca87a67def3 -Author: Gavin -Date: Thu Dec 29 23:58:24 2022 +0100 - - introduce JpaSettings and improve docs of org.hibernate.jpa.boot - -commit d6be936da3489c36ad65282f29f23e68eeb080a7 -Author: Gavin -Date: Thu Dec 29 22:55:56 2022 +0100 - - improve the documentation for stuff about AttributeConverters and mutability - -commit 8aba946e776eae0ad4b8cc5bd845802ced23f7b2 -Author: Gavin -Date: Thu Dec 29 22:04:21 2022 +0100 - - move FormatMapper and its implementations to a dedicated package - - it doesn't belong in the root org.hibernate.type namespace! - -commit aef9d064db48b69c905632ec7651f9e8205da6fd -Author: Gavin -Date: Thu Dec 29 21:57:30 2022 +0100 - - more docs for type package - -commit c829c84d5585918ec0aec5c72844bcb35fa30cbf -Author: Gavin -Date: Thu Dec 29 21:48:53 2022 +0100 - - BigDecimalJavaType and BigIntegerJavaType should support conversion to String - -commit b4b8e955f88f3ddd05b2dd357127f2116db4963b -Author: Gavin -Date: Thu Dec 29 21:06:52 2022 +0100 - - clean up imports - -commit 7dad0e38e284114b3dffa147cffa45759b0874d5 -Author: Gavin -Date: Thu Dec 29 21:02:46 2022 +0100 - - better docs for FormatMapper - -commit 9e8b24f691a7091d661adbed2a70ed85e6daa1d7 -Author: Gavin -Date: Thu Dec 29 20:51:52 2022 +0100 - - very minor - -commit a03486dc5538b4f0dd0ff39f2c4e4d2255d52365 -Author: Gavin -Date: Thu Dec 29 20:51:40 2022 +0100 - - deprecate the experimental (and buggy) feature hibernate.create_empty_composites.enabled - - see HHH-11936 - -commit b2586d5f2a612a54782749466703b2596efb2001 -Author: Gavin -Date: Thu Dec 29 20:25:12 2022 +0100 - - clean up very obsolete doc of SessionFactoryImpl - -commit 704c524e7c622522328d0981808a8031eeee38e0 -Author: Gavin -Date: Thu Dec 29 19:13:26 2022 +0100 - - more minor doc fixes - -commit 53982b78fba46c7f5fe0b3304b7b2ce7b5d2c46e -Author: Gavin -Date: Thu Dec 29 17:25:44 2022 +0100 - - fix incorrect doc of CurrentTenantIdentifierResolver - -commit 7b493f30fbaba8c50aae4959dbab87136b6c8226 -Author: Gavin -Date: Thu Dec 29 17:10:54 2022 +0100 - - Configuration improvements - - - methods of Configuration should consistently return this - - remove a redundant warning - - add StatementInspector, ColumnOrderingStrategy, CustomEntityDirtinessStrategy to Configuration - (at least two out of three of these are pretty useful!) - -commit 2ada31b899754460c9e736a9aa4f19214b36b03f -Author: Gavin -Date: Thu Dec 29 17:03:18 2022 +0100 - - mention naming strategies in overview - -commit 0bcf19d85b8387ea012080cf83286dd98675ce7a -Author: Gavin -Date: Thu Dec 29 16:54:17 2022 +0100 - - minor changes - -commit c3a35821bd4a5443f9a51fe624d3edb3fe6a79c8 -Author: Gavin -Date: Thu Dec 29 16:54:03 2022 +0100 - - more doc cleanups - -commit f8b50b39d711f3017ab9046586f36b36aed463fd -Author: Gavin -Date: Thu Dec 29 00:13:10 2022 +0100 - - remove the unused ParameterRegistration stuff in org.hibernate.jpa.spi - - these types appear to be already unused in H5! - - this can't possibly break anything: anything using it is already broken - -commit 81a3541d2624d546efac71c75d8e0335bc1b7ee3 -Author: Gavin -Date: Thu Dec 29 00:09:14 2022 +0100 - - clean up the package org.hibernate.engine.transaction - - - it had classes/interfaces which are already unused in H5! - - move TransactionObserver and IsolationDelegate to a much - more sensible location next to TransactionCoordinator - - This will break custom implementations of TransactionCoordinator - but I highly doubt there are very many of those! - -commit c6f0be990c2ba84a089b2e825dd37b27274670c9 -Author: Gavin -Date: Thu Dec 29 11:39:20 2022 +0100 - - yet more work on the API documentation - - - and get rid of people's email addresses, they don't belong in the code - -commit 5246ec508c272a651f6c26acd90d22bf2ffc6467 -Author: Gavin -Date: Thu Dec 29 14:22:11 2022 +0100 - - delete two unused files - -commit 95cede87ed08daf34a245fbe7f464bc1cee0d9b2 -Author: Gavin -Date: Thu Dec 29 01:52:12 2022 +0100 - - further work on the API documentation - -commit 37042f9b7702a833a14c2018adf9304c5e16a653 -Author: Gavin -Date: Wed Dec 28 19:27:59 2022 +0100 - - documentation improvements, especially to the boot package - - also deprecate some unused stuff - -commit 347ad56772bc0ff5b0737ed4c6eea9cb9aafbbd6 -Author: Gavin -Date: Wed Dec 28 21:26:07 2022 +0100 - - delete unused ReturnMetadata class - -commit c7845582d45e7e19a17944de8737fe3ecfcc6aae -Author: Gavin -Date: Wed Dec 28 20:16:16 2022 +0100 - - delete unused TypeNames class - -commit 273b1cb25169b0f36219c28bef808da392e46464 -Author: Gavin -Date: Wed Dec 28 19:28:20 2022 +0100 - - remove unused interface Loggable - -commit cc46b622bea483dae5487ab6cd05ce4f1cad352a -Author: Gavin -Date: Wed Dec 28 12:42:55 2022 +0100 - - minor code changes - -commit 60884a4c3a9b7f47c42a9f77063406d74a44ddd1 -Author: Gavin -Date: Wed Dec 28 12:39:25 2022 +0100 - - get rid of "NOTE :" which looks terrible in compiled javadoc - - - use @implNot / @apiNot instead - -commit b3625a34e48a89f955f3acdcdce9d1e0c89801ab -Author: Gavin -Date: Wed Dec 28 12:36:26 2022 +0100 - - delete two unused classes - -commit 3d14d1b25f52377afa8df60f9ddf7246397df74c -Author: Gavin -Date: Wed Dec 28 11:28:51 2022 +0100 - - minor cleanups in QueryBinder - -commit 33fec62a562f2edc9030f44e525cf79cfb4fdaec -Author: Gavin -Date: Wed Dec 28 11:27:59 2022 +0100 - - some cleanups in OracleDialect - -commit 81851dc985d38bad943582085c8cbd5a6e352cdd -Author: Gavin -Date: Wed Dec 28 11:25:00 2022 +0100 - - document correspondence between @NamedQuery members and query hints - -commit 7cc701902d1d818aa5b1a60149d828d648b77a51 -Author: Gavin -Date: Wed Dec 28 01:46:15 2022 +0100 - - delete test I did not mean to commit - -commit d8944e2326b799c22f7849012ee2ba9d58b5b6cb -Author: Gavin -Date: Wed Dec 28 01:40:46 2022 +0100 - - forgot to deprecate PolymorphismType when we did @Polymorphism - -commit 4d3dd2c436f48c5d455593ff23fb70af9d439d9d -Author: Gavin -Date: Wed Dec 28 01:40:21 2022 +0100 - - document future plans for some dupe enums - -commit 16be6a821b0f2bb742c4179210070cf6349e3a4f -Author: Gavin -Date: Wed Dec 28 01:15:26 2022 +0100 - - improvements to two competing enums: CacheConcurrencyStrategy + AccessType - -commit 3569efcf7ac56801c9496a10fd53240a5a100724 -Author: Gavin -Date: Wed Dec 28 00:09:20 2022 +0100 - - finish updating javadoc of query package - -commit 6c3131b981820b1a4b8749ef4428e7d430998195 -Author: Gavin -Date: Tue Dec 27 18:31:25 2022 +0100 - - improve doc for CurrentSessionContext - -commit f7a4343a33dd670ab34da0318c8158773b4b398f -Author: Gavin -Date: Tue Dec 27 18:14:00 2022 +0100 - - write a bit of an essay about the mapping package - -commit 0ff3379f698b735f66bc0cf04dab91992f178fb9 -Author: Gavin -Date: Tue Dec 27 18:13:03 2022 +0100 - - rename an instvar - -commit 713b1a82cf19e7edc281239771fb12027063ab0a -Author: Gavin -Date: Tue Dec 27 17:33:51 2022 +0100 - - fix indenting - -commit 7f444e41bfc35e80bafbc881d332023303dbb159 -Author: Gavin -Date: Tue Dec 27 17:33:31 2022 +0100 - - add a cross-ref to jdoc that I forgot - -commit c86539b6b10f438553ecc017b0cbf180e751ead6 -Author: Gavin -Date: Tue Dec 27 16:11:02 2022 +0100 - - clean up the constructor of SessionFactoryImpl - - this was a really awful mess! - -commit b0479c5f2981fdb7b38bc9634f74332d8913bbc6 -Author: Gavin -Date: Tue Dec 27 01:50:44 2022 +0100 - - HHH-15888 clean up exception reporting in Column - - - and generally tidy up that class a bit - - make state management in Column safer using assertions - - fix minor potential bug spotted by CodeQL - -commit 109dac9a856b2acc886c4e0041edd169dc2f9057 -Author: Gavin -Date: Tue Dec 27 14:26:44 2022 +0100 - - @link -> @linkplain - -commit addb48fe82b349c6ac2993b39aaafcc19eed2863 -Author: Gavin -Date: Tue Dec 27 14:20:08 2022 +0100 - - change SessionFactory.getCriteriaBuilder() to return HibernateCriteriaBuilder - -commit d6b8ed710f537ef21ec82402f2e78670aea05405 -Author: Gavin -Date: Tue Dec 27 13:59:53 2022 +0100 - - improvements to javadoc of Query and NativeQuery - -commit 0a5699f56c9e1b9d0b36bde2c9fe0727c4db090a -Author: Gavin -Date: Tue Dec 27 11:08:57 2022 +0100 - - filter some noisy packages from the javadoc - -commit 518328d364e738463640fd8af7c359770599c3ff -Author: Gavin -Date: Tue Dec 27 10:40:26 2022 +0100 - - add a section & example about DialectOverride - -commit 11760d3ce3682a740008b638950201b2cb06cb58 -Author: Gavin -Date: Mon Dec 26 21:16:00 2022 +0100 - - various jdoc format fixes + improve a package-info - - - add some periods - - fix up all the code snippets I messed up - - add some

s after lists and code blocks - - improve section of package-info which was hard to understand - - fix jdoc for LobHelper - - fix code example in @ValueGenerationType - -commit 33c228e715cec9c58e5c55bca84d7dcb26abb116 -Author: Gavin -Date: Mon Dec 26 22:42:42 2022 +0100 - - add a Hibernate look to the javadoc - - - add a new stylesheet - - include it in the release - - tidy up the overview page - - include overview and stylesheet when building jdoc from hibernate-core - -commit 939adfd457c311a4e2112694298e4f6e9f6bf1f9 -Author: Gavin -Date: Mon Dec 26 20:02:09 2022 +0100 - - fix code example in TimeZoneStorage - -commit b293a6b2ac2cc3e23b0425911947610d015dfcd0 -Author: Gavin -Date: Mon Dec 26 19:58:18 2022 +0100 - - add a couple of @see xrefs - -commit bee0480d1272fbb2c555205fc11bc652019cecba -Author: Gavin -Date: Mon Dec 26 19:54:33 2022 +0100 - - examples to @NaturalId javadoc - -commit 7f2e2c5d794c0cb0021302f5df21bc284dad4bdf -Author: Gavin -Date: Mon Dec 26 17:23:34 2022 +0100 - - spaces to tabs - -commit 31ff2851c7ac234a43b4ceb647d64541e2bea1b7 -Author: Gavin -Date: Mon Dec 26 16:42:29 2022 +0100 - - HHH-15936 add applyInToManyFetch member to @Where - -commit c9cd12c625d23bf871c35dd439383944f64cb35a -Author: Gavin -Date: Mon Dec 26 15:09:09 2022 +0100 - - big refactoring of Binders - -commit dda88668e84455f75307d3249870fea66225f40f -Author: Gavin -Date: Mon Dec 26 13:10:49 2022 +0100 - - improve some error reporting and add some code comments - -commit d886c56228cbaeb7c16e51475de14b7c7fe20af1 -Author: Gavin -Date: Mon Dec 26 12:01:10 2022 +0100 - - examples of @Cache and documentation around cache enablement - -commit 110a1f6a565b9f06755c283baa7b294685d937fe -Author: Gavin -Date: Mon Dec 26 11:33:17 2022 +0100 - - examples in javadoc for @Any and @ManyToAny - -commit ca4474159ef3d557753e9b547aaa9d2e0b5f191c -Author: Gavin -Date: Mon Dec 26 01:14:11 2022 +0100 - - fix test for case-sensitive databases - -commit 01d608ca849c48d488557a7887e2edef46420f2c -Author: Gavin -Date: Mon Dec 26 01:02:39 2022 +0100 - - HHH-14526 validate table repetition in JOINED hierarchies - - and automatically force the discriminator when necessary - -commit 0f29c1546128489a4c49df89e1e184e838f70b91 -Author: Gavin -Date: Sun Dec 25 23:28:59 2022 +0100 - - HHH-9646 add a test showing the issue is resolved - -commit 169b9a849c025878fe28625088632e6d3c01b538 -Author: Gavin -Date: Sun Dec 25 23:04:51 2022 +0100 - - drop arbitrary restrictions on what annotations can go where - - also add an error for competing @FilterDefs - -commit 491b1bc06fcfb36dbe9aff3f68da0cfcbed817d1 -Author: Gavin -Date: Sun Dec 25 21:20:28 2022 +0100 - - HHH-15935 add discriminatorType to @DiscriminatorFormula - -commit a4191c9e111183d7165d98919659d93a842c6270 -Author: Gavin -Date: Sun Dec 25 20:18:35 2022 +0100 - - test for JPA-46 with a twist - - I use a @DiscriminatorFormula and @Basic(optional=false) to do it in a nice way - -commit a8620b62bbf1d8d71798e557ce0ff73c5caac5dd -Author: Gavin -Date: Sun Dec 25 20:11:11 2022 +0100 - - squash a handled NPE and fix some warnings - -commit 218ace291f8ee54cae561864f8e7cec3254928b3 -Author: Gavin -Date: Sun Dec 25 18:15:56 2022 +0100 - - HHH-15934 correctly handle @Basic(optional=false) - - previously it had no effect - -commit 9e9a363154bd68dc2ba5d78735184169c8d89dfe -Author: Gavin -Date: Sun Dec 25 13:02:11 2022 +0100 - - HHH-15933 fix FK generated for ref to secondary table - -commit 1e57f8867420f7d0e148dc63469eaec586191fe4 -Author: Gavin -Date: Sun Dec 25 12:36:03 2022 +0100 - - add failing test for @ManyToOne referencing secondary table - -commit bedcc0386af0537f16440ccea5984661adb0cae3 -Author: Gavin -Date: Sun Dec 25 10:05:51 2022 +0100 - - add a second test for repeated table names in JOINED with discriminator inheritance - -commit 8162bd5152e403f5d2f4556f3769bdf02de60792 -Author: Gavin -Date: Sun Dec 25 03:29:14 2022 +0100 - - lots more cleanups to persisters - -commit 5f0b27fb6a75d2452a64a63815ab2b15139ce669 -Author: Gavin -Date: Sun Dec 25 03:23:03 2022 +0100 - - detect use of @DiscriminatorOptions(force=true) on JOINED with no @DiscriminatorColumn - -commit 014847f41bd9eebc17dbcc05cf1993810162fd1b -Author: Gavin -Date: Sat Dec 24 18:52:38 2022 +0100 - - HHH-15932 allow @XxxxToOne associations to target a secondary table - -commit c7bad70073af7319f24c2720b9f591536decd53e -Author: Gavin -Date: Sat Dec 24 16:17:25 2022 +0100 - - fix exceptions for a certain kind of wrong join column mapping - -commit 408e0ec436be785d085b2fc0eb61678efff8377e -Author: Gavin -Date: Sat Dec 24 15:55:44 2022 +0100 - - extract a method - -commit e918f92f48ae6eda23d96e747cb1050d9a3554cb -Author: Gavin -Date: Sat Dec 24 14:55:20 2022 +0100 - - improvements to how discriminators are handled by AbstractEntityPersister - -commit b1e2eca53e8cf5bc356224a5bba124af4ab70c25 -Author: Gavin -Date: Sat Dec 24 12:15:55 2022 +0100 - - some cleanups to AbstractEntityInitializer - - it had some really long methods - -commit 608e4ef6d6e6368ae8fe2fda0a687a2df63c62aa -Author: Gavin -Date: Sat Dec 24 11:09:54 2022 +0100 - - fix error messages in InstantiationExceptions - -commit 2355f98586483f71faca58822f30c3e718af8c52 -Author: Gavin -Date: Sat Dec 24 04:05:04 2022 +0100 - - HHH-14526 tolerate dupe tables in JOINED inheritance with discriminator - - and also support @DiscriminatorOptions for JOINED inheritance - -commit 4946e8ca45ced35a97c3291075cd4daeb63fc642 -Author: Gavin -Date: Fri Dec 23 21:42:26 2022 +0100 - - HHH-14338 use SESSION prefix instead of MODULE for temp tables on HSQLDB - - + more cleanups of HSQLDialect - -commit 9dbfc297492ecb366ee1cf0c8e01f36ec890a492 -Author: Gavin -Date: Fri Dec 23 20:27:16 2022 +0100 - - introduce SharedSessionDelegatorBaseImpl - -commit fc62f33a551d42e067ea463776bf4aa7eb3f46f8 -Author: Gavin -Date: Fri Dec 23 19:11:49 2022 +0100 - - many misc cleanups and doc for the Session hierarchy - -commit 974fe9e22d5340c484aa1a5c4df74d4c1a342336 -Author: Jan Schatteman -Date: Fri Dec 23 16:52:44 2022 +0100 - - HHH-15914 - Add jira tag to some tests - - Signed-off-by: Jan Schatteman - -commit c45330023fcca639f262fd139e0249dd2e4edc6a -Author: Jan Schatteman -Date: Thu Dec 22 22:36:20 2022 +0100 - - HHH-15914 - remove deprecated method calls and provide an example of Tuple.class usage - - Signed-off-by: Jan Schatteman - -commit a666f983577b6944ef9e25f2d388519af3170751 -Author: Gavin -Date: Fri Dec 23 13:53:02 2022 +0100 - - minor fixes to javadoc - -commit 724ae7986d766756871323894dc2c85503d74071 -Author: Marco Belladelli -Date: Thu Dec 22 12:58:08 2022 +0100 - - HHH-15864 Fix collection's owner referring to Embeddable class - -commit 84b0da4970eabc5af481b84a3322f1cac18cc226 -Author: Marco Belladelli -Date: Thu Dec 22 12:58:03 2022 +0100 - - HHH-15864 Add test for issue - -commit 7c53a2591ad8d7b8b24e19afe4ceb21edaaa817d -Author: Gavin -Date: Thu Dec 22 22:42:02 2022 +0100 - - add some more tests for cast() function + allow casting to Short - -commit cba4325bb07b0efb388e1b5ed0425ad45702b7be -Author: Steve Ebersole -Date: Thu Dec 22 18:46:48 2022 -0600 - - small post 6.2 cr1 tasks - -commit 723227a3c649f001bc2c6baa1436f9e2f33b01bc (tag: 6.2.0.CR1) -Author: Hibernate-CI -Date: Thu Dec 22 23:40:07 2022 +0000 - - Post-steps for release : `6.2.0.CR1` - -commit 14e8c25ad913e9ab06afb49d0394d0a99527ba6e -Author: Hibernate-CI -Date: Thu Dec 22 23:35:20 2022 +0000 - - Pre-steps for release : `6.2.0.CR1` - -commit 51a50bed43b7a9a6c27cd25bb46bf47dd3aba3a4 -Author: Steve Ebersole -Date: Thu Dec 22 16:55:02 2022 -0600 - - Add a deprecated.txt report to published docs collecting union of `@Deprecated` and `@Remove` - -commit 163d5002f424f86175c280ecbbde3283930052ba -Author: Steve Ebersole -Date: Thu Dec 22 16:26:55 2022 -0600 - - migration-guide for 6.2 release - -commit 263768d5c583152b8ea250ec4bf987149130f52c -Author: Steve Ebersole -Date: Thu Dec 22 15:48:16 2022 -0600 - - HHH-15930 - Support scalar resultClass in @NamedNativeQuery - -commit 501d3869d4b96c9f34eb734081ff69dd87866743 -Author: Gavin -Date: Thu Dec 22 20:49:55 2022 +0100 - - refresh javadoc for exception types - -commit 79b381795f5308082a5617db3f7b4f579a789619 -Author: Gavin -Date: Thu Dec 22 20:20:15 2022 +0100 - - add missing since - -commit 25c258db1a2e89ef5fe0cf4bbd4f3f1d40c32723 -Author: Gavin -Date: Thu Dec 22 20:18:06 2022 +0100 - - minor Javadoc fix - -commit 865a435b3bcd174e74eefddd5e476d404fb5d42c -Author: Gavin -Date: Thu Dec 22 20:11:43 2022 +0100 - - re-delete NotYetImplementedFor6Exception to fix main - -commit afcb933d28e12825551b49fd98730bfa28664a3f -Author: Gavin -Date: Thu Dec 22 19:59:09 2022 +0100 - - very minor changes to javadoc - -commit bdc172c1dfe1e508a9137a044c72fea64fd48f4c -Author: Gavin -Date: Thu Dec 22 19:58:45 2022 +0100 - - nove NotImplementedYetException to hibernate-testing - -commit d49518e5e4122f9ecb7c2235a04c212e62db87aa -Author: Steve Ebersole -Date: Thu Dec 22 13:03:03 2022 -0600 - - HHH-15798 - Clean up uses of NotYetImplementedFor6Exceptions - -commit cc0d6eaca7fdba709c04da7034e99aa92454282d -Author: Steve Ebersole -Date: Thu Dec 22 12:25:31 2022 -0600 - - HHH-15798 - Remove NotYetImplementedFor6Exceptions and all uses - -commit 0f8c26c7a1c05f997dcb5d00c6c096fa019c227f -Author: Gavin -Date: Thu Dec 22 18:55:57 2022 +0100 - - add missing @since annotations, fix javadoc comment block syntax - -commit 2d66ce8b2da559d3435c17e3ccbc2b0696c4e84f -Author: Gavin -Date: Thu Dec 22 18:02:13 2022 +0100 - - clean up CacheModeType enum - -commit 114a82d4383b50a2a04955eb5e0c141677c91257 -Author: Gavin -Date: Thu Dec 22 17:57:56 2022 +0100 - - add some missing @since tags - -commit b684ace7e6f80148c78fd783d313cdbef7b406a7 -Author: Steve Ebersole -Date: Thu Dec 22 10:29:51 2022 -0600 - - migration-guide for 6.2 release - -commit 4901d2bb61b45a3f8f35591c80a3b72994088d3d -Author: Christian Beikov -Date: Thu Aug 25 17:08:17 2022 +0200 - - HHH-15464 Allow JdbcType to expose the type code to use for DDL - -commit a094d4c5d5c6f772a0c5d43ea71099f34ed2f182 -Author: Christian Beikov -Date: Thu Aug 25 16:12:49 2022 +0200 - - HHH-15463 Adjust JdbcType based on DDL capacity for varchar/varbinary like types - -commit 66b86ad3159e5407c2a113b4653ce9ad4100998a -Author: Gavin -Date: Thu Dec 22 16:51:15 2022 +0100 - - fix some whitespace in package-infos - -commit 1cd183b999b9134672db5bb25f53abdb44ff91ac -Author: Gavin -Date: Thu Dec 22 15:45:05 2022 +0100 - - minor javadoc clarifications - -commit 748ebe845600ecc1ae58563ade6b2f030a11887a -Author: Steve Ebersole -Date: Thu Dec 22 08:16:43 2022 -0600 - - HHH-15924 - Remove the org.hibernate.metamodel.relational package - -commit cbfba131439c50a4a4a970ba439f7926b44c670c -Author: Marco Belladelli -Date: Thu Dec 22 11:58:24 2022 +0100 - - HHH-15901 Check for null predicates in where clause - -commit 845adf36b9547c1c7ba2a791dd59ff7a0f2c898b -Author: Marco Belladelli -Date: Thu Dec 22 11:57:21 2022 +0100 - - HHH-15901 Add test for issue - -commit 0db6136c471f899a41986db1df162b457d1e2ec4 -Author: Gavin -Date: Thu Dec 22 14:35:37 2022 +0100 - - add some @see annotations to Length - -commit 51f1e2f5bdc954351a22e6b4985037ab63b8331e -Author: Gavin -Date: Thu Dec 22 02:20:18 2022 +0100 - - HHH-15926 allow @Type and @CompositeType to be applied as meta-annotations - - this was almost zero work, the implementation was already there - -commit bc79368cd66959b6ac6068630a42371151f98e7e -Author: Gavin -Date: Thu Dec 22 13:54:18 2022 +0100 - - clean up OptimisticLockStyle enum - -commit c754dfacdf2802984df850b987c1376f1f9e756d -Author: Gavin -Date: Thu Dec 22 12:34:02 2022 +0100 - - method renamings and extract method refactorings - - - couple of last-minute name changes in Generator stuff for consistency - - make logic in Coordinators easier to understand by extracting lots of - little methods (there were some very long methods here) - - extract a couple of inner classes that didn't need to be - -commit a49beafca4d334792de00a0cce48b2ce817a0ba4 -Author: Yanming Zhou -Date: Wed Dec 21 10:55:43 2022 +0800 - - HHH-15618 Add tests - -commit 6e87b38aeeb25c32e79c6bc235456954bba3ecb2 -Author: Marco Belladelli -Date: Wed Dec 21 16:38:33 2022 +0100 - - HHH-15850 Check if escape character is null in QuerySplitter - -commit 061fb1e59cc1be9d38cefa4b5206adb6c20f2e5f -Author: Marco Belladelli -Date: Wed Dec 21 15:55:38 2022 +0100 - - HHH-15850 Add test for issue - -commit ce2dc4720e0570a8f6773a35d620fdfda6cfc4d9 -Author: Andrea Boriero -Date: Wed Dec 14 11:22:32 2022 +0100 - - Removed use of JdbcValuesSourceProcessingState#findInitializer() - -commit 0748fff45110c173c72f466263f5627052e51e2c -Author: Christian Beikov -Date: Thu Dec 22 12:45:42 2022 +0100 - - HHH-15920 Update Mockito to 4.10.0 - -commit 50db219047e884a077d9e57d3f582e7cc3fb9b18 -Author: Christian Beikov -Date: Tue Dec 20 22:45:58 2022 +0100 - - HHH-15899 Add @PartitionColumn annotation - -commit fb840ef84f4d68fea2c2f9a70e06e0133cd82074 -Author: Gavin -Date: Thu Dec 22 00:02:51 2022 +0100 - - remove some obsolete and unused code and simplify GeneratedValuesProcessor - -commit 39ffcc91f46deb300b72c9a6be31ecc091775d6a -Author: Gavin -Date: Wed Dec 21 21:22:36 2022 +0100 - - lots of package-info.java files! - -commit 32cc739f39c996f0cb04c5b61c2f087c59c6e968 -Author: Steve Ebersole -Date: Wed Dec 21 15:44:31 2022 -0600 - - HHH-15923 - Clean-up the org.hibernate.loader package - HHH-15799 - API/internal split for org.hibernate.cfg package - - and some minor Javadoc work - -commit 98174c86d2fed82c39cd52a4828bc0866efbaeb0 -Author: Christian Beikov -Date: Wed Dec 21 19:13:29 2022 +0100 - - Revert "HHH-15920 Update Mockito to 4.10.0" - - This reverts commit b2fc0c6f2d07c1949470ddc797ace12e608286ea. - -commit d0a510896e6cd414db243ec62a4d0d519ac1bfdd -Author: Gavin -Date: Wed Dec 21 17:51:23 2022 +0100 - - add code example to javadoc - -commit a9f34f07350a184a3798a91ef6d95a018e32376e -Author: Gavin -Date: Wed Dec 21 14:32:56 2022 +0100 - - HHH-15868 add truncate() to HibernateCriteriaBuilder - -commit b2fc0c6f2d07c1949470ddc797ace12e608286ea -Author: Christian Beikov -Date: Wed Dec 21 13:37:37 2022 +0100 - - HHH-15920 Update Mockito to 4.10.0 - -commit 422b6a3947d50adbe73aacba921f331c6e5dd481 -Author: Steve Ebersole -Date: Wed Dec 21 08:15:57 2022 -0600 - - HHH-15799 - API/internal split for org.hibernate.cfg package - -commit 3f7dd8c23b635d515f3e034059bdffdd8c415cf5 -Author: Steve Ebersole -Date: Mon Dec 19 14:52:35 2022 -0600 - - HHH-15799 - API/internal split for org.hibernate.cfg package - -commit 023e73cb46b1fb6c03e54f49aa1034d07697696d -Author: Gavin -Date: Wed Dec 21 02:52:04 2022 +0100 - - promote trunc() / truncate() to the list of standard HQL functions - - also support the single-argument form of round() for consistency - -commit 46a4c5e8f0076b3c654702b0ef1c9ee2adb73644 -Author: Gavin -Date: Wed Dec 21 14:17:30 2022 +0100 - - fix spelling error - -commit d862f2d52e13474c9be1ebba4c817d4d8fa9c2f3 -Author: Marco Belladelli -Date: Tue Dec 20 23:15:36 2022 +0100 - - HHH-15868 Fix db2's atan2 function requiring inverted argument order - -commit d028213a742b7c22abfd0711815c43fe116714e7 -Author: Marco Belladelli -Date: Tue Dec 20 22:16:38 2022 +0100 - - HHH-15868 Add dialect feature checks to tests and small fixes - -commit a027717d17685b665d6a18cea8e19d8918397bcf -Author: Marco Belladelli -Date: Tue Dec 20 17:52:03 2022 +0100 - - HHH-15868 Add incubating annotation to all new CriteriaBuilder methods - -commit 2c2ea7163b6a56b27cd2fb096d5764fae267cd75 -Author: Marco Belladelli -Date: Tue Dec 20 17:34:07 2022 +0100 - - HHH-15868 Added `crossJoin` methods and logic - -commit 977587dd67b58b22c5b31eaba27363b440ba9da6 -Author: Marco Belladelli -Date: Mon Dec 19 14:44:55 2022 +0100 - - HHH-15868 Add more non-standard HQL functions to the HibernateCriteriaBuilder interface - -commit ba985518c77251e5df4df187e5ba58d03c76146d -Author: Christian Beikov -Date: Wed Dec 21 11:55:38 2022 +0100 - - HHH-15898 Add @Instantiator annotation to mark canonical constructor for embeddables - -commit e19727e454debeb33def2d9829c118306dddf2e7 -Author: Christian Beikov -Date: Wed Dec 21 04:31:11 2022 +0100 - - HHH-15872 Fix some issues with UDT column ordering - -commit d288962fc2d1b3a8caa97b4c8b1f2cee9d76de1d -Author: Marco Belladelli -Date: Wed Dec 21 12:36:22 2022 +0100 - - HHH-15900 Modify HANA script to work with podman - -commit 693d053deb8462de06b143fd3d8adaba74c08286 -Author: Marco Belladelli -Date: Wed Dec 21 11:35:47 2022 +0100 - - HHH-15900 Fix trigger creation on PG10+HANA and check version in OracleDialect to support insert returning generated keys - -commit 99186e1a372a782f4ff68ffa02226da797a264f7 -Author: Kacper Koniuszy <120419423+kkoniuszy@users.noreply.github.com> -Date: Tue Dec 20 19:14:01 2022 +0100 - - HHH-15842 Convert simple foreign key values before binding - -commit f9fd97fe28dbf45738504461710a98cef91cf632 -Author: Kacper Koniuszy <120419423+kkoniuszy@users.noreply.github.com> -Date: Mon Dec 19 14:25:42 2022 +0100 - - HHH-15842 Add test for issue - -commit f5f92b852a17f3f32cee70c92bbfa569d45d325d -Author: Gavin -Date: Tue Dec 20 22:32:12 2022 +0100 - - add tests for trunc() and date_trunc(), even though they're non-"standard" - - see https://hibernate.atlassian.net/browse/HHH-15855 - -commit b704e3154efca3c00f3e3eaf55de39dc3d2a5cc5 -Author: Gavin -Date: Tue Dec 20 22:06:22 2022 +0100 - - put stub PostgreSQL10Dialect back where it belongs - -commit 64d0cf804ac949daebfb62630bcad6f78580c1a2 -Author: Gavin -Date: Tue Dec 20 02:40:49 2022 +0100 - - rename Generator subtypes to BeforeExecuteGenerator and OnExecuteGenerator - - - and update javadocs - - add/improve doc of new Dialect methods - - add some missing @Override annotations - -commit f3e31fe427c28958497eff46a0257b18016d59f4 -Author: Gavin -Date: Tue Dec 20 01:43:38 2022 +0100 - - remove ancient limitation that allowed only one property as UK for 'select' id generator - -commit d30bf092aab519a31340573d2b71f968d308685d -Author: Gavin King -Date: Tue Dec 20 21:31:22 2022 +0100 - - Apply suggestions from code review - - Co-authored-by: Steve Ebersole - -commit 72c2559d399ad5ac44bc08556d902c9812a59a04 -Author: Gavin -Date: Tue Dec 20 21:16:19 2022 +0100 - - clean up obsolete imports and warning suppressions - -commit 5089df203676657f51603d387fb55a65a916ac54 -Author: Gavin -Date: Tue Dec 20 15:30:34 2022 +0100 - - HHH-15912 adaptively choose the DDL type for ORDINAL enums based on the number of members - - this amounts to a reversion of HHH-15288 for 99.99% of enums - -commit 7007bafe55db28fe318b30d219a2328a3e614822 -Author: Christian Beikov -Date: Fri Dec 16 12:33:39 2022 +0100 - - HHH-15872 Add ColumnOrderingStrategy SPI and handle record structs specially - -commit 1f630e4a5d310c3cdc81745dc26e53725dd61fc9 -Author: Andrea Boriero -Date: Mon Dec 19 19:10:29 2022 +0100 - - HHH-15805 Subquery with where condition on a column with columnDefinition results in wrong SQL grammer - -commit 62b218d411116e94372a6ba2c178670fa4388a2e -Author: Andrea Boriero -Date: Mon Dec 19 19:09:25 2022 +0100 - - HHH-15805 Add test for issue - -commit 81d9707f6191e56342146cc0aaefbc098e268b72 -Author: Georg Echterling -Date: Wed Nov 30 11:50:06 2022 +0100 - - HHH-15784 Fix primitive array as NaturalId. - -commit f13c69fb635fc4daf526fabef7f20b3e3fad457c -Author: Georg Echterling -Date: Wed Nov 30 11:49:31 2022 +0100 - - HHH-15784 Add test for primitive array as NaturalId. - -commit 5d93213ea3fd87d976df5c8d2a991b63b1e70c54 -Author: Georg Echterling -Date: Tue Nov 29 13:19:52 2022 +0100 - - HHH-15778 Fix Embeddable with FetchTiming.DELAYED - -commit 70638f9e60b853438329670abec87b324d71b933 -Author: Georg Echterling -Date: Tue Nov 29 13:19:25 2022 +0100 - - HHH-15778 Add test for Embeddable with FetchTiming.DELAYED - -commit b68eacbb90b1a2fa8aeb961fae1d96843efcf2f5 -Author: Marco Belladelli -Date: Tue Dec 20 10:21:18 2022 +0100 - - HHH-15900 Fix failing tests on TiDB due to missing trigger support - -commit 04b77066dfdc0d603f86a31cf92b1e193cb28b26 -Author: Marco Belladelli -Date: Sun Dec 18 23:07:50 2022 +0100 - - HHH-15654 Fix failing window function tests on DB2 10.5 - -commit 3ad3c5a5095ec18f9d311ef95ecddea63e60162e -Author: Gavin -Date: Tue Dec 20 00:17:56 2022 +0100 - - change default event timing for @Generated to event = INSERT - - - this makes sense if @Generated con now be used on @Id properties - - but it's also convenient with @ColumnDefault - -commit be3621d8f8de243645920de86aaf624ebc85e212 -Author: Gavin -Date: Mon Dec 19 23:45:53 2022 +0100 - - hand over responsibilities of SelectGenerator to @Generated - - at the end of all this work on SelectGenerator, a cruel twist of fate! - -commit 250995336b97f2db64ea37a265ecc88b2fde1493 -Author: Gavin -Date: Mon Dec 19 21:25:48 2022 +0100 - - note down an important TODO for later - -commit 0f4cdc3bdb3b2cff5e16467f256af534febe165b -Author: Gavin -Date: Mon Dec 19 20:02:13 2022 +0100 - - use getGeneratedKeys() in SelectGenerator on Oracle - -commit ad2d4604fb40a2422b91fcb1af0d3876aed9c1ae -Author: Gavin -Date: Mon Dec 19 16:31:41 2022 +0100 - - document supported database versions in Dialects - - there was incorrect information here for a couple of them - -commit 00edf484834abd3a63212668d49214e74fea2046 -Author: Gavin -Date: Mon Dec 19 16:30:56 2022 +0100 - - fix version # of support for 'insert returning' on Maria - -commit 7b387f3ecfc65c282248975440b5655356a34fff -Author: Gavin -Date: Mon Dec 19 10:41:17 2022 +0100 - - correctly handle 'returning' clause in DML formatter - -commit 01fa0c0fe958270d420ecff244e9b7e7c236e8d7 -Author: Gavin -Date: Mon Dec 19 10:33:56 2022 +0100 - - suppport 'from new table' on DB2 for retrieving generated primary keys - -commit c4e27c0a2e5638b8b3bf9cdbd380cc045fa1205c -Author: Gavin -Date: Mon Dec 19 02:26:09 2022 +0100 - - make select generator tests run on SQL Server - -commit 587857e6bf15a3cb110dd71d39cd1cd5839bb59c -Author: Gavin -Date: Mon Dec 19 01:43:32 2022 +0100 - - run SelectGeneratorTest on Db2 - -commit ed0f93ecdd95dc0fa4ce2f3a8406ec50f439904f -Author: Gavin -Date: Mon Dec 19 01:21:56 2022 +0100 - - use 'from final table' in SelectGenerator on h2 - -commit d93e72dc7e32baf110f93d69013e9ba6d44e72e8 -Author: Gavin -Date: Mon Dec 19 01:07:55 2022 +0100 - - some misc minor cleanups - -commit 782d2c9707276b5415f4c8fc5286856494b29a43 -Author: Gavin -Date: Mon Dec 19 01:07:28 2022 +0100 - - refactor SchemaCreatorImpl, SchemaDropperImpl into bite-sized methods - -commit 32790456b766189be85aeae87b46124d8072816e -Author: Gavin -Date: Sun Dec 18 22:32:15 2022 +0100 - - test select generator on h2 - -commit 493818141e46eb7c54a2892abb05a4fe50b48273 -Author: Gavin -Date: Sun Dec 18 22:30:45 2022 +0100 - - fix logging of DDL - - the DDL formatter was being applied twice - -commit ff9a60601cecce5063c408fe221862f7d602487a -Author: Gavin -Date: Sun Dec 18 12:56:19 2022 +0100 - - improve error reporting for DDL execution - -commit d49b568d7bad50dfc2011a7b42e7d535c71fef31 -Author: Gavin -Date: Sun Dec 18 03:34:05 2022 +0100 - - make SelectGenerator capable of using 'insert ... returning ...' - -commit 679ed3bbee1d581148a2956bf1f6c5533b492e6b -Author: Gavin -Date: Sun Dec 18 03:32:32 2022 +0100 - - add select generator test for Postgres, MySQL, EDB - -commit d8bf64999844aa01886687680e5c1b44632ce257 -Author: Jan Schatteman -Date: Mon Dec 19 21:12:07 2022 +0100 - - HHH-15910 Add static remove methods to Hibernate.class - - Signed-off-by: Jan Schatteman - -commit e0f55e5d5389e50f5eafccf064c37efb2f31dd56 -Author: Steve Ebersole -Date: Mon Dec 19 11:46:51 2022 -0600 - - HHH-15894 - Clean-up EntityMappingType for API - -commit 1715f09a896c2f8fea5bd5db587eaffa064cba9c -Author: Steve Ebersole -Date: Mon Dec 19 10:35:16 2022 -0600 - - HHH-15893 - Clean-up NaturalIdMapping for API - HHH-15894 - Clean-up EntityMappingType for API - -commit c21fef3a66e217fdd9c8de53fe951d464cab4547 -Author: Sanne Grinovero -Date: Thu Dec 15 19:23:27 2022 +0000 - - HHH-15887 Avoid megamorphic calls on JdbcValuesSourceProcessingState#getSession - -commit 7c068e5be43614a28efc2d6a07c88532d0718b2b -Author: Sanne Grinovero -Date: Thu Dec 15 18:59:56 2022 +0000 - - HHH-15886 Micro optimisations in NavigableRole equals and hashcode - -commit 2933a759fa81b7e79f9acc6e872e8f28e638567e -Author: Davide D'Alto -Date: Sun Dec 18 22:07:32 2022 +0100 - - HHH-15904 Change scope of BasicCollectionPersister#buildRowMutationOperations - -commit e8c2824976a4dbfb3a1f0f7977be57b50a495603 -Author: Gavin -Date: Sat Dec 17 17:57:05 2022 +0100 - - allow use of SelectGenerator from annotations - - - generalize @GenericGenerator to any Generator - - add tests for @GenericGenerator(type=SelectGenerator) - - move some logic for choosing the right InsertGeneratedIdentifierDelegate - to the generators themselves - -commit 6536fe0d729fc43bce7ec5dc18ba8acbd0903177 -Author: Gavin -Date: Sat Dec 17 11:02:45 2022 +0100 - - very minor code changes - -commit 8285eba3acb96e9fd94275e444b38481df05cd21 -Author: Marco Belladelli -Date: Fri Dec 16 17:49:09 2022 +0100 - - HHH-15900 Make SelectGenerator not extend IdentityGenerator - -commit 86ba5144f6c993382c3c04e8149b9dfb3152202c -Author: Marco Belladelli -Date: Fri Dec 16 17:47:00 2022 +0100 - - HHH-15900 Add test for issue - -commit 8bbb1edb303d4b7a5f41bed2e116f8489dcccdde -Author: Marco Belladelli -Date: Fri Dec 16 14:48:38 2022 +0100 - - Fix some failing tests - -commit 1ce4135145aef8233e2bfb2fe12108da2fbb8fae -Author: Marco Belladelli -Date: Fri Dec 16 12:55:13 2022 +0100 - - HHH-15654 Fix failing criteria set-ordered tests for some dbs - -commit 1ee34ac0a138b1719e8f0ed43e6a4c12648b33b8 -Author: Christian Beikov -Date: Fri Dec 16 12:52:58 2022 +0100 - - Switch from LGTM to CodeQL - -commit aadd0d7179b7d762ee6e0f4c1fe6a6f95371d55b -Author: Marco Belladelli -Date: Fri Dec 16 10:25:55 2022 +0100 - - HHH-15398 Bump baseline Jakarta Persistence version to 3.1 - -commit eccc1a89c5d3d2ec92d344962613b9c9d2bd79d6 -Author: Christian Beikov -Date: Fri Dec 16 08:36:52 2022 +0100 - - Ensure TypeContributor registered JdbcType has precedence over fallback and preferred types - -commit fe5fa5dce4e48b627ec43c0d0c3b1266203d0093 -Author: marco -Date: Thu Dec 15 20:53:58 2022 +0100 - - HHH-15550 New global and persistent temporary `create_tables` params - -commit caaaa71ffd6a965b12bd6b4bd8cf35a29054911c -Author: Marco Belladelli -Date: Thu Dec 15 10:43:34 2022 +0100 - - HHH-15550 New global and persistent temporary `create_tables` params - -commit a12a108f59f556c2a0b840a18c9a2f354455d7bc -Author: Steve Ebersole -Date: Thu Dec 15 18:59:09 2022 -0600 - - HHH-15884 - Clean-up EntityDiscriminatorMapping for API - -commit ed4af598829d8dcf1d90b42127e3ec44c71bc36e -Author: Steve Ebersole -Date: Thu Dec 15 18:55:28 2022 -0600 - - HHH-15884 - Clean-up EntityDiscriminatorMapping for API - HHH-15891 - Clean-up EntityVersionMapping for API - HHH-15892 - Clean-up EntityIdentifierMapping for API - -commit e82c8fe91139ddf16e74d7f86883cf79d828c698 -Author: Gavin -Date: Thu Dec 15 22:34:55 2022 +0100 - - upgrade very ancient mariadb JDBC driver - - (to get a bigfix) - -commit 126de862c0c4e0421b15bed0c1659c747409b2f9 -Author: Gavin -Date: Thu Dec 15 21:01:05 2022 +0100 - - cleaner signature of Column.getSqlType() - -commit 736dfac693ae56a854e620ee0ee02be31f88a4fe -Author: Gavin -Date: Wed Dec 14 16:14:16 2022 +0100 - - add ability to change column types to TableMigrator - -commit fcb8e323b0d1425dbb90789bdced88421e95059a -Author: Steve Ebersole -Date: Thu Dec 15 13:34:40 2022 -0600 - - HHH-15883 - Expose MappingMetamodel via unwrap from SessionFactory - HHH-15884 - Clean-up EntityDiscriminatorMapping for API uses - -commit 490b89becf382084772d59cc7bf0e358382228f1 -Author: Steve Ebersole -Date: Thu Dec 15 13:14:28 2022 -0600 - - Revert "Ensure TypeContributor registered JdbcType has precedence over fallback and preferred types" - - This reverts commit c6ecdb78f4315f0c931395d45b179446fb313997. - -commit 2e0b4b3558bb656ad54d1c47a6fc4d3c82f5a148 -Author: Steve Ebersole -Date: Thu Dec 15 12:29:17 2022 -0600 - - HHH-15883 - Expose MappingMetamodel via unwrap from SessionFactory - HHH-15884 - Clean-up EntityDiscriminatorMapping for API uses - -commit 49c096f146be9d039b18fad4cae25440b3738a95 -Author: Sanne Grinovero -Date: Thu Dec 15 11:22:23 2022 +0000 - - HHH-15878 Micro optimisations of StatefulPersistenceContext#clear - -commit c6ecdb78f4315f0c931395d45b179446fb313997 -Author: Christian Beikov -Date: Thu Dec 15 18:46:51 2022 +0100 - - Ensure TypeContributor registered JdbcType has precedence over fallback and preferred types - -commit 37ec41d319a2de54910b587bf7cb8298097b0c82 -Author: Christian Beikov -Date: Thu Dec 15 12:50:29 2022 +0100 - - HHH-15879 Introduce a fetchable key for Fetchable within FetchableContainer - -commit 69091d1394871db0401416847c9fb90847254042 -Author: Gavin -Date: Thu Dec 15 15:27:34 2022 +0100 - - remove two unused classes - -commit af8f2da6f268b3497922dd91d2c197714d25a6ca -Author: Sanne Grinovero -Date: Wed Dec 14 22:46:30 2022 +0000 - - HHH-15873 Micro optimisations of FetchParent#findFetch(Fetchable) operations - -commit fc7bdce2c8a24d291831c0ff3c77d93226bd5af4 -Author: Marco Belladelli -Date: Thu Dec 15 11:33:49 2022 +0100 - - HHH-15736 Add escape logic to cockroach and fix mysql 5.7 - -commit ae54ca8ae749ea45eff2efdeead93dca83f08de7 -Author: Christian Beikov -Date: Wed Dec 14 20:39:34 2022 +0100 - - HHH-15863 Update PostgreSQL testing to version 15 - -commit e61baab9464b746f2a231f34abfd23eb809422aa -Author: Christian Beikov -Date: Wed Dec 14 20:48:30 2022 +0100 - - HHH-15501 Remove clause parameter of Bindable forEachDisassembledJdbcValue and forEachJdbcValue - -commit cacba9a2056a13ca2342c2bf2822ed6d2726719f -Author: Sanne Grinovero -Date: Mon Dec 12 14:58:32 2022 +0000 - - HHH-15867 Avoid runtime services lookup for JdbcServices and BatchBuilder - -commit de68924ad26832a44268dacd551df0dce95482f1 -Author: rgarcia -Date: Wed Dec 14 16:48:08 2022 +0100 - - HHH-15859 Fetching an entity with entity graph for an attribute of type Map fails with an assertion error - -commit c67b3f984a0e711e4337492102e1c6035390d659 -Author: Andrea Boriero -Date: Tue Nov 29 16:43:02 2022 +0100 - - HHH-15741 Explicit declaration assigned identifier generator does not work - -commit b5a594004f25384737409248a41186a1213ff7dc -Author: Andrea Boriero -Date: Tue Nov 29 16:42:40 2022 +0100 - - HHH-15741 Add test for issue - -commit 9341df0b8b5c1eee2a54efd9c2404d511490c836 -Author: Andrea Boriero -Date: Mon Dec 12 11:37:02 2022 +0100 - - HHH-15759 Entity with @CollectionTable and entity with relation to element collection table, cause generate wrong FK, if first entity key field lexicographically after collection element. - -commit d95bb9c40e2455acda7fdd8595dfc2f98af3fd41 -Author: Andrea Boriero -Date: Mon Dec 12 08:57:59 2022 +0100 - - HHH-15759 Add test for issue - -commit 733e6cafdba57ee8c63612415e04fb40e8fe326c -Author: Andrea Boriero -Date: Sat Dec 10 11:17:38 2022 +0100 - - HHH-15840 HibernateException: Found shared references to a collection when loading a collection from the cache - -commit 7ec866873447de2a48a722fbe5288c504970b6b1 -Author: Andrea Boriero -Date: Sat Dec 10 09:30:04 2022 +0100 - - HHH-15840 Add test for issue - -commit 19bc9a432ba93639a3df0c6fddba4058e3a6de85 -Author: LLEFEVRE -Date: Mon Nov 28 14:21:42 2022 +0100 - - HHH-15755: Let OracleDialect detect if running on Autonomous database - -commit 2509b7420106f0afa61087db5374dc6e3c4edb9d -Author: LLEFEVRE -Date: Fri Nov 25 08:52:21 2022 +0100 - - HHH-15755: Let OracleDialect detect if running on Autonomous database - -commit 6777f4f7acaea881c215f6f312b96426eecbfa5a -Author: Christian Beikov -Date: Wed Dec 14 19:26:07 2022 +0100 - - Fixup batch method naming - -commit 3c287d442996f6339088c501c26486b6f7142184 -Author: Marco Belladelli -Date: Tue Dec 13 18:05:19 2022 +0100 - - HHH-15768 Don't set deprecated settings from PUI - -commit 540b8ec68489507113c9ef4a89f165af2de0e2cb -Author: Marco Belladelli -Date: Tue Dec 13 18:04:42 2022 +0100 - - HHH-15768 Add test for issue - -commit 723ca11f340094fa0f9accd8c4ee82ebac4b8526 -Author: Karel Maesen -Date: Wed Dec 14 18:41:39 2022 +0100 - - HHH-15869 Use explicit transactions for all SQL operations - - The test fails on e.g. CockroachDB 21.2 because first DDL is in a Transaction - but not the other DML/DDL statements. - -commit 7a7acfe120f51f9858ea8c0a4484fe9a443376f1 -Author: Marco Belladelli -Date: Wed Dec 14 17:35:14 2022 +0100 - - HHH-15654 Add @Incubating annotations - -commit 5feb44026cdd6a9c0983c580e020095ebfc819d7 -Author: Marco Belladelli -Date: Tue Dec 6 10:53:35 2022 +0100 - - HHH-15654 Fix SQL errors for some DBs + documentation for new interfaces - -commit 6d9c448db221bb8e16c3533c4c8bcdd38e5c46e2 -Author: Marco Belladelli -Date: Mon Dec 5 17:06:23 2022 +0100 - - HHH-15654 Added 'simple' aggregate functions and frame APIs for JpaWindows - -commit 28b0d6c5a498ad33bb4a44c1fb21824ce3e543aa -Author: Marco Belladelli -Date: Mon Dec 5 15:24:50 2022 +0100 - - HHH-15654 Overrides and small changes in the API interface - -commit 9a980b3f936be7d465070893670c8c595655cdfd -Author: Marco Belladelli -Date: Fri Dec 2 16:29:01 2022 +0100 - - HHH-15654 Add overloads to ordered-set aggregate functions without filter - -commit 2f1f6870b6441e1f116a14680892154456e5ef38 -Author: Marco Belladelli -Date: Wed Nov 30 17:40:23 2022 +0100 - - HHH-15654 Criteria APIs for window and ordered-set aggregate functions - -commit bc36eb3eeb9d68a8824c4805fe7182ea6027a760 -Author: Christian Beikov -Date: Mon Nov 28 21:23:01 2022 +0100 - - HHH-15327 Support mapping aggregate embeddables as struct/json - -commit 74f3c1715bb30c0a009e5f719ec40026c390de77 -Author: Jan Schatteman -Date: Wed Dec 14 18:03:02 2022 +0100 - - Avoid possible NullPointerExceptions in AbstractCollectionPersister.logStaticSQL() - - Signed-off-by: Jan Schatteman - -commit 75e6cfd125190d840ee6387198193e9b5ae53f5b -Author: Jan Schatteman -Date: Wed Dec 7 19:01:13 2022 +0100 - - Add instructions for building the platform-tck persistence-tck zip - - Signed-off-by: Jan Schatteman - -commit f1b9909fb6ce76f5a6455aefc31de5957878cfdb -Author: Marco Belladelli -Date: Mon Dec 12 13:05:39 2022 +0100 - - HHH-15736 Handle backslash escapes in like patterns - -commit 1140f6072ed37fa44f1fa30d21e03f529f748c89 -Author: Steve Ebersole -Date: Wed Dec 14 10:05:27 2022 -0600 - - HHH-15837 - Cleanup the tuple package - -commit a7274875cafd8d8504fa92d54da65f23857f3564 -Author: Sanne Grinovero -Date: Tue Dec 13 15:45:16 2022 +0000 - - HHH-15858 Improvements in Session casting - -commit 2c3ac612dbaf76c42fda6526f59c3bf6a70ff9d3 -Author: Sanne Grinovero -Date: Mon Dec 12 22:45:37 2022 +0000 - - HHH-15858 Cleanup of internal Session casts - -commit 48c383121fb962b9f6cb22633124e80ca2f673de -Author: Steve Ebersole -Date: Fri Dec 9 11:38:01 2022 -0600 - - HHH-15837 - Cleanup the tuple package - -commit ac32410438891fc8e346a14abc1c45c07630d274 -Author: Steve Ebersole -Date: Fri Dec 9 01:09:44 2022 -0600 - - HHH-15837 - Cleanup the tuple package - -commit 0b04dcef168c3234d504b850a5aa952698b4974e -Author: Steve Ebersole -Date: Thu Dec 8 08:19:21 2022 -0600 - - HHH-15837 - Cleanup the tuple package - -commit 78c3edf695699eb95e26458a25b64481562f51a7 -Author: Steve Ebersole -Date: Thu Dec 8 07:01:53 2022 -0600 - - HHH-15837 - Cleanup the tuple package - -commit 33c00d78c3a2c33855e306824ae473145e49778a -Author: Steve Ebersole -Date: Mon Dec 5 18:45:56 2022 -0600 - - HHH-15818 - Drop PropertyMapping in favor of new mapping-model - -commit 3d72eabf6cd17a5eb2e0f18dbb1accf3ab427f7b -Author: Marco Belladelli -Date: Wed Dec 14 13:49:17 2022 +0100 - - HHH-15823 Fallback to value type ignoring typeInferenceSource - -commit ba1feef1f8a4b623d2fc7b3c6219e339880426ac -Author: Marco Belladelli -Date: Wed Dec 14 12:24:54 2022 +0100 - - HHH-15823 Add test for issue - -commit 919e3226003c50582d086ef3817b499e6b455586 -Author: Davide D'Alto -Date: Tue Dec 13 17:07:14 2022 +0000 - - HHH-15761 Avoid possible NullPointerException - - In AbstractSqlAstTranslator - -commit 20e7f1be9caf647a81cc11328ee57859b957ea01 -Author: Davide D'Alto -Date: Tue Dec 13 17:07:03 2022 +0000 - - HHH-15761 Change some scopes for Hibernate Reactive - - Make it possible for Hibernate Reactive to call or override some - methods. - -commit e84bf71b7f46f02842eec1a180c5f2abb9722067 -Author: Davide D'Alto -Date: Mon Nov 28 20:51:19 2022 +0000 - - HHH-15761 Validate identifier generator - - Having tyhe validation in a separate method, make it possible - to extend the class without causing a StackOverflow exception - when overriding the getter. - -commit 7e36605a75e3d2577473c804094f641b1c964914 -Author: Davide D'Alto -Date: Fri Nov 25 14:58:43 2022 +0000 - - HHH-15761 Change scope of methods in QuerySqmImpl - - For Hibernate Reactive - -commit c9df6af30a8f30d7951a8f79e833a1065d39121c -Author: Davide D'Alto -Date: Fri Nov 25 14:58:00 2022 +0000 - - HHH-15761 Extract creation of execution context in ConcreteSqmSelectQueryPlan - -commit 5bdd79baf1f717f8ba6fa468c250246e257874cf -Author: Gavin -Date: Wed Dec 14 11:44:48 2022 +0100 - - fix up use of qualified name in annotations - -commit acd4e0e36acbeaee4201448c61e2bc90fe062e3b -Author: Christian Beikov -Date: Wed Dec 14 11:11:43 2022 +0100 - - Fix HANA test, skip one SQL Server test due to precision issues and get rid of old cruft in AbstractEntityPersister - -commit 92d447cddd45c1b452f57c78c9f865e83091f676 -Author: Christian Beikov -Date: Tue Nov 22 18:15:03 2022 +0100 - - Make use of JavaType in SqlSelection - -commit 30bb01d0fa521a0ef7b7db9da44b5994f58a5ce4 -Author: Christian Beikov -Date: Fri Nov 18 11:44:21 2022 +0100 - - Revert removal of JavaType from SqlSelectionProducer#createSqlSelection - -commit dfa3981a525e3342f1273ad8725ead3a4d377de6 -Author: Christian Beikov -Date: Wed Dec 14 07:18:19 2022 +0100 - - Make stored procedure and function calls through ProcedureCall API more portable - -commit 72edfa77e46d81f3603ebcf4445670016855540b -Author: Gavin -Date: Tue Dec 13 22:58:41 2022 +0100 - - minor fix to DDL formatter - -commit 6348d9927e9e9f5960ed0751249ce20f8a240bf5 -Author: Gavin -Date: Tue Dec 13 15:02:34 2022 +0100 - - introduce TableMigrator and kill some code duplication - -commit f2576d6b8706f9f21fdcadf8a363424d14ba9c5b -Author: Marco Belladelli -Date: Tue Dec 6 17:39:25 2022 +0100 - - HHH-15745 Change string literal handling in HQL lexer - -commit 1109dfbb1c4bd36e222f8768b26c82b59a325458 -Author: Marco Belladelli -Date: Tue Dec 6 17:33:47 2022 +0100 - - HHH-15745 Add test for issue - -commit c105c34976aacfd3f03b797b16417b74a17a888f -Author: Sanne Grinovero -Date: Mon Dec 12 22:59:58 2022 +0000 - - Minor code refactoring - -commit 371d2f1d491a2d1d31369aeffe8f42961be435b9 -Author: Christian Beikov -Date: Mon Dec 12 17:25:08 2022 +0100 - - Move getCheckCondition to BasicType and add variant to JdbcType for Oracle Booleans and other future uses - -commit 919278aac20f9157359f70954ff960dc2bcde7df -Author: Gavin -Date: Mon Dec 12 19:02:34 2022 +0100 - - HHH-15845 sort enum values on MySQL - -commit a5525a943f84a7e0393eeb7e56f613785c9469d7 -Author: Sanne Grinovero -Date: Thu Dec 8 17:14:28 2022 +0000 - - HHH-15853 Remove the AttributeMetadataAccess interface - -commit d2d40c73189a625e5058e2a146df35ef8fb1df01 -Author: Sanne Grinovero -Date: Thu Dec 8 13:51:09 2022 +0000 - - HHH-15853 Avoid re-computing AttributeMetadataAccess at runtime - -commit 58f8d3d4499f2b52051dfd033d5068cfb413fb48 -Author: Sanne Grinovero -Date: Mon Dec 5 21:13:14 2022 +0000 - - HHH-15844 Introduce custom containers for AttributeMapping Lists and Maps - -commit 33faa5b0603ec292851ba099e4403e6ea883e26e -Author: Gavin -Date: Sun Dec 11 14:15:45 2022 +0100 - - HHH-15847 run AttributeBinders in a SecondPass - - so that they can do stuff like register converters and not - have the results hammered by the SecondPass registered by - BasicValueBinder. - -commit 2b7eb6fc1ca12c75959f6cc82bc0dabfc9b7828a -Author: Gavin -Date: Sun Dec 11 11:53:36 2022 +0100 - - HHH-15847 introduce ConverterRegistry - -commit 4d2f4988c819021cc87dce9b209078fe9b3638a3 -Author: Gavin -Date: Sat Dec 10 20:40:33 2022 +0100 - - HHH-15847 fix check constraint creation - - - fix check constraints for built-in Boolean converters - - move getCheckCondition() + getSpecializedTypeDeclaration() from JavaType to BasicValueConverter - - simplify the API of Dialect related to check constraints - - recover check constraint for boolean on Oracle by letting Dialects register converters - - attempt to clean up some generics stuff in enum-related code - -commit a25e53d1abb41b4fc3eb1e55365a58211a49b763 -Author: Gavin -Date: Sat Dec 10 11:51:05 2022 +0100 - - also use enum type for boolean->char mappings on MySQL - -commit 413b9ba03e53a5c9b77c488c22c6c83c283f1da9 -Author: Gavin -Date: Sat Dec 10 10:38:54 2022 +0100 - - correct impl of MySQL.supportsColumnCheck() - -commit baffbc0aae64d7cca421540b1b79e1b608557fbb -Author: Gavin -Date: Fri Dec 9 22:33:56 2022 +0100 - - reenable check constraings on enum columns, and use MySQL enum column types - - MySQL doesn't have real check constraints, but it does have something just as good for this special case - -commit 7208bcea41fa7b1676dc0cd7df44ec4768c6a0bf -Author: Gavin -Date: Fri Dec 9 14:57:53 2022 +0100 - - clean up some bodgy handling of "null" annotation values (empty strings) - -commit a9be2e1584c51d0fc52e066f56794b8159567e1a -Author: Christian Beikov -Date: Thu Dec 8 12:29:42 2022 +0100 - - Fix temporal round in tests and render calendar with milliseconds precision - -commit 7376a1cdfb9ce97aba114819952b296911fef9d8 -Author: Gavin -Date: Thu Dec 8 11:41:49 2022 +0100 - - improve some javadoc around settings - -commit 2c8d6d719b7b4433ab3b8f9f4564c48821f88db1 -Author: Gavin -Date: Thu Dec 8 00:28:28 2022 +0100 - - improve some assertions in time zone tests + rename - -commit 3196f2584b3914b2e05395df38f0e559f17429ef -Author: Gavin -Date: Wed Dec 7 23:58:33 2022 +0100 - - add yet another time zone test - -commit d08498109b07420ec645bc6df1df54acad70b570 -Author: Gavin -Date: Wed Dec 7 23:55:59 2022 +0100 - - jdoc for schema management Action + for JDBC_TIME_ZONE - -commit 7a1f2542c19734a20c0514d5635fcc185aad3396 -Author: Karel Maesen -Date: Wed Dec 7 21:36:27 2022 +0100 - - HHH-15814 add methods for current time selection to CockroachLegacy Dialect - -commit c8723d3f14806022449446b44631ee28cdb5e55a -Author: Karel Maesen -Date: Mon Dec 5 15:47:43 2022 +0100 - - HHH-15814 add methods for current time selection to CockroachDB Dialect - -commit 7dff19795ffb6d2a914443ee264358c4c19a0ab3 -Author: Gavin -Date: Wed Dec 7 21:38:00 2022 +0100 - - attempt to fix continuing test flakiness on Sybase - -commit 86ef33d55bedfb97ddfe5bda353a0974d8b8494a -Author: Gavin -Date: Wed Dec 7 17:11:31 2022 +0100 - - clarify semantics of NORMALIZE - -commit 5e9b57cf40e9dee9563f7023fec95442a5343891 -Author: Gavin -Date: Wed Dec 7 17:00:09 2022 +0100 - - add one more test, this time for TIMEZONE_DEFAULT_STORAGE=NORMALIZE - -commit 9660a0424f02c148080e220583c38c6422eeff1f -Author: Gavin -Date: Wed Dec 7 16:13:19 2022 +0100 - - clarify AnnotationBasedGenerator vs constructor for Generators - - this was unclear/misleading in the javadoc, as pointed out by @sebersole - -commit 7bb066330a77f3b2e135ed7014ef3e23b48eb3a7 -Author: Gavin -Date: Wed Dec 7 15:18:58 2022 +0100 - - improve a couple of javadoc links - -commit 512ad8c80d2f5fc3da46fdf7fe0c6b9bcd396dcf -Author: Gavin -Date: Wed Dec 7 13:44:21 2022 +0100 - - fix @Column(precision=p) with TimeZoneStorageType.COLUMN - -commit cceac72a225da15845ba263d70d34c5964784429 -Author: Sanne Grinovero -Date: Wed Dec 7 12:48:42 2022 +0000 - - HHH-15836 Cleanup unneccessary String <> Serializable casts in TimestampsCacheEnabledImpl - -commit 23cff8bd10dec06a20e61cbed34fab3b4116a5d2 -Author: Andrea Boriero -Date: Tue Dec 6 18:39:20 2022 +0100 - - HHH-15674 @NamedEntityGraph not working on entity that have composite PK - -commit ff28d677ab55dcc635f534d1aeafb698fae405a5 -Author: Andrea Boriero -Date: Tue Dec 6 18:38:57 2022 +0100 - - HHH-15674 Add test for issue - -commit a7a455c39a64d4a0d297c76f37cf13a3ce0050db -Author: Gavin -Date: Wed Dec 7 12:12:01 2022 +0100 - - HHH-15834 add @TypeRegistration annotation - -commit 60468dadf06fd2bf0bc38ac3395bcd059ac123a0 -Author: Jeremy Whiting -Date: Tue Dec 6 12:09:45 2022 +0000 - - HHH-15825 Avoid pointless autoboxing of timestamp. - -commit 52b143c613fc4bc23dba14dc2a3ed6f4932866b0 -Author: Sanne Grinovero -Date: Wed Dec 7 11:50:46 2022 +0000 - - HHH-15835 Avoid using functions in PersistenceContext#clear implementation - -commit 6b1cbc064046b6e9b8ab7f4ced655044ede619be -Author: Gavin -Date: Wed Dec 7 09:33:27 2022 +0100 - - document the default behavior of time zone storage - -commit cc570da2968b76dadee0280991455ed1a2fde596 -Author: Andrea Boriero -Date: Mon Dec 5 20:10:14 2022 +0100 - - HHH-15653 Named Native Query cannot be registered/used with named parameters - -commit 0d2e39314f5fc901a8e5e639dbb9360af3723e32 -Author: Andrea Boriero -Date: Mon Dec 5 20:07:56 2022 +0100 - - HHH-15653 Add test for issue - -commit 015010febbccec454376db2887edb619839aef63 -Author: Gavin -Date: Tue Dec 6 22:43:23 2022 +0100 - - let's see if this works - -commit ef4ed9936eb0a5313390cf5575066da7fac95bee -Author: Gavin -Date: Tue Dec 6 21:57:21 2022 +0100 - - move timezone tests where they belong - -commit ee66a9330266590bab6903ce25bb3189db766d42 -Author: Gavin -Date: Tue Dec 6 17:40:58 2022 +0100 - - HHH-15828 fix setting TIMEZONE_DEFAULT_STORAGE to COLUMN - -commit 4fba6ac60dca278cac8c6f57fd557b82b08a32e0 -Author: Gavin -Date: Tue Dec 6 17:36:53 2022 +0100 - - add tests for [Zoned|Offset]DateTime handling with AvailableSettings.TIMEZONE_DEFAULT_STORAGE set - -commit e53b55583bde93bbb8308939c24f60ad017470be -Author: Gavin -Date: Mon Dec 5 20:18:23 2022 +0100 - - misc javadoc and refactorings around TimeZoneStorage stuff - -commit 863dda5cf54a26bf6043203030cc3664815232f8 -Author: Gavin -Date: Mon Dec 5 20:17:55 2022 +0100 - - HHH-15820 make the default TimeZoneStorageStrategy for [Zoned|Offset]DateTime depend on the dialect - - Define TimeZoneStorageType.DEFAULT, uses NATIVE if possible, falls back to NORMALIZE_UTC - - so that for dialects with proper support for TIMESTAMP WITH TIME ZONE we use it - - this is consistent with what we already do for Instant - -commit a4f301814b69fcf5cd386c7c815414691beddedc -Author: Gavin -Date: Mon Dec 5 13:35:32 2022 +0100 - - HHH-15819 fix extract(offset hour from datetime) - - bug noticed by @mrotteveel - - improve the tests for extracting time zones - -commit e0887386873fa51172acc880f00fb64ec605145b -Author: Marco Belladelli -Date: Mon Dec 5 12:10:16 2022 +0100 - - HHH-15742 Always return inferred mapping for is-null clauses - -commit cdfbc58bb971710e0b535940cd211797f29c83fd -Author: Marco Belladelli -Date: Fri Dec 2 15:52:06 2022 +0100 - - HHH-15742 Add test for issue - -commit d91e878c66da71ed9a924d398b202582b72f24d3 -Author: Mark Rotteveel -Date: Mon Dec 5 13:50:31 2022 +0100 - - HHH-15812 Remove dialect checks due to fix in #5699 - -commit 9290f8b754446fd79f5aa06dcf9dce158853caee -Author: Mark Rotteveel -Date: Mon Dec 5 12:29:48 2022 +0100 - - HHH-15812 Firebird dialect improvements - -commit 0745a2e294af5d4d796e997cfe7ef1c1d85b12bf -Author: Andrea Boriero -Date: Mon Dec 5 16:03:26 2022 +0100 - - HHH-15749 Hibernate fails when selecting grouped by entities in a specific order - -commit a2aca9127c8dbec89b03b1369c7637709750f7b8 -Author: Andrea Boriero -Date: Mon Dec 5 16:03:00 2022 +0100 - - HHH-15749 Add test for issue - -commit cb35e0e734789e1f1d9b6ee3bbc66816ddbc353d -Author: Gavin -Date: Fri Dec 2 21:50:59 2022 +0100 - - HHH-15797 better error messages - - 1. include the SQL in some SQLGrammarExceptions where it was missing - 2. append the SQL to the error message in JDBCException - 3. don't wrap HibernateException in PersistenceException b/c it is one already - -commit 239dfa30fac38171c5c45c88cada933d09412d3f -Author: Gavin -Date: Sun Dec 4 02:09:46 2022 +0100 - - HHH-15782 use a Generator for seeding/incrementing versions - - add javadoc for version generation - -commit 0228c3d185b3483f9fd5e321b0215ace9fe63b6a -Author: Gavin -Date: Sat Dec 3 21:29:25 2022 +0100 - - HHH-15800 introduce EventType + EventTypeSets in place of the previous "two booleans" approach - - I hope @sebersole likes this better. - - re-deprecate GenerationTime since the way forward is EventType - -commit c09664711de97527c92d2905d98d7c098db52418 -Author: Gavin -Date: Sat Dec 3 21:29:06 2022 +0100 - - HHH-15800 clean up GenerationTiming - -commit b40d15e5287d79b8efac47306a9395590a9940ea -Author: Gavin -Date: Sat Dec 3 15:03:43 2022 +0100 - - HHH-15782 cleaner impl of - -commit 075b268280869f49fdc61c66bed1f9a7e18511c3 -Author: Gavin -Date: Sat Dec 3 14:37:39 2022 +0100 - - HHH-15800 create .generator and .binder packages and move new interfaces to them - -commit 95aa852e15407f1636588b5a01a3bf801a628804 -Author: Gavin -Date: Sat Dec 3 13:56:48 2022 +0100 - - HHH-15800 reverse previous work to standardizing on GenerationTiming - - ...and go in exact opposite direction to migrate to GenerationTime - -commit 216fe0f61548204c19a7f3553b21f0919a48c118 -Author: Gavin -Date: Sat Dec 3 12:02:17 2022 +0100 - - HHH-15800 make Generator free of GenerationTiming - -commit 1104d01d331dee0ffb77b2753544be11bac2dc58 -Author: Gavin -Date: Mon Dec 5 21:58:09 2022 +0100 - - fix checkstyle failure - -commit f4a7be6b923493aded77e8427aedce994fb56d60 -Author: Steve Ebersole -Date: Fri Dec 2 15:44:50 2022 -0600 - - HHH-15795 - Create ValuedModelPart interface - -commit a4debae33a04ae16d210028e8bcedcc6701bf239 -Author: Gavin -Date: Mon Dec 5 17:24:08 2022 +0100 - - HHH-15816 make @Immutable work at property level - -commit 9526eb89b7ea834878a07abad176c393e72a396d -Author: Gavin -Date: Mon Dec 5 14:26:00 2022 +0100 - - HHH-15813 add @Imported annotation - -commit c29f2eaf605d97852ffd2367909e689974e24134 -Author: Andrea Boriero -Date: Mon Dec 5 13:14:35 2022 +0100 - - HHH-15744 HQL where clause parsing fails with StackOverflow exception - -commit 5a89c3412756daaa02b901004f7b18896236ba89 -Author: Andrea Boriero -Date: Mon Dec 5 13:14:15 2022 +0100 - - HHH-15744 Add test for issue - -commit 0d20cea0b33a179276d203ae2e8c6285153febcc -Author: Andrea Boriero -Date: Wed Nov 23 19:10:01 2022 +0100 - - HHH-15713 UnknownTableReferenceException on @ElementCollection of @Embeddable containing a @MayToOne with a @ManyToMany - -commit 1b417126bf9617878b931f85551e364c6bb96c47 -Author: Markus Heiden -Date: Sun Nov 13 21:28:39 2022 +0100 - - HHH-15713 Add test case to reproduce bug - -commit 404f1e15f40a8474f921a228d5c657093899278b -Author: Andrea Boriero -Date: Tue Nov 29 10:04:55 2022 +0100 - - HHH-15731 Add test for issue - -commit 31fafb1d4f750e3f0119d2392c643e407d787127 -Author: Andrea Boriero -Date: Tue Nov 22 18:00:00 2022 +0100 - - HHH-15721 NullPointerException in BaseSqmToSqlAstConverter.visitJunctionPredicate with combination of treats - -commit 4de7bf20b208459fc510244ad539fa915af906db -Author: Andrea Boriero -Date: Tue Nov 22 17:59:20 2022 +0100 - - HHH-15721 Add test for issue - -commit 90a395a3666797c22aa78674f4d37ef11d766a50 -Author: Andrea Boriero -Date: Fri Nov 18 10:49:28 2022 +0100 - - Clean up CircularBiDirectionalFetchImpl, CircularFetchImpl and ModelPartContainer - -commit d38304222939493907d971c5dc56c73609bb02b5 -Author: Sanne Grinovero -Date: Sat Dec 3 22:15:17 2022 +0000 - - HHH-15811 Avoid secondary super-type cache pollution when casting to AttributeMapping - -commit a7c3455274783259ade5556800596f37060566d8 -Author: Sanne Grinovero -Date: Sat Dec 3 21:46:53 2022 +0000 - - HHH-15810 Avoid secondary super-type cache pollution when casting to EntityInitializer - -commit 8ebf3c8507bce339bc63cdd76e6869c2fbd975a7 -Author: Sanne Grinovero -Date: Sat Dec 3 18:56:41 2022 +0000 - - HHH-15809 Secondary super-type cache pollution mitigations for HibernateBasicProxy - -commit ded4c433ac00ba912c8647fc3e503ad984da0f62 -Author: Sanne Grinovero -Date: Sat Dec 3 18:07:28 2022 +0000 - - HHH-15808 ByteBuddyProxyFactory#getHibernateProxy is triggering type pollution via generic PrivilegedAction - -commit bdc67f81b15e9a707b64cde5a83f4249203bbb9d -Author: Gavin -Date: Sun Dec 4 12:13:44 2022 +0100 - - clarify some javadoc for @Immutable and optimistic locking stuff - -commit 3c535c544f022930d1d1824b4d44ded20af007bb -Author: franz1981 -Date: Fri Dec 2 15:49:58 2022 +0100 - - HHH-15804 Avoid JDK functional interfaces in ManagedTypeHelper - -commit c114d08ac23e095452b2d47a1473aec8c1935b7f -Author: Sanne Grinovero -Date: Fri Dec 2 21:17:16 2022 +0000 - - HHH-15803 Have the default EmptyInterceptor avoid triggering type pollution - -commit 721b66c6d3bcad9606981e073114540432349d03 -Author: Mark Rotteveel -Date: Sat Dec 3 13:15:12 2022 +0100 - - HHH-15801 IdentifierGeneratorHelper should compare column names case insensitively - -commit f91905c34a59529020c6c93b0452056fa3c1bfee -Author: Gavin -Date: Fri Dec 2 21:47:07 2022 +0100 - - unquote table/column names when inferring sequence name on postgres - -commit 12682c0abd34bfc578ecbdcbc79c05f84c1d4334 -Author: Gavin -Date: Sat Dec 3 09:52:58 2022 +0100 - - slightly sanitize API of mapping package - -commit 0359e01c7761673483a45effac96459b2dc07fa7 -Author: Gavin -Date: Sat Dec 3 08:59:41 2022 +0100 - - very minor cleanup to ColumnReference - -commit 5ad9677728fe4b089d1236b8d80017e0dcf52600 -Author: Gavin -Date: Sat Dec 3 08:55:23 2022 +0100 - - remove redundant call - -commit 85bfed78c3b9f7170678b50359894355b8d6540e -Author: Gavin -Date: Sat Dec 3 08:53:08 2022 +0100 - - fix a potential source of NPEs - - (though this code path isn't working anyway for other reasons) - -commit 6596389e5544e4ab9822c02e9d60be75e31e8833 -Author: Gavin -Date: Fri Dec 2 17:26:00 2022 +0100 - - make @IdGeneratorType accept Generator - -commit eb6860d9d24a3be896a988f37705b8ce572c90cc -Author: Gavin -Date: Fri Dec 2 17:26:00 2022 +0100 - - make @IdGeneratorType accept Generator - -commit 938929528193e93aa8c0ad4f744dfac6a33887a0 -Author: Gavin -Date: Fri Dec 2 17:12:05 2022 +0100 - - improve javadoc for Generator hierarchy - - and make SelectGenerator a subclass of IdentityGenerator - -commit 392b2f2364309aae34be0062828419c9792e5a56 -Author: Gavin -Date: Fri Dec 2 15:07:29 2022 +0100 - - update javadoc for InsertGeneratedIdentifierDelegate - -commit 337919b7662523efbde2571741d4ecafac7745c8 -Author: Gavin -Date: Fri Dec 2 13:35:44 2022 +0100 - - kill off some awful code in IdentifierGeneratorHelper - - - should make multi-column (post insert) id generators work by side effect - - also make StandardGenerator a mixin type interface - -commit 4195772c1581cba15e89683ba2c2175c71a359cc -Author: Gavin -Date: Fri Dec 2 11:09:08 2022 +0100 - - generalize the InsertReturningDelegates to handle arbitrary InDatabaseGenerators - - the bit limitation is that an InDatabaseGenerator can be multi-column, but all the - InsertReturningDelegates assume that they map exactly one IDENTITY column - -commit 7b0ca427dd813f8365dbd06b0be8834ed348d180 -Author: Gavin -Date: Fri Dec 2 03:05:04 2022 +0100 - - remove nexus between Generators and InsertGeneratedIdentifierDelegates - - this is certain a very debatable move, but I think it's necessary to - keep the layering intact - we don't want this very technical construct - hanging off the side of the Generator APIs, which are user-visible - -commit 6a630e3515fa7343524899bf8fb1fa70110ce4cd -Author: Gavin -Date: Thu Dec 1 20:30:50 2022 +0100 - - make PostInsertIdentifierGenerator extend InDatabaseGenerator - -commit 4b2f8ff8ae09d21179cef01f1c6696337eb87865 -Author: Sanne Grinovero -Date: Sun Nov 6 16:59:25 2022 +0000 - - HHH-15793 Mitigate type pollution on ColumnReference#getExpressionType - -commit ed26c3f8fa8ed8365e95f82bcb40ae4b17e07575 -Author: Sanne Grinovero -Date: Thu Dec 1 22:09:40 2022 +0000 - - HHH-15787 DefaultMergeEventlistener#onMerge is performing runtime services lookup - -commit 329ccaa7a1469926a66df5ecd891ec1f62108d25 -Author: Sanne Grinovero -Date: Thu Dec 1 22:09:40 2022 +0000 - - HHH-15791 Avoid excessive Session casts to EventSource - -commit 6c2bff76c964b8948fde42de85a530c8268de7e9 -Author: Sanne Grinovero -Date: Fri Dec 2 09:38:00 2022 +0000 - - Update migration guide HHH-15791 - - HHH-15791 Avoid excessive Session casts to EventSource - - https://github.com/hibernate/hibernate-orm/pull/5663 - -commit 6035ab8e66400e2ffeb0a3e063b8d81b6ac6d9d1 -Author: Steve Ebersole -Date: Thu Dec 1 21:40:04 2022 -0600 - - HHH-15393 - Improve write-paths to use mapping model - -commit ee1788c3c3fe5ddfc4a874caab82fd55771775d9 -Author: Steve Ebersole -Date: Thu Dec 1 20:00:21 2022 -0600 - - HHH-15393 - Improve write-paths to use mapping model - -commit 33ce6a3d79396b93d259610befc9db3123c114e8 -Author: Sanne Grinovero -Date: Thu Dec 1 17:00:36 2022 +0000 - - HHH-15790 Refactor casting strategies for HibernateProxy across the codebase - -commit afc35f6c62e664e4f50260f8672516758da853ac -Author: Sanne Grinovero -Date: Thu Dec 1 15:04:13 2022 +0000 - - HHH-15790 Refactor filter definition in ByteBuddyProxyHelper - -commit fbf469830cea82eef80e1cfafc8d5903671d57eb -Author: Sanne Grinovero -Date: Tue Nov 29 23:43:44 2022 +0000 - - HHH-15790 Make HibernateProxy also type-cache friendly - -commit 366a1e9c1db74d69f7af6b38f24805834131d99b -Author: Sanne Grinovero -Date: Wed Nov 30 16:39:29 2022 +0000 - - HHH-15790 Apply the new type-cache enhancements to CompositeTracker and CompositeOwner - -commit 3028299b4a6f41a60d3955ea9a1411d4681b7ff0 -Author: Sanne Grinovero -Date: Tue Nov 29 22:44:27 2022 +0000 - - HHH-15790 New dispatch approach to manage type checks of enhanced entities - -commit c595347803645dff1d4272150ea4cd53c0187598 -Author: Gavin -Date: Thu Dec 1 14:39:39 2022 +0100 - - unify timestamp generation in one generator instead of three - - shows a nice feature of the constructor-based init - -commit be9358e02f64924e39ae74ed3334e113400aa2f3 -Author: Marco Belladelli -Date: Tue Nov 29 18:02:51 2022 +0100 - - HHH-15785 Fix javadoc errors - -commit 56eb241decc0e3d5f664ec2c4ca013d6ca672ec6 -Author: Andrea Boriero -Date: Wed Nov 30 10:40:59 2022 +0100 - - Fix Oracle OptionalSecondaryTableBatchTest#testManaged failing test - -commit 4aadbe801ce9432ba27b82a1970c30d988c1d256 -Author: Gavin -Date: Thu Dec 1 12:04:27 2022 +0100 - - deprecate unused class org.hibernate.mapping.IdGenerator - -commit 99cbd9a24a8b9ad77091f2a535b7303a7f8d6b81 -Author: Gavin -Date: Thu Dec 1 11:36:16 2022 +0100 - - minor fix to test - -commit a8aab7f5f2e49989c64df4f0a3f403df59710de3 -Author: Gavin -Date: Thu Dec 1 11:03:01 2022 +0100 - - HHH-15789 change IdentifierGeneratorFactory to be able to produce plain InMemoryGenerators - - this change is sort-of breaky, so I'm not sure about it - - cleanups to StandardIdentifierGeneratorFactory - - squash - -commit cced19c7ee33a14626dbb1939f3f1e220ef63ae1 -Author: Gavin -Date: Thu Dec 1 10:27:54 2022 +0100 - - HHH-15789 better validation of generators - -commit 101bee7647cb018735b7b1aa477730b20f862d39 -Author: Gavin -Date: Thu Dec 1 10:26:49 2022 +0100 - - minor cleanups + add a couple of @Deprecated annotations - -commit 3396c18178a61db52f2cb8ad6ab9732b9c75c8ba -Author: Andrea Boriero -Date: Thu Dec 1 10:15:08 2022 +0100 - - HHH-15393 Fix compilation error - -commit 631d0bad713023efd8d665eada0a29bae9fd9e03 -Author: Steve Ebersole -Date: Wed Nov 30 23:50:01 2022 -0600 - - HHH-15393 - Improve write-paths to use mapping model - -commit 26e73937756de5781043f120905b71abe9398e5e -Author: Gavin -Date: Wed Nov 30 21:30:45 2022 +0100 - - HHH-15789 allow any InMemoryGenerator to generate ids - -commit 7f72696fff805c1769df97d1f71b5672300ab7d8 -Author: Gavin -Date: Wed Nov 30 17:51:02 2022 +0100 - - HHH-15788 deprecate GenerationTime since it is a dupe of GenerationTiming - - ...and it was not even being consistently used in its own package! - - (@CurrentTimestamp was already using GenerationTiming.) - - What a mess. - -commit 2b50997e7143674bcfe99587a5f12470a1f69c84 -Author: Gavin -Date: Wed Nov 30 17:36:00 2022 +0100 - - rename to AnnotationBasedGenerator - -commit a67cfd039ea7f924869e2cdf77d081d4fd3cc093 -Author: Gavin -Date: Wed Nov 30 16:16:34 2022 +0100 - - HHH-15789 unify IdentifierGenerator with value generator stuff - -commit 1bd082bd3e7227553c4357a70ee18adc3a209264 -Author: Gavin -Date: Wed Nov 30 10:05:08 2022 +0100 - - much better naming - -commit 82c68d93e93228fd18108de64209881d67ecebdd -Author: Gavin -Date: Wed Nov 30 10:02:48 2022 +0100 - - HHH-15789 make IdentifierGenerator into a sort of value generator - -commit 1c083a5863637d2c0db2da9f034b1c78307b4af5 -Author: Steve Ebersole -Date: Wed Nov 30 15:36:28 2022 -0600 - - HHH-15393 - Improve write-paths to use mapping model - -commit c04caa18de3c5ff81c17ebb151430b9cf18b6284 -Author: Steve Ebersole -Date: Wed Nov 30 12:59:31 2022 -0600 - - HHH-15393 - Improve write-paths to use mapping model - -commit 175fe0e44ded31fb5833d17f6f4966008bcb5df2 -Author: Steve Ebersole -Date: Wed Nov 30 09:01:19 2022 -0600 - - HHH-15393 - Improve write-paths to use mapping model - -commit 3abc8c940afcb8877dba948a19ce77b80bd0f01b -Author: Marco Belladelli -Date: Tue Nov 29 09:28:03 2022 +0100 - - HHH-14982 Fix SQL Errors, add javadoc and extend spatial criteria tests - -commit 3b14107c49e93ba31ca9b1a356ae83366339bf15 -Author: Marco Belladelli -Date: Mon Nov 28 12:01:39 2022 +0100 - - HHH-14982 CriteriaBuilder extension mechanism and Spatial implementation - -commit f022d6ef3b33923491062e212623a16c903e214d -Author: Gavin -Date: Wed Nov 30 00:34:05 2022 +0100 - - HHH-15782 make @ValueGenerationType work with the new "split" hierarchy of value generators - - this was a lot easier than I thought it would be - -commit 82db252422a989d22de4c6106c5fa698f123e820 -Author: Gavin -Date: Tue Nov 29 23:40:52 2022 +0100 - - HHH-15781 deprecate @GenericGenerator(strategy) in favor of @GenericGenerator(type) - -commit f03a43053da770b192daef64a8caaa7320c9f2e5 -Author: Gavin -Date: Tue Nov 29 23:19:05 2022 +0100 - - javadoc for @IdGeneratorType and @ValueGenerationType - -commit 8ce224115361d3db5c275518650ffe70e60c3ed2 -Author: Gavin -Date: Tue Nov 29 22:55:33 2022 +0100 - - HHH-15781 make @GenericGenerator typesafe by adding type() member - - this annotation is not deprecated, so we should at least make it typesafe - -commit 3bab26739d13b7380e5e1e261183ba916e047153 -Author: Gavin -Date: Tue Nov 29 22:29:29 2022 +0100 - - javadoc for @GeneratorType and @GenericGenerator - -commit 815c4eb4a1db59ac0781cf04ead8ae018840cfa8 -Author: Steve Ebersole -Date: Tue Nov 29 16:00:53 2022 -0600 - - HHH-15393 - Improve write-paths to use mapping model - -commit 3e6fcdeda3a8d04f249e4bbe0c12cbda29c0d8e3 -Author: Gavin -Date: Tue Nov 29 10:10:39 2022 +0100 - - unify new ValueGenerationStrategy interfaces with existing ValueGeneration stuff - - - introduce ValueGenerationStrategy to abstract over IMVGS and IDVGS - - make ValueGeneration a mixin of IMVGS with IDVGS - - make IDVGS accept a Dialect for SQL fragment generation - (it was based on an obsolete version of ValueGeneration) - - adapt all the code which only handled single-column value generation - to handle multiple columns, as introduced by IDVGS - - Still to do: the whole AnnotationValueGeneration stuff still requires the use - of the mixin interface, and you can't use IMVGS or IDVGS directly. That bit is - going to require a bit more thinking about backward compatibility. - -commit 94e2b599e4b3dfba843b63e68ca154bbd0e3635e -Author: Steve Ebersole -Date: Tue Nov 29 12:40:30 2022 -0600 - - HHH-15393 - Improve write-paths to use mapping model - -commit 7461100c39ea8fe2772fbe7827ebc85d115af6f3 -Author: Mark Rotteveel -Date: Mon Nov 28 13:47:17 2022 +0100 - - HHH-15775 Make UnknownServiceException and NullServiceException extend ServiceException - -commit 325b416e7d52c7b04b3afee5669f85fdfa96bd35 -Author: Gavin -Date: Tue Nov 29 18:01:07 2022 +0100 - - fix checkstyle failure - -commit 9ccb71847bb2312532c1acbbda80934dab6ac53b -Author: Steve Ebersole -Date: Tue Nov 29 09:36:37 2022 -0600 - - HHH-15393 - Improve write-paths to use mapping model - -commit c7bd022b075647bee8fd4695595a29334e036d78 -Author: Sanne Grinovero -Date: Tue Nov 29 12:35:19 2022 +0000 - - HHH-15779 Avoid stateful lambdas in hot processing of JdbcValuesResultSetImpl - -commit a91e46a6826d6b7bce3e52270cd6066c0e1115f0 -Author: Gavin -Date: Tue Nov 29 11:51:10 2022 +0100 - - fix a flaky Sybase test - -commit 2b8b33e69424db5ad244aa41f8ab32574ccbe149 -Author: Christian Beikov -Date: Tue Nov 29 12:13:27 2022 +0100 - - Fix Oracle rowid and sybase value generation issues - -commit ad019fccec39851d60a23a148b5afd39ceb851a1 -Author: Christian Beikov -Date: Tue Nov 29 09:38:22 2022 +0100 - - Remove spacing in insert and update statements - -commit 8d3adc3123bf2972944b35c0b9ee6993fc1e1435 -Author: Christian Beikov -Date: Tue Nov 29 09:20:08 2022 +0100 - - Remove spacing in insert and update statements - -commit 26aaf1bf88b4dbf08b6be801a0fce445a9e0b257 -Author: Christian Beikov -Date: Tue Nov 29 08:39:59 2022 +0100 - - Fix more test failures with write path model - -commit a81f9d3e2dde2b3331ea55e9c9fdeccd24ba0027 -Author: Christian Beikov -Date: Tue Nov 29 01:43:32 2022 +0100 - - Fix HQLTest issue and javadoc aggregation - -commit 1f9a6f43f119862636a7edc1180e9ff73d69f4b1 -Author: Steve Ebersole -Date: Mon Nov 28 15:10:36 2022 -0600 - - HHH-15393 - Improve write-paths to use mapping model - -commit cc9ecfb94d4db2b726c271c7c55246be0dff2b4b -Author: Gavin -Date: Mon Nov 28 22:52:52 2022 +0100 - - annotate ValueGeneration impls in annotation package @Internal - -commit 366a89ae71124dfba175247bcc4abb5a60200bc5 -Author: Gavin -Date: Mon Nov 28 20:30:51 2022 +0100 - - reimplement @Source in an elegant way using the ValueGeneration machinery - - ... and finally delete two of my least-favorite classes! - -commit e908d4c8f69ded8afe0cff683c3403965551313b -Author: Gavin -Date: Mon Nov 28 19:22:56 2022 +0100 - - @CreationTimestamp should not be declared @Inherited - -commit 457872dbdd83f92924aaa41d0f2a6e5a8dacd449 -Author: Gavin -Date: Mon Nov 28 17:16:48 2022 +0100 - - skip a test on TiDB - - as requested by @beikov - -commit 84be9faf7098bd8fb71030a774c39d41af4409fc -Author: Gavin -Date: Mon Nov 28 15:46:22 2022 +0100 - - remove weird getCurrentTimestampSelectString() on PostgresPlusDialect - - ... which was causing tests to fail... but why *now* I have no clue! - -commit 993aae6095810a49ea77b2ded2c50d86aa4e548d -Author: Gavin -Date: Mon Nov 28 13:24:59 2022 +0100 - - HHH-15774 @CurrentTimestamp takes over from @Source - - ... and make value generation work better with version properties. - -commit a9ac98b364ccf52bb9cb2be5324c9c983e8bd8b3 -Author: Steve Ebersole -Date: Fri Nov 25 12:03:56 2022 -0600 - - HHH-15393 - Improve write-paths to use mapping model - HHH-15723 - Fix foreign-key modeling - -commit 4cce83a779b0b7b996dcf7a8ac942c5b946339fd -Author: Jan Schatteman -Date: Mon Nov 28 20:55:07 2022 +0100 - - Disable the SpatialTest for now (fails on edb) - - Signed-off-by: Jan Schatteman - -commit e4c294f4b6ee36cd3c70a044d18ffcd9d287313a -Author: Sanne Grinovero -Date: Mon Nov 28 16:33:56 2022 +0000 - - HHH-15776 Avoid type checking for ManagedEntity in EntityEntryContext#deserialize as well - -commit c88269955775b11362fd7f0c11f68b904120cf73 -Author: Sanne Grinovero -Date: Mon Nov 28 16:33:00 2022 +0000 - - HHH-15776 Avoid type checking for ManagedEntity in StatefulPersistenceContext#addReferenceEntry - -commit 07274cd2cef362a5e377c36d8f0c5b4c2a507266 -Author: Jan Schatteman -Date: Mon Nov 28 16:27:03 2022 +0100 - - HHH-15715 - Fix broken links in docs - - Signed-off-by: Jan Schatteman - -commit 0d295e9f113a328a1e4c1caa635808617bbb7fe9 -Author: Gavin -Date: Mon Nov 28 10:50:54 2022 +0100 - - HHH-15772 deprecate @Proxy and @Polymorphism - -commit 77fe23d7f99362b541d9f21902fa13d5662f5605 -Author: Gavin -Date: Sun Nov 27 22:46:40 2022 +0100 - - javadoc for @Polymorphism - -commit 922e71d62636d97c5f493f541397a06fa85496d1 -Author: Gavin -Date: Sun Nov 27 21:26:28 2022 +0100 - - deprecate @Target which dupes functionality of JPA annotations - - ...and refresh some misc annotation javadoc - -commit dd36425b31f0a21be33b3a107a1a9782afef7f76 -Author: Davide D'Alto -Date: Tue Nov 22 14:17:31 2022 +0000 - - HHH-15746 Register the StandardIdentifierGeneratorFactory as a default Service - -commit 7081d31647385627bbbe1f79de89e34e4a05ce3c -Author: Sanne Grinovero -Date: Wed Nov 23 14:38:37 2022 +0000 - - HHH-15746 Beans Helper doesn't need to be a singleton, convert to static helpers - -commit ed52dba65095f48b21e84668ba6f1d5fbf67eb11 -Author: Gavin -Date: Sat Nov 26 15:50:21 2022 +0100 - - make the gradle build quieter - - also delete some obsolete stuff from before move to Java 11 - -commit d9bceb3a8057f1bb2a8d9537e75c0befff364d4a -Author: Christian Beikov -Date: Mon Nov 28 09:09:03 2022 +0100 - - Fix build error - -commit 6bba6d073be1030f7461cd67eae40dfa9dbd7b44 -Author: Christian Beikov -Date: Mon Nov 28 08:29:03 2022 +0100 - - HHH-15765 Get rid of the credentials plugin - -commit c71d1b3bef9efddd578b1e832035716ba1498584 -Author: Mark Rotteveel -Date: Sat Nov 26 15:19:57 2022 +0100 - - HHH-15765 Fix build failure by upgrade nu.studer.credentials to 3.0 - -commit 86b28f4c8d3445a9aba79a41b9ac7bacb9392cef -Author: Gavin -Date: Sun Nov 27 20:01:33 2022 +0100 - - expand javadoc for OptimisticLocking - -commit f2c81b0eaf3a39e74c527c20c77704beadb1d26d -Author: Gavin -Date: Sun Nov 27 11:23:10 2022 +0100 - - rename some methods to reduce confusion - -commit 759b68b0229a31dfb8b1ea2f45cbdb77dab6239f -Author: Gavin -Date: Sun Nov 27 11:11:46 2022 +0100 - - HHH-15770 let you use @ColumnDefault on associations - - this is very useful in combination with @OnDelete(action=SET_NULL) - -commit 76f92bd901e1c8846854821aa2ed3b5083a70503 -Author: Gavin -Date: Sun Nov 27 01:58:09 2022 +0100 - - HHH-15770 add in all the commonly-supported OnDeleteActions - -commit c9caf292e693478f40d34e8c05eafacdadf9466f -Author: Gavin -Date: Sun Nov 27 01:17:21 2022 +0100 - - HHH-15770 javadoc and cleanup for @OnDelete, OnDeleteAction - -commit 12aa8bd431b4c94e96b8ce133257ad8dca6dcbee -Author: Gavin -Date: Sun Nov 27 11:53:11 2022 +0100 - - add some comments for the next poor soul who wrestles with unique constraints - -commit 5172d8798faff97c6f536f06dda89bdc3de33e56 -Author: Gavin -Date: Sat Nov 26 17:44:47 2022 +0100 - - HHH-15762 work around weird semantics of null in unique index on DB2/T-SQL - -commit 0253e1fe7a7cc4eb64fcc48f07630dee8d4fc20a -Author: Gavin -Date: Sat Nov 26 14:43:26 2022 +0100 - - HHH-15767 put unique constraints where they belong on optional @OneToOne associations - - this was a bug that allowed people to use @OneToOne as a regular @ManyToOne - and ... people did ... as evidenced by all these bogus tests I just fixed - - this is in principle a breaking change because it breaks code that was broken - -commit 82e42ef94629720fffa4f383e9684d2aef050377 -Author: Christian Beikov -Date: Sat Nov 26 13:44:19 2022 +0100 - - Fix OrderSequenceGenerationTest - -commit dd50e1e28ef9b56992b394e53eb570308d5ea06a -Author: Gavin -Date: Fri Nov 25 19:34:31 2022 +0100 - - add message/@deprecated a member that Hibernate ignores - -commit 13f4c8c2853af13c1dfb96ec157295c4f96a3d6e -Author: Gavin -Date: Fri Nov 25 19:34:03 2022 +0100 - - light refactoring - -commit 3ba90c004cd00fc584e7b6a6bb554783ddddc761 -Author: Gavin -Date: Fri Nov 25 02:39:46 2022 +0100 - - HHH-15762 nicer DDL for unique constraints - - - prefer 'unique' in 'create table' except in migrations - - also ignore unique=true for PK column - - introduce AlterTableUniqueDelegate and CreateTableUniqueDelegate - - fix the tests / delete test that makes no sense now - - improve javadoc of UniqueDelegate - -commit 41fb50f18ec223b166bbe475e3c7eb2ee634a9c1 -Author: Gavin -Date: Sat Nov 26 11:20:25 2022 +0100 - - and add/improve some Javadoc in AvailableSettings - -commit 9c0b30f99d3918cc46b162b425bdca308a96ff24 -Author: Marco Belladelli -Date: Fri Nov 25 16:50:39 2022 +0100 - - HHH-15760 various small html fixes javadoc - -commit f38dd280430b197da8b3797273d789b48ba74009 -Author: Marco Belladelli -Date: Fri Nov 25 15:49:22 2022 +0100 - - HHH-15760 mass replace self-closing tags in javadoc - -commit f4b1e00ddfa1232feacd8903d81d217fe9e62628 -Author: Christian Beikov -Date: Sat Nov 26 09:41:54 2022 +0100 - - Use NOCACHE for all envers tests since they can't cope with values to be skipped - -commit cff02f67268a9a9d34ecff438fbaaec49cbf367d -Author: Steve Ebersole -Date: Fri Nov 25 23:37:53 2022 -0600 - - HHH-15763 - Allow Dialect to specify fallback SchemaManagementTool - -commit 07de23d2834ab5064cb545bda917eed0cd07b2ae -Author: Gavin -Date: Sat Nov 26 00:07:55 2022 +0100 - - add javadoc about hibernate.dialect - -commit 27d4a55e75ac9d29c464c44931ddd7c4304ba033 -Author: Gavin -Date: Fri Nov 25 22:53:49 2022 +0100 - - javadoc for @NaturalId, @NaturalIdCache, @ListIndexBase - -commit d68eb4b7ebcfc43c5630a051bf78435951971ae4 -Author: Gavin -Date: Fri Nov 25 22:08:45 2022 +0100 - - add @deprecated explanations - -commit 70873f5d2fdaeefb5462c69bed595247d299aa40 -Author: Jan Schatteman -Date: Tue Nov 22 23:08:25 2022 +0100 - - HHH-15686 - test and fix for issue 'Envers incorrect key parameter order in insert statement when InheritanceType.JOINED and @Embeddable ID' - - Signed-off-by: Jan Schatteman - -commit 739cb653e527332bf290124acaa78cc901dd2bc9 -Author: Davide D'Alto -Date: Fri Nov 25 10:47:02 2022 +0000 - - HHH-15747 Add SqmSelectionQueryImpl#getTupleMetadata - - For Hibernate Reactive - -commit 6f78c26390f86a79170e49505d00d787db185f3c -Author: Davide D'Alto -Date: Wed Nov 23 19:28:46 2022 +0000 - - HHH-15747 Add QuerySqmImpl#getTupleMetadata() - - For Hibernate Reactive - -commit 276b7a6f95e06b2289dc4891774f52c80ae00d69 -Author: Christian Beikov -Date: Thu Nov 24 13:41:59 2022 +0100 - - HHH-15748 Use JSON DDL type on Oracle 21+ and BLOB on 12+ - -commit 5b5721f64be973f3b4c72a8ce3344379097fec23 -Author: Gavin -Date: Mon Nov 21 22:13:24 2022 +0100 - - HHH-15739 deprecate @LazyToOne and @LazyCollection - - and add some docs and cleanups - -commit c8ffee43ef43675cd406853bdb84299a7813694e -Author: Gavin -Date: Thu Nov 24 13:23:21 2022 +0100 - - HHH-15750 fix bug in Hibernate.isInitialized() - - it didn't work for EnhancementAsProxyLazinessInterceptor - -commit be406f2732d23cb5ec1712d8a877c00fa94cb0df -Author: Karel Maesen -Date: Wed Nov 23 22:44:32 2022 +0100 - - HHH-15668 Apply recommended settings for CockroachDB - - The recommended CockroachDB v22.1 settings for local testing have changed. The recommended - settings are now applied. - - The setting `schemachanger.backfiller.buffer_increment` seems to have been removed - (despite still being mentioned in the documentation). We remove it - because it throws an error and this may leave the Cockroach cluster - with some of the recommended settings not applied. - -commit 160f86a2f69345d1f0a9a0b6d581b7e65f982958 -Author: Karel Maesen -Date: Wed Nov 23 22:25:02 2022 +0100 - - HHH-15668 Fix assertion in BatchOptimisticLockingTest - - Recent CockroachDB versions return a more detailed message. We now - test only the first part of the error message. - -commit 67d751d81df2445656ff0a451929ce5c33c9e7c3 -Author: Christian Beikov -Date: Tue Nov 22 18:37:11 2022 +0100 - - Cleanup embeddable expression handling and resolving of column references - -commit c6fa10de6e8baeae700b1c3eb39d7210ed48e864 -Author: Christian Beikov -Date: Tue Nov 22 18:14:25 2022 +0100 - - Fix file descriptor leak - -commit 818bb41091baf38c55f11369bdd33ab472912592 -Author: Christian Beikov -Date: Tue Nov 22 18:13:45 2022 +0100 - - Teach CustomRunner to read orm.junit annotations - -commit 43f9cd6694387fe2f517f4fbc3d905b1320f32a3 -Author: Karel Maesen -Date: Mon Nov 21 16:06:13 2022 +0100 - - HHH-15669 Remove @SkipForDialect Oracle 21 - -commit 6658c6235fbcaf66fc4e40b3ddb590b5d4cad5be -Author: Karel Maesen -Date: Fri Nov 18 00:17:27 2022 +0100 - - HHH-15669 Fix test failures when using Oracle 21 - - Rings in Oracle polygons may be shifted depending on how it - is processed. The equality test now takes this into account. - - Add test to investigate st_within test failure. - -commit bf128ddbfa2a204f75c0b9c983c70582960779fa -Author: Andrea Boriero -Date: Tue Nov 22 17:55:17 2022 +0100 - - HHH-15711 Fix test failure with Oracle - -commit 6f0a631917ff9338f5af144513ea6ab4e065044b -Author: Andrea Boriero -Date: Tue Nov 22 14:25:36 2022 +0100 - - HHH-15718 Polymorphic queries with condition do not work - -commit a65579e268bb12a1411f157b42317236a021c48f -Author: Andrea Boriero -Date: Tue Nov 22 14:25:08 2022 +0100 - - HHH-15718 Add test for issue - -commit 98458b31f732921dd6464164a0612311c9d06b91 -Author: Andrea Boriero -Date: Mon Nov 21 18:15:01 2022 +0100 - - HHH-15711 ArgumentTypesValidator doesn't support enums in string functions - -commit 8ef73781ba643d07010c7b7627aae4cdcff41037 -Author: Andrea Boriero -Date: Mon Nov 21 17:01:44 2022 +0100 - - HHH-15711 Add test for issue - -commit 2171d3b24add79ef60b38bc0a678824b2cc8870c -Author: Andrea Boriero -Date: Fri Nov 18 12:45:16 2022 +0100 - - HHH-15606 @OneToOne(mappedBy = ..., fetch = LAZY) in embedded leads to IllegalArgumentException: Can not set [...] to LazyPropertyInitializer - -commit a2a2a8368498501eba90b8ce4b973e3b9598ecb9 -Author: Yoann Rodière -Date: Mon Oct 17 13:36:21 2022 +0200 - - HHH-15606 Test @OneToOne(mappedBy = ..., fetch = LAZY) in embedded - -commit ff973d45805b6a05a02700ca97122a5027af3e1c -Author: Andrea Boriero -Date: Fri Nov 18 01:16:32 2022 +0100 - - HHH-15699 HibernateException: Found shared references to a collection when ShareCacheMode.All or ShareCacheMode.DISABLE_SELECTIVE - -commit d9c790cae15c1a75bf06f06354808f930f38c512 -Author: Andrea Boriero -Date: Fri Nov 18 00:11:10 2022 +0100 - - HHH-15699 Add test for issue - -commit 838cbb81ca7d582dba3f547e378e4b6776081167 -Author: Andrea Boriero -Date: Thu Nov 10 13:27:13 2022 +0100 - - HHH-15658 Embeddable with more fields than the parent fails with Index out of Bounds - -commit 255cf3e301517c19f7425acbbb1d9c4fc31d4dcb -Author: Andrea Boriero -Date: Thu Nov 10 11:52:01 2022 +0100 - - HHH-15658 Add test for issue - -commit fae1ec40fd0dcc6b9c350e073ec840f51eac2b57 -Author: Gavin -Date: Mon Nov 21 19:29:04 2022 +0100 - - add Hibernate.isInstance() convenience method - -commit 5160ac31926d48db73e806bf2d24650ea93b0727 -Author: Gavin -Date: Mon Nov 21 18:58:25 2022 +0100 - - completey rewrite the javadoc I just wrote and pushed - - ooops, I suck :-( - -commit a72c8744a8d0070b92efe818bfed4d6299136152 -Author: Gavin -Date: Mon Nov 21 17:21:15 2022 +0100 - - document limitation of LazyToOne(NO_PROXY) to non-polymorphic associations - - we can roll back this commit if/when we fix the limitation, as proposed: - - https://github.com/hibernate/hibernate-orm/discussions/5591 - -commit 2e02b9a74f3d9b32948ada427b7491b36412d002 -Author: Gavin -Date: Mon Nov 21 16:41:09 2022 +0100 - - throw exception for contradictory annotations - -commit 2e99811dd4011af4de46a7a47a34153cdc57884e -Author: Gavin -Date: Mon Nov 21 14:35:57 2022 +0100 - - javadoc for @LazyToOne - -commit c1070b81710e78ab7cd8efa7b174befbc9c71cd5 -Author: Andrea Boriero -Date: Mon Nov 14 16:29:49 2022 +0100 - - HHH-15687 Add test for issue - -commit 6aedc5499d4789624f88289b65a15e70b2df1e3e -Author: Christian Beikov -Date: Fri Nov 18 14:39:45 2022 +0100 - - HHH-15730 Fix NPE in EnhancedSetterImpl - -commit c51604c6b7c9dc8cd3136f5fe35c4932731494b1 -Author: Gavin -Date: Fri Nov 18 12:20:26 2022 +0100 - - improve javadoc for annotations related to filters + discriminators - - Also: - - - deprecate a layer-breaking method of org.hibernate.Filter - (consistent with what we already did on SessionFactory) - - fix the incorrect @Target of @SqlFragmentAlias - - add some missing @since annotations - - add cross-links to DialectOverride - -commit d25c1a44f040ceaf7b3c7ced92acb5ba9f2b0a08 -Author: Andrea Boriero -Date: Tue Nov 15 19:03:23 2022 +0100 - - HHH-15694 HibernateException: Unable to resolve property xyz on ManyToOne with BatchSize - -commit 47933b36bdcabb544eae880b512eea805eca786b -Author: Andrea Boriero -Date: Tue Nov 15 18:32:51 2022 +0100 - - HHH-15694 Add test for issue - -commit 4688cccdbc7977ea6821e02a9ea72c91b042643c -Author: Andrea Boriero -Date: Wed Nov 9 18:47:09 2022 +0100 - - HHH-15695 Batch loading, Embeddable with an Association is considered null when all the other Embeddable attributes are null - -commit 7f7e54c42d2f7f7202ba786b1177c21ca9fed0e6 -Author: Andrea Boriero -Date: Wed Nov 9 18:46:06 2022 +0100 - - HHH-15695 Add test for issue - -commit 29cfc5a7e009adabdeb9d8350dc0f4662fb0a816 -Author: Andrea Boriero -Date: Mon Nov 7 23:01:02 2022 +0100 - - HHH-15644 ClassCastException when batch-fetching association in embeddable - -commit 00717c6911e89746c11b718e98e88b977e46accb -Author: Andrea Boriero -Date: Mon Nov 7 22:59:56 2022 +0100 - - HHH-15644 Add test for issue - -commit 7c72115bcfa06bb7efe49409766ca7746ae65292 -Author: Thomas Heigl -Date: Mon Oct 31 08:39:14 2022 +0100 - - HHH-15644 Add reproducer test - -commit 3a0b5feda07e35df9dd04f44c6d3af17bb9bfacd -Author: Andrea Boriero -Date: Thu Nov 10 16:18:38 2022 +0100 - - HHH-15640 ElementCollection with SubSelect FetchMode throws NPE, ownerEntry is null - -commit 7337e0be2ee153b5c451505f50e43201e999a5d6 -Author: Andrea Boriero -Date: Thu Nov 10 15:53:56 2022 +0100 - - HHH-15640 Add test for issue - -commit 7aa9b1bbd8aeeacbf59d63ec8b45dbb2726c952e -Author: Christian Beikov -Date: Fri Nov 18 11:09:14 2022 +0100 - - HHH-15626 Move old databases to nightly pipeline and add some SQL Server 2022 features - -commit d6bfe1cacf2e89355de505dbb99de301364d327f -Author: Christian Beikov -Date: Wed Nov 9 02:37:43 2022 +0100 - - HHH-15700 Allow specifying NOCACHE for Envers revision info sequence - -commit 4914d14a43cc18cd58000ed55d138e140b3bd49e -Author: Christian Beikov -Date: Thu Nov 3 15:15:01 2022 +0100 - - HHH-15626 Move old databases to nightly pipeline and add some SQL Server 2022 features - -commit dd5c455d88542e85bb825814f470041f289d2a69 -Author: Andrea Boriero -Date: Mon Nov 14 12:26:02 2022 +0100 - - HHH-15646 Using a generic DTO i get a ClassCastException: class sun.reflect.generics.reflectiveObjects.TypeVariableImpl cannot be cast to class java.lang.reflect.ParameterizedType - -commit ccf24ac355762a13c3ef9fa6efb5f8959c3b9547 -Author: Andrea Boriero -Date: Mon Nov 14 12:25:01 2022 +0100 - - HHH-15646 Add test for issue - -commit 385926e61b5eabbe91da3eeb05b6d24c580ed595 -Author: Andrea Boriero -Date: Mon Nov 14 12:23:21 2022 +0100 - - HHH-15624 java.lang.ClassCastException: class sun.reflect.generics.reflectiveObjects.WildcardTypeImpl cannot be cast to class java.lang.reflect.ParameterizedType when using generics and Wildcard - -commit 8f2c3cc6150dfd515a33af5e9739e1ac9957397b -Author: Andrea Boriero -Date: Mon Nov 14 12:09:10 2022 +0100 - - HHH-15624 Add test for issue - -commit 4ca9c2bb3b0637bcc45eaca3bcfc0b228fb994e9 -Author: Andrea Boriero -Date: Fri Nov 18 02:34:06 2022 +0100 - - HHH-15716 ClassCastException in QueryParameterBindingsImpl.generateQueryKeyMemento - -commit 03f1ce9c495cdc4b6fb9dcf3b5224896a5a15ab8 -Author: Andrea Boriero -Date: Fri Nov 18 02:33:29 2022 +0100 - - HHH-15716 Add test for issue - -commit 44aa5288c76545eb021d5a19997d641c1d674129 -Author: Sanne Grinovero -Date: Thu Nov 17 14:07:42 2022 +0000 - - HHH-15693 An additional minor polish to the previously applied optimisation - -commit e89063ae91c7a1ad608017cb0c613cc94205b14f -Author: Sanne Grinovero -Date: Thu Nov 17 14:23:11 2022 +0000 - - HHH-15732 Upgrade to Hibernate Commons Annotations 6.0.5.Final - -commit 6ef9b03f8b092d7eb45d5fda572c6fafdce0d8d8 -Author: Gavin -Date: Thu Nov 17 14:38:08 2022 +0100 - - squash some warnings and remove some obsolete code + parameters - -commit 476da28da9277f18416c1d13a7c6ac520fa783b0 -Author: Andrea Boriero -Date: Tue Nov 15 16:25:07 2022 +0100 - - HHH-15717 SQL script executed twice when using persistence.xml jakarta.persistence.sql-load-script-source property with the default sql script name - -commit 97200379636e746d0a353a384d084b58322b7317 -Author: Andrea Boriero -Date: Tue Nov 15 16:22:43 2022 +0100 - - HHH-15717 Add test for issue - -commit d648adfd594a5fff01b6087f3c340c913bcbb31d -Author: Sanne Grinovero -Date: Wed Nov 9 11:18:55 2022 +0000 - - HHH-15692 Remove references to hibernate.query.factory_class config property - -commit 479aa10e2f9ae92c4370cdb554887e98acf52dc9 -Author: Gavin -Date: Thu Nov 17 01:00:55 2022 +0100 - - SchemaTruncator should reimport the load script after truncating - -commit bc4554f86e6899d7be2aff0292be9a8b256dd326 -Author: Jan Schatteman -Date: Wed Nov 16 15:38:50 2022 +0100 - - HHH-2087 - Added test to verify issue is fixed - - Signed-off-by: Jan Schatteman - -commit 58e9c2a0fcd7b577fb57a8526c5bc742dbab764a -Author: Gavin -Date: Wed Nov 16 17:47:50 2022 +0100 - - use default noop methods on SessionEventListener - - - also, mark it @Incubating, as was already documented - - improve the jdoc for SessionEventListener and StatementInspector - -commit be2999d05419732220e814e0b5cd43b35ca5d6a8 -Author: Sanne Grinovero -Date: Tue Nov 8 14:51:30 2022 +0000 - - HHH-15693 Introduce a fast-path access for ClassLoaderService being retrieved from ServiceRegistry - -commit 1eeccd32eb53094a1dfc8fc0c255c30a3b39de5b -Author: Sanne Grinovero -Date: Tue Nov 15 18:35:27 2022 +0000 - - CacheHelper#fromSharedCache no longer needs to return a Serializable object - -commit 3fabde0cd93274c34b0d59f5ee1e7ebec1719686 -Author: Gavin -Date: Wed Nov 16 14:13:41 2022 +0100 - - remove a method I accidentally pushed - -commit ed956d514a74417125b141d5514c5b70748c819e -Author: Gavin -Date: Mon Nov 14 17:49:43 2022 +0100 - - HHH-15729 introduce SchemaManager, a programmatic API for schema export - - featuring a brand new SchemaTruncator! - -commit 7d9ffc6158e74dcb2fe0388985b400fe672b3688 -Author: Christian Beikov -Date: Tue Nov 15 19:11:21 2022 +0100 - - HHH-15728 Improve query cache key hash code to reduce collisions - -commit 68324b9297c16d4ade8556c1eac4cf0c6280b832 -Author: Christian Beikov -Date: Tue Nov 15 14:20:49 2022 +0100 - - HHH-15719 Hint UniqueSematics.NONE for entity queries without collection join fetches - -commit de9b82f994068c0382557274eddcc34b0be6707d -Author: Sanne Grinovero -Date: Tue Nov 15 16:50:08 2022 +0000 - - HHH-15724 Upgrade to Jandex 3.0.3 - -commit 38c591f823260aad830c6c16af064b79000326a1 -Author: Gavin -Date: Mon Nov 14 18:15:56 2022 +0100 - - joc punctuation fix - -commit 8c1aa482f9057f67413df945d9577c1c9e332004 -Author: Christian Beikov -Date: Mon Nov 14 14:48:02 2022 +0100 - - Switch to debug logging for reflection optimizer issues - -commit 99f9ccdd11500e1ed3af463c314e929a252a4408 -Author: Christian Beikov -Date: Tue Oct 25 15:06:23 2022 +0200 - - HHH-15569 Replace list and map with array to improve state extraction for entity initializing - -commit 1d5f6b5c13acfef405ef8aa28fcf5e55138816f2 -Author: Gavin -Date: Mon Nov 14 12:18:50 2022 +0100 - - finish off jdoc for DDLTypes - -commit 867b1146ab5713131e4aaf4a821df891aee1f56a -Author: Christian Beikov -Date: Mon Nov 14 10:15:08 2022 +0100 - - Increase metaspace size for test JVM to avoid OOM - -commit e72d0aeb413533ba612813adda4be41fe977f46e -Author: Gavin -Date: Sun Nov 13 15:38:34 2022 +0100 - - even more jdoc about query cache invalidation - -commit 1d5c0a60d3a83f358aab988a373b64f187fc880e -Author: Gavin -Date: Sun Nov 13 13:22:03 2022 +0100 - - better error reporting in DialectContext and service registry - -commit 110596adb76854cb1c9d4d0b43480d087687b79e -Author: Gavin -Date: Sun Nov 13 12:00:58 2022 +0100 - - deprecate two unused types in the cache SPI + add javadoc - - also correct some errors in the names of types - this is - why it's better to use @link!! - -commit cf9578a9e0ba851d8c3611862ad8921ecb09e263 -Author: Gavin -Date: Sun Nov 13 10:09:52 2022 +0100 - - add some cross-refs to the Javadoc - - so we can easily find where these settings ultimately come from - -commit f58e450ea830196507d893261b7c6f38cfbe1414 -Author: Gavin -Date: Sat Nov 12 22:29:53 2022 +0100 - - make a test more robust - -commit dbc7b2359b81fdf3e03f5cb4e14ffcf6d47b6932 -Author: Gavin -Date: Sat Nov 12 19:45:41 2022 +0100 - - extract an oft-repeated expression as a new method of JdbcTypeIndicators - - write some Javadoc about types - -commit 77a1be10b15bf316d092250d39d577a0486083a8 -Author: Gavin -Date: Sat Nov 12 10:44:41 2022 +0100 - - some cleanups + doc for SqlTypes - -commit 5dfb90bb737e11d24afd05a1029169b4849c463e -Author: Gavin King -Date: Thu Nov 10 18:45:12 2022 +0100 - - HHH-15679 proposed fix to OffsetTime handling - - The idea is: convert all OffsetTimes to the system offset before sending them on - -commit 39f85a2dca053f9a9496ae7e41191b5ea26b58a3 -Author: Gavin -Date: Sat Nov 12 00:21:14 2022 +0100 - - HHH-15709 test value of timestamp literal - -commit 1f9439b2ed94e4520dcc2d4c31ad5eb4b922728e -Author: Gavin -Date: Fri Nov 11 23:56:45 2022 +0100 - - HHH-15709 fix rendering of timestamp literal when there is no timezone - - for Postgres, Cockroach, and H2 - -commit 9073d6192b778032e68d1a4f91af6b40f43d855e -Author: Gavin -Date: Fri Nov 11 21:30:01 2022 +0100 - - Revert "fix an issue with postgres timestamp literals" - - This reverts commit 0b021e56f9947ccb4460a90472e7f9ae20f01496. - -commit 0b021e56f9947ccb4460a90472e7f9ae20f01496 -Author: Gavin -Date: Fri Nov 11 18:50:27 2022 +0100 - - fix an issue with postgres timestamp literals - -commit 53d9935237ce54e86358a9650b32ee3d1731f592 -Author: Gavin -Date: Fri Nov 11 15:53:28 2022 +0100 - - clean up some code duplication! - - cc @beikov - -commit f0ea66b872a12705f7eb205c288ed37b56294d79 -Author: Jan Schatteman -Date: Fri Nov 11 17:13:08 2022 +0100 - - HHH-15704 - Fix regression in StandardForeignKeyExporter and add test case for this issue - - Signed-off-by: Jan Schatteman - -commit 9eaeff05ecb93dbbee9eb0a10474f618a1a61df5 -Author: Gavin -Date: Thu Nov 10 16:55:16 2022 +0100 - - we forgot to deprecate ReplicationMode - -commit 3762f4a6e5b2153d0b834e3293e3c3b43c74fa76 -Author: Gavin -Date: Thu Nov 10 16:39:49 2022 +0100 - - more jdoc for "minimal puts" - -commit 61421d5d54c74b51037835c96f40822a01ba0606 -Author: Christian Beikov -Date: Thu Nov 10 14:51:41 2022 +0100 - - JPA requires that IllegalStateException be thrown instead of UOE - -commit 7a335393c7b7dcf7656a3ccfa21b626c203ac07d -Author: Christian Beikov -Date: Thu Nov 10 01:35:54 2022 +0100 - - HHH-15660 Make use of ReflectionOptimizer in more cases - -commit 7a14e5c07f72a46c643edc8035fc2ba0fd488875 -Author: Christian Beikov -Date: Wed Nov 9 01:10:43 2022 +0100 - - HHH-15631 Enable reflection optimizer by default Christian Beikov - -commit 4fdbb3d5f6f6a80cb25a2a16e5873ab7cb546253 -Author: Christian Beikov -Date: Wed Nov 9 01:10:31 2022 +0100 - - Some reflection optimizer related fixes - -commit 2a93aa5467fef3f9fce615fd7c6fbb6be6dbfe9c -Author: Emond Papegaaij -Date: Thu Nov 10 15:48:56 2022 +0100 - - HHH-15703 Append remainder of SQL fragment after last parameter - -commit f1a5314e7017a38a30d6872a8cee04029b772263 -Author: Gavin King -Date: Thu Nov 10 14:03:40 2022 +0100 - - remove a big scary warning from docs because situation has been fixed in 6 - -commit 90a752a0ee0d553098db415f7008622f10680339 -Author: Christian Beikov -Date: Fri Sep 9 18:05:35 2022 +0200 - - HHH-15328 Add support for CTE WITH clause - -commit 215d411ffad9ec11d98389147826089d30827979 -Author: Gavin King -Date: Thu Nov 10 10:39:24 2022 +0100 - - HHH-15702 also add matching getters - -commit 778675b8678bcb8a6ca2f65188c1d3741e83dac6 -Author: Gavin King -Date: Thu Nov 10 10:15:17 2022 +0100 - - HHH-15702 add Session.setCacheRetrieveMode, Session.setCacheStoreMode - -commit 5c90779a02e4ad44bbe3c6974d8e263f75a97b7e -Author: Gavin King -Date: Thu Nov 10 09:58:16 2022 +0100 - - HHH-15702 add SelectionQuery.setCacheRetrieveMode, SelectionQuery.setCacheStoreMode - - also clean up some unnecessary overriding in Query hierarchy - -commit a56a7c523b42fc696a2e978decb751a126e1e4dc -Author: Gavin King -Date: Thu Nov 10 09:34:55 2022 +0100 - - HHH-15702 Javadoc for CacheMode - - talk about how it relates to the JPA enums - -commit 51e2531c9c425e6d7233bf596248d8b28eb9f445 -Author: Gavin King -Date: Thu Nov 10 00:12:12 2022 +0100 - - Javadoc for FetchMode, @Fetch, and @BatchSize - -commit bd7140eef71cb4b8d88e1c26a39f36aa91c04958 -Author: Gavin King -Date: Wed Nov 9 23:00:12 2022 +0100 - - HHH-15701 deprecate CacheModeType since it is a dupe of CacheMode - - improve Javadoc - -commit 7bcbfdcc12bcb89b48452553bc250292db5cb8b4 -Author: Gavin King -Date: Wed Nov 9 20:04:34 2022 +0100 - - move getLockMode() up to SelectionQuery - - squash some warnings in the query APIs - -commit c966acf1783fff915f8bf15c1b1cc1ded90dc9a1 -Author: Gavin King -Date: Wed Nov 9 18:54:16 2022 +0100 - - JPA requires that IllegalStateException be thrown instead of UOE - - leave code comments making this very clear, because it wasn't - clear at all (and is sort-of wrong) - - on the other hand, add getHibernateLockMode(), and let the client - bypass the stupid JPA restriction - -commit 2a92267cd82d189fa784e4cf4dff0b4b65e4ccbc -Author: Jan Schatteman -Date: Wed Nov 9 16:32:04 2022 +0100 - - HHH-13106 - Remove erroneous (incomplete) test and add a new one for this issue - - Signed-off-by: Jan Schatteman - -commit 1607252bc393d75ecd981bdf86f07272946c81aa -Author: Gavin King -Date: Wed Nov 9 15:41:28 2022 +0100 - - HHH-15697 deprecate lock(entityName) - - since we no longer encourage passing a detached object to this method - -commit 89c1b0f0cedadc27654d272b759e5acd80ba4731 -Author: Gavin King -Date: Wed Nov 9 15:19:41 2022 +0100 - - HHH-15696 very basic test for multiply-mapped entity class - -commit 1cc7b72c4cd65c49a5850153fc12471dad283a67 -Author: Gavin King -Date: Tue Nov 8 12:20:05 2022 +0100 - - HHH-15689 fix SessionFactoryBuilder#addEntityNameResolver() and add Configuration#addEntityNameResolver() - -commit f71cf0162098cab600179684111ad3b93d237283 -Author: Gavin King -Date: Wed Nov 9 12:37:50 2022 +0100 - - HHH-15652 roll back addition of remove(entityName, instance) - - I messed up and forgot we don't want people passing detached - instances to remove(). - - reverts 4274cb43136b6da6e0f1ad7d51810dbb59d71ab5 - -commit 6f85a56cad03bc8ed8344e5c02120c13f28591de -Author: Gavin King -Date: Wed Nov 9 12:34:18 2022 +0100 - - add a note about explcict entity names to Session jdoc - -commit a12ba4c2e44c556155d87b735a3246a9ac6e29b8 -Author: Gavin King -Date: Wed Nov 9 12:23:12 2022 +0100 - - more verbiage surrounding cache concurrency - - this is an important thing, and in the past we've been - very stingy on the documentation side - -commit 90e6a8b698114e9db2f3aa874f90ea4198f6d697 -Author: Gavin King -Date: Wed Nov 9 11:44:44 2022 +0100 - - fix whitespace in userguide test - -commit cd425e3502dfde6bf5e5516aa486e6347f8fc03f -Author: Gavin King -Date: Wed Nov 9 10:05:51 2022 +0100 - - HHH-15691 add @Cache(includeLazy) and deprecate stringly-typed include member - - + add some javadoc - -commit d00b92259f51f86675892d354d54c768dda55a34 -Author: Gavin King -Date: Wed Nov 9 09:45:05 2022 +0100 - - Javadoc for @LazyGroup - -commit d8fcade8386d719137649e459aa203f42f44df2f -Author: Gavin King -Date: Wed Nov 9 01:32:17 2022 +0100 - - Javadoc for @Cache and CacheConcurrencyStrategy - -commit d4b7aeeb3c8cfe44ec794d69452ff2d409a3c353 -Author: Gavin King -Date: Tue Nov 8 22:47:37 2022 +0100 - - Javadoc for @Cascade and CascadeType - -commit 3f7133f80bb70a1f1dbe9958e0bf729fcc8d8089 -Author: Gavin King -Date: Tue Nov 8 16:45:42 2022 +0100 - - attempt to reduce allocations of LockOptions - - - Sanne says we were allocating too many of these, so add a static instance - of LockOptions for each LockMode - - just generally rationalize the code that deals with defaulting LockOptions - - change the impl of CascadingActions.LOCK because lock scope has nothing - to do with cascading, and I don't see any reason why the LockOptions should - not simply propagate if cascading is explicitly turned on - -commit 39bef7bc70afabb036c1047527cecf80b53fec2b -Author: Gavin King -Date: Tue Nov 8 15:16:29 2022 +0100 - - HHH-15682 fix potential classloading deadlock - - + add some documentation around follow-on locking - -commit 85836fbcf83fe226638583eb91d467864c4c8d1d -Author: Jan Schatteman -Date: Thu Nov 3 23:31:34 2022 +0100 - - Correction to the native sql queries section - Correction of broken link in Schema.adoc - - Signed-off-by: Jan Schatteman - -commit 23ff00142fea818072124873efe58d2de86657ce -Author: Gavin King -Date: Tue Nov 8 13:06:58 2022 +0100 - - more javadoc about @Generated - - including its relationship to @ColumnTransformer - -commit 61c128000b0334fc11ab45057275856d29dff94b -Author: Gavin King -Date: Fri Nov 4 17:48:54 2022 +0100 - - HHH-15672 introduce Generated(UPDATE) for properties only generated on update - -commit aaeed841c805074d82c4c05153cd820c6f927e31 -Author: Gavin King -Date: Tue Nov 8 08:56:43 2022 +0100 - - work on javadoc for UserType and CompositeUserType - -commit 2f1e85095c3da82e67fcce18af05e5c639c62158 -Author: Gavin King -Date: Tue Nov 8 02:08:29 2022 +0100 - - add link to EntityNameResolver in Interceptor javadoc - - also fix a typo and get rid of uses of and
- -commit 450a159a8d154e76f267178d0e665940e4414117 -Author: Gavin King -Date: Tue Nov 8 01:37:28 2022 +0100 - - improve javadoc for EntityNameResolver - -commit 9d141a27936a1ac2aab66e72d4cdd2c1fb5f440f -Author: Gavin King -Date: Mon Nov 7 13:34:58 2022 +0100 - - improve javadoc for LockModes, and deprecate LockOptions.SKIP_LOCKED - - Use LockMode.UPGRADE_SKIPLOCKED instead of setting the timeout to -2. - -commit 02ad34091c477a90271928a96d5b772debe2e4f4 -Author: Gavin King -Date: Mon Nov 7 12:09:48 2022 +0100 - - HHH-15683+HHH-15684 clean up the handling of LockOptions for queries - - This contains a change to LockOptions.overlay() which is breaking - in principle, but more natural and less fragile. - - It also deprecates SelectionQuery.setAliasSpecificLockMode() which - I believe was added in 6.0 by mistake. The method is an overload of - setLockMode() in the rest of the hierarchy. - -commit 58ba65f529003c5f83e8dddbd915f3e45ac0bffd -Author: Gavin King -Date: Mon Nov 7 10:43:01 2022 +0100 - - HHH-15682 add ImmutableLockOptions - - here we had an amazing idiom: static final instances of a mutable value class - -commit 61294250b3e1cd531ee5ebf2fb0618ebb8ec5821 -Author: Gavin King -Date: Mon Nov 7 10:40:23 2022 +0100 - - HHH-15680 deprecate LockRequest and add overloads of lock() which accept LockOptions - -commit 4b7fcb5123de610d7ac23465e19674c11daddfb4 -Author: Gavin King -Date: Mon Nov 7 02:15:18 2022 +0100 - - HHH-15681 use enum instead of boolean of lock scopes - - also a bunch of Javadoc improvement for LockOptions and friends - -commit a5fa3739e22a582438d6c3aa8f08adaba0388120 -Author: Gavin King -Date: Sun Nov 6 14:46:14 2022 +0100 - - HHH-15678,HHH-15677,HHH-15676 add two methods to SessionFactory and deprecate one - - - added getDefinedFetchProfileNames() for consistency - - added findEntityGraphByName() which already existed but was not exposed - - deprecated getFilterDefinition() since it's a layer-breaker - - improved+added some Javadoc - -commit af5ebb2a7f734d2353a4ac0e1a34d38380d46cd1 -Author: Davide D'Alto -Date: Fri Sep 30 18:05:05 2022 +0100 - - HHH-15581 Extract skipRow and bindParameters from DeferredResultSetAccess - - So that Hibernate Reactive can call them. - -commit 2f45da6e350fa60fed6febea3be672ebc471c89d -Author: Davide D'Alto -Date: Fri Sep 30 18:03:13 2022 +0100 - - HHH-15581 Extract ResultHelper#createRowReader - - This way Hibernate Reactive can call it and avoid - duplicated code. - -commit 954eb793aaa35df19395b3a22d6cdad187a135c5 -Author: Davide D'Alto -Date: Fri Sep 30 18:02:37 2022 +0100 - - HHH-15581 Make EntityAction extends ComparableEntityAction - -commit 76ba3151940d8c5a9df78a0723528213e6ef31bb -Author: Davide D'Alto -Date: Fri Sep 30 18:01:24 2022 +0100 - - HHH-15581 Add ComparableEntityAction interface - -commit 75765905cc7de7d15c78985f59c9d7939ddac1df -Author: Davide D'Alto -Date: Fri Sep 30 18:00:46 2022 +0100 - - HHH-15581 Add getters so that Hibernate Reactive can access the fields - -commit 1a9a3c1c4b77587a8765aa076ecb36a94676cc68 -Author: Davide D'Alto -Date: Fri Sep 30 17:57:32 2022 +0100 - - HHH-15581 Extend the scope of several methods - - This way Hibernate Reactive can access or override them. - -commit 3897f611365218d1ec32187dbcb65d95577ef8f6 -Author: Andrea Boriero -Date: Thu Oct 20 14:50:16 2022 +0200 - - HHH-15608 Error In Native Query where column is mapped twice - -commit 2ddd9b1e0882528ea617ac9db1e3d0fb456449c8 -Author: Andrea Boriero -Date: Wed Oct 19 17:05:48 2022 +0200 - - HHH-15608 Add test for issue - -commit 4aede4ca88290a0dbbc7b3722111899ef2da0d22 -Author: Philippe Marschall -Date: Fri Nov 4 17:38:56 2022 +0100 - - HHH-15670 Implement RequiresDialectFeature.reverse() - - - implement RequiresDialectFeature.reverse() - - remove not-feature checks to reverse = true - -commit 0b733d4ba2e98f719cfa65f8bbc4ce1fa58bb42d -Author: Christian Beikov -Date: Wed Nov 2 11:44:53 2022 +0100 - - HHH-15641 Enable inlineDirtyChecking and lazyLoading for enhancement by default and deprecate the setting - -commit c1e1b58e5766bfdfd11b609af949982150c5ef33 -Author: Gavin King -Date: Sun Nov 6 13:50:16 2022 +0100 - - link to equivalent JPA operations on PersistenceUtil in javadoc - -commit 971a022eb6a527fdc3939bf2a0de069e6ce53a4c -Author: Gavin King -Date: Sun Nov 6 13:45:49 2022 +0100 - - Javadoc surrounding fetch profiles - -commit f9164fc32f4f6e808ab5eff1177d0a2334e9b7cd -Author: Gavin King -Date: Sat Nov 5 12:40:26 2022 +0100 - - explain what a second-level cache is in Javadoc - -commit 4a2792bed84aef35795c8a20e89c9357eea2a830 -Author: Gavin King -Date: Sat Nov 5 12:21:51 2022 +0100 - - improvements to javadoc for StatelessSession, Session, and overview page - -commit c7b42097aa548afb81756be57033ce0110bfbb9a -Author: Gavin King -Date: Sat Nov 5 00:49:16 2022 +0100 - - light cleanup of AnnotationBinder - -commit 3d9bf07ac83487fa7f2f420394f86dc35729e61f -Author: Gavin King -Date: Fri Nov 4 20:49:03 2022 +0100 - - miscellaneous code cleanups - -commit 0d2aa57b5d68e6e3ca9eb074b76c9f1c1aef35c5 -Author: Gavin King -Date: Fri Nov 4 18:31:09 2022 +0100 - - HHH-15671 remove long-deleted interface RelationalModel - -commit ba3d5b4dd79db47346c6e6bfb0c14ae113e3f1c4 -Author: Gavin King -Date: Fri Nov 4 18:30:31 2022 +0100 - - deprecate impls of decrecated interface NamingStrategy - -commit 7593d580b7ec9eab6d08e2d1ea6686a8d9631692 -Author: Gavin King -Date: Fri Nov 4 18:29:55 2022 +0100 - - fix name of ResultSetMappingSecondPass - -commit a39fcf76692e7bd8c852a7a5219fe8f9dd3cf683 -Author: Gavin King -Date: Fri Nov 4 18:28:23 2022 +0100 - - remove unused direct annotation impl CustomizableColumns - -commit cea6774f013a3fcddf62e70bfd7bf70bfd22621c -Author: Gavin King -Date: Fri Nov 4 12:12:16 2022 +0100 - - HHH-15663 add @Generated(sql=....) - -commit f6e65dc91a7b38bc8c370387c82d5fec95e05704 -Author: Gavin King -Date: Fri Nov 4 11:22:11 2022 +0100 - - tests for HHH-15663 and HHH-15570 - -commit 383ffa56eb0cf12893c86daa0eefda8da189c4fe -Author: Gavin King -Date: Fri Nov 4 11:21:18 2022 +0100 - - HHH-15663 add writable member to @Generated annotation - - This is useful if you're using custom SQL, e.g. @SqlInsert. - - Also improve the Javadoc surrounding all this stuff. - -commit aef9ab24257d58c85d1ee58add0f19f66b11867a -Author: Gavin King -Date: Mon Oct 3 14:26:36 2022 +0200 - - HHH-15570 allow @SqlInsert, @SqlUpdate, @SqlDelete for secondary tables - -commit 28b253512edcaa8795b8b746c107624abdeb651b -Author: Andrea Boriero -Date: Fri Nov 4 12:47:09 2022 +0100 - - HHH-15666 When a reference entry is found in the Second Level Cache there is not need to set its values - -commit 865f28a5d55fafb539e4fb607aa8067b4f6c9eeb -Author: Andrea Boriero -Date: Fri Nov 4 12:46:05 2022 +0100 - - HHH-15666 Add test for issue - -commit ca79c91c56172eb800cea9e83a4691e8e658f834 -Author: Sanne Grinovero -Date: Thu Nov 3 23:03:57 2022 +0000 - - HHH-15662 ClasscastException caused by check for Managed rather than ManagedEntity - -commit bde7362d9c13278ae87f7c3b85ccc2bac4a04585 -Author: Sanne Grinovero -Date: Thu Nov 3 17:21:31 2022 +0000 - - HHH-15634 Extracting reusable Type constants from ByteBuddy InlineDirtyCheckingHandler - -commit 93355272fd8d19795a1b53ded2bfbf30b9a3c0a4 -Author: Sanne Grinovero -Date: Thu Nov 3 17:06:54 2022 +0000 - - HHH-15634 Extracting constant for @Transient annotation in ByteBuddy Enhancer - -commit a40fea29c0458c996db89f39538a9ad82c7090e4 -Author: Scott Marlow -Date: Tue Nov 1 10:23:46 2022 -0400 - - HHH-15656 use privileged action when invoking ScheduledExecutorService.shutdown - - Signed-off-by: Scott Marlow - -commit 8f2325ed4a312381b7ae43eb0a9a6f2b6627811b -Author: Scott Marlow -Date: Mon Oct 31 15:30:59 2022 -0400 - - HHH-15655 use privileged operation when defining classes - - Signed-off-by: Scott Marlow - -commit 11b968a2ee79c3212982607922d179fd61df30ce -Author: Christian -Date: Mon Oct 24 09:00:44 2022 +0000 - - HHH-15571 Use Gradle BND Plugin for generating OSGI Bundle entries in Jar Manifest - -commit 0b34025f1a2d0dbe62e22eb1fb399f8fa9804256 -Author: Gavin King -Date: Tue Nov 1 23:53:11 2022 +0100 - - HHH-15652 add missing Session.remove(entityName, object) method - - Since we deprecated delete() there's no blessed way to do this. - -commit bb0edab332f90c1c5937e3efd0a88d47eb5ec169 -Author: Gavin King -Date: Wed Nov 2 13:56:31 2022 +0100 - - rewrite EntityBinder - -commit 3cd90d76158880315dcc9e49488e277f5f50aad3 -Author: Gavin King -Date: Wed Nov 2 11:13:55 2022 +0100 - - clean up CollectionBinder and friends - -commit 38b4e8e01b2d6482ca5917cc008143a07b46e161 -Author: Gavin King -Date: Mon Oct 31 18:49:48 2022 +0100 - - very minor cleanups, and more Javadoc in BinderHelper - -commit e2f42cd0bc1b8e1940fdb98df104d035536ee1e3 -Author: Gavin King -Date: Mon Oct 31 15:56:02 2022 +0100 - - introduce ForeignKeyType and AnnotationJoinColumns.getReferencedColumnsType() - -commit 849246e3cd75e10733c475e18b684ee61daba6dc -Author: Gavin King -Date: Mon Oct 31 15:41:17 2022 +0100 - - finally move propertyName from AnnotatedColumn - -commit e4c1d493e378213a50fc085c4783c74578431b64 -Author: Gavin King -Date: Mon Oct 31 11:52:46 2022 +0100 - - finally move context + joins from AnnotatedColumn - -commit 18003b92dceb06162799485d19786716d11b4178 -Author: Gavin King -Date: Mon Oct 31 02:10:37 2022 +0100 - - finally move propertyHolder from AnnotatedColumn - -commit 585522fde125c6afb47b6091c1f086ab086d8070 -Author: Gavin King -Date: Mon Oct 31 01:36:24 2022 +0100 - - extract some little helper methods - -commit ec336f3a23d0c93c0cecff0d0b19670b525983ff -Author: Gavin King -Date: Sun Oct 30 16:49:46 2022 +0100 - - introduce AnnotatedColumns - -commit 653bf987bddf971ca6e198668566dbb59a506a8b -Author: Gavin King -Date: Sun Oct 30 10:45:12 2022 +0100 - - introduce AnnotatedJoinColumns and remove deprecated stuff - -commit ce12d4a586d68dcc48b852df602bc1ff31942253 -Author: Gavin King -Date: Wed Nov 2 18:16:51 2022 +0100 - - improve Javadoc to types in mapping package - -commit cbaf856e18069442fc2c52f66a81eb2dc8ee5136 -Author: Gavin King -Date: Wed Nov 2 17:17:30 2022 +0100 - - squash some generic type-related warnings - -commit 9d62179d40064aa4e500d32c2080e38ada523fd3 -Author: Jan Schatteman -Date: Mon Oct 31 23:11:53 2022 +0100 - - HHH-15175 - Remove support for database versions that are unsupported by vendors 6.2 edition - -commit a471bbea8cb264dba9efd924814cf2356eda7c0b -Author: Christian Beikov -Date: Mon Oct 31 17:36:47 2022 +0100 - - HHH-15648 Fix fetching association and using implicit path in condition - -commit 60e81a7a4d9d099313e274c5fe47705a29541ba9 -Author: Sanne Grinovero -Date: Tue Nov 1 18:43:50 2022 +0000 - - HHH-15651 Refactoring of common iterations in EntityEntryContext - -commit cdbf92fd71b060086acf705def1fee750e3fd863 -Author: Sanne Grinovero -Date: Tue Nov 1 16:51:21 2022 +0000 - - HHH-15651 StatefulPersistenceContext#clear shouldn't need defensive copies for iteration - -commit 001de2b203918dba8ca9e66b04c65fb634d09d0a -Author: Sanne Grinovero -Date: Tue Nov 1 16:42:21 2022 +0000 - - HHH-15651 Logging guard improvements in StatefulPersistenceContext - -commit bedbd402e6457620dbe62443aedfcdb431d55b83 -Author: Sanne Grinovero -Date: Fri Oct 28 21:21:11 2022 +0100 - - HHH-15649 Additional performance fixes relating to Klass's _secondary_super_cache interaction with entity enhancement - -commit 77d1bdac4c548058e334e5d426942b95d8d0054a -Author: Gavin King -Date: Tue Nov 1 11:26:09 2022 +0100 - - Javadoc improvements for naming strategies and Any mappings - -commit e00ebd91f9b6e6416519eb2a35b99f8937e0f5fd -Author: Christian Beikov -Date: Mon Oct 31 11:22:17 2022 +0100 - - Replace deprecated set-output in GH actions workflow - -commit 90b1cfe2c366192a822a088159afc942e167bdba -Author: Andrea Boriero -Date: Thu Oct 27 14:09:05 2022 +0200 - - HHH-15634 Lazy basic property does not get updated on change: inline dirty checking, lazy basic properties are not upated when set to null - -commit 6d99eb10680c0a4da6d6c38d1148efc1bfb0a99f -Author: Andrea Boriero -Date: Thu Oct 27 11:26:50 2022 +0200 - - HHH-15634 Lazy basic property does not get updated on change - -commit ee372fad58a4b466d95f339eb74dbaa80573da45 -Author: Andrea Boriero -Date: Thu Oct 27 10:27:25 2022 +0200 - - HHH-15634 Run the tests also without dirty checking enabled - -commit d5aa85e90c0e8b468287c7ca2a8864fc0b5de2f1 -Author: Yoann Rodière -Date: Wed Oct 26 13:48:31 2022 +0200 - - HHH-15634 Test updating one or all of multiple lazy basic properties - -commit b82d90684171163df6471ef659821a5befa62b25 -Author: Yoann Rodière -Date: Wed Oct 26 13:23:32 2022 +0200 - - HHH-15634 Test updating a single lazy property with no lazy group - -commit 66daac53a2a0459f6b076ec9cb5c60d773da2d68 -Author: Yoann Rodière -Date: Wed Oct 26 13:07:06 2022 +0200 - - HHH-15634 Fix naming of LazyBasicFieldAccessTest/LazyBasicPropertyAccessTest - - For some reason they were reversed. - -commit 9bd269aa5df7536db02280fdf771644f76358bdf -Author: Christian Beikov -Date: Mon Oct 31 11:17:43 2022 +0100 - - Fix test for HANA - -commit ecdd7e20cb7fcc4ee415c50d3f30772f92bf4616 -Author: Gavin King -Date: Sat Oct 29 22:20:14 2022 +0200 - - remove more usages of some deprecated methods - -commit bb0541d754b0e752a3cb91c8ab5808a8eb006f0e -Author: Gavin King -Date: Sat Oct 29 21:58:21 2022 +0200 - - remove more usages of some deprecated methods - -commit 6e8d6094853e72a5aa09cb27c9a66da0a8a2791c -Author: Gavin King -Date: Sat Oct 29 20:18:02 2022 +0200 - - squash warnings + remove usages of some deprecated methods - -commit ce860e31ffb952bdd73e1824c6b79ce40bec4326 -Author: Gavin King -Date: Sat Oct 29 13:32:28 2022 +0200 - - put some annotations back in a very important test - -commit f676a1e2af04c2105a1e6b5de0ca31e36e066b61 -Author: Gavin King -Date: Sat Oct 29 13:07:47 2022 +0200 - - deprecate some operations of AnnotatedJoinColumn - - + some light refactoring - -commit 257bfdb3914b25f66ce8a66cc8263e899b5846f9 -Author: Gavin King -Date: Sat Oct 29 10:09:06 2022 +0200 - - slightly improve some Javadoc on metamodel-related stuff - -commit f253d8f21698f0b373c4166626f51c8852708c73 -Author: Gavin King -Date: Sat Oct 29 00:34:01 2022 +0200 - - remove useless @JoinColumns annotation for mosts tests and examples - -commit 66776f6b7819ccc7b9141021e52cf796ca20c35c -Author: Gavin King -Date: Sat Oct 29 00:29:18 2022 +0200 - - simplify a method - -commit 749e5e6b383af15e39eba67f8e001a445d5535e1 -Author: Gavin King -Date: Sat Oct 29 00:28:33 2022 +0200 - - HHH-15627 fix uninformative error message - -commit ed65962fb33f82d4315e974fa913b186b60ab283 -Author: Gavin King -Date: Fri Oct 28 22:18:55 2022 +0200 - - more binding work related to OneToOne and ManyToOne to ToOneBinder where it belongs - - and stuff in common goes to BinderHelper - -commit 8b3030aa8b1f6cdc330443f9007e3b4ac3d61a26 -Author: Gavin King -Date: Fri Oct 28 20:59:57 2022 +0200 - - avoid passing property-level information via the first AnnotatedJoinColumn - -commit d9392d6601722ae2e127105a7504d037a0a945eb -Author: Gavin King -Date: Fri Oct 28 19:25:03 2022 +0200 - - fix ugly toString()s - -commit 070f7e5d3aa841f420f90808ec2df47705e200e6 -Author: Gavin King -Date: Fri Oct 28 17:46:32 2022 +0200 - - clean up collection SecondPass stuff - -commit 79642022a64e7ef21e74231c2febf00c94811d94 -Author: Gavin King -Date: Fri Oct 28 12:23:11 2022 +0200 - - fix warnings in a test - -commit ab8f79e258dfbfb1ed2cb6c51fb69abdf8d846cc -Author: Gavin King -Date: Fri Oct 28 12:22:53 2022 +0200 - - HHH-14014 test demonstrating the issue is solved - -commit 86906013c2aa5fafccf5221c09e0333a0d08643b -Author: Gavin King -Date: Fri Oct 28 12:22:02 2022 +0200 - - further cleanups to the Binder code - -commit f4687ac048f05b621166be0bd08047f43434ec37 -Author: Gavin King -Date: Fri Oct 28 08:29:58 2022 +0200 - - prefer importing JPA annotations - -commit 9cd834758afb4d594524f54851be9f1961c6d273 -Author: Gavin King -Date: Fri Oct 28 08:01:22 2022 +0200 - - minor javadoc improvements - -commit 2f4712909a11b47bf90182dae1d75d60e14eb0c5 -Author: Christian Beikov -Date: Fri Oct 28 12:13:45 2022 +0200 - - HHH-15636 Indexed Fetchable access via IndexedConsumer and by position and get rid of some capturing lambdas - -commit 53076f3029a31634d840ba9a6dfbca3b68aa7258 -Author: Sanne Grinovero -Date: Thu Oct 13 11:03:32 2022 +0100 - - HHH-15616 Mitigate performance impact of entity enhancement on Klass's _secondary_super_cache - -commit 16c39c09256e36a2d5f1415c7ff1e8f2d5e65c0b -Author: Gavin King -Date: Fri Oct 28 01:15:50 2022 +0200 - - more sensible toString() - -commit 5ea136781c7ba9b84b1d69464e5616cf3c53dabb -Author: Gavin King -Date: Thu Oct 27 23:29:09 2022 +0200 - - remove some uses of java.util.Properties - -commit 239fc9a8356d8bc5777fae42479bb6d5d115d392 -Author: Gavin King -Date: Thu Oct 27 16:16:04 2022 +0200 - - clean up foreign key binding code - -commit 264d3c711c7f187165fce70f78ebf6b755cd6961 -Author: Gavin King -Date: Sun Oct 23 20:12:14 2022 +0200 - - more consistent formatting for error messages - -commit 412319819e2f2d302a55760eae68cab33a372373 -Author: Gavin King -Date: Thu Oct 27 01:46:28 2022 +0200 - - add some wildcards - -commit 25cb085f48382897e043e8f496b1e1760869b0c5 -Author: Gavin King -Date: Thu Oct 27 19:43:47 2022 +0200 - - HHH-15622, HHH-13054, HHH-14940, HHH-15355 organize the tests - -commit b6792bdb19ddda71279bbc4e6563b8c1b4d9dc02 -Author: Gavin King -Date: Thu Oct 27 19:42:13 2022 +0200 - - HHH-13054 handle referencedColumnName to entities with multiple @Id properties - -commit 1f4c8f7b19ec105702fabdee82dcd577bd78c275 -Author: Gavin King -Date: Thu Oct 27 18:38:45 2022 +0200 - - HHH-14940 loosen a check - -commit 335e4807359a5eee2c3d76f7d222d2e25e3cdc32 -Author: Gavin King -Date: Thu Oct 27 18:09:30 2022 +0200 - - HHH-15355 virtual synthetic properties for multi-column inverse one-to-ones - -commit fc0b19aceba0f07d4b946a63eb73c984c4b1340d -Author: Andrea Boriero -Date: Fri Oct 7 09:55:35 2022 +0200 - - HHH-15585 Add support for DB2 aliases for schema validation - -commit b1f92863cb5447d3f2f726a309c3c55a6496830e -Author: Andrea Boriero -Date: Fri Oct 7 09:54:44 2022 +0200 - - HHH-15585 Add test for issue - -commit 42890e3a8df9dc70ab0303f190502b3ccfd01d77 -Author: Andrea Boriero -Date: Mon Oct 24 17:45:19 2022 +0200 - - HHH-15607 @NamedEntityGraph is not working when try to load Basic attribute with OneToMany relation - -commit a7b87fe4ebe62520d48f048a95e21e341b02f183 -Author: Andrea Boriero -Date: Thu Oct 20 17:00:40 2022 +0200 - - HHH-15607 Add test for issue - -commit dd1bd438464594aeac3ace2e1978ad058763d95b -Author: Andrea Boriero -Date: Wed Oct 26 15:05:08 2022 +0200 - - HHH-15622 Query bug in @NamedEntityGraph when doing Eager loading of @OneToOne mappings in Single Table inheritance - -commit a4f2c936dcea7f86288e4bda0c804ce21187f1b3 -Author: Andrea Boriero -Date: Wed Oct 26 11:42:32 2022 +0200 - - HHH-15622 Add test for issue - -commit 3fd84f14ec2e0d5dbbb58d020fa2d5e69b8aabdc -Author: Gavin King -Date: Wed Oct 26 22:23:08 2022 +0200 - - HHH-12930 fix limitations mapping associations to non-primary unique keys - - This now handles cases where the unique key includes @Embeddable properties - of the target entity. It also produces *much* better error messages when - something is wrong. - -commit a78a609ecfde9908a4ea38c98d0eea0522916d28 -Author: Sanne Grinovero -Date: Thu Oct 27 14:16:04 2022 +0100 - - HHH-15639 Upgrade to ByteBuddy 1.12.18 - -commit 20183269add2229e45dd4ab7541524e6307952dc -Author: Andrea Boriero -Date: Thu Oct 6 18:00:40 2022 +0200 - - HHH-14544 Document Ehcache Performance degradation when the default cache is used - -commit 7b9c14d8a15810263a4961f5e2a11aa591fe0d1e -Author: Scott Marlow -Date: Mon Sep 19 11:30:14 2022 -0400 - - add DEBUG flag save of loaded entity as proxy - - Signed-off-by: Scott Marlow - -commit b3b62ad685e277981db17bf0e5337b33ce565cab -Author: Christian Beikov -Date: Wed Oct 26 14:07:36 2022 +0200 - - HHH-15635 Avoid type pollution in EnhancedSetterImpl - -commit ec72bab0a9d416d3e3c71ff90b8d2487f35966b4 -Author: Christian Beikov -Date: Wed Oct 26 14:02:43 2022 +0200 - - HHH-15633 Intern entity name to improve EntityKey#equals - -commit 0561839140cc8b45756f8c412baf0d10440c69e4 -Author: Christian Beikov -Date: Wed Oct 26 13:59:37 2022 +0200 - - HHH-15632 Avoid unnecessary PersistenceContext#getEntity call in AbstractEntityInitializer - -commit a6441e4da2573f69558c1b197d3c4305d96fc7f5 -Author: Sanne Grinovero -Date: Wed Oct 26 23:37:46 2022 +0100 - - HHH-15637 Upgrade to Byteman 4.0.20 - -commit e59a7366799c07bccde62b263c10889cd35e127f -Author: Gavin King -Date: Tue Oct 25 11:14:05 2022 +0200 - - improve Javadoc of @ColumnTransformer - -commit 1e6d6b820728c9df80618f02ba1a1834b7141cb7 -Author: Christian Beikov -Date: Fri Oct 21 16:06:45 2022 +0200 - - Switch to HANA cloud instances - -commit 78c8a04486465940bcc7129943bb9f7db8bf4c43 -Author: Gavin King -Date: Fri Oct 21 14:36:02 2022 +0200 - - add example of subquery join with 'on' to docs - -commit 058984bbf1e0064bfadf76227ddd44c317022710 -Author: Christian Beikov -Date: Fri Oct 21 16:22:50 2022 +0200 - - Don't lock resources if we run on a single node - -commit 0fdac313dc58bb093e61b6a67897b2c99c8252f7 -Author: Christian Beikov -Date: Fri Oct 21 15:55:28 2022 +0200 - - Fix cockroach build node config - -commit 886582bf46ccd2fc4855e9ac0b7208f23c91b39d -Author: Christian Beikov -Date: Fri Oct 21 10:28:17 2022 +0200 - - HHH-15528 Build related fixes for Cockroach, and tryout GH actions - -commit 771f338961f93346a6d02214ae35bc1d3da9ab67 -Author: Christian Beikov -Date: Thu Oct 20 14:55:48 2022 +0200 - - HHH-15619, HHH-15620 Expose HBM query configs through respective hints and don't mark transformed HBM model as metadata complete - -commit ee7c2ee0416561e17364cb5ea4b965062cb4d22d -Author: Christian Beikov -Date: Wed Oct 19 19:25:16 2022 +0200 - - HHH-15615 Add EDB PostgreSQL Advanced to test matrix and fix issues - -commit 940f15b63e24f335ac4e99b76858db687454883a -Author: Christian Beikov -Date: Fri Sep 23 17:43:11 2022 +0200 - - HHH-15528 Add Cockroach to Jenkins nightly test matrix and fix issues - -commit f7acf4d93c99d31b5d73d1460ab5f890e107c79a -Author: Gavin King -Date: Wed Oct 19 21:45:41 2022 +0200 - - very minor cleanups in AbstractEntityPersister - -commit 049d1512481906698b48e262d0e3d24793627320 -Author: Christian Beikov -Date: Wed Oct 19 18:41:57 2022 +0200 - - HHH-15605 Fix parameter binding of converted TemporalJavaType - -commit 149da829cdf8ab74f4b4459e2351858278158cb0 -Author: Christian Beikov -Date: Tue Oct 18 18:54:07 2022 +0200 - - HHH-15610 Remove internal CacheKeyValueDescriptor uses from Type and JavaType - -commit 08d1d9704b07fe3e857e64609dddeabc739cb706 -Author: Sanne Grinovero -Date: Tue Oct 18 16:43:24 2022 +0100 - - HHH-15566 Improve efficiency of CallbackRegistryImpl - -commit 24f75fb8e80f6fa63e485c5488ee8cb44937de73 -Author: Gavin King -Date: Wed Oct 19 14:09:11 2022 +0200 - - HHH-15613 remove lateral roots from criteria API - -commit 3357d1e5a04752bcccca8e1032789e34c88a7726 -Author: Gavin King -Date: Wed Oct 19 13:21:19 2022 +0200 - - squash some warnings in SemanticQueryBuilder - -commit a42c52615e2054ed8d0ed19371b9ba41382e7034 -Author: Gavin King -Date: Wed Oct 19 13:20:45 2022 +0200 - - HHH-15613 remove 'lateral' from fromRoot rule - - it means the same thing as 'join lateral', and is currently ignored by HQL - -commit 8f23e16a35332e750a19326a6e5e830bb91b7709 -Author: Gavin King -Date: Tue Oct 18 21:40:36 2022 +0200 - - explain wtf 'join lateral' means - - and that it's the same thing as 'cross apply' - -commit d3dafe255cdd31869b0b522fed96e9ceca27823e -Author: Steve Ebersole -Date: Tue Oct 18 20:14:07 2022 -0500 - - HHH-15597 - Gradle plugin should use full compilation classpath for enhancement - -commit 5cf5f5adbda7a06559459e234314f6a907c90ef7 -Author: Steve Ebersole -Date: Tue Oct 18 09:18:19 2022 -0500 - - HHH-15558 - Hibernate's Gradle plugin does not work with three-part source set names - -commit 0baefce734bed664a20f994ad35b0e0017aca770 -Author: Jan Schatteman -Date: Tue Oct 11 14:58:33 2022 +0200 - - HHH-15561 - Fixed and added test for issue - - Signed-off-by: Jan Schatteman - -commit f13230803dec7f9c9773489bd26ebaa3a2931093 -Author: Christian Beikov -Date: Wed Oct 12 14:31:02 2022 +0200 - - HHH-15590 Test that JdbcLiteralFormatter works for all supported java types - -commit b56d25c2b2cc14f8ae2440cf9d77ee203a5ed3b8 -Author: Sanne Grinovero -Date: Tue Oct 11 20:43:46 2022 +0100 - - HHH-15598 Remove unused functionality from ByteCodeHelper - -commit 6fbb9633aa7d27c6d390df4698a6060e65de1759 -Author: Sanne Grinovero -Date: Tue Oct 11 20:42:49 2022 +0100 - - HHH-15598 Remove InstrumentedClassLoader, demote ByteCodeHelper to test helper - -commit 6b6cd51edf7591b7ca9da369755f4981232033db -Author: Christian Beikov -Date: Tue Oct 11 15:32:27 2022 +0200 - - HHH-15592 Fix NPE for uses of JdbcExceptionHelper.extractSqlState - -commit 4b24bcf7af50d6150c55f541d83951954c0ac546 -Author: Yoann Rodière -Date: Wed Oct 12 08:29:22 2022 +0200 - - Log command being executed in ci/build.sh - -commit 562466aaaeaf27599beab2ac20efdc5a9354ab61 -Author: Yoann Rodière -Date: Tue Oct 11 14:50:18 2022 +0200 - - Only run checkstyle in the H2 build - - ... so that CI jobs give a more complete report and developers - can fix code style and non-H2 DB tests in parallel. - -commit 6eba1efb83c104261c3a1853599aeb2a474d975c -Author: Yoann Rodière -Date: Tue Oct 11 14:49:17 2022 +0200 - - Clean up references to default JDK in Jenkinsfile - -commit 89ae1dd0e4bb88cccadd28cd5c4c77c042ff250b -Author: Yoann Rodière -Date: Tue Oct 11 14:35:57 2022 +0200 - - Use ci/build.sh in Jenkinsfile, too - -commit bf8040638ce756dafdcce011374dc3828c05cfe1 -Author: Sanne Grinovero -Date: Tue Oct 11 22:16:24 2022 +0100 - - HHH-15595 Delete ClassLoadingStrategyHelper - -commit fe4091bd4278ccc266e4dd4f5cbd03f2ecedb509 -Author: Sanne Grinovero -Date: Tue Oct 11 22:08:23 2022 +0100 - - HHH-15595 Fallback JVM version for ByteBuddy can be bumped to JAVA_V11 - -commit 622273aeb243ad7a6ae4d0267e75a059f95fb4a0 -Author: Sanne Grinovero -Date: Tue Oct 11 21:59:26 2022 +0100 - - HHH-15595 ClassLoadingStrategyHelper no longer needs to use reflection to be compatible with Java 8 - -commit 7a1d27e28ae5aededf5fe5e3f413968545d0a80b -Author: Christian Beikov -Date: Tue Oct 11 14:01:37 2022 +0200 - - HHH-15594 Remove oracle_ee test matrix entry - -commit 4453af984b8a8e863a3c515c2dcc111ed6f34d93 -Author: Gavin King -Date: Sun Oct 9 11:45:04 2022 +0200 - - minor improvement to table in doc - -commit f1dd6385192bb0e1bd4e0c99bbb53e8a15be05af -Author: Gavin King -Date: Sat Oct 8 20:00:12 2022 +0200 - - clean up formatting of javadoc in Dialect - -commit f324204514a5bbeaf106ef986a1625833aaa2be4 -Author: Gavin King -Date: Sat Oct 8 19:03:30 2022 +0200 - - HHH-15589 document var_xxx() and stddev_xxx() - -commit f5a5990d033f98372d960668183f37e33cb2ac4d -Author: Gavin King -Date: Sat Oct 8 19:03:30 2022 +0200 - - try to make var_xxx() and sdtev_xxx() more portable - -commit 477f1e7af6f830685041ee852a2f19c7b4186d68 -Author: Gavin King -Date: Sat Oct 8 14:10:43 2022 +0200 - - HHH-15588 promote sinh(), cosh(), and tanh() - -commit 6ea63596380b3704d6baefce5f1ea93ccc66314e -Author: Gavin King -Date: Sat Oct 8 14:09:10 2022 +0200 - - add a couple of crosslinks to HQL chapter of doc - -commit 20b905507f0241fa12b198525730308c841225a5 -Author: Gavin King -Date: Fri Oct 7 15:28:55 2022 +0200 - - HHH-15584 use count_big() on Sybase and SQL Server - -commit 635c23bc4abe17d02b0c8ac00e7f5a0aa5f8173e -Author: Gavin King -Date: Fri Oct 7 13:04:08 2022 +0200 - - get rid of ugly message - - + refresh code in ExceptionConverterImpl - -commit 2a9f6dafee38124458e272352d7f921d3bfb6cb1 -Author: Gavin King -Date: Fri Oct 7 08:53:00 2022 +0200 - - Maria has a median() function - -commit bf7a51cb84e2e0dabde08c890dc286bde077b4c4 -Author: Andrea Boriero -Date: Thu Oct 6 11:50:55 2022 +0200 - - HHH-15582 SpannerDialect, schema update tries to create existing tables - -commit 0198e5b3c8b5d06d64b7354227c98b5e742d6ec6 -Author: Andrea Boriero -Date: Thu Oct 6 09:55:34 2022 +0200 - - HHH-15573 SpannerDialect, schema creation generates SQL containing 'null' instead of the column type - -commit 1fd5f29dcf341d5496dd21dd92baaadc6a1fb271 -Author: Andrea Boriero -Date: Thu Oct 6 09:53:31 2022 +0200 - - HHH-15573 Add test for issue - -commit 4451611311f36712304c4f2e2a3a54a6752b56d9 -Author: Gavin King -Date: Thu Oct 6 20:13:21 2022 +0200 - - HHH-15518 bless degrees() and radians() as standard - - - add a test - - emulate them on HANA and Oracle - -commit 1c3819a77b8b3dbdcb687cce58bb6a0f9855f630 -Author: Gavin King -Date: Thu Oct 6 20:27:40 2022 +0200 - - remove test duplication - -commit 59d99025deaa47ce15ba36d4854b91ad79a4b14e -Author: Gavin King -Date: Thu Oct 6 22:41:19 2022 +0200 - - HANA has a median() function - -commit 4a1fe85f0d8c477cfd1b536b431e82dad2a9f167 -Author: Gavin King -Date: Thu Oct 6 17:52:44 2022 +0200 - - add test for median() - -commit 6de92c4f900d0361a81e359125b7d5dce5fb7d22 -Author: Gavin King -Date: Wed Oct 5 18:49:14 2022 +0200 - - document window functions in HQL - - thanks to @beikov who collected + wrote up most of the information here - -commit be4934d17d3ad46fee29c08b03d3792ebcbdb8f3 -Author: Gavin King -Date: Thu Oct 6 14:03:37 2022 +0200 - - reorg the documentation of HQL functions - -commit fa89e3e5fab433fe262832c3fd94be9b9027f731 -Author: Christian Beikov -Date: Wed Oct 5 14:45:18 2022 +0200 - - HHH-15531 Use dense_rank instead of row_number when query uses distinct - -commit 8193fe679257446b369f1169760a40ff579b7587 -Author: Christian Beikov -Date: Wed Oct 5 15:33:05 2022 +0200 - - HHH-15580 Emulate lt/gt/le/ge tuple-comparisons when unsupported - -commit f70d09175a0d9ad1b4f761e3a26c4ca61390f55e -Author: Gavin King -Date: Wed Oct 5 16:21:56 2022 +0200 - - update the HQL chapter to acknowledge changes in JPA 3.1 - -commit a7bb19a2eaac2bdf72107c486e5aae917cfe0f1f -Author: Gavin King -Date: Wed Oct 5 12:51:40 2022 +0200 - - clarify semantics of query with no 'select' in documentation - -commit 5f2d5e3938380119506f31e3373271500ee95c8b -Author: Christian Beikov -Date: Wed Oct 5 10:40:51 2022 +0200 - - HHH-15578 Add min/max emulation for uuid on PostgreSQL - -commit b392f663c3208285ecd41b5c625d92bc3280a60d -Author: Christian Beikov -Date: Tue Sep 13 20:25:15 2022 +0200 - - HHH-15495 Consider UUID to be comparable - -commit 8b9b02b8b83984addcceee5b1a3623b55e8c2a02 -Author: The-Arne <113175601+The-Arne@users.noreply.github.com> -Date: Mon Sep 12 17:31:18 2022 +0200 - - HHH-15495 - add test case - -commit c23a982318829d8341bd7e2829510185a54c0830 -Author: Christian Beikov -Date: Wed Oct 5 11:24:20 2022 +0200 - - HHH-15579 Replace inaccessible docker image for SAP Hana with new version - -commit 12df6317ecfbbf5653553dcd12e77bad53f03a61 -Author: Christian Beikov -Date: Tue Oct 4 13:55:11 2022 +0200 - - HHH-15548 Fix schema validation issues on PostgreSQL with Instant type - -commit 7e1d4cad83b348f32a8a5b5ff75f3acd654de514 -Author: Christian Beikov -Date: Tue Oct 4 12:34:01 2022 +0200 - - HHH-15543 Don't throw CNFE with OracleDialect when JDBC driver classes are invisible - -commit a9c55587f22b0b0bd019e3ae16f181af20514046 -Author: Andrea Boriero -Date: Mon Sep 12 17:05:57 2022 +0200 - - HHH-15497 Count query when counting polymorphic subclasses by type fails when run twice - -commit 7af0642f5b79df90f2bedc60b4ad769ecb9b9730 -Author: Andrea Boriero -Date: Sun Sep 11 09:27:25 2022 +0200 - - HHH-15497 Add test for issue - -commit 1237977c5c653316aaf06cc17ddca003323ea577 -Author: Andrea Boriero -Date: Tue Sep 13 16:08:02 2022 +0200 - - HHH-15498 Delete Query fails to determine the ValueMapping for SqmParameter - -commit c2fab87fed1f2785b26d00eefa9610e984155f4d -Author: Andrea Boriero -Date: Tue Sep 13 16:05:19 2022 +0200 - - HHH-15498 Add test for issue - -commit 90b308511d1a09ef188b9225c17fb9f320ad061f -Author: Andrea Boriero -Date: Tue Oct 4 11:03:49 2022 +0200 - - HHH-15576 Emulation of tuple comparison produces a wrong SQL query for NOT EQUAL operator - -commit b2e4348d625cf00e149ec62f8ea8e3abf38a228b -Author: Andrea Boriero -Date: Mon Oct 3 17:25:04 2022 +0200 - - HHH-15572 Emulation of tuple comparison produces a wrong SQL query, missing a closing parenthesis - -commit fe1ff7a82900d9b8a1f9767b73c9cde9336a576d -Author: Andrea Boriero -Date: Mon Oct 3 17:21:46 2022 +0200 - - HHH-15554 Merge of an Entity with an immutable composite user type throws NPE - -commit 89bd029bce80ebbfad250786def8f58c72c80b8d -Author: Andrea Boriero -Date: Mon Oct 3 17:16:43 2022 +0200 - - HHH-15554 Add test for issue - -commit 35d7d571f2fe717c852f1d78fe1999b3c9be7c79 -Author: Christian Beikov -Date: Tue Oct 4 09:40:16 2022 +0200 - - Fix migration guide link - -commit 0c3f3bb2c73d1cfa040e1f71c0623e745b73b3a2 -Author: Jan Schatteman -Date: Fri Sep 30 22:47:09 2022 +0200 - - HHH-15257 added test (ported over from 5.6) - - Signed-off-by: Jan Schatteman - -commit 87211e7cd48cc8a54d6dcad037e5dea09c2daa3f -Author: Gavin King -Date: Sat Oct 1 15:28:41 2022 +0200 - - HHH-15564 add @SecondaryRow annotation - - and HHH-15565 completely remove the notion of subsequent select fetching for - secondary tables ... and deprecate the member of @Table which turns this on, - since the actual underlying functionality is missing in H6! - - + some misc code cleanup in AbstractEntityPersister - -commit 1ff2b4e176ed929e696688bf0f36a602f898203b -Author: Gavin King -Date: Sat Oct 1 13:05:55 2022 +0200 - - deprecate @SelectBeforeUpdate - - since it's only useful with other already-deprecated functionality - -commit 6e94b35ee1fedbb338c3f6a1761abcbb7f66ec22 -Author: Gavin King -Date: Mon Sep 26 14:11:12 2022 +0200 - - HHH-15549 remove mapping of NUMBER(1,0) to BOOLEAN on Oracle - - This just seems wrong to me. We have no way to say that a NUMBER(1,0) - column isn't a single-digit number. - - Simplify the other mappings for NUMBER(n,0). - -commit 126d8473c7d55631ce6f64f9d554438800448eb4 -Author: Sanne Grinovero -Date: Sat Oct 1 18:30:19 2022 +0100 - - HHH-15567 Method name typo: registerInitilaizer in JdbcValuesSourceProcessingStateStandardImpl - -commit ba9bd35c9d0e37c0ea03c2a125c8e3848ae9f224 -Author: Sanne Grinovero -Date: Fri Sep 30 21:37:36 2022 +0100 - - HHH-15563 BeanValidation integration should prioritize jakarta.persistence.validation over javax.persistence.validation - -commit 04302caba036e41c37141624287ba62da4dfc7b2 -Author: Gavin King -Date: Sat Oct 1 02:33:06 2022 +0200 - - fix SqlTypes.LONG32VARXXXX types and add a test - - also fix a bug in initialization of JdbcTypeFamilyInformation - - fix incorrect mapping for "long" types on Derby - - use default for nicer-looking switch statements - - improve some Javadoc - -commit eef7c87a903950ecd7678ba1c0cd686a6e21a86c -Author: Sanne Grinovero -Date: Fri Sep 30 18:16:49 2022 +0100 - - HHH-15562 Upgrade to Jandex 3.0.1 - -commit f9afd3dcb75cbc4df1e9106c7b13a7d45e1e40ca -Author: Christian Beikov -Date: Fri Sep 30 20:27:44 2022 +0200 - - HHH-13439 Encode Hibernate ORM version into build time enhanced entities - -commit ee08db2a1ed9c1263952688bb7c95d6bdc7e999a -Author: Gavin King -Date: Fri Sep 30 14:19:08 2022 +0200 - - move methods onto EntityBinder and CollectionBinder - -commit 4f4fd736dc65b3b31b2e3ad87eb496b6f2c08521 -Author: Gavin King -Date: Fri Sep 30 12:40:04 2022 +0200 - - define default values for @LazyCollection + @LazyToOne - - this is low-hanging fruit - -commit a9c7c6d677d9709770b2f81193e8ce23d940b759 -Author: Gavin King -Date: Fri Sep 30 08:09:00 2022 +0200 - - cleanups to binder code - - - add two type checks + exceptions - - use static imports - - refactor out lots of little methods + remove some dupe code - - improve some Javadoc - -commit f27b3a956db4f9856bf7a23397f44ecc56bcb283 -Author: Andrea Boriero -Date: Fri Sep 30 11:58:51 2022 +0200 - - HHH-15552 Embeddable type cannot be cast to org.hibernate.usertype.CompositeUserType if referred to from a mapped superclass with generic parameter - -commit 1aafc3c34a602b3b4fb1b50138ffe542d3943953 -Author: Andrea Boriero -Date: Fri Sep 30 11:58:05 2022 +0200 - - HHH-15552 Add test for issue - -commit cfc9b9c67980fb337fc88b42d4b591345889cdf3 -Author: Andrea Boriero -Date: Mon Sep 26 16:33:12 2022 +0200 - - HHH-15542 Cannot invoke 'org.hibernate.query.BindableType.getBindableJavaType()' because 'parameterType' is null - -commit da1b1d6b75afb4a12ad9a35decc216e84affc1d3 -Author: Andrea Boriero -Date: Mon Sep 26 16:32:20 2022 +0200 - - HHH-15542 Add test for issue - -commit 8f9b998894f8d98cb2b2a8e5a4bb96f00a45ec56 -Author: Gavin King -Date: Thu Sep 29 23:20:15 2022 +0200 - - minor code cleanups to Actions - -commit a11ebdeefcfd81c432d08e512a8237a844ff726d -Author: Gavin King -Date: Thu Sep 29 16:15:02 2022 +0200 - - minor changes to javadoc - - add javadoc to Dialect.resolveSqlTypeCode() - -commit fafd894f3b6dc8f1fa17abe7ca0f6c1deadcb839 -Author: Jan Schatteman -Date: Wed Sep 28 00:25:43 2022 +0200 - - HHH-1134 - tests to verify this use case - - Signed-off-by: Jan Schatteman - -commit 8de46167f61a9e9473b96bbd66af1668b9a80559 -Author: Gavin King -Date: Tue Sep 27 14:40:40 2022 +0200 - - clean up code in listener implementations - - - try to use smaller methods with fewer params - - git rid of early exits - - tiny fix for unloaded proxy deletion - -commit fcd7a45a7562f2823aa23d1bfea27f2e132c543d -Author: Gavin King -Date: Mon Sep 26 20:46:56 2022 +0200 - - some cleanups after HHH-15509 - -commit 49a2b20d76f7795b4b27e1508effb2783cd0e94d -Author: Gavin King -Date: Mon Sep 26 16:11:28 2022 +0200 - - HHH-15509 enable unloaded-proxy delete for entities with owned collections - -commit 17e8b727e9f01121f1c0b3f6dd982a6c7808ae03 -Author: Gavin King -Date: Sat Sep 24 16:41:26 2022 +0200 - - workaround for bug in test or fix for HHH-11209 - -commit 6c90b5d0a1ee867cc78ccb68b2ed6297e5929401 -Author: Gavin King -Date: Sat Sep 24 13:16:04 2022 +0200 - - HHH-15509 fix tests - -commit e76a26165fae8d29228902825df4b0331c2683cd -Author: Gavin King -Date: Fri Sep 23 16:54:10 2022 +0200 - - HHH-15509 deletion of unloaded entity - -commit b7f93a04cfba32e1e97236ed0974fab28cae4c99 -Author: Gavin King -Date: Sat Sep 24 12:19:14 2022 +0200 - - some minor cleanups to CollectionType - -commit bb996705b74cc548bbce96b18e4545b06607f0e3 -Author: Gavin King -Date: Sat Sep 24 15:31:05 2022 +0200 - - very minor code cleanups - -commit 39ae0bf2647d0468088e9576ead0a948f0095815 -Author: Gavin King -Date: Tue Sep 27 09:47:44 2022 +0200 - - enable a test on H2 - -commit e930e7c68ded4bb73ffbce399baa2a2b4f9b7eb4 -Author: Gavin King -Date: Tue Sep 27 09:46:25 2022 +0200 - - big code cleanup to DefaultFlushEntityEventListener - -commit 1d12490dab235f5f1129dd9bd2a6224299295c05 -Author: Gavin King -Date: Tue Sep 27 02:35:27 2022 +0200 - - improve javadocs of @Source and @NotFound - -commit 577790b987c45d413ee6dd63456d722e63599126 -Author: Sanne Grinovero -Date: Mon Sep 26 21:55:44 2022 +0100 - - HHH-15484 Renaming GraalVMStaticAutofeature to GraalVMStaticFeature - -commit 7d34f86a9554820a490c0fd06b001600cf600637 -Author: Gavin King -Date: Mon Sep 26 13:11:27 2022 +0200 - - HHH-15509 correctly support @NotFound @ManyToMany - - 1. error if a non-@ManyToMany collection is @NotFound - 2. disable constraint generation for @NotFound @ManyToMany - 3. allow lazy fetching for @NotFound @ManyToMany - 4. rework a completely bogus test so it makes sense - -commit 5b907ae8b13628baca432dd7269732e602a956b5 -Author: Jan Schatteman -Date: Fri Sep 23 18:05:26 2022 +0200 - - HHH-987/HHH-992 - Correction to the AuctionWithAbstractBidClassTest - - Signed-off-by: Jan Schatteman - -commit e8783e6075c6ef6325739c3bebeaf6a6dc51b241 -Author: Andrea Boriero -Date: Fri Sep 16 11:20:16 2022 +0200 - - HHH-15512 Querying for an entity persisted but not flushed to the database causes the exception 'A collection with cascade=all-delete-orphan was no longer referenced by the owning entity instance' - -commit 036a37a7e8f246541021386e8bfef4e1862e5174 -Author: Andrea Boriero -Date: Fri Sep 16 11:13:09 2022 +0200 - - HHH-15512 Add test for issue - -commit a08716b67b5b0cc5533bd35c84e2ece9c28583e1 -Author: Andrea Boriero -Date: Fri Sep 23 11:21:08 2022 +0200 - - HHH-15045 + HHH-15235 onFlushDirty() invoked on parent entity in a @OneToOne relationship when no table columns are changed - PropertyAccessException on merging Bidirectional OneToOne with EmbeddedId - Reverted HHH-14216 - -commit 249dfd0d12b60c27780518e670d3fa2189f7be12 -Author: Christian Beikov -Date: Fri Sep 23 10:56:58 2022 +0200 - - HHH-15534 Fix publishing of the hibernate-gradle-plugin - -commit f935eb2430797d7fd5c6ebc7daf65fc56c56870e -Author: Andrea Boriero -Date: Thu Sep 22 10:30:30 2022 +0200 - - HHH-15045 + HHH-15235 onFlushDirty() invoked on parent entity in a @OneToOne relationship when no table columns are changed - PropertyAccessException on merging Bidirectional OneToOne with EmbeddedId - Reverted HHH-14216 - -commit 914a2c561be5373c563f19bb8d84f3d05a57d8f4 -Author: Andrea Boriero -Date: Thu Sep 22 10:12:25 2022 +0200 - - HHH-15235 Add test for issue - -commit ddf0cb7295320b387a7ac4298de886a456a02923 -Author: Andrea Boriero -Date: Wed Sep 21 16:18:58 2022 +0200 - - HHH-15045 Add test for issue - -commit 15c4b248426a60b3f361f8a344448fb12e0ac49a -Author: Andrea Boriero -Date: Thu May 26 14:33:06 2022 +0200 - - HHH-15045 Add additional test - -commit 063cb0ccd9b37d6f15138f23c6ff1b8c3ef6ddb1 -Author: Jan Schatteman -Date: Thu Sep 22 23:54:01 2022 +0200 - - Added test for the issues mentioned in HHH-987 and HHH-992 - - Signed-off-by: Jan Schatteman - -commit 93992147c55c689fea7065ac36f34b860e996071 -Author: Christian Beikov -Date: Thu Sep 22 16:11:10 2022 +0200 - - HHH-15514 Fix security manager class rewriting issue - -commit bb5aa629277820bea0c847bcb915ae49a6ec4f71 -Author: Jan Schatteman -Date: Wed Sep 14 23:55:50 2022 +0200 - - HHH-15487 - Remove support for PostgreSQL versions older than 10 - - Signed-off-by: Jan Schatteman - -commit 893e1b096e714d7a0fbccc2d4137817a566fb3f5 -Author: Andrea Boriero -Date: Wed Sep 14 15:03:51 2022 +0200 - - HHH-15500 Cache key is huge since migration to 6 - -commit 89a98f2dc74c4c51491be43a5adf419c492fc681 -Author: Jan Schatteman -Date: Tue Sep 20 21:55:38 2022 +0200 - - HHH-15489 - Remove support for Oracle versions older than 11.2 - - Signed-off-by: Jan Schatteman - -commit 6321016051f5abe7e120c9aa55d7a9c7ebec03aa -Author: Christian Beikov -Date: Wed Sep 21 13:58:41 2022 +0200 - - HHH-15532 Update PostgreSQL testing to version 10 and 14 - -commit e51da4ee3be3e09145b71bb5f3dfcd46a9c0a706 -Author: George Gastaldi -Date: Mon Sep 19 16:33:09 2022 -0300 - - HHH-15484 Add description to GraalVM Feature implementations - - Displayed during the Native image generation. E.g.: - - ``` - ======================================================================================================================== - GraalVM Native Image: Generating 'quarkus-registry-app-999-SNAPSHOT-runner' (executable)... - ======================================================================================================================== - [1/7] Initializing... (10.7s @ 0.21GB) - Version info: 'GraalVM 22.2.0 Java 17 CE' - Java version info: '17.0.4+8-jvmci-22.2-b06' - C compiler: cc (apple, arm64, 14.0.0) - Garbage collector: Serial GC - 10 user-specific feature(s) - - io.quarkus.caffeine.runtime.graal.CacheConstructorsFeature - - io.quarkus.hibernate.orm.runtime.graal.DisableLoggingFeature: Disables INFO logging during the analysis phase for the [org.hibernate.Version, - org.hibernate.annotations.common.Version, org.hibernate.dialect.Dialect] categories - - io.quarkus.hibernate.validator.runtime.DisableLoggingFeature: Disables INFO logging during the analysis phase for the [org.hibernate.validator.internal.util.Version] - categories - - io.quarkus.jdbc.postgresql.runtime.graal.SQLXMLFeature - - io.quarkus.runner.Feature: Auto-generated class by Quarkus from the existing extensions - - io.quarkus.runtime.graal.DisableLoggingFeature: Disables INFO logging during the analysis phase for the [org.jboss.threads] categories - - io.quarkus.runtime.graal.ResourcesFeature: Register each line in META-INF/quarkus-native-resources.txt as a resource on Substrate VM - - org.graalvm.home.HomeFinderFeature: Finds GraalVM paths and its version number - - org.hibernate.graalvm.internal.GraalVMStaticAutofeature - - org.hibernate.graalvm.internal.QueryParsingSupport - ``` - -commit bfd1f2215734c17a78682853cc7c9ffd84b7eea6 -Author: Christian Beikov -Date: Tue Sep 20 09:26:06 2022 +0200 - - HHH-15533 Introduce versionless CI matrix entries for the PostgreSQL and MySQL minimum supported version - -commit 5ad3abc6281b2d6eb91fe24c55e88ba84030f161 -Author: Christian Beikov -Date: Wed Sep 21 11:17:12 2022 +0200 - - HHH-15537 Implement lateral subquery emulation when nested correlation is unsupported - -commit 8302b061b2d8873bdeafc5200223c80eb6630b6c -Author: Christian Beikov -Date: Wed Sep 21 11:30:14 2022 +0200 - - Revert "HHH-15533 Introduce versionless CI matrix entries for the PostgreSQL and MySQL minimum supported version" - - This reverts commit aae3513d588a2640edf27bd8a62d37ec9f953179. - -commit f8c25fda1cd46ff01a2d3b5ca17678ec213cbcb8 -Author: Christian Beikov -Date: Wed Sep 21 11:23:07 2022 +0200 - - HHH-15538 Move Jenkinsfile timeout around shell command - -commit 6b8a782d50c14c8375a044c17ce89bfdba0b2f82 -Author: Christian Beikov -Date: Wed Sep 21 10:57:22 2022 +0200 - - Fix cast for pi function on MySQL 5.7 - -commit aae3513d588a2640edf27bd8a62d37ec9f953179 -Author: Christian Beikov -Date: Tue Sep 20 09:26:06 2022 +0200 - - HHH-15533 Introduce versionless CI matrix entries for the PostgreSQL and MySQL minimum supported version - -commit 4ac2054784d8498bc520c60b1e901f708dcfd7d5 -Author: Fabricio Gregorio -Date: Sat Sep 17 18:55:26 2022 -0300 - - HHH-15522 Implement a LazyInitializable interface that PersistentCollection and Envers collections extend or implement. Improve related tests. - -commit c3f1762f3bb936da0e49f9309ff7bae6b91df7bd -Author: Fabricio Gregorio -Date: Sat Sep 17 13:35:43 2022 -0300 - - HHH-15522 Add hibernate isInitialized tests on envers collections - -commit 4f9ff5cfd1f6d520ca6439649e55745c9949319a -Author: Jan Schatteman -Date: Tue Sep 20 17:56:28 2022 +0200 - - HHH-15511 - fix version determination also for the CockroachDB legacy dialect - - Signed-off-by: Jan Schatteman - -commit 8a886039ec4e2ff858f8d8f2552496f6fe79a8fb -Author: Andrea Boriero -Date: Mon Sep 19 14:32:30 2022 +0200 - - HHH-15520 ValueGeneration on @OneToOne leads to boot error - -commit e931a8062dba1e8d5d7ee791c2ab0a8e2c7ec439 -Author: Andrea Boriero -Date: Mon Sep 19 14:29:30 2022 +0200 - - HHH-15520 Add test for issue - -commit 228eabec2cb9acc2f338dd078df9bb556de6b450 -Author: Christian Beikov -Date: Mon Sep 19 17:31:06 2022 +0200 - - HHH-15527 Make sure that only a single query is executed when running an insert-select with an assigned id - -commit 77806f486e4100a61296502557f8608604af1b53 -Author: Christian Beikov -Date: Mon Sep 19 17:30:36 2022 +0200 - - HHH-15527 Test that only a single query is executed when running an insert-select with an assigned id - -commit 544c1e0c94d120a4902bb21d2c0881482b4f0136 -Author: Christian Beikov -Date: Mon Sep 19 15:06:35 2022 +0200 - - HHH-15517 Fix for temporary table prefixing the qualified table name instead of just table name - -commit 398702a1115de830002e580530e650589eb73642 -Author: Christian Beikov -Date: Mon Sep 19 15:06:21 2022 +0200 - - HHH-15517 Testcase for temporary table prefixing the qualified table name instead of just table name - -commit e0e85c33980f7bf8989a5712d07637cf6009e0c0 -Author: Jan Schatteman -Date: Mon Sep 19 23:03:14 2022 +0200 - - HHH-15490 - Remove support for HSQLDB versions older than 2.6.1 - - Signed-off-by: Jan Schatteman - -commit 1d76f970e80686372bb4e406df95ab7bb2bf6b3f -Author: Jan Schatteman -Date: Thu Sep 15 00:27:10 2022 +0200 - - HHH-15511 - fix version determination for CockroachDB - - Signed-off-by: Jan Schatteman - -commit e62a376262246724daa71de44a8fab1a2da178e5 -Author: Nelson Osacky -Date: Mon Sep 19 13:17:02 2022 +0200 - - HHH-15526 Add Revved up by Gradle Enterprise Badge - -commit bfa17d3fc75700494aac81b26822a76c436fddb6 -Author: Christian Beikov -Date: Mon Sep 19 14:51:06 2022 +0200 - - Allow excluding tests of all sub projects, not just hibernate-core - -commit b6011ca9c8b01062a36cd666809818f70c9f4534 -Author: Gavin King -Date: Sat Sep 17 11:25:27 2022 +0200 - - add some comments and two missing function registrations - -commit 7740121449d4c946b2f701824316f8dba3eb0e23 -Author: Gavin King -Date: Fri Sep 16 08:20:07 2022 +0200 - - clean up old code + deprecate LockOptions.getAliasLockIterator() - -commit cf51b92aeb8bd606128ce9fdbc116c7ff7d62f65 -Author: Gavin King -Date: Fri Sep 16 08:44:49 2022 +0200 - - fix + test handling of chr() on Oracle, Derby, MySQL - - - Derby simply doesn't have it - - in MySQL it's necessary to specify the character set - - add ascii() and chr() to OracleDialect - -commit 3ddfa3f47cd0fd7e9f14a4731c0371a9b5067b16 -Author: Gavin King -Date: Thu Sep 15 22:39:32 2022 +0200 - - HHH-15516 add two-arg form of log() to HQL - -commit 1b5935e66dc404587b7f425bdb01c9f1553b2f3c -Author: Gavin King -Date: Thu Sep 15 22:12:02 2022 +0200 - - HHH-15515 make pi a portable HQL function - -commit 9804a22db0d5e6d64f6fa1f8e40322849a2fcac6 -Author: Yoann Rodière -Date: Tue Sep 13 16:52:20 2022 +0200 - - HHH-15505 Test bytecode enhancement on entity whose field is defined both in mapped superclass and concrete entity - -commit 9aabaf1220de0368bbd0a29decd866dc0c1ac83f -Author: Yoann Rodière -Date: Tue Sep 13 17:00:59 2022 +0200 - - HHH-15505 Fix bytecode enhancement on entity whose field is defined both in mapped superclass and concrete entity - -commit 62ff89414b7302b10ebe294d2528bd829af501b8 -Author: Andrea Boriero -Date: Wed Sep 14 11:00:30 2022 +0200 - - HHH-14943 Add test for issue - -commit 60bd1c657bd2b68e06d7ff6ecca6dcf0e7c106dd -Author: Christian Beikov -Date: Tue Sep 13 20:15:28 2022 +0200 - - HHH-15504 Add UUID support for SQL Server - -commit 69668c32b79ced6c872aba2961ed0c5874d99107 -Author: Christian Beikov -Date: Tue Sep 13 20:01:24 2022 +0200 - - HHH-15503 Add UUID support for MariaDB 10.7 - -commit 56125e2614e6debe0393451b7978ddd3b8542772 -Author: Sanne Grinovero -Date: Mon Sep 12 10:46:02 2022 +0100 - - HHH-15502 Improved guarding of logging overhead - -commit 6bf0b0ae4170866aa276d4df931026398c9c8882 -Author: Andrea Boriero -Date: Fri Sep 9 15:46:17 2022 +0200 - - HHH-15502 Improve NoCachingRegionFactory instantiation performance: Refactored NoCachingTransactionSynchronizationImpl to avoid timestamp creation, Renamed CacheTransactionSynchronization#getCurrentTransactionStartTimestamp method to getCachingTimestamp and removed SharedSessionContractImplementor#getTransactionStartTimestamp method - -commit 3dec1ca4dcc480bc40c6c53c24470fd450918de4 -Author: Jan Schatteman -Date: Thu Jul 28 17:32:53 2022 +0200 - - HHH-15447 - Remove references to deprecated dialects - - Signed-off-by: Jan Schatteman - -commit 89f901109e5f736903011d85d1e39dc70a2b64c2 -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Mon Sep 12 05:20:58 2022 +0000 - - Bump com.gradle.common-custom-user-data-gradle-plugin - - Bumps com.gradle.common-custom-user-data-gradle-plugin from 1.7.2 to 1.8.1. - - --- - updated-dependencies: - - dependency-name: com.gradle.common-custom-user-data-gradle-plugin - dependency-type: direct:production - update-type: version-update:semver-minor - ... - - Signed-off-by: dependabot[bot] - -commit 8d9019e98158eec0d0db41cd15586deac86bae3a -Author: Andrea Boriero -Date: Sun Sep 11 03:55:13 2022 +0200 - - HHH-15482 CoercionException in criteria simple case statement - -commit e9f09315fafae1c47d95369be1766527cb891e2b -Author: Andrea Boriero -Date: Sun Sep 11 03:54:42 2022 +0200 - - HHH-15482 Add test for issue - -commit 165bb9cf02092db83807827861ae671ee0c665d3 -Author: Jan Schatteman -Date: Thu Aug 11 22:22:49 2022 +0200 - - HHH-15446 - allow Dialect version to be specified separately from the dialect class name - - Signed-off-by: Jan Schatteman - Co-authored-by: Christian Beikov - -commit 6904a19835fd56ec985963bf2e2d083de1e19127 -Author: Andrea Boriero -Date: Fri Sep 9 13:04:15 2022 +0200 - - HHH-15481 NaturalId and Lazy cause a class cast Exception - -commit 84c4a5709965b711895a5bd986dd0f612a3d283d -Author: Andrea Boriero -Date: Fri Sep 9 13:03:21 2022 +0200 - - HHH-15481 Add test for issue - -commit 76c67f080c20b482a6483face913b41779d62a3c -Author: Andrea Boriero -Date: Wed Sep 7 11:28:47 2022 +0200 - - HHH-15485 Tests for Collections in default FetchGroup are not enabling this property - -commit 92d332055bade33ccb2eae22f25e60128526c31f -Author: Sanne Grinovero -Date: Fri Sep 9 10:42:27 2022 +0100 - - HHH-15494 Upgrade to ANTLR 4.10.1 - -commit 1d1d38cb80b593496360f06b0bf22d21eb449913 -Author: Andrea Boriero -Date: Tue Sep 6 14:37:54 2022 +0200 - - HHH-14387 Fix issue when bytecode enhancement enabled - -commit ab15148a01d2fe79aed237415bdb466aafad053e -Author: Andrea Boriero -Date: Tue Sep 6 16:57:15 2022 +0200 - - HHH-14387 Add more tests - -commit 2cf974843038a663a1a756cc4630569ad3571c1d -Author: Yoann Rodière -Date: Mon Sep 5 13:49:02 2022 +0200 - - HHH-14387 Demonstrate regression when bytecode enhancement enabled - -commit 29e04afc675434a836d3155ec1e392bc50d54d4e -Author: Andrea Boriero -Date: Wed Sep 7 13:55:43 2022 +0200 - - HHH-15477 Criteria EXISTS Subquery referring the Root of the Query of which it is a Subquery causes 'Error interpreting query [SqmRoot not yet resolved to TableGroup]' - -commit 6f7ed947be1ab1c02fb569c06ebe8675f823e5e7 -Author: Andrea Boriero -Date: Wed Sep 7 11:51:18 2022 +0200 - - HHH-15477 Add test for issue - -commit 53e1ee2f199f233c00e2c26300694cdf27b587be -Author: Gavin King -Date: Wed Sep 7 18:56:53 2022 +0200 - - fix error message - -commit 9005403344e7245fdb42ff4313d9b8ca553d1785 -Author: Gavin King -Date: Wed Sep 7 18:56:23 2022 +0200 - - very minor code cleanups in TableBinder - -commit 38c8dc90c3ddb093b0eda96c21e08f045aec8bc9 -Author: Andrea Boriero -Date: Thu Sep 1 16:06:34 2022 +0200 - - HHH-15356 Unable to get primary information on some dialects (ex: Oracle) when the PK column's position doesn't match the alphabetical name's order - -commit 4265cc0ff9652cbaecb606f36218c0415e2dac14 -Author: Andrea Boriero -Date: Thu Sep 1 16:04:13 2022 +0200 - - HHH-15356 Add test for issue - -commit ec49356c77f06202ccc2ad841d3b50d3260991a0 -Author: Jan Schatteman -Date: Fri Jul 8 18:54:39 2022 +0200 - - HHH-15181 / HHH-15197 / HHH-15198 - - Signed-off-by: Jan Schatteman - -commit 11fb9440ef4c0715ed2abeeb5f9f99401a8e973c -Author: Jan Schatteman -Date: Wed Jun 29 20:57:17 2022 +0200 - - HHH-15192 - Remove support for Sybase ASE versions older than 16 - - Signed-off-by: Jan Schatteman - -commit b57f4a6b12fdbe8607f10401b4f3337a914e771a -Author: Sanne Grinovero -Date: Tue Sep 6 23:36:12 2022 +0100 - - HHH-15484 Switch GraalVM native-image dependencies to org.graalvm.sdk:graal-sdk - -commit c0afae8cb33647111c4d3360974d33a99800694a -Author: Yoann Rodière -Date: Thu Sep 1 14:46:40 2022 +0200 - - HHH-15473 Instantiate collections in the default fetch group by default - -commit 767ff43d8c17979b59503a0f1dc8174d017e981e -Author: Yoann Rodière -Date: Mon Sep 5 09:46:50 2022 +0200 - - HHH-15473 Test that collection properties are not initialized immediately on lazy proxies with enableCollectionInDefaultFetchGroup = true - -commit 1399f3e65e80c5ebd28204afcdae423104e01689 -Author: Yoann Rodière -Date: Thu Sep 1 16:59:20 2022 +0200 - - HHH-15473 Actually set enableCollectionInDefaultFetchGroup(true) in relevant tests - - The previous setup code was being ignored, so - enableCollectionInDefaultFetchGroup was actually `false` in these - tests... - -commit febfd9d4b8873640ce1b37794351d8c01b573afa -Author: Yoann Rodière -Date: Thu Sep 1 15:07:02 2022 +0200 - - HHH-15473 Don't confuse property initialization for collection initialization in tests - - Checking for property initialization was acceptable and pretty - much the only way to perform assertions before we fixed HHH-14620, - but now that initializing a property doesn't imply initializing - the collection, it's just plain wrong: - - * If you expect the collection *not* to be initialized, then - checking that that the property is not initialized is too strict: - the assertion could fail because the property is initialized - while the collection is not initialized. - * If you expect the collection to be initialized, then - checking that that the property is initialized is not enough: - the assertion could pass because the property is initialized - while the collection is not initialized. - - Besides, we can safely call the getter to test the collection - directly with Hibernate.isInitialized(entity.getCollection()) - since a call to the getter is not supposed to trigger collection - initialization. - -commit 560722dfaaafab27d573d20b6c2ddfe784ad688a -Author: Yoann Rodière -Date: Mon Sep 5 09:19:52 2022 +0200 - - HHH-15473 Copy/paste a few select tests to set collectionInDefaultFetchGroup to false explicitly - -commit 16f865f100c3dc717ca9843f1a2f3233998e3d16 -Author: Andrea Boriero -Date: Sat Sep 3 15:29:27 2022 +0200 - - HHH-15479 Removw megamorphic calls - -commit 6156751188776b602d40718445363a4e5bd8c92d -Author: Andrea Boriero -Date: Wed Aug 10 16:53:39 2022 +0200 - - HHH-15479 Add ListResultsConsumer.UniqueSemantic to QueryOptions - -commit 12aaaff766b504a6cdb3ac2f0885350ee093d6a7 -Author: Andrea Boriero -Date: Wed Aug 10 14:19:43 2022 +0200 - - HHH-15479 Add Results#addUnique(R result) - -commit 1905b03c952978dee497458cccb9c3d86333405c -Author: Andrea Boriero -Date: Fri Aug 5 16:10:16 2022 +0200 - - HHH-15479 Improve ListresultConsumer duplication check method performance - -commit 601e82620d907fee498aaf7446b62f5ae395f4a3 -Author: Gavin King -Date: Tue Sep 6 10:27:37 2022 +0200 - - HHH-15483 allow @TenantId properties of type UUID, Long, Integer, etc - - implementation is a bit nasty but it works - -commit 6cf9d2d4801962b659eb4fb936a58abd461fbfc1 -Author: Andrea Boriero -Date: Fri Aug 26 15:04:36 2022 +0200 - - HHH-15465 Upgrade to Jandex 3.0.0 - -commit 17fa97d1b0c423da397f9a8f014ed96edfc74402 -Author: Jan Schatteman -Date: Fri Jun 17 19:57:27 2022 +0200 - - HHH-15182 - Remove support for MariaDB versions older than 10.3 - - Signed-off-by: Jan Schatteman - -commit 5b0b1fa6807a1f21f3c184607632a3bc890d8b1d -Author: Jan Schatteman -Date: Thu Jun 9 23:39:33 2022 +0200 - - HHH-15179 - Move support for MySQL versions older than 5.7 into community dialects - - Signed-off-by: Jan Schatteman - -commit 429ab5b93630ffb989cd4dfb0f316ac075e62795 -Author: Jan Schatteman -Date: Wed Jun 15 22:54:17 2022 +0200 - - HHH-15180 - Remove support for SQL Server versions older than 2008 - - Signed-off-by: Jan Schatteman - -commit 75f4c95274830b3243fe1c80d0f9ff5156a77f8c -Author: Jan Schatteman -Date: Tue May 31 22:18:47 2022 +0200 - - HHH-15195 - Moving support for CockroachDB versions older than 21.1 into community dialects - - Signed-off-by: Jan Schatteman - -commit f33d3ed30890716cd0e64d137de4b41ff049201e -Author: Jan Schatteman -Date: Tue Jun 21 23:56:01 2022 +0200 - - HHH-15190 - Remove support for H2 versions older than 1.4.197 - - Signed-off-by: Jan Schatteman - -commit 89f04d227440086c656bb8667e0af9fba07cee5b -Author: Christian Beikov -Date: Mon Sep 5 11:37:08 2022 +0200 - - HHH-15216 Revert moving classes out of the internal package - -commit 4d4aaf3b4a96c46e1a0c3a91a8cb82aa081117ac -Author: Jan Schatteman -Date: Thu Jun 23 18:45:58 2022 +0200 - - HHH-15191 - Remove support for Derby versions older than 10.14.2.0 - - Signed-off-by: Jan Schatteman - -commit 96f56db700a93bca3daa789558d1e24c313cba87 -Author: Christian Beikov -Date: Mon Sep 5 06:35:32 2022 +0200 - - Fixup migration guide - -commit 33b8ee021888a57a20fd2dc8748ef8ccbbfc1fc0 -Author: Andrea Boriero -Date: Sat Sep 3 16:20:17 2022 +0200 - - Fix 6.1.0.Final changelog - -commit 3b4da627ab808d35b2ce4a108938059f7918bf10 -Author: Christian Beikov -Date: Fri Sep 2 16:50:21 2022 +0200 - - Switch to 6.2.0-SNAPSHOT - -commit 41b067e5a55e70e01a97f43a354e4de6e82a3aac -Author: Andrea Boriero -Date: Fri May 6 10:41:51 2022 +0200 - - HHH-15159 Orphan removal of an entity with an @ElementCollection causes a ConstraintViolationException - -commit 6c3d700fcc1c67cd9c667474f4dfc9d22e91adeb -Author: Andrea Boriero -Date: Fri May 6 10:34:38 2022 +0200 - - HHH-15159 Add test for issue - -commit bc5b866c8602e13947d5e18500c274b0f3fe0b49 -Author: Christian Beikov -Date: Tue Aug 30 18:20:24 2022 +0200 - - HHH-15381 Try to fix gradle plugin publishing and platform publishing - -commit a83ff54671597625d77a574d923c3ba214664b8d -Author: Christian Beikov -Date: Tue Aug 30 17:14:50 2022 +0200 - - HHH-14387 Alternative fix for deletion of bytecode lazy collections, by creating PersistentCollection for deletedState - -commit 41ac1f8e88242d2a5571a79f38d4cf1875527010 -Author: Christian Beikov -Date: Thu Aug 18 11:14:21 2022 +0200 - - HHH-14387 Don't create PersistentCollection for bytecode enhanced lazy loaded attributes and make sure collection deletes still work - -commit b18c967cf60b492a4f8f651f58dc42daf6c34db0 -Author: Andrea Boriero -Date: Wed Aug 31 17:16:44 2022 +0200 - - HHH-13485 FilterJoinTable does not to use the defualt condition - -commit 41abc8d9f0f9982324a2c7dff9ab671e5c548a41 -Author: Andrea Boriero -Date: Wed Aug 31 17:16:19 2022 +0200 - - HHH-13485 Add test for issue - -commit 04ebb6a1d75b00ba51c493b9ad3a4532dd072301 -Author: Andrea Boriero -Date: Wed Aug 24 15:34:33 2022 +0200 - - HHH-15471 Improve merge replace operation when original and target are the same object - -commit 456e43957e7ed28a689dc5476b744baf3c542614 -Author: Andrea Boriero -Date: Wed Aug 31 11:07:23 2022 +0200 - - Fix wrong toolchain configuration for java17 tests - -commit 2be1c9a504a8754253a8224448e3f8960eaab117 -Author: Réda Housni Alaoui -Date: Mon Apr 18 20:03:29 2022 +0200 - - HHH-15216 Cannot change MetadataProvider implementation because JPAXMLOverriddenMetadataProvider is final and precisely expected by a cast operator - -commit 8a806ef261196032b8b2a050206e5e51329a2666 -Author: Christian Beikov -Date: Wed Aug 31 08:31:23 2022 +0200 - - Stop sending email notifications for superseded builds - -commit 3352486633c7bd978aa51c74fa53b18ebe28580f -Author: Christian Beikov -Date: Tue Aug 30 19:13:17 2022 +0200 - - Fix building with JDK 20-ea due to missing experimental flag in java17Test - -commit b66bc976aca6ccfed27a7388037b72470361fd1f -Author: Ladislav Thon -Date: Wed Aug 24 15:09:41 2022 +0200 - - HHH-15466 Compatibility with Jandex 3.0.0 - - The only change in Jandex 3.0.0 relevant to Hibernate ORM is that - `Indexer.index()` used to return `ClassInfo`, but now returns `void`. - This is a breaking change, but Jandex 3.0.0 has a synthetic bridge - method with the old signature for binary compatibility -- except - it always return `null`. Therefore, with this commit, Hibernate ORM - simply ignores the return value completely, which makes it compatible - with Jandex 3.0.0 at runtime, even though it is still compiled against - Jandex 2.4. The code is also source-compatible with Jandex 3.0.0 if - that is ever needed. - -commit f1c08e8e977bc57ce951ba722a766571cfe68773 -Author: Christian Beikov -Date: Tue Aug 30 12:58:07 2022 +0200 - - Fix wrong toolchain configuration for java17 tests - -commit d2cca544c21cf0e1074c7e1f085ae186aa20ae21 -Author: Christian Beikov -Date: Mon Aug 29 18:23:36 2022 +0200 - - HHH-15072 Don't enhance records and skip owner tracking for embeddable record fields - -commit 9f5f31ec9713e3f5961cc2d1b3d0b23f89088c25 -Author: Christian Beikov -Date: Wed Aug 17 15:43:44 2022 +0200 - - HHH-15072 Add test for out of the box support for records as embeddables - -commit 75240b0cd36a3ffca390e82cde29ff1f84cf3c0e -Author: Christian Beikov -Date: Thu Aug 11 17:23:23 2022 +0200 - - HHH-15072 Add out of the box support for records as embeddables - -commit 83d4105defa201be82a0ddd87d04a706279e226c -Author: Christian Beikov -Date: Tue Aug 30 09:02:13 2022 +0200 - - Pass on forgotten argument to delegate in AbstractQuery - -commit eb1f56d542c4d6073bd1936112b588ea090b6115 -Author: Christian Beikov -Date: Tue Aug 23 17:30:41 2022 +0200 - - HHH-15458 Interpret String with JSON/XML type code as plain JSON/XML - -commit 33d2a7fc7251afef622e3024b460856d7088b1b4 -Author: Alex <93376818+sashashura@users.noreply.github.com> -Date: Sat Aug 27 23:52:16 2022 +0100 - - HHH-15468 Set permissions - -commit e5e2931b1c7baf34e4ce46cbaeea970d4e6a233b -Author: Sanne Grinovero -Date: Thu Aug 25 16:09:00 2022 +0100 - - HHH-15100 Limitation of metamodel imports cache causes severe performance drops in large projects - -commit 3ece67169797633ff3cd9fcd2d4e41123b6a2ce7 -Author: Andrea Boriero -Date: Thu Aug 25 13:22:04 2022 +0200 - - HHH-15388 Upgrade to Micrometer 1.9.3 - -commit c61279011807679f5a833e44edd801421900f895 -Author: Andrea Boriero -Date: Thu Aug 25 11:16:10 2022 +0200 - - HHH-15453 Fix test failure on Oracle - -commit c1e5207d64ccf15ee0094f19a8520c7f117e1a3d -Author: Christian Beikov -Date: Thu Aug 25 08:32:06 2022 +0200 - - HHH-15451 Upgrade PostgreSQL JDBC driver to 42.5.0 - -commit c6ed10f5df890c2a108e8e964c6729341fc388a8 -Author: Sanne Grinovero -Date: Tue Aug 16 14:48:10 2022 +0100 - - HHH-15451 Upgrade PostgreSQL JDBC driver to 42.4.1 - -commit aa311855d970437e2ca7ba4628280f34c51dcd72 -Author: Christian Beikov -Date: Tue Aug 23 14:47:31 2022 +0200 - - HHH-15462 Optimize ColumnReference rendering and reduce buffering - -commit 271cba0603d56c52bfc4c7cd26791a28cbe4e619 -Author: Christian Beikov -Date: Tue Aug 23 14:47:31 2022 +0200 - - HHH-15461 Replace uses of method references for SqlAppender with proper implementation - -commit 84c276b3cca7eec0b2efcf6d056c9c9035cac6f3 -Author: Andrea Boriero -Date: Wed Aug 24 16:53:41 2022 +0200 - - HHH-15359 The entity returned by a merge doesn't contain @ManyToMany relation when the collection resides in @Embeddable - -commit 13bae2ef09e8d806630ce459c4ad92b171b8e023 -Author: Andrea Boriero -Date: Wed Aug 24 12:54:58 2022 +0200 - - HHH-15359 Add test for issue - -commit 254d69568bbfe5bc4a293faf0a3ecd9166145675 -Author: KARGET -Date: Wed Aug 24 11:24:22 2022 +0200 - - HHH-15454 correct get(alias, class) method in TupleImpl - -commit 70e28876a68167c4f4d0255461b912bdb38e137c -Author: KARGET -Date: Tue Feb 1 16:21:46 2022 +0100 - - HHH-15454 create test where metamodel for primitive type field is used in tuple query - -commit d862b086eae70c0129608fc54dff8bfabccf7788 -Author: Andrea Boriero -Date: Fri Aug 19 22:15:58 2022 +0200 - - HHH-15453 java.lang.NullPointerException: Cannot invoke org.hibernate.engine.spi.EntityEntry.getEntityKey() because ownerEntry is null - -commit ed4f39972353ea00c1542607b3cc0072f25868d5 -Author: Andrea Boriero -Date: Thu Aug 18 09:21:33 2022 +0200 - - HHH-15453 Add test for issue - -commit 021429b519c2c50f264852f4737a8499d6e25d39 -Author: Andrea Boriero -Date: Wed Aug 17 16:50:08 2022 +0200 - - HHH-15449 @ManyToOne associations not loaded correctly with default EAGER and batch fetch property set when using TypedQuery.resultStream - -commit 960b2c7f1c516594bb79bfbd0b0d165edb8c7202 -Author: Andrea Boriero -Date: Tue Aug 16 20:32:53 2022 +0200 - - HHH-15449 Add test for issue - -commit 6507ac4f88ba39d9b31c0c921bf91f8d46cdfb71 -Author: Andrea Boriero -Date: Mon Aug 22 12:47:25 2022 +0200 - - HHH-15455 User Guide Contains a reference to hibernate-ehcache, no longer supported - -commit beb7a37d021c811f165685d5054c7635276203b1 -Author: Andrea Boriero -Date: Wed Aug 17 18:59:30 2022 +0200 - - HHH-15452 Predicate add expression results in UnsupportedOperationException - -commit 0945cae46da62d8a56b363b6812d089f03791e3e -Author: Andrea Boriero -Date: Wed Aug 17 18:58:04 2022 +0200 - - HHH-15452 Add test for issue - -commit 95c14ada9005f89b2a4f4cb9b80f30d1dd3356d2 -Author: Andrea Boriero -Date: Tue Aug 16 16:15:02 2022 +0200 - - HHH-15440 @OneToOne and @OptimisticLock(excluded = true) not working correctly - -commit 357444fb3c9e4ebee5ddf113863d6e8f3fc6cca2 -Author: Andrea Boriero -Date: Tue Aug 16 16:14:35 2022 +0200 - - HHH-15440 Add test for issue - -commit 8c33056d93bf08efbbe259b5608e8b9dc115be35 -Author: Yoann Rodière -Date: Tue Aug 16 11:46:32 2022 +0200 - - Fix dead link in documentation section "Java API for HQL and JPQL" - - See the link "next chapter" at the beginning of this section: - - https://docs.jboss.org/hibernate/orm/current/userguide/html_single/Hibernate_User_Guide.html#hql - -commit 9ecb4484a40ef37a362bb095b3081d5ba277153e -Author: Sanne Grinovero -Date: Mon Aug 15 16:44:36 2022 +0100 - - HHH-15448 Run tests on MSSQL Server using trustServerCertificate=true - -commit dcf6730461cf839ad80d56b59b4f7dfbb34a859c -Author: Sanne Grinovero -Date: Mon Aug 15 15:59:01 2022 +0100 - - HHH-15448 Upgrade testing image for MSSQL Server to 2019-latest - -commit 83f34113ca23ded40402d47064717588fdd3fbba -Author: Sanne Grinovero -Date: Mon Aug 15 10:11:49 2022 +0100 - - HHH-15448 Upgrade tested MSSQL JDBC driver to version 11.2.0.jre11 - -commit 8709368bbc4a14b502544ab2c88efa1327ab463e -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Mon Aug 15 05:22:57 2022 +0000 - - Bump com.gradle.enterprise from 3.10.3 to 3.11.1 - - Bumps com.gradle.enterprise from 3.10.3 to 3.11.1. - - --- - updated-dependencies: - - dependency-name: com.gradle.enterprise - dependency-type: direct:production - update-type: version-update:semver-minor - ... - - Signed-off-by: dependabot[bot] - -commit 740db4329aba8c106e5c3d9ddfd480d6885c95c1 -Author: Andrea Boriero -Date: Wed Aug 10 12:30:14 2022 +0200 - - HHH-15442 Fix BaseSqmToSqlAstConverter#visitAnyDiscriminatorTypeExpression() needs to create TableGroupJoin - -commit 47c3a41308a7a2a68bd7f492c1088f5f489a3310 -Author: Andrea Boriero -Date: Wed Aug 10 11:19:01 2022 +0200 - - HHH-15442 Use ConvertedBasicTypeImpl and AnyDiscriminatorConverter - -commit 863f045bf84c695f52ccc7892ccec0e2291e1aff -Author: Andrea Boriero -Date: Mon Aug 8 17:26:23 2022 +0200 - - HHH-15442 Allow for setParameter usage with a queries for a specific type in an Any-discriminated relationship - -commit bc94357d4ab2bd701dcab425487acd9d7a95e280 -Author: Andrea Boriero -Date: Mon Aug 8 17:26:00 2022 +0200 - - HHH-15442 Add test for issue - -commit 69a5cb3136ad01d40eb15ab109c18f68676907c9 -Author: Christian Beikov -Date: Fri Aug 5 16:20:32 2022 +0200 - - HHH-15438 Don't fail booting when PostgreSQL JDBC types are inaccessible - -commit 95a300d7d9a24c0296b0b179e3ec7d2f71a4efa4 -Author: Christian Beikov -Date: Fri Aug 5 15:31:55 2022 +0200 - - HHH-15441 Improve error message if SqlTypes type code can't be interpreted - -commit a681c0e1d9f2c7cd7e299a6fc4ef2047d0c1b0fe -Author: Christian Beikov -Date: Thu Aug 4 12:48:27 2022 +0200 - - HHH-15416 Improve error messages when FormatMapper is missing - -commit f8eb13333419920fcc2f31a0cb129e3d6f9f6b21 -Author: Christian Beikov -Date: Thu Aug 4 10:14:27 2022 +0200 - - HHH-15433 Return a literal for Path#type when no discriminator exists - -commit a69912dd9c5071d7f1dd3f485406c388352fddbd -Author: Christian Beikov -Date: Thu Aug 4 09:51:57 2022 +0200 - - HHH-15433 Fix a potentiatl index out of bounds exception - -commit 2f176f79bcdda0f3009c9fde7e25dc977024e775 (tag: 6.1.2) -Author: Hibernate-CI -Date: Wed Aug 3 13:52:28 2022 +0000 - - Post-steps for release : `6.1.2.Final` - -commit c1e600078d892d3cb8185ea1b2a7c5ad06f34ccd -Author: Hibernate-CI -Date: Wed Aug 3 13:47:46 2022 +0000 - - Pre-steps for release : `6.1.2.Final` - -commit 446bcb5a0042b040084b5d4a695cbb37556cb48b -Author: Christian Beikov -Date: Wed Aug 3 14:21:04 2022 +0200 - - HHH-15430 Allow use of @Enumerated on basic collection - -commit 23a487628ae2c3a65d522b6311b0b175fe92ff11 -Author: Christian Beikov -Date: Wed Aug 3 13:40:06 2022 +0200 - - HHH-15429 Fix loss of precision when serializing/deserializing arrays of doubles - -commit 4596c7f622e3c68dbec67ab6f1e114ab1391ef51 -Author: Christian Beikov -Date: Tue Aug 2 23:54:13 2022 +0200 - - HHH-15428 Remove some incubating classes that have become unnecessary - -commit 7b6df34519c061964f877c6fbb1d496ea6b1c735 -Author: Christian Beikov -Date: Tue Aug 2 23:42:56 2022 +0200 - - HHH-15428 Fix handling of converters by moving them to JdbcMapping - -commit 4674f689aa5d502dabc5bee305799374a2fecb2f -Author: Andrea Boriero -Date: Mon Jul 25 16:59:42 2022 +0200 - - HHH-15417 Add test for issue - -commit 4a7c58b983d03d002df9ec292592b4d07471c2b1 -Author: Andrea Boriero -Date: Tue Aug 2 19:13:08 2022 +0200 - - HHH-15418 Composite primary key with NativeQuery & alias not working - -commit 89d99bfdbd397b048d4f2c7337e19faf3d4351a1 -Author: Andrea Boriero -Date: Tue Jul 26 12:15:05 2022 +0200 - - HHH-15418 Add test for issue - -commit c33ff9917ab720fde77baa5680f62c50ac389530 -Author: Andrea Boriero -Date: Fri Jul 22 14:49:08 2022 +0200 - - HHH-15391 StackOverflow when applying a load entity graphs to a query - -commit d5b408e61dcb1b684334b9a50f6c36b3b6830ed8 -Author: Andrea Boriero -Date: Fri Jul 22 10:21:13 2022 +0200 - - Test @Jpa properties should override the default integration settings - -commit 2d2e7eb4fc02be1a04fea99add7c961c3dd9333f -Author: Andrea Boriero -Date: Mon Jul 11 11:24:09 2022 +0200 - - HHH-15391 Add test for issue - -commit 286b976fc51875f1484b81a181a83fcaa6fa0f35 -Author: Andrea Boriero -Date: Tue Aug 2 14:38:57 2022 +0200 - - HHH-15423 @Any discriminated association fails to be implicitly fetched due to UnsupportedOperationException - -commit 1c3549c9c5dbec4773108d055a1874404562d4c3 -Author: Andrea Boriero -Date: Tue Aug 2 14:36:55 2022 +0200 - - HHH-15423 Add test for issue - -commit e80fb85dae72fcbe34bacb4be66659e05755c183 -Author: Andrea Boriero -Date: Mon Aug 1 18:59:47 2022 +0200 - - HHH-15420 Getting Started Guide Code does not build - -commit 2dbf38ef7b141e2f06ec9bff43c4b974611d640a -Author: Sanne Grinovero -Date: Fri Jul 22 13:42:02 2022 +0100 - - HHH-15415 Move the JaxbXmlFormatMapper as well for consistency - -commit 2f313edfab48432d11fddd1fdaba3a590fcf7b69 -Author: Sanne Grinovero -Date: Fri Jul 22 09:41:34 2022 +0100 - - HHH-15415 Separate detection for Jackson Databind and Jackson XML, improve comments - -commit 492b4aa54012acf76a0429a7f1a5471deab92272 -Author: Sanne Grinovero -Date: Thu Jul 21 20:21:28 2022 +0100 - - HHH-15415 Cleanup of JaxbXmlFormatMapper initialization - -commit f6580ae5201e089b2a8c0a55dd8ecc05a68f0aa7 -Author: Sanne Grinovero -Date: Thu Jul 21 19:49:24 2022 +0100 - - HHH-15415 Moving all Jackson and Jakarta Jsonb integrations into dedicated packages - -commit d363ba6e895ce94358294543eeac9b3d2659f8b7 -Author: Sanne Grinovero -Date: Thu Jul 21 19:42:01 2022 +0100 - - HHH-15415 Jakarta JsonB integration to not break GraalVM native image compilation - -commit ca2088ad39e889f2388d86397af3b71f4b128a0c -Author: Sanne Grinovero -Date: Thu Jul 21 18:42:36 2022 +0100 - - HHH-15415 Jackson integration to not break GraalVM native image compilation - -commit 68dc79a87a91edd8755a8aa8e40545c46c35e4a3 -Author: Sanne Grinovero -Date: Thu Jul 21 11:41:02 2022 +0100 - - HHH-15412 Cleanup: remove reflection keeping JDK8 compatibility afloat in AggregatedServiceLoader - -commit 83ea2e8f42ff6e5e4c17c4b5f434a5f72dbb3ec3 -Author: Andrea Boriero -Date: Mon Jul 4 11:14:00 2022 +0200 - - HHH-15323 @AnyDiscriminator Unable to filter a polymorphic relationship in a query - -commit c84b36e3e9db0c9cf057cee404e50b541a7cc722 -Author: Andrea Boriero -Date: Thu Jul 21 16:32:09 2022 +0200 - - HHH-15414 For Oracle Dialect from version 8 Envers should not generate new revision when database replaces empty string with NULL during INSERT or UPDATE statements - -commit 4b0446427c502f37d87058ffc4728d2a06896a76 -Author: Andrea Boriero -Date: Thu Jul 21 16:30:27 2022 +0200 - - HHH-15413 For Oracle Dialect from version 8 Envers should use an ordered sequence - -commit 0f599da6c4a386df6c4088ef62bedd4ac73bcf22 -Author: Andrea Boriero -Date: Wed Jul 20 13:16:41 2022 +0200 - - HHH-15406 Tests annotated with org.hibernate.testing.RequiresDialect having as value a deprecated dialect are not executed - -commit 38589b5e7b35f589ef7c9b7c2d3adb7b2a1aaee6 -Author: Christian Beikov -Date: Thu Jul 21 13:00:23 2022 +0200 - - HHH-15392 Infer Character as type for the LIKE predicate escape expression - -commit 02a1d1a27ebe2781234105f5d4b8d84dccc43d7a -Author: Andrea Boriero -Date: Mon Jul 11 16:11:05 2022 +0200 - - HHH-15392 Add test for issue - -commit 697cfea1706602554839f14cc7a31cee6e5cd7f6 -Author: Sanne Grinovero -Date: Thu Jul 21 11:08:08 2022 +0100 - - HHH-15411 Introduce an system property to fully disable Hibernate's use of a system SecurityManager - -commit deb2c52ab4e78cb9b2e7bc7f5efc28c21ebefd0c -Author: Scott Marlow -Date: Wed Jul 6 10:45:49 2022 -0400 - - HHH-15371 ByteBuddyProxyFactory call to proxyClass.getConstructor().newInstance() when used with Java Security Manager should run in a privileged action - - Signed-off-by: Scott Marlow - -commit fbd7fe000ea33e9bcd4e3354a74cd59cc4961e4c -Author: Sanne Grinovero -Date: Mon Jul 18 16:29:20 2022 +0100 - - HHH-15409 Restore lazy initialization semantics for MetadataSources#xmlMappingBinderAccess - -commit e6fdafc393ec0e741be0582968fb8bf045333e4b -Author: Sanne Grinovero -Date: Fri Jul 15 15:05:05 2022 +0100 - - HHH-15408 QueryEngine to be more defensive with passed parameters - -commit f7de8a814694a354ba89be9ace4f6812869aa6b5 -Author: Sanne Grinovero -Date: Thu Jul 14 12:33:21 2022 +0100 - - HHH-15407 Need to expose more internal state from MetadataImpl to allow copies of metadata instances - -commit 1f31284f335907c5bbc54b027dcbf30691d12671 -Author: Andrea Boriero -Date: Wed Jul 20 10:32:45 2022 +0200 - - HHH-15403 Likely Statement leak on invoking a stored procedure - -commit a4e52f91f802fba7e5a27e5ad7dc56661cb9261d -Author: Andrea Boriero -Date: Wed Jul 20 10:29:37 2022 +0200 - - HHH-15403 Add test for issue - -commit 96b48aaadce985adacc764fd25277ffe47cf2b4c -Author: Sanne Grinovero -Date: Tue Jul 19 15:14:51 2022 +0100 - - HHH-15404 Move annotation to intended package: org.hibernate.Remove (from org.hibernate.annotations.Remove) - -commit 321af904df2aaea8e44953691d16d6749c63ea61 -Author: Andrea Boriero -Date: Thu Jun 30 12:04:33 2022 +0200 - - HHH-15379 NPE building mapping from HBM for collections targeting a class that does not have an HBM mapping - -commit c553d35a86eac07a3e8c2ab46786d014c4bf613c -Author: Andrea Boriero -Date: Thu Jun 30 12:03:47 2022 +0200 - - HHH-15379 Add test for issue - -commit d6f9b0b683e63f10a0d9ebc3501daa936a504fd4 -Author: Jan Schatteman -Date: Thu Jul 14 19:07:24 2022 +0200 - - HHH-15401 - Update the topical guide - - Signed-off-by: Jan Schatteman - -commit 2c4aa7658e07365b1b88ec09a3dcda00ef57c1a5 -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Mon Jul 18 05:27:40 2022 +0000 - - Bump com.gradle.enterprise from 3.10.2 to 3.10.3 - - Bumps com.gradle.enterprise from 3.10.2 to 3.10.3. - - --- - updated-dependencies: - - dependency-name: com.gradle.enterprise - dependency-type: direct:production - update-type: version-update:semver-patch - ... - - Signed-off-by: dependabot[bot] - -commit 1f6d8c7032e0bc415d8b5d69813b4b14a5607aea -Author: Sanne Grinovero -Date: Thu Jul 14 12:34:10 2022 +0100 - - Deprecate the IdentifierGeneratorFactory#getDialect method, no need to expose it - -commit 4bf6d59f585a2f71e1cb1dfc45c8402d8465ce22 -Author: Sanne Grinovero -Date: Thu Jul 14 12:33:44 2022 +0100 - - minor: methods could be static - -commit 1dba48ae3e56526768283b125b085e35ea223931 -Author: Jan Schatteman -Date: Wed Jul 13 23:01:43 2022 +0200 - - Tweak to the migration guide to add a link to the previous minor release migration guide - - Signed-off-by: Jan Schatteman - -commit 35fb490aaaeaac709087501ddde90cdbae4e02fc -Author: Andrea Boriero -Date: Fri Jul 8 17:07:02 2022 +0200 - - HHH-15390 Calling SqmQuery#getSqmStatement()#toHqlString() causes ClassCastExpection when using distinct in Criteria or HQL query - -commit fac6b0c1f7b0773c1b00215186a3490df8a0cd74 -Author: Andrea Boriero -Date: Fri Jul 8 17:06:01 2022 +0200 - - HHH-15390 Add test for issue - -commit 059a63e9baed8122db2ffc023d34310c245ae79d -Author: Andrea Boriero -Date: Wed Jul 13 11:35:05 2022 +0200 - - HHH-15395 HibernateCriteriaBuider#power(Expression x, Number y) throws ClassCastException - -commit d8636470ca4529c5419f8c8b6841cfafe8807518 -Author: Andrea Boriero -Date: Wed Jul 13 11:34:15 2022 +0200 - - HHH-15395 Add test for issue - -commit e3d524fe5eec5aa69e4f3d63644e393ffd64186b -Author: Andrea Boriero -Date: Wed Jul 13 11:53:14 2022 +0200 - - HHH-15396 Quick Start guide, hibernate-tutorials.zip link is broken - -commit 8021ac112b89ab3bdc6c32883591590b96392588 -Author: Karel Maesen -Date: Mon Jul 11 20:50:06 2022 +0200 - - HHH-15382 CockroachDB doesn't support value propagation - -commit 423f4aeda3b0bdfbe97d6528f9a7f388e07d7b59 -Author: Yoann Rodière -Date: Mon Jul 11 10:51:04 2022 +0200 - - Test against JDK 20 (early access) - -commit 591eada30d2dd993b53a286f04f7c509d1995e0a -Author: Gavin King -Date: Wed Jul 6 18:10:48 2022 +0200 - - remove AbstractSessionImpl, which is obsolete - - minor improvements to jdoc - -commit 20b9d99a188b03d02f46d17300427f97d093fad8 -Author: Sanne Grinovero -Date: Wed Jul 6 12:32:35 2022 +0100 - - HHH-15322 Allow JNDI lookups using the osgi scheme - -commit 1b60e350c49ce623efa9ada83bb1e5246ca717e7 -Author: Gavin King -Date: Wed Jul 6 14:11:53 2022 +0200 - - add @Incubating tag an setting documented as experimental - -commit 7b0270cc74136cdd3923fbc8fe806cd47cc762cf -Author: Gavin King -Date: Wed Jul 6 14:11:33 2022 +0200 - - expand Javadoc of CURRENT_SESSION_CONTEXT_CLASS - -commit 06e44f2adb54d84f7ed1c3da481b308be55f57bd -Author: Andrea Boriero -Date: Tue Jul 5 16:34:54 2022 +0200 - - HHH-15218 @OptimisticLocking(DIRTY) leads to wrong query during delete of circular reference - -commit 0a013ed8a4030ceb2fd328fab43387f32884679f -Author: Andrea Boriero -Date: Tue Jul 5 14:52:52 2022 +0200 - - HHH-15218 Add test for issue - -commit 98f52855c1cb67536ede28702d5f9e62409c6871 -Author: Gavin King -Date: Mon Jul 4 11:33:33 2022 +0200 - - refresh the Javadoc overview page - -commit b2a1324814bf55fa89308181e043597e8d688afb -Author: Gavin King -Date: Mon Jul 4 11:33:00 2022 +0200 - - @link -> @linkplain in Query javadoc - -commit 6588d2db46ebab8865da6220fd4366541c2c5ae0 -Author: Gavin King -Date: Mon Jul 4 11:32:25 2022 +0200 - - somewhat improve the documentation of StatelessSession - - mention fetch() - -commit 13c5e2a52b4325bb4a0ad2c9e4bb0eec316c8774 -Author: Andrea Boriero -Date: Mon Jul 4 11:15:57 2022 +0200 - - HHH-15352 add ScrollableResults.setFetchSize() - -commit 630f50fdcdb68dc30df93100b186653a79275540 -Author: Andrea Boriero -Date: Mon Jul 4 10:28:25 2022 +0200 - - Add missing entry for HHH-15316 to 6.1.0.Final changelog - -commit 7b8bf8b98eb7e4a029d713f9e1c19f397dc9e765 -Author: Gavin King -Date: Sat Jul 2 20:52:11 2022 +0200 - - minor changes to HQL docs - -commit a89d558485e2c5ba3e7863a6be7390c589285264 -Author: Gavin King -Date: Sat Jul 2 18:27:00 2022 +0200 - - tests for right/full join syntax - -commit c3e0bc44ba71d1ca08b1ae30d9ce2f310abe3ec5 -Author: Gavin King -Date: Sat Jul 2 18:26:47 2022 +0200 - - document right/full join syntax - -commit 6404704311c572a927f7ad2b6ef494893523b95b -Author: Gavin King -Date: Mon Jun 20 11:27:34 2022 +0200 - - HHH-15352 add ScrollableResults.setFetchSize() - -commit f1ca6d9e5e4e86da883b02d8b473d1cb11aa3447 (tag: 6.1.1) -Author: Hibernate-CI -Date: Fri Jul 1 12:18:25 2022 +0000 - - Post-steps for release : `6.1.1.Final` - -commit 81ea7a1a901ac11696c3245e94302dcde9d94137 -Author: Hibernate-CI -Date: Fri Jul 1 12:13:32 2022 +0000 - - Pre-steps for release : `6.1.1.Final` - -commit 9c660f7e0a6bf36db97c9754bb8086dcbed6f75f -Author: Christian Beikov -Date: Mon Jun 27 08:39:19 2022 +0200 - - HHH-15367 Lift embedded/id-class to-one selection limitation for from clause subqueries - -commit 7676af4023075a70da72d350925646cc17167b8e -Author: Andrea Boriero -Date: Fri Jul 1 10:09:54 2022 +0200 - - HHH-15331 Constructor expressions in the SELECT clause ignores attribute converter - -commit 1c9bd9516fb513edfd1b61e6dd78c93e697b6d7e -Author: Andrea Boriero -Date: Fri Jul 1 10:07:57 2022 +0200 - - HHH-15331 Add test for issue - -commit 1da894318c4291831cf3f34cf8f84dbaffe5f010 -Author: Christian Beikov -Date: Mon Jun 27 16:41:36 2022 +0200 - - HHH-15342 Inappropriate variation of HQL left join to SQL inner join - -commit 985467bcbabc084a1c2f4a41ac64eca90e353487 -Author: Andrea Boriero -Date: Wed Jun 22 15:27:58 2022 +0200 - - HHH-15342 Inappropriate variation of HQL left join to SQL inner join - -commit d553dea5a83c6a813b69c41ddc85597de3c3f527 -Author: Andrea Boriero -Date: Fri Jun 17 19:26:54 2022 +0200 - - HHH-15342 Add test for issue - -commit 115c6cdf27db10d9325f1ae5d2488951ba154a4d -Author: Andrea Boriero -Date: Tue Jun 28 12:39:27 2022 +0200 - - HHH-15369 UnknownTableReferenceException when two subclasses have same field with different type - -commit 9f288c3520b2c2478fa4b1ea118cd3bb7d562d0e -Author: Andrea Boriero -Date: Tue Jun 28 12:38:54 2022 +0200 - - HHH-15369 Add test for issue - -commit fcabfa400a339ac08a8b764f3324b0cf5462d6ca -Author: Andrea Boriero -Date: Mon Jun 27 11:25:01 2022 +0200 - - HHH-15358 @Where annotation with globally_quoted_identifiers causes Unable to determine TableReference Exception - -commit c39ccfd8eb9581701f94d8d21b5a17bc1deb0b30 -Author: Andrea Boriero -Date: Fri Jun 24 10:35:16 2022 +0200 - - HHH-15358 Add test for issue - -commit ba48130c3f58acf64fa7069205f67a68eeb747ba -Author: Gavin King -Date: Sat Jun 18 00:41:19 2022 +0200 - - remove exclamation marks from error messages! - -commit bb29e3b060109e5965b8a62a513c859f5fc09cfa -Author: Gavin King -Date: Fri Jun 24 15:48:41 2022 +0200 - - document root joins - -commit f5be0e1f07c70be738d523fc13f8fa0435e60914 -Author: Andrea Boriero -Date: Wed Jun 22 19:03:12 2022 +0200 - - HHH-15346 @ManyToOne associations not loaded correctly with default EAGER and batch fetch property set - -commit a70150fe2eda1d509d29b2d85544396cf0fabc17 -Author: Andrea Boriero -Date: Wed Jun 22 17:10:05 2022 +0200 - - HHH-15346 Add test for issue - -commit a8318fdfb9ca4e391ef210de3b3127938caad158 -Author: Andrea Boriero -Date: Thu Jun 23 14:11:44 2022 +0200 - - HHH-15354 Throw MappingException instead of NPE for hbm referencing unmapped class - -commit 48e3bf8381341c1d7727cc6be9a18bfe94e5a942 -Author: Andrea Boriero -Date: Thu Jun 23 14:09:46 2022 +0200 - - HHH-15354 Add test for issue - -commit 0777f7941cf5546456af80918eda1e8258b80599 -Author: Christian Beikov -Date: Fri Jun 24 00:02:22 2022 +0200 - - HHH-15361 Fix update assignment issues due to missing JavaType#isWider impls - -commit 0864ca58a3ed65a611903b8e0dff8da3bd156cfb -Author: Christian Beikov -Date: Thu Jun 23 23:09:11 2022 +0200 - - HHH-15360 Fix listagg rendering on older H2 versions - -commit 2b78f99ea8e2748caf75678844587f5c7b04cc2c -Author: Christian Beikov -Date: Thu Jun 23 20:21:05 2022 +0200 - - HHH-15357 Fix access to mapped by map key - -commit 9cff075a8952e06696c2f4a78a4efd7b6d15238e -Author: Christian Beikov -Date: Wed Jun 22 12:04:27 2022 +0200 - - HHH-15349 Fix rendering of EntityValuedPathInterpretation when comparing different model parts - -commit b3d0addaebd6a74e1da64e1c28f9973a312d37ac -Author: Christian Beikov -Date: Wed Jun 22 16:09:00 2022 +0200 - - Improve wording on code comment in PostgreSQLDialect - -commit 8e55dde3401213fa06b5d166905ca1e7e19d0598 -Author: Gavin King -Date: Sat Jun 18 13:00:42 2022 +0200 - - clean up some warnings - - mostly .instanceOf() calls - -commit 1eb75e22ef47d1588626e3dd4a954df4bb9dfb2a -Author: Gavin King -Date: Fri Jun 17 19:25:58 2022 +0200 - - improve language and formatting in new HQL doc sections - -commit 58da5f24f97111a0dc27ceb2818bf5a4d9e6ce41 -Author: Gavin King -Date: Fri Jun 17 18:45:28 2022 +0200 - - "sub query" -> "subquery" - - The word "sub" means "submarine", "submissive", or "substitute". - It's never an adjective. - -commit c163e1f2ed4322d9d9ce4240e24f1b89e0cad70b -Author: Gavin King -Date: Fri Jun 17 18:10:01 2022 +0200 - - minor clarifications to HQL chapter - -commit 941db3c37c71a3fa8be50152c5b390c64002485d -Author: Icemap -Date: Fri Jun 17 19:58:47 2022 +0800 - - HHH-15350 Delete Non-ASCII characters in an identifier class - -commit 2700b0a8cfca50997d5ac734753e268e386fb281 -Author: Christian Beikov -Date: Fri Jun 17 12:28:36 2022 +0200 - - HHH-15347 Use equals instead of identity check in NavigablePath#relativize - -commit d06eee0a5d84559f7807d5d6390f268c990b14e4 -Author: Christian Beikov -Date: Wed Jun 15 15:43:53 2022 +0200 - - HHH-15343 Fix NPE in type determination for case expression with null literal - -commit ff2cd561f5699b5b0b19f49de7f7b0db5c336062 -Author: Steve Ebersole -Date: Thu Jun 16 10:58:34 2022 -0500 - - HHH-15344 - Ability to apply testing annotations at method-level - - - `@SessionFactory` - -commit edc95df72aeaf6248e19a979983c161ca0fd1ddc -Author: Steve Ebersole -Date: Thu Jun 16 09:33:04 2022 -0500 - - HHH-15344 - Ability to apply testing annotations at method-level - - - `@ServiceRegistry` - - `@BootstrapServiceRegistry` - -commit 763d1764cdcbc460fbc97a8c0d0bf8133a36c92d -Author: Steve Ebersole -Date: Thu Jun 16 03:24:52 2022 -0500 - - HHH-15344 - Ability to apply testing annotations at method-level - - - `@DomainModel` - -commit 6c461a36749fbc005dc9be5e2e0482b967f4dfe7 -Author: Gavin King -Date: Tue Jun 7 19:41:14 2022 +0100 - - HHH-15001 Hibernate.size(), Hibernate.contains(), Hibernate.get() - - add @since tags - -commit 3cf6f2e3efad523be1aabfbac84e10d2f8d46dbe -Author: Christian Beikov -Date: Wed Jun 15 14:31:55 2022 +0200 - - HHH-15341 Disallow passing transient entity parameter values - -commit 04fd92b204aa23c04512d95e2f96f0f359385a3f -Author: Christian Beikov -Date: Wed Jun 15 12:13:03 2022 +0200 - - HHH-15339 Add foreign key part name as target key property name for fk optimization - -commit cc500d46e840c55f060f47bd88747320b74c3a01 -Author: Christian Beikov -Date: Wed Jun 15 09:49:37 2022 +0200 - - HHH-15338 Remember initial selection node alias in SqmSelection - -commit 6a227b5ee251ac00590866b71975940846492869 -Author: Christoph Dreis -Date: Fri Jun 10 20:30:14 2022 +0200 - - HHH-15325 Avoid allocations from BitSet.stream() in AbstractEntityPersister - -commit 4d070f24f92f62489cf75bd655bb2ffc1a8782e3 -Author: Andrea Boriero -Date: Tue Jun 14 16:48:14 2022 +0200 - - HHH-15324 Hibernate internally use Query#setHint with legacy java.persistence properties causing deprecation log warnings - -commit 9a5ee1a6dfa94bc1c48d70aa90b300a034a98b38 -Author: Christoph Dreis -Date: Tue Jun 14 11:50:53 2022 +0200 - - HHH-15329 Remove workaround for HHH-10382 in GetterFieldImpl - -commit f05d7e2e332dbcdd48cc32a627893c4ed16e12bb -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Tue Jun 14 10:41:43 2022 +0000 - - Bump com.gradle.common-custom-user-data-gradle-plugin - - Bumps com.gradle.common-custom-user-data-gradle-plugin from 1.6.5 to 1.7.2. - - --- - updated-dependencies: - - dependency-name: com.gradle.common-custom-user-data-gradle-plugin - dependency-type: direct:production - update-type: version-update:semver-minor - ... - - Signed-off-by: dependabot[bot] - -commit 419f5669dd14715075e1647c645f1090dddfc4fa -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Mon Jun 13 05:25:49 2022 +0000 - - Bump com.gradle.enterprise from 3.8 to 3.10.2 - - Bumps com.gradle.enterprise from 3.8 to 3.10.2. - - --- - updated-dependencies: - - dependency-name: com.gradle.enterprise - dependency-type: direct:production - update-type: version-update:semver-minor - ... - - Signed-off-by: dependabot[bot] - -commit ed1cea6ba1838812d860f875bee171eb62e27b33 -Author: Christian Beikov -Date: Thu Jun 9 20:19:21 2022 +0200 - - Handle insert-select for entities with generators that do not support bulk insertion - -commit 49e9696ced33ebf068f1ef082e4e0e6ab82a26ed -Author: Jan Schatteman -Date: Fri Jun 10 18:52:21 2022 +0200 - - Temporarily disabled InsertSelectTests and dropped the removeDescriptor method from DdlTypeRegistry again, since it will not be needed after all - - Signed-off-by: Jan Schatteman - -commit c60fbc20ec0e093cd72f5e3ce873c65d42589913 -Author: Gavin King -Date: Thu Jun 9 18:56:08 2022 +0200 - - documentation for hibernate.enable_lazy_load_no_trans - -commit e26237dc0b65b2c22ff48e8a6047d1b866061132 -Author: Jan Schatteman -Date: Thu Jun 9 19:07:53 2022 +0200 - - Added a method for removing DdlTypes from the DdlTypeRegistry (intended for internal use) - - Signed-off-by: Jan Schatteman - -commit b2fe35c297c511379fda1fc8d41ca5c40d6fb9fd -Author: Yoann Rodière -Date: Thu Jun 9 17:24:52 2022 +0200 - - Add missing space between Gradle arguments when passing --enable-preview to the test launcher - -commit 62e2fbb3b148ab9a956c21eee9b2e11049a72f3f -Author: Yoann Rodière -Date: Thu Jun 9 14:41:39 2022 +0200 - - Use --enable-preview when testing against JDK 19 - -commit f46d61b6e76dd05981b06708b0e1f03ecba32492 -Author: Yoann Rodière -Date: Thu Jun 9 14:46:09 2022 +0200 - - Allow passing test launcher args through project properties - -commit 075eb515006f52971c678a5be2cb52536691782e -Author: Yoann Rodière -Date: Thu Jun 9 14:25:35 2022 +0200 - - Always build main code with JDK 11 in Jenkinsfile - - So that we test ORM with the main bytecode as close as possible to - actual releases. - - This is what we do in other projects (Search, Validator, Reactive). - -commit 49f3345d159d74f8133a9c5ef350c8cbadf31f9e -Author: Yoann Rodière -Date: Thu Jun 9 14:17:49 2022 +0200 - - Simplify Jenkinsfile with Groovy Properties and named parameters - -commit 180089b542506efb0e51e80d36f9a57c2b8a64db -Author: Steve Ebersole -Date: Wed Jun 8 17:32:52 2022 -0500 - - HHH-15314 - Hibernate Gradle plugin is not working for Kotlin projects - -commit fd7cca8fdc5c56ff9919c797f0cff1cfbc5fb5f9 -Author: Steve Ebersole -Date: Wed Jun 8 16:28:15 2022 -0500 - - HHH-15314 - Hibernate Gradle plugin is not working for Kotlin projects - -commit 76055475dab1dbc8647afc5503aded5c724a4fd5 -Author: Steve Ebersole -Date: Wed Jun 8 07:39:10 2022 -0500 - - HHH-15314 - Hibernate Gradle plugin is not working for Kotlin projects - -commit 2ef7bd42bf8bda14dc9143b4afbd996b66ba136f -Author: Steve Ebersole -Date: Wed Jun 8 00:52:30 2022 -0500 - - HHH-15314 - Hibernate Gradle plugin is not working for Kotlin projects - -commit 43aec7e8ea9aa4f68c45ebe0039d64ee9dcebec4 -Author: Steve Ebersole -Date: Wed Jun 8 00:46:29 2022 -0500 - - Revert "HHH-15314 - Hibernate Gradle plugin is not working for Kotlin projects" - - This reverts commit f2613913729a99e8c41bcfedc694559579f7b370. - -commit acb1989138e876ff1a451f452467949c30b901d9 -Author: Steve Ebersole -Date: Wed Jun 8 00:43:27 2022 -0500 - - HHH-15314 - Hibernate Gradle plugin is not working for Kotlin projects - -commit fad9db67b04b026f09e0f42852a5a195ee269b6f -Author: Jan Schatteman -Date: Tue Jun 7 23:41:59 2022 +0200 - - Disable HibernateOrmPluginTest.testJpaMetamodelGenUpToDate() test for now (as was intended). - - Signed-off-by: Jan Schatteman - -commit 99a9078bbd23ca2f68fa2dbfe75bbab7a737f8f7 -Author: Steve Ebersole -Date: Tue Jun 7 05:58:54 2022 -0500 - - release doc - -commit 6ac624a84b85558e333fcaf321779dfd53407a3f -Author: Steve Ebersole -Date: Mon Jun 6 20:22:20 2022 -0500 - - HHH-15314 - Hibernate Gradle plugin is not working for Kotlin projects - -commit 9b934f6fb00cc9859cfd1ed48e7557e02c1e35a9 (tag: 6.1.0) -Author: Hibernate-CI -Date: Tue Jun 7 09:12:37 2022 +0000 - - Post-steps for release : `6.1.0.Final` - -commit 3a0e9f1c615cced485793272d89794c5a9212513 -Author: Hibernate-CI -Date: Tue Jun 7 09:08:23 2022 +0000 - - Pre-steps for release : `6.1.0.Final` - -commit 0adbf40c49cdbb5d478a5be34ba446c1f4294209 -Author: Steve Ebersole -Date: Mon Jun 6 14:39:22 2022 -0500 - - HHH-15316 - Session.createQuery() doesn't accept JpaCriteriaInsertSelect - -commit 341267b1336820be6e4ffbfe98856cc344faae85 -Author: Christian Beikov -Date: Thu Jun 2 16:09:44 2022 +0200 - - HHH-3356 Support for normal and lateral subquery in from clause - -commit 4947af946a05f20676183b3c7ca9d61d76f3e616 -Author: Jan Schatteman -Date: Wed Jun 1 18:53:15 2022 +0200 - - Add an optional getMinimumSupportedVersion() to Dialect, for validation purposes - - Signed-off-by: Jan Schatteman - -commit a488e1a269526f21213400f4a848875407fcf547 -Author: Steve Ebersole -Date: Tue May 31 06:31:39 2022 -0500 - - minor doc fix-up - -commit b7dca12e702e8ab96637771960b461585ef689e4 -Author: Christian Beikov -Date: Thu May 19 15:16:13 2022 +0200 - - HHH-15288 Switch to SMALLINT as recommended type for enums - -commit 497c09cddb439c98781ef3532e331c100f320dcf -Author: Christian Beikov -Date: Mon May 30 17:06:55 2022 +0200 - - HHH-10999 Remove configuration setting for configuring the JDBC type for arrays - -commit 45fc49314e8004d41c556f1c89347b7fcbec32a4 -Author: Christian Beikov -Date: Tue Apr 5 20:45:38 2022 +0200 - - HHH-10999 Add support for SQL array types mapped as Java arrays and collections - -commit 39d8fa0662e1b56a6dc1ed895a31f1aea39fde89 -Author: Karel Maesen -Date: Fri May 27 16:22:06 2022 +0200 - - HHH-15294 cockroachdb fixes - - * HHH-15294 Fix setting of untyped null values in CockroachDB dialect - - Solution exactly same as in PostgresqlDialect - - * HHH-15294 Change CockroachDB multitable mutation strategies to CTE - - Align with the Postgresql strategy - - * HHH-15294 Fix missing IdentityColumnSupport in CockroachDB Dialect - - * HHH-15294 Skip test for CockRoachDB due to unsupported automatic type conversion - - * HHH-15294 CockroachDB doesn't support value propagation - -commit 3d893712e698bd486adfb00cdc740d930f744561 -Author: koisyu -Date: Thu May 26 17:42:53 2022 +0900 - - HHH-15300 - Lazy evaluation to statement.toString() when logging slow queries - -commit 3635e4e935ff5fe40484c144b933aa5a7cc2e2c8 -Author: Steve Ebersole -Date: Wed May 25 14:14:48 2022 -0500 - - build changes - -commit 19f513dde2d63ae807257ac786b56650122b4098 -Author: Steve Ebersole -Date: Wed May 25 08:40:26 2022 -0500 - - HHH-15251 - Unified mapping XSD based on JPA 3.1 - - - more work on HbmXmlTransformer - -commit 309edd9e32c45f968d54048be964e256b9d0b080 -Author: Steve Ebersole -Date: Wed May 25 00:06:28 2022 -0500 - - HHH-15251 - Unified mapping XSD based on JPA 3.1 - - - more work on HbmXmlTransformer - -commit 7b9931f10684cdd62adebea1dfcc2ad4699cb288 -Author: Yoann Rodière -Date: Wed May 25 10:59:42 2022 +0200 - - Add missing entry to changelog - -commit d5a23a61ea4797e70304f272d3d1fcc2ee83c3a4 -Author: Steve Ebersole -Date: Tue May 24 14:42:05 2022 -0500 - - HHH-14063 - AccessType is not correctly propagated for embeddable mappings in element-collection - - - tests - -commit 4ddf6e39b57850b6657de557bac28994597079ee -Author: Steve Ebersole -Date: Tue May 24 12:08:07 2022 -0500 - - HHH-15251 - Unified mapping XSD based on JPA 3.1 - - - more work on HbmXmlTransformer - -commit 8f5c7881ff08feabd4157984d5b8b36567ba9f4b -Author: Andrea Boriero -Date: Mon May 23 17:50:26 2022 +0200 - - HHH-15281 INSERTs/UPDATEs no longer executed as JDBC Batch statements if hibernate.temp.use_jdbc_metadata_defaults is set to false - -commit 11b8352f135fb7c7153cdd2368c631c1738c4a46 -Author: Andrea Boriero -Date: Mon May 23 17:49:11 2022 +0200 - - HHH-15281 Add test for issue - -commit 30d896a19a9ac73578ddab9795a5a662097b3982 -Author: Andrea Boriero -Date: Tue May 24 11:53:26 2022 +0200 - - HHH-15297 Invalid Automatic-Module-Name org.hibernate.orm.community-dialects - -commit 9a26f2503bca3a7b1ec28a521f1a92238fd39a34 -Author: Steve Ebersole -Date: Sun May 22 10:46:00 2022 -0500 - - HHH-15276 - Introduce ConverterRegistration - -commit 571d46bef883eba3f480c3234f36d538e20ae1de -Author: Steve Ebersole -Date: Fri May 20 11:22:47 2022 -0500 - - HHH-15276 - Introduce ConverterRegistration - -commit d73a5cde389ad358202c5ebe4f55d7257a74e4b7 -Author: Christian Beikov -Date: Mon May 23 15:24:31 2022 +0200 - - Let test helper collect all annotation to produce a full union - -commit 087b9d83ff46b26701d0193e05243fa906bc34d6 -Author: Nathan Xu -Date: Wed May 11 09:25:37 2022 -0400 - - HHH-15010 - update Java type list for '@CreationTimestamp' and '@UpdateTimestamp' in user guide - -commit 6409db767d40fe685b54768553feedcad8351b07 -Author: Andrea Boriero -Date: Thu May 19 18:01:14 2022 +0200 - - HHH-15286 Query with a Composite Identifier (@IdClass) throws an exception - -commit 00e8506a131e6209018ddd4ad4f38b8020035397 -Author: Andrea Boriero -Date: Thu May 19 18:00:44 2022 +0200 - - HHH-15286 Add test for issue - -commit cb93dc7876b8d49e589b206228c3912ecd495b61 -Author: Christian Beikov -Date: Mon May 23 11:47:38 2022 +0200 - - HHH-15291 Fix translation issue with SqmCoalesce - -commit f2446e2ce572fc7bbfdde28d8d87a0bc67ebc529 -Author: Christian Beikov -Date: Mon May 23 11:35:40 2022 +0200 - - Workaround XJC generation issue - -commit 81d749e93066e720a2779976c99348a2cb14bcec -Author: Andrea Boriero -Date: Wed May 18 14:58:45 2022 +0200 - - HHH-15279 NPE with Id on OneToOne referencing entity with multi-level EmbeddedId - -commit 4066fe0445480a0f0131340d02386a0c31f19c66 -Author: Andrea Boriero -Date: Wed May 18 14:58:19 2022 +0200 - - HHH-15279 Add test for issue - -commit e05b99658f83da14b7a5a3dd4d99a43a16894384 -Author: Karel Maesen -Date: Sat May 21 17:55:46 2022 +0200 - - HHH-15293 BYTES column type in CockroachDB does not support a length specification - -commit 566a543d779acc4a577f84f49357517281953135 -Author: Nathan Xu -Date: Fri May 20 19:04:30 2022 -0400 - - HHH-15292 escape html chars in JavaDoc - -commit 5ba119389075e83a13bdaa75ed316400ee0cddd4 -Author: Andrea Boriero -Date: Thu May 19 12:04:01 2022 +0200 - - HHH-15283 - fix NPE for NamedNativeQuery + SqlResultSetMapping (columns) - -commit 583a36902c9c6144a6173327358f0b099f44867c -Author: Nathan Xu -Date: Tue May 10 22:57:51 2022 -0400 - - HHH-15283 - fix NPE for NamedNativeQuery + SqlResultSetMapping (columns) - -commit e0f1a2ee138832e67e449fc08eb144d18abf6f14 -Author: Andrea Boriero -Date: Mon May 23 09:36:10 2022 +0200 - - HHH-15258 Fix test failure for HANA db - -commit 26dbafb2b39cb40e1843660a0ab1d107ef63e5b4 -Author: Steve Ebersole -Date: Mon May 9 19:33:30 2022 -0500 - - HHH-15251 - Unified mapping XSD based on JPA 3.1; - - - `mapping-3.1.0.xsd` - - JAXB model for `mapping-3.1.0.xsd` - - Overriding caching (region, usage, include) via partial mapping document - - Initial hbm.xml -> mapping.xml transformation support - - Gradle task for performing transformations - -commit b88094e70a1644455e38085d7d8d7c33f3f606c5 -Author: Andrea Boriero -Date: Thu May 19 16:41:07 2022 +0200 - - HHH-15285 Calling getJavaType() of @ElementCollection with basic types returns wrong type - -commit 192b591c5120145e76c49ab338254e5a9d33f59f -Author: Andrea Boriero -Date: Thu May 19 16:40:12 2022 +0200 - - HHH-15285 Add test for issue - -commit 2af19a627838566caa37e631cbf0224a8b34f8c9 -Author: Andrea Boriero -Date: Tue May 10 12:17:59 2022 +0200 - - HHH-15258 Orphan removal for OneToMany relations is broken when used with GenerationType.IDENTITY - -commit 1a94bcc4a2ea997a768eabf9c3862f9085ab79ba -Author: Nathan Xu -Date: Mon May 9 20:28:37 2022 -0400 - - HHH-15258 Add test for issue - -commit e29884b7647fbc4fda08103bf6f0c3d0d2b39c92 -Author: Andrea Boriero -Date: Tue May 10 16:27:35 2022 +0200 - - HHH-15260 Criteria query is unable to determine TableReference when combining subquery with join - -commit f0cb0e8f7869849b76999fdb4dfec668bf17164a -Author: Thomas Heigl -Date: Mon May 9 18:48:22 2022 +0200 - - HHH-15260 Add test for issue - -commit a12ca1f100c1bba77de1307cd96dcbfb27dcec15 -Author: Andrea Boriero -Date: Mon May 9 15:55:13 2022 +0200 - - Copy only the content of the documentation staging directory - -commit 298623d2ccb53692eb63c2f350345e3f7abe0b42 -Author: Andrea Boriero -Date: Wed May 18 11:27:24 2022 +0200 - - MysqlDialect register localtimeLocaltimestamp functions - -commit 1ae61b33885d316b933e10ac614b8adcd6b442ef -Author: Andrea Boriero -Date: Tue May 17 12:03:22 2022 +0200 - - HHH-15278 NPE when NULL is used in the projection - -commit 3251d5e9d017260b7e94c5650d16239d1af1d649 -Author: Andrea Boriero -Date: Tue May 17 12:00:07 2022 +0200 - - HHH-15278 Add test for issue - -commit e87ad39dd6376c131bfa9574996e38cf1ff742c0 -Author: Nathan Xu -Date: Wed May 11 21:17:53 2022 -0400 - - HHH-15153 - @OneToOne does not support @EmbeddedId - -commit 7b2e93fa175c87f6c3633ff808a19a243dbbab95 -Author: Andrea Boriero -Date: Mon May 16 12:11:48 2022 +0200 - - Gradle created a preVerifyRelease task - -commit 61586d9559e1e173d280a101c8c021a8f0da2fda -Author: Andrea Boriero -Date: Mon May 9 14:55:51 2022 +0200 - - HHH-15256 HQL Query with left join throws NPE when using :param IS NULL - -commit 747777167c53f3cb1b3961f7f3e5ab2e02a8b7c9 -Author: Andrea Boriero -Date: Mon May 9 14:46:57 2022 +0200 - - HHH-15256 Add test for issue - -commit 5d6e9a1fdb6405c2a31c5b04814e36d8ab05624b -Author: Nathan Xu -Date: Fri May 6 22:24:49 2022 -0400 - - HHH-15255 fix org.hibernate.orm.test.batch.BatchTest - -commit d03588fd29655dd1a396512e1a20c1a805115c94 -Author: Sven Strickroth -Date: Mon May 9 16:54:29 2022 +0200 - - [HHH-15259] Explicitly add JavaDoc to make @deprecated hint visible in Eclipse - - Signed-off-by: Sven Strickroth - -commit 22074e3dcb9307c9914207f2a5ebd62690b70acc -Author: Andrea Boriero -Date: Fri May 13 14:56:00 2022 +0200 - - HHH-15269 Update NativeQuery unable to use h-schema placeholder, just emits placeholder contents into SQL - -commit bd27a7068523ca0465ef0578e8aa2f10a9922a2d -Author: Andrea Boriero -Date: Fri May 13 14:54:35 2022 +0200 - - HHH-15269 Add test for issue - -commit b37168a0fff02cfca8b0bb66ab2044be6ed88491 -Author: Francesco Marino -Date: Thu Apr 7 01:28:57 2022 +0200 - - HHH-15134 Update a bytecode enanchhed Entity with a Version attribute causes OptimisticLockException - -commit f2ac89a48447f8e25efe7251aab6ce7258ec20b5 -Author: Sanne Grinovero -Date: Sat May 14 17:07:21 2022 +0100 - - HHH-15274 Field LazyAttributeLoadingInterceptor#lazyFields can never be null - -commit 8e78a61bccca6cba91b5b684a19a1afefdd8d56b -Author: Sanne Grinovero -Date: Sat May 14 17:05:51 2022 +0100 - - HHH-15274 Optimise LazyAttributeLoadingInterceptor's routines to identify lazy fields - -commit 3630fbad9b33ff54009cef40cc00ba8cbe3884e7 -Author: Nathan Xu -Date: Tue May 10 22:57:51 2022 -0400 - - HHH-15263 - @NamedQuery is not supported with UPDATE statement - -commit 9d35e3dd18c48c567e7a6f3c0c07e7b59bb4c37f -Author: Christian Beikov -Date: Fri May 13 13:39:11 2022 +0200 - - HHH-15267 Make ParameterBindingsMemento extend Serializable so that cache keys can be serialized - -commit 9351bcf30d3c1fd6e248d5984c9f1ba968cf8d23 -Author: Christian Beikov -Date: Fri May 13 13:05:21 2022 +0200 - - HHH-15266 Fix NPE during function logging due to wrong character_length alternative key registration - -commit 967ede47c0c0728e60a3cea805da6f348b321620 -Author: Yoann Rodière -Date: Fri May 13 11:26:17 2022 +0200 - - HHH-15265 Take default catalog/schema into account when generating DDL comments - -commit de4439ca0c092aa923cc47760000d374dd2bb228 -Author: Yoann Rodière -Date: Fri May 13 10:21:05 2022 +0200 - - HHH-15265 Test that default catalog/schema are taken into account in generated DDL comments - -commit 3aada5730589a72112ff2e9a963ea43da63c2477 -Author: Yoann Rodière -Date: Fri May 13 10:19:59 2022 +0200 - - HHH-15270 Fix inconsistent precedence of orm.xml implicit catalog over "default_catalog" in XML-mapped entities - -commit 141ad167ee5e1f2b0e4f5660a102297781fb177f -Author: Yoann Rodière -Date: Fri May 13 09:52:56 2022 +0200 - - HHH-15270 Test default catalog/schema with hbm.xml/orm.xml mapping when catalog/schema not specified at file level - -commit 1046828b7d364605b7d4dde7db8f1912e3fc4528 -Author: Christian Beikov -Date: Thu May 12 12:44:38 2022 +0200 - - Prepare Jenkinsfiles for TCK runs to be multi-branch friendly - -commit 604150fe47b19a0668f2f82fbe8b01ae3e5cc8f5 -Author: Christian Beikov -Date: Thu May 12 10:47:27 2022 +0200 - - Hopefully fix job configuration file reading and remodel trigger and concurrent execution of snapshot publish job - -commit 0b0b4fbdec3fd9ac521a1c007dbb865ada4a5898 -Author: Christian Beikov -Date: Thu May 12 10:34:14 2022 +0200 - - Hopefully fix job configuration file reading - -commit 2171a11762ec2848f02a12d84cc5950639cb1ea2 -Author: Christian Beikov -Date: Thu May 12 09:30:21 2022 +0200 - - Hopefully fix job configuration file reading - -commit d5bcca655e53753451f3d9237d90fc6d91defede -Author: Christian Beikov -Date: Thu May 12 09:24:46 2022 +0200 - - Fix snapshot publish configuration file reading - -commit 9adc0f2e040f753ba7e3e73400869e919fa9f7bc -Author: Christian Beikov -Date: Thu May 12 09:11:30 2022 +0200 - - Correct job helper import - -commit 1235a6e3c7523dc07148e3fa297c5ec681f1322c -Author: Christian Beikov -Date: Thu May 12 09:10:01 2022 +0200 - - Use notification mechanism of job helper plugin for snapshot publishing - -commit 8225ab1f9b07e3f5a315e11c639b11daf7bbf0d5 -Author: Steve Ebersole -Date: Wed May 11 20:36:48 2022 -0500 - - Minor changes to signing and build logging cleanup - -commit 49734095da87c2636ba2f88b96ec4c9154311d54 -Author: Steve Ebersole -Date: Wed May 11 16:00:20 2022 -0500 - - Javadoc - -commit 330d4312c9dd5b12782575bfa9a489d83aeea283 -Author: Christian Beikov -Date: Wed May 11 17:06:44 2022 +0200 - - Add Jenkins pipeline for publishing snapshots - -commit 829bbaad60bb993717c2dde510838c3725bfe9d4 -Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> -Date: Fri May 6 17:17:06 2022 +0000 - - Bump com.gradle.common-custom-user-data-gradle-plugin - - Bumps com.gradle.common-custom-user-data-gradle-plugin from 1.4.2 to 1.6.5. - - --- - updated-dependencies: - - dependency-name: com.gradle.common-custom-user-data-gradle-plugin - dependency-type: direct:production - update-type: version-update:semver-minor - ... - - Signed-off-by: dependabot[bot] - -commit e26eb667ee0189d10bca7f29d60ad72978811405 -Author: Christian Beikov -Date: Tue May 10 10:12:03 2022 +0200 - - Switch main to 6.1.0-SNAPSHOT - -commit 5b580106ba0ef0252ec9058f97d3776d6ac7c1ca -Author: Jerome Prinet -Date: Fri May 6 15:40:08 2022 +0200 - - Remove open-pull-requests-limit setting - -commit 74588fc29e5c5b4459fcd53df349b09a2de14335 -Author: Jerome Prinet -Date: Fri May 6 10:10:01 2022 +0200 - - Add dependabot configuration to monitor Gradle plugins - -commit dca3695a1df5cfc56454e3690461352b7a51e603 (tag: 6.0.1) -Author: Hibernate-CI -Date: Fri May 6 16:47:20 2022 +0000 - - Post-steps for release : `6.0.1.Final` - -commit f50460baa5e25a02bd032bc7f59e298d593123b2 -Author: Hibernate-CI -Date: Fri May 6 16:43:13 2022 +0000 - - Pre-steps for release : `6.0.1.Final` - -commit fd37bb93d5bc516f1f109310e7180fc9975a1920 -Author: Andrea Boriero -Date: Fri May 6 18:41:48 2022 +0200 - - gradle fix upload documentation server url - -commit c02440eb8e8b1bcc3a07bd9ae6df4fbd92a4338d -Author: Andrea Boriero -Date: Fri May 6 18:34:35 2022 +0200 - - Fix issue with gradle upload documentation task - -commit 3ef306b7e3c86f5f9bfd957b5b7b32131c3d95b6 -Author: Andrea Boriero -Date: Fri May 6 18:24:31 2022 +0200 - - Gradle add Jackson xml lib to javadocClasspath - -commit 26cd9d27ff6fb000fc4145bc02188390e12b20a7 -Author: Andrea Boriero -Date: Fri May 6 16:52:11 2022 +0200 - - Fix doc descriptor server url - -commit 81d6fef3451a5d2c413da07f7edb1c8d3f4913e4 -Author: Andrea Boriero -Date: Fri May 6 16:00:27 2022 +0200 - - gradle doc publishing add --delete option to rsync - -commit 1bd4d572b49edc92ec9df36e9d9281b4658d1012 -Author: Andrea Boriero -Date: Fri May 6 15:46:19 2022 +0200 - - Gradle publishing use rsync instead of scp - -commit c43fa6b4d9be8235f8d34e450fae7cedb87acd25 -Author: Steve Ebersole -Date: Thu May 5 11:44:34 2022 -0500 - - Fix signing of published artifacts - - - for explicit signing, current form only works if the full task name/path is used from the command line, rather that Gradle's handling for tasks "short cuts". E.g., this works :`gradlew signPublishedArtifactsPublication`; but this does not: `gradlew sign` - -commit 29848043b65a7189b288740447bc6f75f25d960d -Author: Andrea Boriero -Date: Tue May 3 17:39:51 2022 +0200 - - HHH-15229 Query returns null for broken foreign key reference and NotFoundAction.EXCEPTION - -commit 0ce120a344d99b474dbec82fabbac8791a1fb2b1 -Author: Andrea Boriero -Date: Tue May 3 17:38:05 2022 +0200 - - HHH-15229 Add test for issue - -commit 19f6959519d41e0a29edd893d3ffc77fdbe05e57 -Author: Ptits de Barbe -Date: Fri Oct 4 13:01:14 2019 +0300 - - HHH-4384 Allow join column override if @JoinColumn is absent on @OneToOne(mappedBy = ""). - - Tests: this case and disallow if mappedBy > "". - -commit d998d6fb48637d83c094b1bab21ece1de04ec279 -Author: Nathan Xu -Date: Sat Apr 30 13:33:45 2022 -0400 - - HHH-15241 fix broken references in javadoc - -commit 691ee7bf5d4aeb3fa460abb935dbec3a3b8ffabf -Author: Nathan Xu -Date: Tue May 3 17:20:40 2022 -0400 - - HHH-15246 fix NPE when null value is set to Enum in query - -commit a961ba45acc591a1a448d019c31f518cfc266963 -Author: Christian Beikov -Date: Wed May 4 12:57:51 2022 +0200 - - Add documentation for CompositeUserType - -commit c18e611ed6786fd62a6bf2d17c39589c2452fe35 -Author: Christian Beikov -Date: Tue May 3 15:22:56 2022 +0200 - - HHH-15200 Add support for the SQLXML type - -commit d0b7d7f4b53bf452aaa023eb3fd9e8119d0b5543 -Author: Sanne Grinovero -Date: Tue May 3 11:45:00 2022 +0100 - - HHH-15244 Upgrade to HCANN 6.0.1.Final - -commit 95cc3c2135b353516f37a024b6c4cf8cebe44f56 -Author: Christian Beikov -Date: Mon Apr 25 10:24:31 2022 +0200 - - HHH-15165 Add abstract GIS base types to reduce code duplication - -commit 51c40cd6a1fff435f00a2cd0bdd09a1d6de6cfdc -Author: Christian Beikov -Date: Tue Apr 5 11:37:38 2022 +0200 - - HHH-15165 Add support for SQL geography type - -commit 9e69f5fd4cfc1ff9934e7fde0fbaed55fb02e510 -Author: Karel Maesen -Date: Tue May 3 21:48:00 2022 +0200 - - HHH-15245 update the CockroachDB docker config - - Applied recommended CockroachDB settings for single-node testing. - -commit 93f1c0401d3f6a71f171fa1dd76bad4e0133624a -Author: Karel Maesen -Date: Tue May 3 20:57:12 2022 +0200 - - HHH-15245 fix test regression - -commit 64c39691fff22c1cf474ac817c9df8ce6c07b48c -Author: Nathan Xu -Date: Fri Apr 15 11:12:57 2022 -0400 - - HHH-15211 fix embeddable basic attribute converter hash code bug - -commit 1946aea068877dc998836e3f4695d09ad91a38e7 -Author: Nathan Xu -Date: Fri Apr 15 11:10:20 2022 -0400 - - HHH-15211 add testing case - -commit 6a778a321ab1376bd4cda53bc91c718eb873a61e -Author: Andrea Boriero -Date: Mon May 2 14:09:39 2022 +0200 - - HHH-15240 Defining a UserVersionType causes AssertionError from VersionResolution if running in JVM with -ea flag set - -commit 6b02554c82c69ee54764bf0d8f8baddb2c8d5c82 -Author: Andrea Boriero -Date: Mon May 2 14:08:15 2022 +0200 - - HHH-15240 Add test for issue - -commit 79adc41918d7538a96d70293cc5d963410da310f -Author: Nathan Xu -Date: Sun May 1 20:55:40 2022 -0400 - - HHH-15224 update the module list in "getting started guide" - -commit 8af615386fb0c6b949411ca4b6333efd89930734 -Author: Nathan Xu -Date: Mon May 2 12:28:32 2022 -0400 - - HHH-15154 tweak verbiage in user guide on FetchMode.SUBSELECT - -commit 5f0c215d6dc818127e963d5c95b8fc348cb6a260 -Author: Andrea Boriero -Date: Thu Apr 28 18:14:34 2022 +0200 - - HHH-14843 Add test for issue - -commit ef443b11ad23898832d85144b3502e018956bcfe -Author: Hirosato Hano -Date: Sat Apr 30 03:16:21 2022 +0900 - - HHH-15238 - Documentation: update JDBC logging configuration for 6.0 - -commit b469c73d1ee0713a705097f8b36898b4c0879073 -Author: Nathan Xu -Date: Sun May 1 18:03:22 2022 -0400 - - HHH-15232 fix a bug when empty entity collection is provided for a query parameter - -commit 049a61479bcb039a0830228f7ac5675034ba362f -Author: Nathan Xu -Date: Fri Apr 29 20:46:24 2022 -0400 - - HHH-15239 add 5.6 link in user guide after v6 became the new "current" - -commit 9e6e618caf9c16b134259b36efba6a0c666e9b51 -Author: Steve Ebersole -Date: Fri Apr 29 15:55:45 2022 -0500 - - 6.0.1 release - -commit e2258b3232e5924d637ee824679bd16abba68b51 -Author: Steve Ebersole -Date: Fri Apr 29 14:57:36 2022 -0500 - - HHH-15150 - EmbeddedId CacheKeys are no longer Serializable - -commit 6c5870ee0b541010c8c46a8226017b831f819f53 -Author: Andrea Boriero -Date: Wed Apr 27 11:59:46 2022 +0200 - - HHH-15150 EmbeddedId CacheKeys are no longer Serializable - -commit 1194e7f23b4ae4a8acd62bbe850d02aa564b126f -Author: William Burns -Date: Mon Mar 28 13:52:15 2022 -0400 - - HHH-15150 Add test for issue - -commit 5d0fc0f48804ccab1d39343fc75e54b96bd23ecd -Author: Andrea Boriero -Date: Fri Apr 29 15:44:49 2022 +0200 - - HHH-15233 Query NPE when using ':param IS NULL' and the parameter is an Entity - -commit d4f03109c868155a33d5ca98070aa334b97a7c22 -Author: Andrea Boriero -Date: Fri Apr 29 15:34:46 2022 +0200 - - HHH-15233 Add test for issue - -commit 5c12f7a951d10395137e27c439af039bdd55678c -Author: Steve Ebersole -Date: Fri Apr 29 13:39:49 2022 -0500 - - HHH-15201 - Composite ID with dynamic-map entities fails with an exception - -commit aa6bb1481caeee6c690dce5494a6edc04265cf8a -Author: Andrea Boriero -Date: Fri Apr 29 17:48:53 2022 +0200 - - HHH-15201 Composite ID with dynamic-map entities fails with an exception - -commit 03410ac24e6634e9ae46d2d1c5021987cea671c4 -Author: Andrea Boriero -Date: Fri Apr 29 17:47:12 2022 +0200 - - HHH-15201 Add test for issue - -commit a39bf55a653c3a55e72b012d965b05898c2ad538 -Author: Steve Ebersole -Date: Mon Apr 25 09:08:23 2022 -0500 - - HHH-15236 - Fix signing of published artifacts - -commit a2e39a175758170555bef5c8ed34b8ebe2f300f5 -Author: Nathan Xu -Date: Fri Apr 15 23:28:24 2022 -0400 - - HHH-15220 Fix typos - -commit 502c6610e25f2785df8dc6faf28eecf1d6e2ef38 -Author: Nathan Xu -Date: Thu Apr 21 02:57:59 2022 -0400 - - HHH-15221 Fix a logging error in JdbcValuesCacheHit.java - -commit 2b501c820d687fd6b29297a9cc61bcdc4494efff -Author: Sanne Grinovero -Date: Fri Apr 29 10:30:13 2022 +0100 - - HHH-15237 Upgrade to Agroal 2.0 - -commit a057a045d46e85a0f437ed69b186fe3620ceb3cd -Author: Yoann Rodière -Date: Wed Apr 27 10:52:46 2022 +0200 - - HHH-15212 Test placeholders in auxiliary object SQL strings - -commit d28e30001386cad67703e78ef1d3943e7ad1c7bf -Author: Yoann Rodière -Date: Wed Apr 27 11:28:00 2022 +0200 - - HHH-15212 Fix SimpleAuxiliaryDatabaseObject ignoring the default catalog/schema set through configuration properties - -commit eab669f04ed755f76703fa054933c715e9973550 -Author: Jan Schatteman -Date: Wed Apr 13 22:26:41 2022 +0200 - - Some minor corrections to the docs - - Signed-off-by: Jan Schatteman - -commit 9e9a8135dc705a7fc5e5154e89fd11465f5f6589 -Author: Steve Ebersole -Date: Wed Apr 27 06:44:57 2022 -0500 - - HHH-15206 - Upgrade to ANTLR 4.10 - -commit 03384af94325537fba3ce11c0a2343524d098de5 -Author: Steve Ebersole -Date: Tue Apr 26 14:40:08 2022 -0500 - - More work on hibernate-platform and version catalog - -commit 69e57404c61faa2c5809144fe52a3a6fcbdc5992 -Author: Steve Ebersole -Date: Fri Apr 22 18:40:06 2022 -0500 - - HHH-15226 - Publish a Gradle platform (Maven Bom++) for Hibernate ORM - - - plus use Gradle version catalogs as opposed to `libraries.gradle` - - dropped OSGi manifest entries for hibernate-envers - they were broken and we decided we no longer support OSGi - -commit 5b85321bb94ee3caf9117e32a5d1874c21adb424 -Author: Andrea Boriero -Date: Fri Apr 22 14:51:28 2022 +0200 - - HHH-15225 Jta transactions, name queries with errors throw IllegalStateException instead of IllegalArgumentException when transaction is not active - -commit ae51ae9c31423723dd53c68688ba2c2928cd3f6e -Author: Andrea Boriero -Date: Fri Apr 22 14:48:54 2022 +0200 - - HHH-15225 Add test for issue - -commit 0592e1be776ceaa3d8783988d49cec18b82c74bd -Author: Andrea Boriero -Date: Mon Mar 28 20:10:56 2022 +0200 - - HHH-15142 add test for issue - -commit c58cd979d183e1fa9f4801f0db6f5c3abe946e16 -Author: Andrea Boriero -Date: Fri Apr 22 15:20:17 2022 +0200 - - HHH-15223 Embeddables in the Query Result, the embeddable instance returned by the query will not be in the managed state - -commit c0df74f0f3e7a59e8222642b9c4178334a0ccf44 -Author: Andrea Boriero -Date: Fri Apr 22 15:19:48 2022 +0200 - - HHH-15223 Add test for issue - -commit 32810698afb89298d6c8a914385da819d3c5a0d1 -Author: Christian Beikov -Date: Mon Apr 25 16:06:53 2022 +0200 - - Add logrotator to TCK Jenkinsfiles to delete old logs - -commit d83128ee856b8ee55cb6a2b49dc2d5b808c9eff2 -Author: Loïc LEFEVRE -Date: Wed Apr 13 13:24:27 2022 +0200 - - HHH-15210 Increase Oracle Dialect MaxIdentifierLength to 128 for 12.2+ - -commit 46b3c10d8f0ea0a91e86b58eace2d854c75706b2 -Author: Sanne Grinovero -Date: Thu Apr 21 09:55:29 2022 +0100 - - HHH-15219 Re-introduce the ability to stop and then reactivate a ServiceRegistry - -commit 8dcbed8d45ee2cca210b717f26273710b75ed6c0 -Author: Sanne Grinovero -Date: Thu Apr 21 16:37:42 2022 +0100 - - HHH-15222 Introduce a SessionLazyDelegator SPI - -commit c109650032d99720bde52da6009b7041c2f79ef7 -Author: Steve Ebersole -Date: Fri Apr 22 09:30:41 2022 -0500 - - Renamed `hibernate-orm-build` to `local-build-plugins` to be more visually distinguishable from the "real" `hibernate-` modules; - Moved the `local-build-plugins` inclusion inside the `pluginManagement {}` block per Gradle recommendations - -commit 92fc03f803b458f51f9ce9c044baadd728cac193 -Author: Yoann Rodière -Date: Wed Apr 13 17:08:38 2022 +0200 - - Use annotated tags for release - - Mainly because it's handled better in git-related tools such as tig. - - See also https://git-scm.com/book/en/v2/Git-Basics-Tagging#_creating_tags - -commit 2de227d84c48b3b0f48a779fe33eef7275e6a201 -Author: Sanne Grinovero -Date: Wed Apr 13 07:21:25 2022 +0100 - - HHH-15207 Upgrade GraalVM SDK to 22.0.0.2 - -commit f904cb343b7d891abeb4204dc470e1a2682e0fe5 -Author: Yoann Rodière -Date: Thu Mar 24 15:58:10 2022 +0100 - - HHH-15141 Test bytecode enhancement on cross-package inheritance tree with protected @Embedded field - -commit 9b02781378e68aeb1934ace0bc80b69b95c64eab -Author: Yoann Rodière -Date: Wed Apr 13 09:45:24 2022 +0200 - - HHH-15209 Upgrade to bytebuddy 1.12.9 - -commit 535019c471600185c8662191b18dca7d50391adf -Author: Sanne Grinovero -Date: Wed Apr 13 08:24:42 2022 +0100 - - HHH-15208 Upgrade to Micrometer 1.8.4 - -commit 432b39304247c464ee939bb4e4b32ca1293db61c -Author: Sanne Grinovero -Date: Tue Apr 12 09:40:36 2022 +0100 - - HHH-15204 Remove dependency to jakarta.activation:jakarta.activation-api - -commit aef21b18dc51b800211423e7858f0e55bc0758da -Author: Steve Ebersole -Date: Tue Apr 12 17:47:04 2022 -0500 - - HHH-15193 - Fix Gradle plugin - forcing dependency on hibernate-core SNAPSHOT - - Capability to publish plugin locally (to maven local) for testing - -commit 43f310da9298a9d599029cc49741ffc09277a086 -Author: Andrea Boriero -Date: Mon Apr 11 14:43:36 2022 +0200 - - HHH-15167 IllegalArgumentException occurred while calling setter for property - -commit a2c161f95d5cdf7ccb890fbe76f9510fa739ecb8 -Author: Christian Beikov -Date: Tue Apr 12 11:15:26 2022 +0200 - - Fix NPE issue in Jenkinsfile - -commit 7f4cf675ec68d921987782f57b06ff81704abe6c -Author: Christian Beikov -Date: Mon Apr 11 15:56:14 2022 +0200 - - Update Jakarta Persistence version to the final one - -commit 6dfcf1eb058d3e9460ea98d2bc6d6255b0d3d5cb -Author: Christian Beikov -Date: Mon Apr 11 15:41:56 2022 +0200 - - Reduce notification flood - -commit e5f28ae17afbb69ae38fc96b7bbc31e676fb099d -Author: Christian Beikov -Date: Mon Apr 11 13:21:44 2022 +0200 - - HHH-15202 Only create SubselectFetch if entity contains subselect fetch config - -commit 5ec54232a06078dc0e874fdfcddd41f713dc2861 -Author: Andrea Boriero -Date: Mon Apr 11 11:04:11 2022 +0200 - - Gradle changed uploadDocumentation rsync url and port - -commit 4423962cea9c1631af8d80f7df64adca13a7f2fe -Author: Andrea Boriero -Date: Tue Apr 5 19:57:03 2022 +0200 - - HHH-15167 Add additional test - -commit 0ed6f8f979c5205d30b7d179271b2855ad55dac0 -Author: Andrea Boriero -Date: Mon Apr 4 19:13:35 2022 +0200 - - HHH-15167 IllegalArgumentException occurred while calling setter for property - -commit d43c784af135ba0a2e0950a70d80d0092a64ab98 -Author: Andrea Boriero -Date: Mon Apr 4 19:13:18 2022 +0200 - - HHH-15167 Add test for issue - -commit aca41278a23c3aee508f5d133ff028852221c84c -Author: Andrea Boriero -Date: Fri Apr 1 10:17:41 2022 +0200 - - Add test for issue - -commit 4f528d07970fe88ac6a4dbbe2169b84af955aae7 -Author: Andrea Boriero -Date: Sun Apr 10 12:03:03 2022 +0200 - - Gradle release script removed --protocol=28 for rsync - -commit 47a3d3d56db3ffa21e9e033a596e26912ae5b91f -Author: Steve Ebersole -Date: Thu Apr 7 08:48:17 2022 -0500 - - Improved support for documentation publishing - -commit e0a99f25ce7d8aa1cf8b9c0da56b4c0658d2cfea -Author: Sanne Grinovero -Date: Fri Apr 8 10:57:32 2022 +0100 - - HHH-15188 Upgrade to Hibernate Validator 7.0.4.Final - -commit 68d4a5d27c8f5dd4123e44464d264282751a6f1f -Author: Sanne Grinovero -Date: Thu Apr 7 10:38:43 2022 +0100 - - HHH-15188 Cleanup unused dependency to Hibernate Validator 6.x - -commit eb37eb8379b99e8b11e8b62c9edc543b67d391ba -Author: Sanne Grinovero -Date: Thu Apr 7 10:36:48 2022 +0100 - - HHH-15187 Upgrade to HCANN 6.0.0.Final - -commit a6f68126335033da4d3c033b95fdcc77e8b78716 -Author: Christian Beikov -Date: Fri Apr 8 11:59:39 2022 +0200 - - Switch to currentBuild.result - -commit ea5d28fa6221601d6319aa60a5a5f12c7759c0aa -Author: Christian Beikov -Date: Fri Apr 8 11:13:30 2022 +0200 - - Use the flow state for notifications instead of build state - -commit a82219200265a34a9216780ebcbcb83904cef7ae -Author: Christian Beikov -Date: Fri Apr 8 10:39:36 2022 +0200 - - Try to get rid of global state issues in Jenkinsfile - -commit dc42ec38ede9746bd667c61118e3d20f388c040a -Author: Christian Beikov -Date: Thu Apr 7 23:43:24 2022 +0200 - - HHH-15189 Print deprecation warning for lock timeout only when a value is passed - -commit 25f282eb6e116ede145720f57fb7b93dded9fd7d -Author: Andrea Boriero -Date: Wed Apr 6 17:38:13 2022 +0200 - - HHH-14819 Add test for issue - -commit 47e6798c1fbfa320f2037f18b2e2cc44f0b369de -Author: Christian Beikov -Date: Thu Apr 7 23:35:43 2022 +0200 - - Remove Release.key file - -commit a2484c6070f10208867c1c029dc98b6952b15812 -Author: Christian Beikov -Date: Thu Apr 7 21:27:22 2022 +0200 - - Change build environment tag to include test jdk version - -commit 2efd56e4d8f087c376fc99cfd02c0b63d0613ad1 -Author: Christian Beikov -Date: Thu Apr 7 21:17:01 2022 +0200 - - Try fixing JDK latest builds - -commit 776bc1d0aab97e8da2e9296a35e1dd06f7252855 -Author: Christian Beikov -Date: Wed Apr 6 09:42:15 2022 +0200 - - HHH-15174 Move annotation handling code to common method for element collection and basic values - -commit 5a4efc1c580592bf90eb9161207f002b3174d5d6 -Author: Steve Ebersole -Date: Thu Apr 7 13:52:09 2022 -0500 - - HHH-15193 - Fix Gradle plugin - forcing dependency on hibernate-core SNAPSHOT - -commit 43d2274573ca2658d1b5bc5706f8097c090ae9c1 -Author: Christian Beikov -Date: Wed Apr 6 18:52:56 2022 +0200 - - Switch to new Oracle image and try to improve podman experience - -commit 6815c2aa7cf0dd0bea86ff7c55ea9ce8ed7f3969 -Author: Sanne Grinovero -Date: Wed Apr 6 15:30:59 2022 +0100 - - HHH-15184 Improve efficiency of Component#getColumns() - -commit 25aec8d1b7ad44ce72b46111559407562c22c633 -Author: Sanne Grinovero -Date: Wed Apr 6 15:12:51 2022 +0100 - - HHH-15184 Improve efficiency of Component#getSelectables() - -commit 84cf4524eae90b4f345c0f91051f8464b2b3ab83 -Author: Steve Ebersole -Date: Tue Apr 5 16:13:03 2022 -0500 - - HHH-15170 - Dedicated chapter for "Build Tool Support" - HHH-15171 - Add discussion of the Ant Plugin - -commit 17bb4aa0667a841ef80226b888ffb03e5cf0b5dc -Author: Steve Ebersole -Date: Tue Apr 5 15:24:45 2022 -0500 - - HHH-15170 - Dedicated chapter for "Build Tool Support" - HHH-15171 - Add discussion of the Ant Plugin - -commit cf152d57b1413e872d52db4349ad45fea8d01a70 -Author: Christian Beikov -Date: Tue Apr 5 12:03:26 2022 +0200 - - HHH-15168 Fix NPE in NativeQueryImpl.ParameterInterpretationImpl#toString - -commit 6f0ec52e81a0de86d9be880dc55f40a1c8375785 -Author: Christian Beikov -Date: Mon Apr 4 15:06:14 2022 +0200 - - HHH-15162 Add STRING_OR_CLOB FunctionParameterType and use that for various length functions - -commit 9d3726e39da2f03b55a0b8da32ef013cff42e780 -Author: Steve Ebersole -Date: Mon Apr 4 19:15:15 2022 -0500 - - HHH-15170 - Dedicated chapter for "Build Tool Support" - -commit 0df4dc1642741f38880e7303737db714906fa3a2 -Author: Christian Beikov -Date: Mon Apr 4 17:01:48 2022 +0200 - - HHH-15164 Add bytebuddy as dependency to hibernate-enhance-maven-plugin - -commit 6a7bec612fb1c192bb6d2b07aaa3a07760bafe02 -Author: Christian Beikov -Date: Sat Apr 2 13:08:04 2022 +0200 - - HHH-15161 Infer parameter types in insert-select and avoid rendering cast in simple insert-select - -commit a4b6b237ddec8d8aff0db07d32f9b78d5533d67e -Author: Christian Beikov -Date: Mon Apr 4 14:00:42 2022 +0200 - - HHH-15163 Switch from Java EE to Jakarta XML Binding dependency for jpamodelgen - -commit 956ec30de5c606ba2a3e5b991b4f018dcf106102 -Author: Christian Beikov -Date: Fri Apr 1 13:01:02 2022 +0200 - - HHH-15157 Add HQL query to NoResultException - -commit f03254347a5acaabec81bf5598a57827e3c1b3f8 -Author: Christian Beikov -Date: Fri Apr 1 13:14:25 2022 +0200 - - Drop LocalDateCustomSessionLevelTimeZoneTest because it's a driver issue - -commit 59536ce6a9544d98206bdb2c2cbe18050f7ffeed -Author: Christian Beikov -Date: Fri Apr 1 12:23:26 2022 +0200 - - Add TCK results for 6.0.0.Final - -commit 2560cc6638fa91e4dc5f57eeaa2e8877c3a5c637 (tag: 6.0.0) -Author: Hibernate-CI -Date: Thu Mar 31 18:28:30 2022 +0000 - - Post-steps for release : `6.0.0.Final` - -commit 53889db4093bd598a0783fd26f5223c29cfdc1f5 -Author: Hibernate-CI -Date: Thu Mar 31 18:24:14 2022 +0000 - - Pre-steps for release : `6.0.0.Final` - -commit 6180e94fdcaae60f46f7223d8e8b49f09b27488a -Author: Steve Ebersole -Date: Thu Mar 31 11:52:22 2022 -0500 - - - Drop building of bundles for SourceForge - - Update release artifacts section of the release announcement - - Update Migration Guide wrt SourceForge and release artifacts - -commit fa7cb3f0e9ab66e61074d03909b03c637f737956 -Author: Christian Beikov -Date: Thu Mar 31 16:40:50 2022 +0200 - - Fix issues with respecting padding and limit for in list rendering - -commit ad828a0a4a418a91d12791b7a187e15bde55957b -Author: Steve Ebersole -Date: Thu Mar 31 11:01:06 2022 -0500 - - release announcement, doc artifacts - -commit 8d20c033b189c5f2c9145798ebf5110cd978d787 -Author: Steve Ebersole -Date: Thu Mar 31 07:47:16 2022 -0500 - - Address test failures in Gradle plugin module - - - I was not able to figure this out, so simply disabled the TestKit related tests - - unfortunately, this means we have no automated functional testing of the plugin in the build - -commit 3358157d1901cd750c20aa5f084b718d71a30014 -Author: Andrea Boriero -Date: Thu Mar 31 11:47:53 2022 +0200 - - HHH-15078 - Support for Tuple and SelectionQuery - -commit aa0c57aa5c19c90bdda5f7fd8dfdd4b8ef0d840c -Author: Steve Ebersole -Date: Wed Mar 30 14:20:44 2022 -0500 - - HHH-15078 - Support for Tuple and SelectionQuery - -commit 88938ac48230dbc3fe72a9ce2968d8d503521c8a -Author: Steve Ebersole -Date: Wed Mar 30 14:20:36 2022 -0500 - - Address test failures in Gradle plugin module - - - I was not able to figure this out, so simply disabled the TestKit related tests - - unfortunately, this means we have no automated functional testing of the plugin in the build - -commit 5b0c49e6a2d7918acccb68fbe740f9b0cafa31af -Author: Steve Ebersole -Date: Tue Mar 29 17:30:25 2022 -0500 - - HHH-15133 - Use specified result-type to better infer "shape" of query results with implicit selections - - Alternate solution for de-duplication handling - -commit c033b9aa5f5df001ac894f3bac76ce4e88c4e573 -Author: Steve Ebersole -Date: Tue Mar 29 16:53:15 2022 -0500 - - HHH-15133 - Use specified result-type to better infer "shape" of query results with implicit selections - -commit bec32ebbc4b01baad75973755550906c743df04f -Author: Steve Ebersole -Date: Tue Mar 29 11:29:05 2022 -0500 - - HHH-15133 - Use specified result-type to better infer "shape" of query results with implicit selections - -commit cac18ae0c7def79d03283b3cd03c982a614f6949 -Author: Steve Ebersole -Date: Sat Mar 19 08:22:55 2022 -0500 - - HHH-15133 - Use specified result-type to better infer "shape" of query results with implicit selections - -commit cb4691e98e70981776ccbbdee3a1bb5819d97a06 -Author: Steve Ebersole -Date: Wed Mar 30 13:07:22 2022 -0500 - - work on migration guide and 6.0 announcement - -commit 8b9c68b8db102dedaac1e4b6a3fbd75c8e965cc9 -Author: Steve Ebersole -Date: Wed Mar 30 11:49:18 2022 -0500 - - work on migration guide and 6.0 announcement - -commit 4334b463764466cc9fb48b7564ff1f23130c4cb8 -Author: Christian Beikov -Date: Wed Mar 30 17:17:19 2022 +0200 - - Update the bulk section of the batching documentation chapter for the new mutation strategies. Also implement the missing InlineUpdateHandler - -commit 111fe26ccc6f636999ad8dd2185271fa697e963b -Author: Christian Beikov -Date: Wed Mar 30 11:23:27 2022 +0200 - - Fix some issues in the legacy type resolution documentation and raw types issues for UserType - -commit 29d457b16a1d98f0e77666ac548ef97a3a43737d -Author: Christian Beikov -Date: Tue Mar 29 19:32:58 2022 +0200 - - Add documentation for the sql function - -commit d8d326a76f2d989ef20d9993f63d310e68bfea77 -Author: Steve Ebersole -Date: Wed Mar 30 09:26:02 2022 -0500 - - work on migration guide and 6.0 announcement - -commit 63ba1787d04f21792ab7cfa4abeb3592f5e78ea6 -Author: Andrea Boriero -Date: Tue Mar 29 10:04:27 2022 +0200 - - Legacy generator strategy increment size - -commit 7d9eada83e49bcbc3876769c02fc632b60c14538 -Author: Gavin King -Date: Tue Mar 29 21:18:26 2022 +0200 - - roll back breakage to DurationJavaType - - see the comment in the code - -commit 6d55b9b2a4944cc13e74deee0831b54b5072c644 -Author: Steve Ebersole -Date: Tue Mar 29 22:03:20 2022 -0500 - - mark some incubations - -commit e433f32fc6ca67d51a7d62b5e322689e1297e1d1 -Author: Steve Ebersole -Date: Tue Mar 29 20:58:35 2022 -0500 - - HHH-15143 - Add an "implicit naming strategy" for database structures (sequence and tables) for identifier generators - - - clean up, javadoc, migration-guide - -commit 56ba690366a0152e62f4fb5341fa420fb0786ef6 -Author: Steve Ebersole -Date: Mon Mar 28 16:53:49 2022 -0500 - - HHH-15143 - Add an "implicit naming strategy" for database structures (sequence and tables) for identifier generators - -commit 2709bc70b07aee574119782a72d526db39193710 -Author: Andrea Boriero -Date: Mon Mar 28 13:26:35 2022 +0200 - - HHH-15143 - Add an "implicit naming strategy" for database structures (sequence and tables) for identifier generators - -commit 33e2faced2c68d7a35268b846c85e7fdf05dae0c -Author: Steve Ebersole -Date: Fri Mar 25 17:51:22 2022 -0500 - - HHH-15143 - Add an "implicit naming strategy" for database structures (sequence and tables) for identifier generators - HHH-15144 - Add IncubationLogger - -commit 117e62195a26a4ad50e56dd2aef4ab759b885384 -Author: Christian Beikov -Date: Tue Mar 29 17:35:36 2022 +0200 - - Allow configuring the preferred JDBC type for Instant - -commit a9d1035806014fb2804b2f661692e065c32619a6 -Author: Christian Beikov -Date: Tue Mar 29 17:10:52 2022 +0200 - - Do some renaming for consistency and update documentation for new SQL types - -commit 814c164c81e99ce008114c23673a91bec0b89179 -Author: Steve Ebersole -Date: Fri Mar 25 20:06:48 2022 -0500 - - HHH-14672 - Allow specifying CHAR-based storage for UUID mappings - -commit 21a343fc60b55d90a53ac08b7f7e8653f60bb7e0 -Author: Christian Beikov -Date: Tue Mar 29 13:53:32 2022 +0200 - - Fix HQL update issues with composite id fk associations as fix some raw types issue - -commit 52fd9cfe17efa9caaff05f449c8b7dc69767ad2d -Author: Christian Beikov -Date: Tue Mar 29 16:03:19 2022 +0200 - - Ensure results from previous TCK runs is properly deleted before starting a new run - -commit 063a13c8a3ea78c80f5a9114c8180fcc68d3dbce -Author: Christian Beikov -Date: Mon Mar 28 11:30:09 2022 +0200 - - Get rid of some NotYetImplementedFor6Exception uses - -commit 13460034fd0400119e1b463b75f7a4f03da83336 -Author: Christian Beikov -Date: Mon Mar 28 11:09:28 2022 +0200 - - Add a migration guide section, replace static executor uses and remove obsolete todos - -commit 338cd4fed7775a01f928f8e92cb8c3d817655608 -Author: Christian Beikov -Date: Tue Mar 29 11:52:56 2022 +0200 - - Update the Jakarta Persistence TCK version to 3.0.2 - -commit dcc0b7d7d8a56870c67955ce96383309ba6fa2f7 -Author: Christian Beikov -Date: Sat Mar 26 12:14:17 2022 +0100 - - Revert version change BENCHMARK - -commit bbe87838873e04b7d72e4170a5e5c9d1cface707 -Author: Christian Beikov -Date: Sat Mar 26 00:48:36 2022 +0100 - - Further improvements - -commit 352970604da4de9889f0e398376ed1c8540b788e -Author: Christian Beikov -Date: Thu Mar 24 23:08:09 2022 +0100 - - Render select item aliases for sub queries in from clause to avoid possible alias collision - -commit 23098ca2546ed5e38e684059238b9553c90679fc -Author: Christian Beikov -Date: Tue Mar 22 16:05:08 2022 +0100 - - Disable select item deduplication for query groups and deduplicate within a fetch parent - -commit b4a1b149fb85b6293c0252a3783eabe25c841181 -Author: Christian Beikov -Date: Fri Mar 25 22:16:58 2022 +0100 - - Add support for specifying the SqlTypes field name when a type code is expected - -commit e1742ac3acc9bf36b0be180e2b0c5f9417f99334 -Author: Christian Beikov -Date: Fri Mar 18 12:07:53 2022 +0100 - - Update H2 to 2.1.210 and HSQLDB to 2.6.1 - -commit b737231416d78711f07b98afff13839b0f49c72f -Author: Christian Beikov -Date: Wed Feb 23 13:18:03 2022 +0100 - - Make sure Hibernate works with the Jakarta Persistence 3.1 API - -commit 6b8fdf3b703a2f62d4fd99fc7d8222d4addbcad5 -Author: Christian Beikov -Date: Tue Mar 22 18:27:31 2022 +0100 - - Model timestampdiff with interval as result with null duration unit - -commit de21820f840318fbc89af9ad4ad7e95a08cb813c -Author: Christian Beikov -Date: Mon Mar 21 16:58:50 2022 +0100 - - HHH-13135 Use FOR NO KEY UPDATE when locking in PostgreSQL - -commit f048ea82053d371af72fe90ef9fd56bd62f74ba7 -Author: Christian Beikov -Date: Fri Mar 25 20:04:34 2022 +0100 - - Introduce a special TimeZoneStorageType#NORMALIZE_UTC variant - -commit f2aa533dfc9fd502cdd90ae909c95bccb4f62493 -Author: Christian Beikov -Date: Tue Mar 22 18:27:31 2022 +0100 - - Switch back to numeric(21) with nanosecond resolution as fallback for mapping Duration to retain backwards compatibility - -commit 6801ff0f26955f4a18116b4776fe30e51f0cd226 -Author: Christian Beikov -Date: Mon Mar 21 17:59:51 2022 +0100 - - Introduce option to configure how to store java.time.Duration - -commit 7020a1a5638078b8a1fa305d4b5bd7877b291236 -Author: Christian Beikov -Date: Mon Mar 21 17:41:22 2022 +0100 - - Make sure timestampdiff returns a double for the SECOND unit as per JPA 3.1 - -commit b84a6e3a7f5e8406c0992ad67dcab5b544c3c7f4 -Author: Christian Beikov -Date: Fri Mar 25 15:36:38 2022 +0100 - - Avoid running the pipeline on branch indexing - -commit 5a2f92588c4fb495376500ade19669133593caad -Author: Christian Beikov -Date: Thu Mar 24 06:55:09 2022 +0100 - - Do not reuse join that is treat joined - -commit 99ed18c2289e0eea2a171364e03ea9e3158c2e33 -Author: Andrea Boriero -Date: Thu Mar 24 16:07:03 2022 +0100 - - Add additional tests - -commit 1a1a6c22f1489767652b84567bba110902cf6288 -Author: Andrea Boriero -Date: Thu Mar 3 13:07:42 2022 +0100 - - Fix @ForeignKeyey(ConstraintMode.NO_CONSTRAINT) throwing EntityNotFoundException - -commit 33a71336956586a63e2ce4edd748893231697428 -Author: Steve Ebersole -Date: Fri Mar 25 07:16:15 2022 -0500 - - HHH-15139 - Improvements for QueryInterpretationCache - - - improvements to SqmInterpretationsKey - - improvements to AbstractFetchParent - -commit 6fd8034ec552f24f42bd404f5e139fdff482041a -Author: Christian Beikov -Date: Tue Mar 22 15:45:23 2022 +0100 - - Use string based storage as fallback for JSON - -commit ad806ffc83ca531c356c3d9180146aa6eac10167 -Author: Christian Beikov -Date: Thu Mar 24 21:23:00 2022 +0100 - - Fix compile error - -commit ce298a1566599c78eaf95e24219d42be1fa0e1d4 -Author: Christian Beikov -Date: Tue Mar 22 15:49:50 2022 +0100 - - Make use of type variable for a few CompositeUserType methods - -commit 4b48dd31f6ecc0c1655dccccef2bcbb9b051b93d -Author: Christian Beikov -Date: Mon Mar 21 11:57:26 2022 +0100 - - Get rid of MVCC JDBC connection parameter - -commit bee5bae7b63c3293c9748d00770e37abb395dd2e -Author: Sanne Grinovero -Date: Wed Mar 23 15:35:16 2022 +0000 - - HHH-15138 Further simplify BoundedConcurrentHashMap by removing support for NONE eviction - -commit 04bfdd49ab0e31900ca40e171cd9ac0cc031440e -Author: Sanne Grinovero -Date: Wed Mar 23 15:25:48 2022 +0000 - - HHH-15138 Style and formatting fixes in BoundedConcurrentHashMap - -commit 1d1a142345a0bf1be9b37418c53bcd03a2165e4b -Author: Sanne Grinovero -Date: Wed Mar 23 14:53:05 2022 +0000 - - HHH-15138 Remove support for Eviction Listeners in BoundedConcurrentHashMap - -commit b0f8d6a394673a4d2bf249b82508824d5b250edc -Author: Andrea Boriero -Date: Fri Mar 18 14:48:54 2022 +0100 - - Update migration-guide.adoc - -commit 6b3bf34a0162b451219ccb834db9b898132ef3e8 -Author: Andrea Boriero -Date: Wed Mar 16 12:53:41 2022 +0100 - - Update migration-guide.adoc - - Co-authored-by: Steve Ebersole - -commit ca8f151d78ab0db20a4ec6a60251a12a6cbcacd4 -Author: Andrea Boriero -Date: Wed Mar 16 10:20:23 2022 +0100 - - Improve migration guide query result cache section - -commit 58aa445b0b54469021e146fd34444b5e4cf24a7a -Author: Andrea Boriero -Date: Tue Mar 1 12:23:46 2022 +0100 - - Add query result cache changes to migration guide - -commit 52d15cf769111a9c99cb273cfb19edc23d4e8736 -Author: Andrea Boriero -Date: Tue Mar 1 11:26:12 2022 +0100 - - Re-enabled additional tests - -commit cc02b926fb1a8c3f032a68db22481e5b9285a603 -Author: Steve Ebersole -Date: Wed Mar 23 11:32:00 2022 -0500 - - HHH-15139 - Improvements for QueryInterpretationCache - - - improvements to SqmInterpretationsKey - -commit 75a8ad1851afb2cef7a4f381711d6277ec1d69d8 -Author: Christian Beikov -Date: Mon Mar 21 19:06:41 2022 +0100 - - HHH-15135 Respect precision in temporal version types when generating timestamps - -commit 8470d6db5bb104cb1badc46a2852e06b80369c45 -Author: Steve Ebersole -Date: Tue Mar 22 18:21:29 2022 -0500 - - HHH-15132 - Improvements for NavigablePath - - - additional refactoring of uses of `NavigablePath#getFullPath` - -commit e496ec45ea3df4c0b7a96e13edbf11f00ccb7348 -Author: Steve Ebersole -Date: Mon Mar 21 23:39:52 2022 -0500 - - HHH-15132 - Improvements for NavigablePath - - - dropped `NavigablePath#fullPath` field - `#getFullPath` is now "(re)built" on demand - - adjust uses of `NavigablePath#getFullPath` - - refactor `NavigablePath` constructors - -commit f474449e7d949ea0d43cf911cf1b092975125199 -Author: Steve Ebersole -Date: Mon Mar 21 14:10:59 2022 -0500 - - HHH-15132 - Improvements for NavigablePath - - Begin breaking down "full path" - -commit 73153be99d820bc6314089298385834435351d99 -Author: Scott Marlow -Date: Tue Mar 22 14:25:38 2022 -0400 - - remove spaces from hibernate.connection.datasource, hibernate.connection.pool_size, hibernate.connection.isolation - - Signed-off-by: Scott Marlow - -commit d276075adedc9f9fe753232ace480fd2796ce876 -Author: Steve Ebersole -Date: Mon Mar 21 02:53:56 2022 -0500 - - HHH-15132 - Improvements for NavigablePath - - Package move; - @Incubating - -commit fcb3664b0823088bca2f6cad7432bc9d81989caa -Author: Christian Beikov -Date: Fri Mar 18 16:24:44 2022 +0100 - - Add some javadocs to TableGroupJoinProducer - -commit 2894f84d6e5ce1c9179d6d57d02a91cc53a31569 -Author: Christian Beikov -Date: Fri Mar 18 11:50:36 2022 +0100 - - HHH-14487 Fix usage of wrong Map in PropertyAccessStrategyMapImpl - -commit c57d39444552388a72b06c337fd15e0c4414b6ac -Author: CHAPEL Guillaume -Date: Sat Mar 12 11:42:10 2022 +0100 - - HHH-15118 Fix duplicate ids with PooledOptimizer when sequence value is initialValue - -commit e0e6050ba168bd8470ac8188c965298292f20e89 -Author: Andrea Boriero -Date: Mon Mar 14 10:49:31 2022 +0100 - - HHH-15117 ConstraintViolationException is thrown using same @SecondaryTable on two entities - -commit 42e44f392b81a01030909a313e0ecea663128980 -Author: Andrea Boriero -Date: Mon Mar 14 10:48:15 2022 +0100 - - HHH-15117 Add test for issue - -commit 669d23319dc59a355fd5632348241d8c2ec1843a -Author: Christian Beikov -Date: Tue Mar 15 13:30:30 2022 +0100 - - Show an issue with BasicFormatterImpl - -commit 41741fb79cb9881b5fbce74db735c7685b26029f -Author: Benedikt Waldvogel -Date: Tue Feb 1 17:04:01 2022 +0100 - - HHH-15065: Test that SQL statements are deterministic when using entity graphs - -commit 3d399367286fbd45d152131729d099f695679d25 -Author: Andrea Boriero -Date: Wed Mar 16 14:51:34 2022 +0100 - - HHH-15091 EntityManager.persist does not verify the existence of the one side of a many-to-one relationship - -commit 2618a78f438bc589fe4b71a3115748a8e2162887 -Author: Andrea Boriero -Date: Wed Mar 16 12:24:17 2022 +0100 - - HHH-15091 Add test for issue - -commit 94f450aa7ae9d346ca79d60d1ef3f3fd4b2a41e8 -Author: Christian Beikov -Date: Thu Mar 17 17:13:10 2022 +0100 - - HHH-15131 Fix JPA Compliance issue with Envers - -commit cb3690466f20deccf17d8100d04b144c546e5720 -Author: Andrea Boriero -Date: Tue Mar 15 12:13:43 2022 +0100 - - HHH-15098 Incorrect behavior when updating managed oneToMany collection on entity with naturalId - -commit c35f495a7bbb923464362d3526d24adcecfca7f6 -Author: Andrea Boriero -Date: Mon Mar 14 13:24:04 2022 +0100 - - HHH-15098 Add test for issue - -commit 1d67993173b6300c8c5f70d159f76d8958fd6b2f -Author: Andrea Boriero -Date: Wed Mar 9 17:50:20 2022 +0100 - - HHH-15111 MappingException is thrown for @JoinColumn with referencedColumnName on a @SecondaryTable - -commit cd78676608998c33919d2d9a17852e091a49acc4 -Author: Andrea Boriero -Date: Fri Mar 11 18:33:28 2022 +0100 - - HHH-15115 Fix PostgreSQL SqmMultiTableMutationStrategy - -commit 6169a60ecdf19e75f6b145449c8d0abb606439b1 -Author: Sanne Grinovero -Date: Wed Mar 16 20:57:16 2022 +0000 - - Always guard for Log level before producing log message parameters - -commit 6ab1cd3434adf12a7877cc130ca865e238b22311 -Author: Steve Ebersole -Date: Wed Mar 16 11:35:42 2022 -0500 - - fix problem with release.gradle - -commit 2184a39dcf3f59ecf5e6f37da5697c242e091cf1 -Author: Christian Beikov -Date: Tue Mar 15 13:29:30 2022 +0100 - - Temporarily disable a test for Oracle due to a bug in BasicFormatterImpl - -commit d17a6fbf8544bd52dc164cf2e0ee6044d92abea6 -Author: Christian Beikov -Date: Tue Mar 15 08:39:42 2022 +0100 - - Fix NPE with collection filter predicates when joins have no group alias - -commit 8cf0265f8d0bdf90a9d1add2597dc45913f9c55e -Author: Christian Beikov -Date: Tue Mar 15 08:38:41 2022 +0100 - - Make sure root virtual table group joins are rendered properly - -commit b227475489b47b1d2113afd7f115bb538284c2a5 -Author: Christian Beikov -Date: Tue Mar 15 08:38:10 2022 +0100 - - Make sure the discriminator path uses the correct table group - -commit 20564a5547af9fba42b66c09dfdf245abd56cfe1 -Author: Christian Beikov -Date: Thu Mar 10 16:24:22 2022 +0100 - - Make sure DML updates do inserts into secondary tables when necessary - -commit 955e8265dc16e7e4e7ed1d58acbee8f760772c91 -Author: Christian Beikov -Date: Thu Mar 10 13:33:34 2022 +0100 - - Do not expose id class embeddables through getManagedTypes - -commit 7f4a4afd64a2da30183a56cf7d0b1b37af56f0be -Author: Christian Beikov -Date: Thu Mar 10 13:32:53 2022 +0100 - - Also create inverse model parts for nested embeddable attributes - -commit c548a79f0bb13cca119393777b9978e77952c634 -Author: Christian Beikov -Date: Thu Mar 10 10:49:07 2022 +0100 - - Introduce special part name for FK target part to avoid issues with composite FK initializers - -commit 0ca38c8c8725d1919d52666df549d21f88f6bc06 -Author: Christian Beikov -Date: Wed Mar 9 15:57:32 2022 +0100 - - Allow ordering query groups by attribute name and fix processing issue with nested set operations - -commit 246f1048a00f8655a0778fe095a4c7191a1954e3 -Author: Christian Beikov -Date: Sat Mar 5 17:14:41 2022 +0100 - - Add inverse NonAggregatedIdentifierMapping that uses VirtualIdEmbeddable as model part - -commit 3da5571867c0dc11de991ed5e7a2be9034e897fc -Author: Steve Ebersole -Date: Wed Mar 16 09:37:01 2022 -0500 - - drop Wrapper.DistributionType.ALL for Gradle wrapper config - -commit ed4dbadb6c8c6713a5e166eaaa781e72e33d587a -Author: Steve Ebersole -Date: Wed Mar 16 08:27:57 2022 -0500 - - drop Wrapper.DistributionType.ALL for Gradle wrapper config - -commit 5403e95958011986d78dd1fad71319effc558bf0 -Author: Steve Ebersole -Date: Tue Mar 15 20:10:17 2022 -0500 - - HHH-14872 - Re-enable hibernate-gradle-plugin - - plus additional improvements to Gradle scripts - -commit 58d4d8a6e1b8a466435cd66eba8910adc670946e -Author: Steve Ebersole -Date: Tue Mar 15 16:24:07 2022 -0500 - - Gradle build clean-ups - - - fix forbidden-apis task config - -commit 8c052054a80c2a924668c7c28f413017a1553af4 -Author: Steve Ebersole -Date: Tue Mar 15 12:35:45 2022 -0500 - - Intermittent test failure (Sybase) - -commit f82d381fe3b6f4a9cb6c0fdfb0dcd1de63d51cb4 -Author: Steve Ebersole -Date: Tue Mar 15 12:15:56 2022 -0500 - - Gradle build clean-ups - - - re-organize release task definitions to avoid use of subproject iteration - -commit 9335d3efbf96d4cbe4a7d9aa79193882328b2415 -Author: Steve Ebersole -Date: Mon Mar 14 20:39:11 2022 -0500 - - HHH-14993 - EAGER non-inverse collection throws StackOverflowError if `max_fetch_depth` not set - -commit 38cffd0c8fc9865d214bb94f19eb297303e7a349 -Author: Steve Ebersole -Date: Mon Mar 14 15:09:14 2022 -0500 - - HHH-14993 - EAGER non-inverse collection throws StackOverflowError if `max_fetch_depth` not set - -commit 92b46bca5baf71630af4c08259071a2b53246736 -Author: Steve Ebersole -Date: Tue Mar 15 09:39:07 2022 -0500 - - Gradle build clean-ups - - - drop use of `allprojects` - -commit a8d9d4e5eff36436bf07882e60ec3a1c34a13226 -Author: Steve Ebersole -Date: Tue Mar 15 07:58:01 2022 -0500 - - prep 6.0 Final announcement - -commit 2e9b34fc51cab059f6b7d0d732df80f071281e58 -Author: Sanne Grinovero -Date: Mon Mar 14 23:30:30 2022 +0000 - - HHH-15119 Upgrade to ByteBuddy 1.12.8 - -commit 2d19bdbaf3c82a7c4d6d2a00afc36f1877925d03 -Author: Andrea Boriero -Date: Wed Mar 9 13:22:17 2022 +0100 - - HHH-15113 Exception setting ParameterExpressions on Update Queries - -commit 741b6b71f1552aa224fb61d38b85b32e0b8a19b4 -Author: Steve Ebersole -Date: Fri Mar 11 14:45:43 2022 -0600 - - logging report - -commit 7a1d6f13dd3b37d2b45de3f50a3f3b8cc67289a7 -Author: Steve Ebersole -Date: Wed Mar 9 13:45:11 2022 -0600 - - doc fix-ups - -commit e16fbb6c310f237d54876bafdae076552794ff98 -Author: Steve Ebersole -Date: Wed Mar 9 12:28:13 2022 -0600 - - report-tasks - -commit 256dc64e87fb446306c74df9d8e6c029ab002d0a -Author: Steve Ebersole -Date: Wed Mar 9 08:10:22 2022 -0600 - - add missing task dependency to stage rendered migration-guide for uploading with rest of documentation - -commit 293315ffa4aa42c36c67f526fc1a7b022055507e -Author: Christian Beikov -Date: Tue Mar 8 22:31:39 2022 +0100 - - HHH-15105 Test and fix for NPE when access default query cache region statistics - -commit 5eb8a6fab1af5c2baf58b83e1d8355c8e56f3a24 -Author: Yoann Rodière -Date: Fri Mar 4 09:22:56 2022 +0100 - - HHH-15107 Use net.bytebuddy.experimental=true when running tests against JDK19 - -commit a88170d24a531487dfbf55677c7bfd75d395777a -Author: Yoann Rodière -Date: Fri Mar 4 08:59:14 2022 +0100 - - HHH-15107 Upgrade to Mockito 4.3.1 - -commit e1d202a7954ec5399339b49764265f0dacd37006 -Author: Yoann Rodière -Date: Fri Mar 4 08:56:04 2022 +0100 - - HHH-15107 Upgrade Gradle's max supported bytecode version to 17 - - Since we're on Gradle 7.3.3. - - See https://docs.gradle.org/7.3.3/release-notes.html#java17 - -commit 3a6ad2fd3aa53b1d3e5b4c0d1cf253c5f4a7a464 -Author: Steve Ebersole -Date: Tue Mar 8 23:24:00 2022 -0600 - - Fix test failure - -commit 92686b16e29b29d40243147808ee95720754e03c (tag: 6.0.0.CR2) -Author: Hibernate-CI -Date: Wed Mar 9 03:59:38 2022 +0000 - - Post-steps for release : `6.0.0.CR2` - -commit 8c5fdea2472f88cdbf443a0abed4f9483c12972a -Author: Hibernate-CI -Date: Wed Mar 9 03:54:06 2022 +0000 - - Pre-steps for release : `6.0.0.CR2` - -commit 3dc0dd0a6f071336e1f885eb39bfb61edb8ef354 -Author: Steve Ebersole -Date: Tue Mar 8 21:39:21 2022 -0600 - - HHH-15114 - Clean up deprecations - -commit d4f4d09a0cae4d944d2f909e079b04242a222764 -Author: Steve Ebersole -Date: Tue Mar 8 21:16:53 2022 -0600 - - Render and stage migration-guide to be published to the doc server along with other the other documentation - -commit 1fe1110f0bda68909c65a6b28e19e20f5a6c67b0 -Author: Steve Ebersole -Date: Tue Mar 8 21:00:08 2022 -0600 - - HHH-15106 - fk() SQM function - -commit 415b28f116f0b2d4534ee4b55aa58d5fe2c0213f -Author: Steve Ebersole -Date: Tue Mar 8 20:23:45 2022 -0600 - - HHH-15114 - Clean up deprecations - -commit c46ec5a14e0e1da94dc5ed5d1147083c58d41b4c -Author: Jan Schatteman -Date: Wed Mar 9 00:17:31 2022 +0100 - - Removed deprecated AbstractEntityPersister.getIdentityDelegate() - - Signed-off-by: Jan Schatteman - -commit 91a1ff81f8b0306cbb9a611b09bc1732f4133462 -Author: Jan Schatteman -Date: Tue Mar 8 23:56:16 2022 +0100 - - Removed deprecated SharedSessionContractImplementor.getTimestamp() - - Signed-off-by: Jan Schatteman - -commit 291e755686651d5b26b94ddbbc427caff32e4c57 -Author: Jan Schatteman -Date: Tue Mar 8 22:53:09 2022 +0100 - - Removed deprecated methods in ProxyFactoryFactory and NoneBasicProxyFactory - - Signed-off-by: Jan Schatteman - -commit 9fc2b3dea5b338c1bad116dadf704f8d2acf4336 -Author: Jan Schatteman -Date: Tue Mar 8 22:27:08 2022 +0100 - - Removed deprecated LazyAttributesMetadata.getAttributesInSameFetchGroup(...) - - Signed-off-by: Jan Schatteman - -commit 4b5d3e645b01bb39c7d5e9431188f288719563a6 -Author: Jan Schatteman -Date: Tue Mar 8 22:15:14 2022 +0100 - - Removed deprecated SessionFactoryOptions.getStatelessInterceptorImplementor() - - Signed-off-by: Jan Schatteman - -commit 2244ab8e6145a1e0b55649844d89cb8ffb1dec00 -Author: Jan Schatteman -Date: Tue Mar 8 16:59:50 2022 +0100 - - Removed deprecated QueryEngine.DEFAULT_PARAMETER_METADATA_MAX_COUNT - - Signed-off-by: Jan Schatteman - -commit 4669fc7c4c2a52df4fddf8365cd955aaf6786954 -Author: Jan Schatteman -Date: Tue Mar 8 16:44:37 2022 +0100 - - Removed deprecated org.hibernate.mapping.AuxiliaryDatabaseObject - - Signed-off-by: Jan Schatteman - -commit 7931e9c7552726bc6e86441ffa0fef8677497d75 -Author: Jan Schatteman -Date: Tue Mar 8 00:14:04 2022 +0100 - - Removed deprecated non-static methods from LobTypeMappings and NationalizedTypeMappings - - Signed-off-by: Jan Schatteman - -commit 8e068d7647aec9879201a2d7a7529a507e60c9b1 -Author: Jan Schatteman -Date: Mon Mar 7 23:48:32 2022 +0100 - - Removed deprecated SessionFactoryServiceInitiator.initiateService(SessionFactoryImplementor, SessionFactoryOptions, ServiceRegistryImplementor) - - Signed-off-by: Jan Schatteman - -commit b1ec3ab78b1fc00cea86c9162796cbba297873d8 -Author: Jan Schatteman -Date: Mon Mar 7 22:47:33 2022 +0100 - - Removed deprecated Interceptor.onPrepareStatement(String sql) - - Signed-off-by: Jan Schatteman - -commit 13527366c92cead1398602d9b2bdb51c6e98a5b4 -Author: Jan Schatteman -Date: Thu Mar 3 23:30:21 2022 +0100 - - Removed deprecated setFlushMode from Session and SharedSessionContractImplementor - - Signed-off-by: Jan Schatteman - -commit 8b0f70f066437b5095be423a68a9bb42f6b6328b -Author: Jan Schatteman -Date: Thu Mar 3 20:37:36 2022 +0100 - - Removed deprecated MetadataBuildingOptions.getReflectionManager() - - Signed-off-by: Jan Schatteman - -commit 41016674cb3b61541950f36a43b0f6cfaa91b200 -Author: Jan Schatteman -Date: Thu Mar 3 00:06:14 2022 +0100 - - Removed deprecated InFlightMetadataCollector.getClassmateContext() - - Signed-off-by: Jan Schatteman - -commit 6564abe4c78f24f17316d6f2f33dc3793474f1fd -Author: Jan Schatteman -Date: Wed Mar 2 23:36:10 2022 +0100 - - Removed deprecated transactionContext() from SharedSessionBuilder - - Signed-off-by: Jan Schatteman - -commit b8c416744d786c4d4dc8d8794a49d46c760dcbb2 -Author: Steve Ebersole -Date: Tue Mar 8 18:11:07 2022 -0600 - - not-found and fk() docs - -commit 34b4e873df3bb39247d0cb5732554d8867a6f5c8 -Author: Christian Beikov -Date: Tue Mar 8 23:10:27 2022 +0100 - - Get rid of StateArrayContributor - -commit af9edd50d6d683b64878e6f9393a094307eee4bf -Author: Christian Beikov -Date: Thu Mar 3 15:40:34 2022 +0100 - - Add SqlTypes.TIMESTAMP_UTC to as jdbc type for java.time.Instant - -commit 964e72f536aedf3bf9b998b27376b9b586b77743 -Author: Christian Beikov -Date: Thu Mar 3 15:12:48 2022 +0100 - - Implement support for TimeZoneStorageType.COLUMN - -commit fa750a9c26e267e9639583243b2de3859e600878 -Author: Christian Beikov -Date: Tue Mar 8 20:50:50 2022 +0100 - - Make LONGX types synonyms for X types again and remove unnecessary case labels - -commit 2c80250b0e0c13fea874458bd0e59f14d1493e25 -Author: Christian Beikov -Date: Fri Mar 4 20:48:32 2022 +0100 - - Replace typeNames in Dialect with SqlType and SqlTypeRegistry that dialects contribute into - -commit 7a55c7b34b886b9469524d2dce514797d4e9b091 -Author: Christian Beikov -Date: Tue Mar 8 15:43:14 2022 +0100 - - HHH-15071 Apply type inference in SQM for like predicate and avoid NPE in query parameters - -commit 3d55855a873558c3cd8f68a2c12cc7c849762464 -Author: Christian Beikov -Date: Tue Mar 8 14:50:51 2022 +0100 - - HHH-13694 fix numeric overflow exception for large sequence min values - -commit ac4a792f84110bd95468305a5257a5a61e52b23e -Author: Steve Ebersole -Date: Tue Mar 8 11:26:55 2022 -0600 - - render migration guide using asciidoctor and publish with docs - -commit 0af7ed353a6cf09a78e6315d95498e2a5d16570e -Author: Steve Ebersole -Date: Tue Mar 8 06:20:37 2022 -0600 - - HHH-15099 - Improve handling of associations marked with @NotFound - HHH-15106 - fk() SQM function - -commit 362b4c0ac7821befb866b0985878c16fb0b20e98 -Author: Steve Ebersole -Date: Thu Mar 3 15:08:40 2022 -0600 - - HHH-15106 - fk() SQM function - -commit 6e6cc5f06e7560fd396160ee9bf455e9743256ad -Author: Andrea Boriero -Date: Fri Mar 4 11:15:15 2022 +0100 - - Fix subquery throwing SqlTreeCreationException( Found un-correlated path usage in sub query) - -commit 0a73425520add7bb775dad70fd396f9a1c3671b3 -Author: Christian Beikov -Date: Thu Mar 3 17:54:32 2022 +0100 - - Flatten the junctions in the SQM model - -commit 71e3b5277a454c33a91507da65e6596000693c5f -Author: Steve Ebersole -Date: Sat Mar 5 07:51:59 2022 -0600 - - HHH-15099 - Improve handling of associations marked with @NotFound - - - test consolidation - -commit 82feac6bd3abd728825b3f3daf99868976376799 -Author: Steve Ebersole -Date: Fri Mar 4 23:17:43 2022 -0600 - - HHH-15099 - Improve handling of associations marked with @NotFound - - - support for NotFound on logical 1-1 defined on JoinTable - -commit ed5831f48221f2ff35eab1e5d4904579a559ba9a -Author: Steve Ebersole -Date: Fri Mar 4 13:13:40 2022 -0600 - - HHH-15099 - Improve handling of associations marked with @NotFound - - - clean-up - -commit c5ac528a243e82daeca3c24278baf3d8a73d639b -Author: Steve Ebersole -Date: Thu Feb 17 08:37:03 2022 -0600 - - HHH-15099 - Improve handling of associations marked with @NotFound - - - database snapshot handling - -commit ceb7df0c510d580ce487b1f05940f6b291848489 -Author: Steve Ebersole -Date: Fri Mar 4 07:11:06 2022 -0600 - - HHH-15099 - Improve handling of associations marked with @NotFound - - - Javadoc improvements for `@NotFound`-related tests - -commit d52ebfb41dbeae93a453f9cc8186573feda573d2 -Author: Steve Ebersole -Date: Fri Feb 11 12:49:50 2022 -0600 - - HHH-15099 - Improve handling of associations marked with @NotFound - - - Keep track of NotFoundAction into mapping model - - Fix tests with erroneous assertions about `@NotFound` associations allowed to be lazy - -commit de97e8e1a44a6ec72b724d4737372aac25fe06c4 -Author: Steve Ebersole -Date: Thu Mar 3 16:53:58 2022 -0600 - - HHH-15099 - Improve handling of associations marked with @NotFound - - - Tests - -commit bdf8b2fc2e0a878a3df508698e0123faddb82375 -Author: Christian Beikov -Date: Fri Mar 4 08:26:17 2022 +0100 - - Fully generify and simplify UserType contract - -commit e5c719b84309db845a80bc3533eff43440f65c10 -Author: Steve Ebersole -Date: Thu Mar 3 16:13:49 2022 -0600 - - HHH-15099 - Improve handling of associations marked with @NotFound - - - Tests - -commit 2ced4caa2cef325974900535474ec27352266b04 -Author: Steve Ebersole -Date: Thu Mar 3 16:04:42 2022 -0600 - - NonLazyEntityFetch improvements - -commit ec737a7f15fe80cb53f949e2fa6c67cfbe7a1bb7 -Author: Steve Ebersole -Date: Thu Mar 3 15:45:12 2022 -0600 - - HHH-15099 - Improve handling of associations marked with @NotFound - - - Disable physical foreign-key export for `@NotFound` mappings - -commit 50c0c2ff9d365fb55c293c0240c2b21d12f97b8f -Author: Steve Ebersole -Date: Mon Feb 7 08:02:13 2022 -0600 - - HHH-14604 - Sign published artifacts - -commit 662182adff3a0cdd7eb02fbdcdee38b8f8019ad7 -Author: Steve Ebersole -Date: Tue Feb 1 09:40:31 2022 -0600 - - Gradle Enterprise - remote build cache - -commit 95e98c8804f04d6c3e5a711c74318df68ce322ef -Author: Steve Ebersole -Date: Tue Nov 30 07:17:47 2021 -0600 - - Gradle Enterprise exp5 - -commit 572171e27fa3895a54c34df9c364d530068080fa -Author: Sanne Grinovero -Date: Thu Feb 24 21:04:37 2022 +0000 - - Jandex, Classmate and commons annotations shouldn't be listed as API - -commit e9b3066f933924b83ce811f01fad7496b3c81b07 -Author: Christian Beikov -Date: Tue Mar 1 10:29:35 2022 +0100 - - Add sql type name and size information to selectable mapping - -commit 3d8f5db3e0fe08bba6c648c4916dd53bdddf0b41 -Author: Yoann Rodière -Date: Tue Mar 1 16:14:38 2022 +0100 - - HHH-15090 Allow passing unloaded types and a TypePool to ByteBuddyProxyHelper#buildUnloadedProxy - - This is necessary to solve this bug in Quarkus. - -commit 9dcd5e55b14ff8c3a4a2d351a52d45435aa83a54 -Author: Yoann Rodière -Date: Thu Feb 24 16:14:06 2022 +0100 - - HHH-15090 Test lazy loading with extended bytecode enhancement and inheritance - -commit e989f20b3351b33a4a91b28ef94a903e54ed1223 -Author: Yoann Rodière -Date: Thu Feb 24 17:44:21 2022 +0100 - - HHH-15090 Fix access to public field with extended bytecode enhancement returning null for entity lazy-loaded from polymorphic toOne association - -commit b6b500200bd6748b25d7eb220d6d939269069d42 -Author: Christian Beikov -Date: Thu Feb 10 16:33:14 2022 +0100 - - Use BAG for unowned OneToMany and throw an error if @OrderColumn is found on unowned ManyToMany - -commit 8183901cfef837501780e3c872ffbd6e84be37e0 -Author: Christian Beikov -Date: Wed Feb 2 19:53:29 2022 +0100 - - Add documentation notes about LIST semantics for mappedBy mappings - -commit a91d23825fee54ee64edf140709781833b392825 -Author: Christian Beikov -Date: Wed Feb 2 19:34:37 2022 +0100 - - Make list semantics setting explicit for failing tests - -commit 7aaeebe3af8344d9f49718047b0624b6fa0b8ef9 -Author: Christian Beikov -Date: Wed Feb 2 18:05:09 2022 +0100 - - Switch back to bag by default for list semantics - -commit 4f7d4b7fdb59fa1f9a8e80de82e2086b0972a434 -Author: Yoann Rodière -Date: Tue Mar 1 11:09:43 2022 +0100 - - HHH-15094 Handle http://hibernate.org and https://hibernate.org for DTDs in LocalXmlResourceResolver - -commit 19073672db4e2ce2d74cca836e0c0a6b6904316b -Author: Yoann Rodière -Date: Tue Mar 1 11:02:01 2022 +0100 - - HHH-15094 Handle both HTTP and HTTPS versions of DTDs in LocalXmlResourceResolver - -commit 8c263b3945387f474759e46c1e87e688bf13ffa1 -Author: Yoann Rodière -Date: Tue Mar 1 09:36:13 2022 +0100 - - HHH-15094 Test LocalXmlResourceResolver - -commit 8c0bc944808d9a609b12f4a7f87ba1ff8a4e9f79 -Author: Yoann Rodière -Date: Tue Mar 1 10:32:14 2022 +0100 - - HHH-15094 Remove duplicate DTD descriptor - -commit d56032ab7f43bf4e6dfb872e9a13cf7fb6889a3e -Author: Yoann Rodière -Date: Tue Mar 1 10:30:55 2022 +0100 - - HHH-15094 Add JPA 3.0 XSDs to LocalXmlResourceResolver - -commit 9a23a679bd8c0be35970a5397318761fa5f8caca -Author: Brian Stansberry -Date: Fri Feb 18 06:56:04 2022 -0600 - - HHH-15084 Remove use of BeanManager.createInjectionTarget(AnnotatedType) - -commit 8e6fb5636be2c54adb0d914bec6782b93349ae0b -Author: Christian Beikov -Date: Fri Feb 25 16:29:31 2022 +0100 - - Adapt EmbeddableInstantiator and CompositeUserType to accept a ValueAccess instead of a Supplier - -commit c520b48487ffcc2939c96552f17782f42ef965ce -Author: Christian Beikov -Date: Thu Feb 17 16:29:23 2022 +0100 - - Implement support for CompositeUserType and re-enable tests that make use of it - -commit 277f10d987ed3aa70b14aa8f7ab7d4c0046c869b -Author: Christian Beikov -Date: Mon Feb 21 16:07:41 2022 +0100 - - Support implicit joins in plural path parts and fix issues with type resolving of sub query paths - -commit 247689824f4a378b7b3ad74f7a392e368614db31 -Author: Christian Beikov -Date: Mon Feb 21 12:07:30 2022 +0100 - - Re-enable some tests - -commit 335ed198213af26b294cf92b79e3f19c5d870433 -Author: Christian Beikov -Date: Sun Feb 20 21:06:25 2022 +0100 - - Various fixes - - * Fix parsing soft-keywords as naked identifiers - * Create proper correlations during parsing - * Fix some type inference issues with entity valued paths - -commit 075cc8d10873130ccbd9763387d0757f4fb60b9e -Author: Andrea Boriero -Date: Tue Feb 22 12:36:24 2022 +0100 - - Fix not increase the statistic loaded entity number when query cache is hit - -commit cf9d131d355f3505852aab9b3539bc00d6501167 -Author: Yoann Rodière -Date: Thu Feb 17 14:52:40 2022 +0100 - - HHH-15082 Correctly propagate the original exception when aborting a JDBC batch fails - - Not strictly necessary, but it's related to these changes - and I think it's a good idea. - -commit 14c8fb752d27b1e8a4e70a7543857e806105b2c0 -Author: Yoann Rodière -Date: Thu Feb 17 15:58:17 2022 +0100 - - HHH-15082 Test that batch statements are aborted if a RuntimeException is thrown by Batch#addToBatch - - Such an exception can be thrown if an expectation - (org.hibernate.jdbc.Expectation) is not met, for example if an update - statement for a given entity affects 0 rows (e.g. because of a concurrent - update). - -commit ec6cd5d0cc1cc0cb9f4e9c8616ce318eb34ebed1 -Author: Yoann Rodière -Date: Thu Feb 17 14:49:55 2022 +0100 - - HHH-15082 Abort JDBC batches on runtime exceptions as well as SQLException - -commit 73e9859feab78daf48836412622e9570e2f6cf41 -Author: Christian Beikov -Date: Thu Feb 17 19:01:21 2022 +0100 - - Re-enable more tests. - - * Make sure subselect fetch registrations are per navigable path - * Consider the result class for native queries - * Fix issues with nested property references - * Fix list expansion issues for native queries - -commit 40bcb9723263cb2e69e4e4d29019950a961a909a -Author: Andrea Boriero -Date: Wed Feb 16 12:11:05 2022 +0100 - - Fix String index out of range when wrapping an char - -commit cc750a9abdf3cbbeee9c3f121dacc0bec18eca49 -Author: Andrea Boriero -Date: Wed Feb 16 18:46:03 2022 +0100 - - Fix Session#setProperty() for cache and timeout related properties - -commit c02ce35aa0a466042153bf0dec2b8c1cd853f888 -Author: Christian Beikov -Date: Wed Feb 16 14:21:47 2022 +0100 - - Implement on the fly callable named native query to stored procedure translation - -commit 439788198fa32b0def33b864b4aca62283aa8a6b -Author: Christian Beikov -Date: Wed Feb 16 14:13:50 2022 +0100 - - Fix some stored procedure and native query issues - -commit 8ed1ed5159e5cb4669fd85dcdbb7a64bcf068f64 -Author: Andrea Boriero -Date: Wed Feb 16 15:19:05 2022 +0100 - - Re-enabled additional tests - -commit 32ee43cfe74ec3e804f9c09d02fc86be59b2abe6 -Author: Steve Ebersole -Date: Wed Feb 16 06:48:18 2022 -0600 - - Added missing space per code-style - - Added missing space per code-style - -commit 6685a7a145c80a1d0ccafb83f226a133d835e32a -Author: William Burns -Date: Wed Feb 9 14:14:29 2022 -0500 - - HHH-15080 Session Refresh can cause StaleObjectStateException when entry in 2LC is reread - -commit 26e98c08798b641295c3b140814acea0e9bfc1fd -Author: Andrea Boriero -Date: Tue Feb 15 10:06:26 2022 +0100 - - Fix BasicTypeResolution for collections annotated with @MapKeyTemporal - -commit f14e70cb8f0057b4d6830e7de60dd3802904dc19 -Author: Andrea Boriero -Date: Wed Jan 5 14:54:06 2022 +0100 - - Re-enabled additional tests - -commit dc3b3db5127c668778d1f2eb8108fbde6b348307 -Author: Andrea Boriero -Date: Mon Jan 3 17:57:08 2022 +0100 - - Re-enable additional tests - -commit 2873440a25c8b06c8724ae1bc84ce899f7c273a2 -Author: Christian Beikov -Date: Tue Feb 15 13:23:55 2022 +0100 - - Use proper RequiresDialect annotation - -commit b9dca52eccf2f4477898a8cafbf96da34c518081 -Author: Christian Beikov -Date: Tue Feb 15 11:40:41 2022 +0100 - - Fix ProcedureParameterTests - -commit 9b6ddc8c0bf0fa0b62eaff826789d91a3e4e4843 -Author: Christian Beikov -Date: Tue Feb 15 11:38:05 2022 +0100 - - Fix GeneratedAnnotationTests - -commit 98816362e2fa699ef9fdfd3cf393e538ba18b5be -Author: Christian Beikov -Date: Tue Feb 15 10:11:15 2022 +0100 - - Fix EntityWithManyToOneSelfReferenceTest - -commit b85f530b42eb997a6d5cf613d464e3e33bc57e40 -Author: Christian Beikov -Date: Tue Feb 15 09:47:12 2022 +0100 - - Log warning when FetchStyle.JOIN is used with LAZY and add migration guide entry for fetch all properties - -commit dc6ad33cfc43a95354c99837f3b28150258846aa -Author: Christian Beikov -Date: Thu Feb 10 13:25:17 2022 +0100 - - HHH-10463 Implement function argument type inference - -commit 260c738a5aaebe6be79492809a2918389e916b2b -Author: Christian Beikov -Date: Mon Feb 14 14:05:26 2022 +0100 - - Get rid of some `getEntityMetamodel` uses - -commit 87638a9a2e6281fed04e0f33dbc4c9b355f281dd -Author: Christian Beikov -Date: Fri Feb 11 10:22:24 2022 +0100 - - Get rid of most walking stuff - -commit 1a71bb97870dc5a2ef68f9433e9cfa40ea5c3f74 -Author: Christian Beikov -Date: Mon Feb 14 20:15:34 2022 +0100 - - Fix root validation for subqueries that appear in the on clause - -commit 0f02279f1041446b906cf75ffee9fa1cd5189739 -Author: Christian Beikov -Date: Fri Feb 11 09:31:25 2022 +0100 - - Implement partial null key handling and respect lazy flag regardless of fetch style - -commit 3b6d25425a8ae29244a4a29bb6c12d0afc28e512 -Author: Andrea Boriero -Date: Tue Feb 8 14:14:22 2022 +0100 - - HHH-15073 Test criteria query built from JPA metamodel and involving primitive types - -commit c1078b2612ac322d462760a2753b9e556e88c7a8 -Author: Yoann Rodière -Date: Tue Feb 8 13:29:15 2022 +0100 - - HHH-15073 CriteriaPrimitiveIdTest: use only JPA interfaces that are available in Hibernate ORM 5 - -commit c4e763c5c573132952332a9c95b62484c5613c80 -Author: Yoann Rodière -Date: Tue Feb 8 13:21:20 2022 +0100 - - HHH-15073 Test criteria query built from JPA metamodel and involving primitive types - -commit d8a98af76ea9381f84c6f5c35c4202a931c55e47 -Author: Andrea Boriero -Date: Wed Feb 9 18:09:49 2022 +0100 - - Fix LocalTime and OffsetTime parameter binding - -commit 83306d588dc5d0ae600f8664933d1b10c81952bb -Author: Andrea Boriero -Date: Fri Feb 11 09:48:31 2022 +0100 - - Call to Query#getParameterValue(int position) with closed EntityManager must throw an IllegaStateException - -commit 5bfbc466eb6f613ead695869ba5fa96c02b8db59 -Author: Christian Beikov -Date: Thu Feb 10 17:19:31 2022 +0100 - - Rename JPA copy compliance setting to `hibernate.criteria.copy_tree` - -commit 07f3d6727f1d28a0655e8a81eb576b52f0bc19fe -Author: Andrea Boriero -Date: Tue Feb 8 18:51:52 2022 +0100 - - Fix native named query max results - -commit 74e1e6caad05ff3fc4b86fff9a3b49c8ecbc00fa -Author: Gavin King -Date: Thu Feb 10 14:05:14 2022 +0100 - - catch other cases where NPE indicates that a PostInitCallbackEntry is unready - -commit 9a98976b41d5143b7e1fa52fc6e16fdf668ca6c3 -Author: Gavin King -Date: Thu Feb 10 12:16:16 2022 +0100 - - don't use NPE to indicate that a PostInitCallbackEntry is unready and needs to be re-queued - - because: - - - to anyone stepping through the code it looks like a bug - - nobody *reading* the code would have any way of guessing - that this is behavior that can happen, much less that it's - expected and correct - -commit 6fcbe5f0a0c6bac110564c471747509b216f9139 -Author: Andrea Boriero -Date: Mon Feb 7 11:43:47 2022 +0100 - - Fix parameter binding validation - -commit 4d024fde8ba8ce1d67f7d0e60f4b5b2f3812c216 -Author: Gavin King -Date: Wed Feb 9 21:30:05 2022 +0100 - - update documentation to explain implicit collection joins - -commit 437da239619df61fda88264d07fa76c6f42e243a -Author: Gavin King -Date: Wed Feb 9 13:28:17 2022 +0100 - - removing a questionable grammar rule seems to make implicit collection joins work - -commit 9ebac67737a59e93a5c83d07a6af2cecc2fc3c6f -Author: Gavin King -Date: Tue Feb 8 15:49:43 2022 +0100 - - change the new syntax for HQL collection-aggregates - - this feels more consistent to me, and avoids introducing "new" syntax - -commit 5828536428010ac9664175e7bc053b7b3ce6aba4 -Author: Christian Beikov -Date: Wed Feb 2 17:02:37 2022 +0100 - - Implement window function support in HQL - -commit d5d1cf937cfe67d0b54cab59a85b6b89cffe870a -Author: Christian Beikov -Date: Tue Feb 1 21:06:56 2022 +0100 - - Fix a type and missing branches in base walkers for ordered set aggregates - -commit 236ece769bf645056b1dddb8afe14dd1a9fc4e65 -Author: Christian Beikov -Date: Tue Feb 1 20:34:37 2022 +0100 - - Implement query transformer to emulate for ordered set aggregate functions through their window variants - -commit f52cf04a1653af02dad7cf632fe5d3766e4db942 -Author: Christian Beikov -Date: Tue Feb 1 11:44:51 2022 +0100 - - Introduce QueryTransformer for functions - -commit c2ee076ce64307b402b2d14d4ce2d610449652b7 -Author: Christian Beikov -Date: Wed Feb 2 19:41:37 2022 +0100 - - Change the way persisting works as needed for list semantics and throw - proper error on null list index - -commit 62b4d249eee516ed98487b9f4cacea5faf203425 -Author: Yoann Rodière -Date: Thu Jan 27 17:24:43 2022 +0100 - - HHH-15054 Reproducer for cascade-delete NPE on entity with @OneToMany(mappedBy = ...) - -commit 842ebd0e7e9769c54426c0938209995e5606c8be -Author: Christian Beikov -Date: Tue Feb 8 15:26:57 2022 +0100 - - Make use of function return type resolver for elements/indices functions - -commit 9b53ca8559e420f0becf3e2c7e83ea9164e81480 -Author: Christian Beikov -Date: Fri Feb 4 11:23:39 2022 +0100 - - Implement support for using generically typed associations to re-enable inheritance/discriminator tests - -commit eb572376a9a870fa3d03c9058647adb783af85a7 -Author: Andrea Boriero -Date: Mon Jan 31 17:00:42 2022 +0100 - - Implemented NamedQuery creation from Criteria - -commit bd5b05cbe31face15381eb7d94b26dcf65317df5 -Author: Gavin King -Date: Tue Feb 8 14:25:53 2022 +0100 - - improve error messages - -commit 0dfa91f6ecbc5101f194f895a63609be85b06fc0 -Author: Gavin King -Date: Tue Feb 8 14:25:38 2022 +0100 - - add a test - -commit eefdb4acd6a51fd3d02d28b8f230e200280d0032 -Author: Gavin King -Date: Tue Feb 8 12:58:02 2022 +0100 - - test demonstrating enduring problems with minelement()/maxelement() - -commit 4e19e322a38fb96384e83d775b83dee9da04bbf4 -Author: Christian Beikov -Date: Tue Feb 8 10:52:12 2022 +0100 - - Don't create table groups for the plural path of a plural part path - -commit 89bf82fee4d18802525b453518200d28851ed504 -Author: Christian Beikov -Date: Tue Feb 8 12:23:27 2022 +0100 - - Avoid eagerly resolving secondary tables when using discriminator path - -commit cab03a238debab40fd2dd6daa95c54da025a8d05 -Author: Christian Beikov -Date: Tue Feb 8 11:19:55 2022 +0100 - - Add treat test for TCK compliance - -commit 0a5b62421eaa8f165dcaea35cf6306e09273252c -Author: Christian Beikov -Date: Mon Feb 7 17:48:47 2022 +0100 - - Fix treat join issue with one-to-many and make sure table pruning always works. Also fix some issues with union subclass pruning - -commit 65e282766cad21fcf88d8d97691579a707c5d6cf -Author: Gavin King -Date: Sun Jan 2 17:40:28 2022 +0100 - - test showing 'join treat' broken for @OneToMany - -commit ccee58add8040a2208dae50b45dcb494f0fc2a5d -Author: Gavin King -Date: Mon Feb 7 19:29:04 2022 +0100 - - add some Javadoc, and rename a class - -commit c072ee9cb23dca2529c4e2b256d2329d0c36fceb -Author: Karel Maesen -Date: Wed Feb 2 21:59:51 2022 +0100 - - HHH-14932 Using correct WKB version for Postgis - -commit 285c2099c8b393a2cf2f59377ebacdd0b9cd3aa2 -Author: Gavin King -Date: Mon Feb 7 17:48:06 2022 +0100 - - try to make test work on Maria - -commit addc3ea4c2342b7b4c2386381b59a4d762bb7195 -Author: Gavin King -Date: Mon Feb 7 15:24:55 2022 +0100 - - split out IntegralTimestampaddFunction - -commit 3e97fe39a77fc6b3aff7a5117184b9ee6bbc915c -Author: Gavin King -Date: Mon Feb 7 14:51:23 2022 +0100 - - make TimestampaddFunction understandable using Extract Method - -commit 52c7f61815d00b655b3d7ac3d19af8490d2e6405 -Author: Gavin King -Date: Mon Feb 7 13:41:05 2022 +0100 - - add tests for avg(index) and avg(element) - -commit 3b221b7b18c100c9344463a6bbe654d49074a2f7 -Author: Gavin King -Date: Mon Feb 7 13:40:31 2022 +0100 - - remove a garbage feature (FieldFunction) - -commit 75888b94f284dffba48b3f055bb555a70538e636 -Author: Gavin King -Date: Mon Feb 7 13:26:31 2022 +0100 - - use CastFunction to do typecasts - -commit 416eeafaa28821c667e339b910926e3e19dc89a6 -Author: Yoann Rodière -Date: Mon Feb 7 18:16:07 2022 +0100 - - Keep fewer builds in the Jenkins history - -commit 814c1ad6797cb9be0fca214afef05f456268d8f8 -Author: Christian Beikov -Date: Mon Feb 7 16:06:02 2022 +0100 - - Get rid of continue-on-error - -commit dc65d041d10198becb3e7e8337e52b20c1caadda -Author: Christian Beikov -Date: Fri Feb 4 15:14:36 2022 +0100 - - Fix issues with min/max element/index in the select clause - -commit e0a35287c95ec943a6466345fa0827d6a649cd38 -Author: Christian Beikov -Date: Fri Feb 4 13:13:15 2022 +0100 - - test showing maxindex() / maxelement() broken - -commit 768e6873fdb2fdc2ee9b561793581340b81decb4 -Author: Andrea Boriero -Date: Tue Feb 1 16:21:46 2022 +0100 - - Fix Attribute#getJavaType() returs also primitive types - -commit a25758f519250ce718f4218c00c2a81b1443617b -Author: Gavin King -Date: Sat Feb 5 20:02:31 2022 +0100 - - don't write @SuppressWarnings({ "unchecked" }) - -commit 4b1cd56218403a2ce286b7e82663fd7d08a47e8c -Author: Gavin King -Date: Sat Feb 5 19:58:06 2022 +0100 - - improve Javadoc of JdbcType - -commit bedd31b36e74c21aab0889c79094a1ae44dbb6b2 -Author: Gavin King -Date: Sat Feb 5 19:57:41 2022 +0100 - - clean up a bunch of generics-related warnings - -commit 86cdf67016a28b4bb626b58f6ba8ce85722e82d4 -Author: Steve Ebersole -Date: Sat Feb 5 10:49:54 2022 -0600 - - HHH-15055 - Document SelectionQuery and MutationQuery - -commit a7da40709ca30ad5000fc7daa5f47b7b69bdc735 -Author: Gavin King -Date: Sat Feb 5 15:28:04 2022 +0100 - - clean up looping, using indexed for instead of local var - -commit 5de6c703a863df76265b6b49c6e50911f5a47dee -Author: Gavin King -Date: Sat Feb 5 15:08:08 2022 +0100 - - clean up the way JdbcLiteralFormatter is called - - this is a case where we can use wildcard capture - -commit 09470bd55a983169e2c89b6f1b8a39abe2457f49 -Author: Gavin King -Date: Sat Feb 5 12:31:52 2022 +0100 - - fix a couple of warnings in Dialect - -commit c2f0ab8fcff33e4ef77b46ae157370ad2d88efae -Author: Gavin King -Date: Sat Feb 5 12:26:09 2022 +0100 - - get rid of warnings involving JdbcFormatter - - also get rid of som explicit type args using <> - -commit 2f08812187678b5c8c8acab4596885ea288df6de -Author: Gavin King -Date: Fri Feb 4 14:52:13 2022 +0100 - - fix the round() function on Postgres - - for some dumb reason, round(x,n) doesn't accept a double on pg - -commit f7d5bc857b119e13fbd1907fd7598203b866e88e -Author: Andrea Boriero -Date: Fri Feb 4 13:56:07 2022 +0100 - - Fix SqmMemberOfPredicate negation determination - -commit 9a2c87808ba16176f91d97ce94a79ed889fa09a3 -Author: Andrea Boriero -Date: Thu Feb 3 15:09:16 2022 +0100 - - Fix mutation queries using temporary table not adding discriminator column - -commit e24611e0c3523b7ed6740e56d22babcb4ff03049 -Author: Andrea Boriero -Date: Wed Feb 2 13:36:24 2022 +0100 - - Call EntityMenager#createQuery() that causes RuntimeException should mark Transaction for Rollback - -commit a290e85b14ddc94998efc28d09a4243384d10437 -Author: Yoann Rodière -Date: Fri Feb 4 10:25:58 2022 +0100 - - Use a simpler solution to limit concurrent Jenkins builds - - See https://issues.jenkins.io/browse/JENKINS-43353?focusedCommentId=414847&page=com.atlassian.jira.plugin.system.issuetabpanels%3Acomment-tabpanel#comment-414847 - -commit 51e556ebde441f85c3bd7656edf90b2dcae952a1 -Author: Yoann Rodière -Date: Thu Feb 3 13:54:36 2022 +0100 - - HHH-15068 Don't try to instantiate types through the bean manager when that's not possible - -commit b8060d2df7d33c6478d59fe07e1e1c4febefaa35 -Author: Yoann Rodière -Date: Thu Feb 3 13:25:26 2022 +0100 - - HHH-15068 Reproduce problem where type resolution accesses the bean manager before it's ready - -commit 5ced797dd5af059ff85e68e2ad6094dfda8a9839 -Author: blafond -Date: Wed Feb 2 13:28:54 2022 -0600 - - HHH-15067: Set add() method as public to allow non-nullable associations in hibe… - …rnate-reactive - -commit 0f6295e6e16c41577e5ed3e4f00a45bb6f07d250 -Author: Gavin King -Date: Wed Feb 2 22:58:51 2022 +0100 - - remove a bunch of unused classes - -commit 11f784e23b49f4dcbea47830eb5918ac34782667 -Author: Gavin King -Date: Wed Feb 2 22:11:25 2022 +0100 - - add some Javadoc, fix warning, and remove some minor junk - -commit c41c5c74722bae7a63c58f267dcd64022f8e527f -Author: Gavin King -Date: Wed Feb 2 22:10:48 2022 +0100 - - simplify some code in SchemaAutoTooling - -commit 4904f64b2e3d96db0e095af279ca46751267772c -Author: Gavin King -Date: Wed Feb 2 22:10:08 2022 +0100 - - remove an unused JACC-related class - -commit 734b80c531bdb2a9bb33971cd57f51fce662e758 -Author: Christian Beikov -Date: Thu Feb 3 11:55:31 2022 +0100 - - Add test and fix non-pk association comparison issues - -commit 798f9b05184bd0b14bdf13841b127ddef912a62d -Author: Gavin King -Date: Wed Feb 2 20:41:52 2022 +0100 - - disable test on Sybase - - oops, I missed that this failed in CI! - -commit f9392406b7e09c84db62c6f37cf3a36bc554bbaf -Author: Gavin King -Date: Wed Feb 2 17:06:47 2022 +0100 - - mention ordered set functions in documentation - -commit a4a15e8b35360f3fe84a129a966fb29d060c584a -Author: Gavin King -Date: Wed Feb 2 15:13:35 2022 +0100 - - use single quotes instead of backticks for consistency - -commit c861e465a7d57be68cd8a62215e9487507d53dff -Author: Yoann Rodière -Date: Fri Jan 28 16:00:58 2022 +0100 - - HHH-15057 Fix exception on persisting bidirectional, list many-to-many association - -commit 4f6b60e3ee74913c4bb5f1f29cc9a2d51d6ed7e7 -Author: Yoann Rodière -Date: Thu Jan 27 14:38:44 2022 +0100 - - HHH-15057 Reproducer for exception about order on many-to-many list - -commit fef147d6a416f3c344b0479b84cf16721d39d14f -Author: Andrea Boriero -Date: Fri Jan 28 12:56:17 2022 +0100 - - Fix binding issue for Criteria with paramters having the same name - -commit 971d1ea2f4ab557d2630a6bcbef1a2ab6bdb8ae6 -Author: Andrea Boriero -Date: Thu Jan 27 12:56:14 2022 +0100 - - Fix function parameters type determination - -commit b721aa9b86c2e2e35747cd19431c191d34d15761 -Author: Andrea Boriero -Date: Tue Feb 1 16:35:52 2022 +0100 - - Fix SqmAttributeJoin#copyTo() method - -commit d0255d2c2bca958d9c7305c846e74e34fd70a275 -Author: Gavin King -Date: Tue Feb 1 16:13:48 2022 +0100 - - make CommonFunctionFactory a real object - -commit fed23e51b5018db0ea0521b5c440c3ca6ed75b19 -Author: Gavin King -Date: Tue Feb 1 15:35:06 2022 +0100 - - extract method on duplicated expressions in CFF - -commit 6327616c8d576f06fa13dd9940a7feaaceb7984c -Author: Andrea Boriero -Date: Mon Jan 31 11:57:18 2022 +0100 - - EntityManager#find() throws IllegalArgumentException for wrong arguments - -commit 0509b10040a95a3e3dedad7530a83ee6aea0f27d -Author: Christian Beikov -Date: Mon Jan 31 19:04:31 2022 +0100 - - Implement support for ordered set-aggregate functions like listagg, percentile_disc, rank etc. - -commit bd2446a5d56551471e5f102c622f6da1bbcbfb9e -Author: Andrea Boriero -Date: Tue Feb 1 11:47:14 2022 +0100 - - Fix throw IllegalArgumentException for query with no roots specified - -commit 5a549ea5b4d8b4fd55be456293093e686764fc3a -Author: Gavin King -Date: Mon Jan 31 21:36:44 2022 +0100 - - fix initialization of SingleTableEntityPersister to be eager - -commit dcd7ebbb5648968228c21de6db7070e52da9ac69 -Author: Gavin King -Date: Mon Jan 31 19:07:17 2022 +0100 - - clean up some warnings - - use Metadata instead of deprecated Mapping - (I'm not sure that's really an improvement) - -commit d2b740ce5b4a04fcf8a27cf0db505060f1533a1a -Author: Jan Schatteman -Date: Mon Jan 31 19:14:48 2022 +0100 - - Jrenaat 6.0 deprecation removals (#4718) - - * Removed deprecated org.hibernate.boot.jaxb.internal.stax.LocalSchema - - Signed-off-by: Jan Schatteman - - * Remove some deprecations from org.hibernate.engine.jdbc - - Signed-off-by: Jan Schatteman - - * Remove deprecated misspelled method in PostActionEventListener - - Signed-off-by: Jan Schatteman - - * Remove deprecated getSource() from AbstractPreDatabaseOperationEvent - - Signed-off-by: Jan Schatteman - - * Privatize deprecated buildOptimizer method in OptimizerFactory - - Signed-off-by: Jan Schatteman - - * Remove deprecated ServiceContributingIntegrator - - Signed-off-by: Jan Schatteman - - * Remove some more deprecated features - - Signed-off-by: Jan Schatteman - -commit 0ad5796ffdc90cf85c21f17477b7c48ad63f7687 -Author: Christian Beikov -Date: Mon Jan 24 15:54:42 2022 +0100 - - Implement SQM copying for JPA Criteria API uses - -commit 5446291171dffecb1f91a819e0e9da81f54e0bd9 -Author: Andrea Boriero -Date: Mon Jan 31 11:26:12 2022 +0100 - - Throw UnknownSqlResultSetMappingException for non existing StoreProcedure result mapping - -commit b139967be15d7a31afbc2e90e057e786e9075861 -Author: Andrea Boriero -Date: Fri Jan 28 18:15:25 2022 +0100 - - Fix Criteria Subquery#getSelection() returns null when it has not any select expression - -commit de0dd8cda30f1f1d27bc57dbeac3f25492c7c137 -Author: Christian Beikov -Date: Mon Jan 31 11:39:26 2022 +0100 - - Copy DomainParameterXref on demand instead of recreating to avoid instance mismatch with ParameterMetadata - -commit 1e823386f605712caaaae87dbc96cabcc65a0806 -Author: Christian Beikov -Date: Mon Jan 31 10:34:03 2022 +0100 - - Support FK column access optimization also for associations in embeddables of an element collection - -commit afdedb0fc538187d67c297f34719597ae1a39428 -Author: Christian Beikov -Date: Sun Jan 30 16:20:50 2022 +0100 - - Avoid rendering unnecessary parenthesis for junctions - -commit cd555de724a7466aabedc2271d035594f6381a67 -Author: Christian Beikov -Date: Sun Jan 30 16:09:40 2022 +0100 - - Fix NPE for unbound parameters due to wrong type determination - -commit ce5951a948b0eac78375d8b1616c94426f760210 -Author: Christian Beikov -Date: Sun Jan 30 14:57:26 2022 +0100 - - Fix type inference for binary arithmetic expressions - -commit af42f3a76cd316cb3995da4c7f61933c47142aac -Author: Christian Beikov -Date: Sun Jan 30 14:28:44 2022 +0100 - - Allow controlling whether selection item deduplication should happen and disable deduplication in subqueries. Remove some dead code and fix a possible NPE. Expose some JdbcOperation fields for libraries to make it easy to produce a derived operation. - -commit ef391bf64452c0ad1ad1a6cd797023a9488f34c3 -Author: Gavin King -Date: Mon Jan 31 12:17:07 2022 +0100 - - get rid of warnings about use of deprecated PersisterCreationContext - -commit 1c73be8ba43f6699fd0ebce59291c89570c03004 -Author: Gavin King -Date: Mon Jan 31 11:44:39 2022 +0100 - - remove use of deprecated method - -commit 3f563087e65995d4d44621a6d68e1f7d4ab5a6b5 -Author: Gavin King -Date: Sun Jan 30 19:21:45 2022 +0100 - - add a couple of comments - -commit c9015bcd8d4b7204af262aece0cdfa74610d4257 -Author: Gavin King -Date: Sun Jan 30 19:21:26 2022 +0100 - - make ln() and exp() have the return type Double - -commit 385cba79d8ae6fcb031d2f2bc39231c31ca65aee -Author: Gavin King -Date: Sun Jan 30 19:08:58 2022 +0100 - - remove PowerReturnTypeResolver - - You can't do "exact decimal" exponentiation. For the same reason that - sqrt() is of type Double in the JPA, pow(decimal, 0.5) is also of type - Double. - - Yes, yes, I know that some dbs (Postgres!) claim that the return type is - NUMERIC for NUMERIC arguments. But go on, try it: yes, the return type of - typed NUMERIC, but then it has a very suspicious number of digits. Hrrm.... - 17 decimal digits, now why does that specific number ring a bell? - -commit 5b5c76abfd655cb24c9b203e9e099e8f1aa0cdbc -Author: Gavin King -Date: Sun Jan 30 18:09:44 2022 +0100 - - fill in type parameters of raw type in Type interface - -commit 1b0862babd3b0719c4df5c4c00bd92fe5a3c1779 -Author: Gavin King -Date: Sun Jan 30 14:06:26 2022 +0100 - - introduce Contexts for the other cascading operations that need them - - and typesafety, finally! - -commit 7570d1529108a7b527a0bc65f48bff7ecd5f8e6e -Author: Gavin King -Date: Sun Jan 30 13:15:37 2022 +0100 - - finally fix the warnings and typecasts in DefaultMergeEventListener - - by using MergeContext instead of (raw!) Map - -commit b75613cff15deac351542e4195e26888fb63855d -Author: Gavin King -Date: Sun Jan 30 13:03:23 2022 +0100 - - edit the (excellent) javadoc of MergeContext - -commit 772c4533ee70296271424ccfbfb65710d4023062 -Author: Gavin King -Date: Sun Jan 30 18:46:16 2022 +0100 - - move inner classes of CommonFunctionFactory to toplevel - -commit 6f3592ac25419ca742afea642e47aba453022765 -Author: Gavin King -Date: Sat Jan 29 20:09:19 2022 +0100 - - Streams are no longer closed by terminal operations - - This is no longer true, according to H6 migration guide, so undocument it - -commit 8025af75927df1a62355786626f85746a8eb725f -Author: Gavin King -Date: Sun Jan 30 16:58:24 2022 +0100 - - add some code comments documenting some decisions taken here - - cc @beikov - -commit 99e43537c188a0afaa1631e8b99274a482369a33 -Author: Gavin King -Date: Sun Jan 30 06:21:09 2022 +0100 - - fix a couple of minor errors in doc - -commit 1188c6e628f296b6a9dcc16c904b4702b7c4f4ac -Author: Gavin King -Date: Sat Jan 29 19:58:01 2022 +0100 - - Use a table instead of a list - -commit b2a929a46e8dfee33ff082579aa9bdb9c108ce5a -Author: Gavin King -Date: Sat Jan 29 19:42:59 2022 +0100 - - fix quoting - -commit f5278ce6788d3c807071e722901ce9f53d043390 -Author: Gavin King -Date: Sat Jan 29 00:16:34 2022 +0100 - - javadoc about XML format mappings - -commit 9a11e843e678bf64c0812e9a09b57ce2e8777bf2 -Author: Gavin King -Date: Sat Jan 29 18:00:39 2022 +0100 - - stop calling factory.getJdbcServices().getDialect() so much - -commit 48dc4662efc548d15bb7f420e7059e67ed4b3cb5 -Author: Gavin King -Date: Sat Jan 29 17:46:42 2022 +0100 - - move subclassColumnClosure down to the only subclass that uses it - -commit 135216b0a97ed0fd18fbb020f7191432a314d6eb -Author: Gavin King -Date: Sat Jan 29 15:21:15 2022 +0100 - - fix some warnings in a couple of tests - -commit 56232a015988f6ea122f1e4e34d991c172afcdf6 -Author: Gavin King -Date: Sat Jan 29 15:14:32 2022 +0100 - - remove a bunch of unused junk from the persisters - - this is a potential performance gain! - -commit 929cbd1139f5deea128beccd66706b4d8f6677eb -Author: Gavin King -Date: Sat Jan 29 13:14:22 2022 +0100 - - add missing @Override annotations - -commit 38f4c70e7b56007566d8deb5eb28c0880d1d6900 -Author: Gavin King -Date: Sat Jan 29 12:51:57 2022 +0100 - - split up TypeHelper - -commit 6c3b74d39ea05622099499ca14c03df140423707 -Author: Gavin King -Date: Sat Jan 29 11:16:20 2022 +0100 - - clean up an important test - -commit e8d7c987984fa419d681b5340c5203629c0e11d2 -Author: Gavin King -Date: Sat Jan 29 11:15:55 2022 +0100 - - deprecate two operations that are no longer called - - ... and return deprecated types - -commit ea3609957173eeea0ef6f78a616afa59b818430f -Author: Gavin King -Date: Sat Jan 29 10:58:37 2022 +0100 - - fix some deprecation warnings by using getValues() instead of getPropertyValues() - - though I don't like the underlying deprecation that made this necessary, and I - would prefer to be able to roll back these changes - -commit 678adbf68235c2a85eb904eb2ccbd867ab957bd6 -Author: Gavin King -Date: Sat Jan 29 10:55:50 2022 +0100 - - add some missing (since = "6.0") - -commit 3f1cc36c2a70f2f80fe8116f1c1ee877338897e4 -Author: Gavin King -Date: Sat Jan 29 10:48:23 2022 +0100 - - fix some warnings in QueryResultsCacheImpl - -commit d86e9b6ab610afd33de6b612d321327984e90b55 -Author: Gavin King -Date: Sat Jan 29 10:32:49 2022 +0100 - - minor stylistic review and generics fixes in event stuff - -commit c086fff1f857b3fc2a1448459b10e4a5a6e7e369 -Author: Gavin King -Date: Sat Jan 29 09:00:14 2022 +0100 - - fix some warnings in a couple of tests - -commit c807aecdb97f4b11fd9e13d5997802f886d1c99b -Author: Gavin King -Date: Sat Jan 29 08:59:34 2022 +0100 - - add some @FunctionalInterface annotations - - and fix a warnings - -commit 232ad00f5c447511c6cd8a5b4c0b8c7f4aafdb9e -Author: Gavin King -Date: Sat Jan 29 08:57:25 2022 +0100 - - add some missing (since="6.0") - -commit cd7417e815b01e3c5a5456abd1557033275386c6 -Author: Gavin King -Date: Fri Jan 28 15:50:27 2022 +0100 - - remove unwrap() methods that aren't to do with proxying - - it's better to do this stuff in a more typesafe way - -commit 2e2a5445849e2fd3052181fefa828bd7fb11c10b -Author: Gavin King -Date: Sat Jan 29 01:27:36 2022 +0100 - - correct fix for Interceptor.onSave() - - see https://github.com/hibernate/hibernate-orm/pull/4404/commits/9898151ddafa1264de0c83f42747648eb6c9c44e - - This change broke the ability to selectively implement methods of Interceptor, - and also broke backwards compatibility with older implementations of Interceptor. - -commit 2090df4a08ef82e06b6ad7acd1f6f21d3c7165e2 -Author: Gavin King -Date: Sat Jan 29 01:23:19 2022 +0100 - - fix some raw types in Configuration - -commit 9276ce4421c8e95857f4b3ef89675f2096976f7e -Author: Gavin King -Date: Fri Jan 28 23:32:34 2022 +0100 - - explain how to get things in the javadoc - -commit f388b2fb2b8abe0986a38974b8d19cb21819eca0 -Author: Gavin King -Date: Fri Jan 28 19:46:39 2022 +0100 - - Javadoc for SessionFactoryBuilder and lots of crossrefs - -commit 77137f7407ed7e87806b25459de6c6d6d2a13c19 -Author: Gavin King -Date: Fri Jan 28 00:21:10 2022 +0100 - - remove type parameter from BasicValueBinder - - why it ever had one, I can only speculate - -commit fb1650f7891cb51942a1de43436ef377416c6fb8 -Author: Gavin King -Date: Fri Jan 28 17:16:46 2022 +0100 - - refresh Javadoc for Configuration and friends - -commit b1a09d5630f1caacfb845dede15f6c9c6142e0a2 -Author: Andrea Boriero -Date: Fri Jan 28 15:07:18 2022 +0100 - - Fix Criteria#getResultType() returning Object class instead of null - -commit 475d0289817c3657b19b7d7c409d11802159aa87 -Author: Gavin King -Date: Fri Jan 28 13:12:47 2022 +0100 - - remove @TimeZoneColumn for now because it's unimplemented - - and there's no plan to implement it for 6.0 - - (we can put it back later if someone gets around to implementing it) - -commit 5f1358633d368605e76da20f93d19f25ceb06055 -Author: Gavin King -Date: Fri Jan 28 14:05:09 2022 +0100 - - remove a deprecation that was probably an accident - -commit d4f934881c333af2445a5246380b4ced68f2bda9 -Author: Gavin King -Date: Thu Jan 27 22:08:39 2022 +0100 - - fix some warnings and other misc cleanups to .cfg package - -commit e80892b77f7fef5418f7c0ab8431179d2d485655 -Author: Gavin King -Date: Thu Jan 27 20:30:57 2022 +0100 - - fix typo - -commit f9141ecb5a9717c2c04d073829590b0cc477be64 -Author: Andrea Boriero -Date: Wed Jan 26 21:26:18 2022 +0100 - - Add additional test - -commit 6bfa8d6c275bd39a9c3fef8772c2c646be722f2d -Author: Gavin King -Date: Thu Jan 27 19:44:32 2022 +0100 - - fix disabling of fk in @ManyToOne associations - -commit abe0cc3108bef78f51da2e16d96cd56b49b5021b -Author: Gavin King -Date: Thu Jan 27 19:36:12 2022 +0100 - - javadoc for @NotFound and NotFoundAction - -commit 0a251e9a0e6206e9a1bc4a6c884faacfaa47d069 -Author: Gavin King -Date: Thu Jan 27 17:09:17 2022 +0100 - - second round of binder cleanup: CollectionBinder, more AnnotationBinder - -commit 13b00f89075bdeae81c8767d2f629599bfbb85f6 -Author: Gavin King -Date: Thu Jan 27 11:47:14 2022 +0100 - - massive cleanup of AnnotationBinder - -commit 9a22e615f53cb9798848ee53028bd55ff22e9d46 -Author: Christian Beikov -Date: Thu Jan 27 16:35:51 2022 +0100 - - Do not eagerly create a table group for implicit joins - -commit 3df3d37dbd417be12c552d19cdfb862f8e636d22 (tag: 6.0.0.CR1) -Author: Hibernate-CI -Date: Thu Jan 27 15:22:20 2022 +0000 - - Post-steps for release : `6.0.0.CR1` - -commit 6b37a21c28d55cee00cd288a32bf107b122cab40 -Author: Hibernate-CI -Date: Thu Jan 27 15:17:31 2022 +0000 - - Pre-steps for release : `6.0.0.CR1` - -commit 67fbab36bbdf47523924b515f886f8e13c8e9b23 -Author: Steve Ebersole -Date: Thu Jan 27 08:49:42 2022 -0600 - - list v. bag - javadoc, migration guide - -commit 32f493e74c58e88635ac486cf69675661b2eae48 -Author: Christian Beikov -Date: Thu Jan 27 11:55:58 2022 +0100 - - Fix remaining tests - -commit 31bc14979b5eb04b598e5a987a1d1204a94cafeb -Author: Steve Ebersole -Date: Wed Jan 26 23:16:16 2022 -0600 - - move remaining tests from o.h.test to o.h.orm.test - -commit d3c38f2a8e8c96ecf92a07244d6fc8ad29cd82c4 -Author: Gavin King -Date: Thu Jan 27 01:05:45 2022 +0100 - - javadoc revision to CommonQueryContract - - and fix the package info for org.hibernate.persister.walking.spi - -commit be49444822e7446ee9f4f863994ad3ad1e8e704c -Author: Andrea Boriero -Date: Sat Jan 22 19:54:37 2022 +0100 - - Fix failures with inline value handling mode - -commit c8a4546331bfa0d750986f30ad020cc948d54f10 -Author: Gavin King -Date: Wed Dec 29 11:59:51 2021 +0100 - - add Query.getSingleResultOrNull() - - this is quite similar to the existing uniqueResult() method, - but its name is much clearer, and it throws the JPA exception - -commit d7e5d552788a199039e646ae9787c5ac7ebad337 -Author: Steve Ebersole -Date: Wed Jan 26 17:07:27 2022 -0600 - - move remaining tests from o.h.test to o.h.orm.test - -commit 5436f441aef0539ed95e0e9971c3152fe8ea0748 -Author: Steve Ebersole -Date: Wed Jan 26 17:06:25 2022 -0600 - - move remaining tests from o.h.test to o.h.orm.test - -commit 5ae3d1e81ec7dac0a74ec9cda904380c7d48f6f6 -Author: Andrea Boriero -Date: Sat Jan 22 19:54:37 2022 +0100 - - CriteriaQuery#getParameters() should not return parameters internally created because value handling mode is bind - -commit 09299e1f417a193dabf0e020f33166522d67ccad -Author: Gavin King -Date: Wed Jan 26 21:42:16 2022 +0100 - - get rid of the last iterators in the mapping package - -commit 12a515a95a44b56d0fba5db809623c57b3632027 -Author: Gavin King -Date: Wed Jan 26 20:29:10 2022 +0100 - - get rid of more iterators in the mapping package - -commit 54b9677d99d0e43ae706f566dcb45b07bdabc882 -Author: Gavin King -Date: Wed Jan 26 14:04:09 2022 +0100 - - get rid of the iterators in the mapping package - - and clean up a lot of warnings - -commit 766d519ddd17a06a77d861050d1623066b411b25 -Author: Gavin King -Date: Tue Jan 25 08:02:32 2022 +0100 - - actually remove EntityTuplizer and friends - -commit 56973f5da427f40b298aa68573b6df597a68a4cd -Author: Gavin King -Date: Wed Jan 26 10:22:59 2022 +0100 - - remove some operations of SessionFactoryDelegatingImpl - -commit c06b5c18e322fff1d28650ca0d98c51110e322bd -Author: Christian Beikov -Date: Wed Jan 26 21:16:13 2022 +0100 - - More test fixes and stored procedure fixes for H2 - -commit da00adf0da1d427b1bd320f2eccdbb6e6d073b2a -Author: Andrea Boriero -Date: Tue Jan 25 17:30:41 2022 +0100 - - Skip Criteria result type validation when JPA query compliance is enabled - -commit cb6be7dc818991087d1b81f3ce6c774c49323871 -Author: Andrea Boriero -Date: Wed Jan 26 13:14:00 2022 +0100 - - Fix Subquery#getCorrelatedJoins throws NPE when FromClause is null - -commit b9d4a74693b62e1d46928929c7ed04646bcef06d -Author: Andrea Boriero -Date: Wed Jan 26 16:50:29 2022 +0100 - - Fix rendering of negated boolean expression predicate - -commit 96931d8094ca01fe8281ad4f889e6f2cc6a6885f -Author: Christian Beikov -Date: Wed Jan 26 15:13:03 2022 +0100 - - Fix tests and implement handling callable function hint for stored procedures - -commit 131b7bb4e0a4dd0caefbd8c1f1d2ca6bd7e1850e -Author: Steve Ebersole -Date: Wed Jan 26 13:43:27 2022 -0600 - - HHH-15030 - SelectQuery, MutationQuery, etc - - SelectQuery based on Criteria - SelectQuery based on named query (HQL only) - MutationQuery based on named query (HQL only) - -commit 751aa6f50fff28a3ba03aa5a2f10add46e1df43c -Author: Craig K -Date: Wed Jan 26 08:18:01 2022 -0600 - - Fix race condition that allowed Component.getType() to return null (#4700) - - This fix prevents an NPE in org.hibernate.mapping.SimpleValue.isValid() and likely elsewhere - -commit cc0b1981420e290f2c78fe934cc08b1482d50103 -Author: Jan Schatteman -Date: Mon Jan 24 22:24:12 2022 +0100 - - Remove some deprecations in org.hibernate.cfg and - org.hibernate.collection.spi - - Signed-off-by: Jan Schatteman - -commit d2643fc2b58cd9e4977205b998b192c7831ea057 -Author: Gavin King -Date: Wed Jan 26 10:24:41 2022 +0100 - - minor javadoc improvements to Mapping - -commit e82a5492c386718552b3446df5d447ebd62229ca -Author: Gavin King -Date: Wed Jan 26 09:20:00 2022 +0100 - - get rid of some more usages of getMetamodel() - -commit a3ef7b906d4fc7d1578e917b9cd11e6cc6fc7926 -Author: Gavin King -Date: Wed Jan 26 08:20:32 2022 +0100 - - Also Javadoc for JPA compliance stuff - - clarify logic of a method in AbstractEntityPersister - (there was actually a bug here) - -commit ccf88c925e67414f7e3106dbab7f8fc15dae4e41 -Author: Gavin King -Date: Wed Jan 26 08:19:49 2022 +0100 - - remove isStrictJPAQLCompliance() - - it was uncalled, and anyway incorrect - -commit 7b00d3ce78453af59a6b63768f64d2c688e2b831 -Author: Steve Ebersole -Date: Tue Jan 25 20:21:39 2022 -0600 - - Migrate internal uses of `MetamodelImplementor` (deprecated) to instead use `MappingMetamodel` - -commit f6287cedc214e34eb447a7481cdb8c22a39db69c -Author: Gavin King -Date: Wed Jan 26 00:56:09 2022 +0100 - - very minor cleanups to engine package - -commit ee1d27719c4714f1caef6bcf2476c3a459a874eb -Author: Gavin King -Date: Wed Jan 26 00:12:33 2022 +0100 - - minor cleanups to Actions - -commit 8f8ae50e0b278b85000451bde91ba746f22e43d9 -Author: Gavin King -Date: Tue Jan 25 22:30:32 2022 +0100 - - remove deprecated ExtendedBeanManager - -commit 5dbf9aedf947f133f7ce4cd2125d0c545a16d225 -Author: Gavin King -Date: Tue Jan 25 22:47:58 2022 +0100 - - fix for Dialects with null SQLException delegate - -commit 6b5c11b1ffee1a0699af0a6fe24df59f04a6303f -Author: Gavin King -Date: Tue Jan 25 21:44:11 2022 +0100 - - clean up some warnings in engine.jdbc package - -commit 6b51952137b95ba97c4d93b2e625a64f0b2273d9 -Author: Gavin King -Date: Tue Jan 25 21:26:34 2022 +0100 - - clean up SQLExceptionConverter and friends removing obsolete stuff - -commit e51c210d782da2ad9d102c4a02f37ddfca0ae67a -Author: Gavin King -Date: Tue Jan 25 14:56:42 2022 +0100 - - squash lots of warnings in services - - change the raw Map representation of config properties to Map - -commit 1f40ed164c0ff8cc362022290b8307d16fef9499 -Author: Gavin King -Date: Tue Jan 25 12:38:37 2022 +0100 - - ./gradlew - -commit ef86097db75186f114e87e580147635fb599901d -Author: Gavin King -Date: Tue Jan 25 11:25:49 2022 +0100 - - minor improvements to Javadoc of Mutability - -commit 03a3f96c62622007e560421a917423e94de5a104 -Author: Gavin King -Date: Tue Jan 25 10:23:13 2022 +0100 - - squash a bunch of warnings - -commit c44e0519b9fe40c2ee8c8f8c2b3508a392d07c6a -Author: Gavin King -Date: Tue Jan 25 10:06:51 2022 +0100 - - remove deprecated operations of SessionBuilder - - they've been deprecated since 5.2 - -commit 9c37385cb92eda7e4a1a656b96c8762c1b940253 -Author: Gavin King -Date: Tue Jan 25 08:58:55 2022 +0100 - - remove deprecated operations from SessionFactoryBuilder - -commit f0fa64bda848eb2a911be686de92b05dcc006a8c -Author: Gavin King -Date: Tue Jan 25 08:22:22 2022 +0100 - - make checkstyle shut up - -commit 55a556b0171def44b70f0351c0ceece74363ac2e -Author: Gavin King -Date: Tue Jan 25 07:46:48 2022 +0100 - - mark impls of EntityTuplizer as @Deprecated - -commit 1ebe8523e53b42b27d8a5c4119bf5ea1b85bd4c1 -Author: Gavin King -Date: Tue Jan 25 07:46:04 2022 +0100 - - better to throw than always return null - - it would be even better, IMO, to simply remove this method - -commit 3f879dc3dbce1219eeb14ac87f933c702fbd2376 -Author: Steve Ebersole -Date: Mon Jan 24 19:52:22 2022 -0600 - - User Guide - collection mapping docs - -commit 610446270ecfd3913344b2386cd424025627be03 -Author: Karel Maesen -Date: Sun Jan 23 15:49:05 2022 +0100 - - HHH-15047 Ensure spatial functions have non-null return type resolver - -commit 6590727698f068c5e4e13642171a62017fedf025 -Author: Gavin King -Date: Mon Jan 24 23:43:45 2022 +0100 - - add a couple of missing @SuppressWarnings in Query hierarchy - -commit 599ffec8fc5de2f104652a3b56bc6bd6a8acdbda -Author: Gavin King -Date: Mon Jan 24 23:33:19 2022 +0100 - - take out even more @deprecated trash - -commit fad946838ad183834d320a5717799f7bb5b96785 -Author: Gavin King -Date: Mon Jan 24 22:27:56 2022 +0100 - - cleanup CallbackRegistry - -commit 73f4960e3d3a60e71fec50f3da76577cca7b6cde -Author: Gavin King -Date: Mon Jan 24 22:22:54 2022 +0100 - - take out some @Deprecated trash - -commit bfde4461b3ceda3a2f501570c1dca49aea14c347 -Author: Steve Ebersole -Date: Mon Jan 24 16:44:22 2022 -0600 - - Change `@ParamDef#type` associated with a `@FilterDef` from `String` to `Class` in keeping with the general move away from String-based type usage in annotations - -commit 521209815fa5c83d3a985e336e9a8b7fc0697b52 -Author: Steve Ebersole -Date: Mon Jan 24 16:04:08 2022 -0600 - - api, spi, internal, deprecation, javadoc - -commit 510ce500f69889b2f2bd555492bcfe658015594f -Author: Steve Ebersole -Date: Mon Jan 24 15:07:03 2022 -0600 - - Change `@ParamDef#type` associated with a `@FilterDef` from `String` to `Class` in keeping with the general move away from String-based type usage in annotations - -commit 7f2194e068f13db0333cf56ab04af8acae16f708 -Author: Steve Ebersole -Date: Mon Jan 24 14:58:25 2022 -0600 - - api, spi, internal, deprecation, java - -commit 4c0824d74d1b476ccf88da431ca5a5dec9a3a0a6 -Author: Steve Ebersole -Date: Mon Jan 24 14:58:10 2022 -0600 - - Change `@ParamDef#type` associated with a `@FilterDef` from `String` to `Class` in keeping with the general move away from String-based type usage in annotations - -commit 973c052c8c3e2533e9e3da996154f14102695d1e -Author: Gavin King -Date: Mon Jan 24 21:55:31 2022 +0100 - - move since from @deprecated to @Deprecated - -commit a35669f11b646e0d84ea807eec854fbf95e7ee18 -Author: Karel Maesen -Date: Sun Jan 23 17:04:36 2022 +0100 - - HHH-14805 Fix test class for Sql Server - -commit 4b7b6135fe65ae51c31747a528706778abe09161 -Author: Karel Maesen -Date: Sat Jan 22 14:36:24 2022 +0100 - - HHH-14805 Upgrade SqlServer Spatial to H6 - -commit a332d9191ee9fc02898f0774a17abe0446595608 -Author: Steve Ebersole -Date: Mon Jan 24 13:27:45 2022 -0600 - - Work on the User Guide section on @NotFound - -commit 451603e2f285e44c704cdae4cb31fa9cce9c48cf -Author: Gavin King -Date: Mon Jan 24 15:58:32 2022 +0100 - - let's not forget @Nationalized - -commit dc2e86d5c1d68b58c786e4540254f3bbeee858b0 -Author: Jan Schatteman -Date: Fri Jan 21 22:16:43 2022 +0100 - - Remove several deprecations in org.hibernate.boot - - Signed-off-by: Jan Schatteman - -commit d6c4f90f4c1eaeb6908dd76219aed2cfa4c7081b -Author: Steve Ebersole -Date: Mon Jan 24 07:15:42 2022 -0600 - - Change `@ParamDef#type` associated with a `@FilterDef` from `String` to `Class` in keeping with the general move away from String-based type usage in annotations - -commit 596317da0b57080cb2219a33bc43c2bb5a6d2b97 -Author: Gavin King -Date: Mon Jan 24 14:51:29 2022 +0100 - - javadoc around nationalized character support - -commit 9ad64e5001ab1a79f2ca4f3bc09875a1c89c343c -Author: Atgoogat <36623640+Atgoogat@users.noreply.github.com> -Date: Mon Jan 24 13:46:54 2022 +0100 - - HHH-15046: moved overlapping db2_luw version to constant - -commit 77ea0c7c1f4235657d26c81589f04184cd15e571 -Author: Atgoogat <36623640+Atgoogat@users.noreply.github.com> -Date: Mon Jan 24 13:36:48 2022 +0100 - - HHH-15046: db2 version override for SQLAstTranslator - -commit 706bd152223ea7c1ccc72fe752e8ea818c43acce -Author: Atgoogat <36623640+Atgoogat@users.noreply.github.com> -Date: Sun Jan 23 15:01:09 2022 +0100 - - HHH-15046: revert import order update - -commit 5ffeb552517a57bce0c5563b22aca978d178dac2 -Author: Atgoogat <36623640+Atgoogat@users.noreply.github.com> -Date: Sun Jan 23 14:56:26 2022 +0100 - - HHH-15046: revert import order update - -commit ff09336594f136cc156253699eccab1ef3bc9221 -Author: Atgoogat <36623640+Atgoogat@users.noreply.github.com> -Date: Fri Jan 21 15:03:30 2022 +0100 - - HHH-15046: handle db2 luw and db2z/i version differently - -commit d9bae6f31e401119605576f93ce474b3d4ecae6a -Author: Atgoogat <36623640+Atgoogat@users.noreply.github.com> -Date: Fri Jan 21 12:52:57 2022 +0100 - - HHH-15046: fix nullptr problem with db2z/i dialect intialization - -commit b2c29f9ba1386e06597ff38c1a6c96e899e4b37f -Author: Atgoogat <36623640+Atgoogat@users.noreply.github.com> -Date: Fri Jan 21 12:46:00 2022 +0100 - - HHH-15046: test for db2z & db2i initalization error - - both errors ocure because private property "version" is used - through the super-constructor before being intialized. - -commit 5c4ab4eaf6c3cd084b38cd67b8a8a62c8fd337a0 -Author: Gavin King -Date: Mon Jan 24 11:16:53 2022 +0100 - - javadoc improvements to Sessionfactory, Filter, FilterDefinition - -commit c6eb826bd62e05391258cba4c19c7a61acd63f0b -Author: Gavin King -Date: Sun Jan 23 19:46:23 2022 +0100 - - remove deprecated/unimplemented methods of Metamodel - -commit 0426c152d0828a282fd4c7c6cd3cb241ecb764c7 -Author: Steve Ebersole -Date: Sun Jan 23 12:43:02 2022 -0600 - - General clean-up of Javadoc for `o.h.annotations` package - -commit 8168b932be1892bf20c9b21704e95448869f5979 -Author: Steve Ebersole -Date: Sun Jan 23 06:12:07 2022 -0600 - - native-query callable - -commit dcfb6cdb197846936c055d5f8724f7817ab9fdb3 -Author: Gavin King -Date: Sun Jan 23 19:36:43 2022 +0100 - - remove deprecated members of FetchMode - -commit 05349f6a9bf8ffd8f8740c91dca5c314ee1cd500 -Author: Gavin King -Date: Sun Jan 23 19:29:27 2022 +0100 - - for how many decades has this code fragment been rejected by the Java compiler? - -commit bbec4bcd3975a8cb66977a2f61fe14d532ded983 -Author: Gavin King -Date: Sun Jan 23 19:25:45 2022 +0100 - - improve javadoc of Session and SessionFactory - -commit 5158312570ffd734befda7a90a1fed8dc3038e6f -Author: Gavin King -Date: Sun Jan 23 19:04:47 2022 +0100 - - improve some more javadoc - -commit 44799b5a9cf7f4d0b9ace691cf0b56c9e053ec86 -Author: Gavin King -Date: Sun Jan 23 18:24:55 2022 +0100 - - improve javadoc for @DialectOverride - -commit 3c77ab5f69552ae3d5fc07e032c41fd9f784a709 -Author: Gavin King -Date: Sun Jan 23 16:32:43 2022 +0100 - - expressable -> expressible everywhere - -commit 23324318fd22ba29b7466358b54bafcc50148415 -Author: Gavin King -Date: Sun Jan 23 15:54:08 2022 +0100 - - remove deprecated operations of MetamodelImplementor - -commit fa9ab7bdaeb634e800cb5fa4a8a5842268c36377 -Author: Steve Ebersole -Date: Thu Jan 20 10:35:39 2022 -0600 - - clean up remaining test suite failures - - - stored procedure parameters - oracle - -commit 45d5dc8e74bb46bd2d8184bf85cc55149762217c -Author: Steve Ebersole -Date: Wed Jan 19 15:44:54 2022 -0600 - - clean up remaining test suite failures - - - stored procedure parameters - -commit bfe2e84ee241fb7747360f060dae9bea6b43c437 -Author: Steve Ebersole -Date: Wed Jan 19 15:41:34 2022 -0600 - - clean up remaining test suite failures - - - stored procedure parameters - -commit e2db993578ab4b803b67e2b27bb74ea2dab346a8 -Author: Steve Ebersole -Date: Wed Jan 19 08:04:46 2022 -0600 - - clean up remaining test suite failures - - - stored procedure parameters - -commit 2d72015156c48930fa0e9bb43c7937f14584d49a -Author: Steve Ebersole -Date: Sun Jan 23 07:05:33 2022 -0600 - - Build task - collect @Incubating + logging refs - -commit 692fa24b34d91c0a316a0cdd33fc750443b9c1cc -Author: Steve Ebersole -Date: Sat Jan 22 10:53:13 2022 -0600 - - Build task - collect @Incubating + logging refs - -commit ef735221396eb7c8c989343f36dd22d1f62f3fdc -Author: Steve Ebersole -Date: Sat Jan 22 07:12:57 2022 -0600 - - Build task - collect @Incubating + logging refs - -commit d4979ac5472f93cf55d1cad10e9b6c8937dcd19c -Author: Gavin King -Date: Sun Jan 23 11:49:25 2022 +0100 - - clean up some warnings in persisters and improve javadoc - -commit 9724fb0d9b8372c34d1f8246ca7a93ec3c2e7ca3 -Author: Gavin King -Date: Sun Jan 23 11:09:18 2022 +0100 - - actually remove deprecated operations of SessionFactoryImplementor and SessionImplementor - -commit 4b26cb5876351c3dcf79222e39004e4e25af17e8 -Author: Gavin King -Date: Sun Jan 23 10:46:40 2022 +0100 - - remove use of deprecated accessors of SessionFactoryImplementor - -commit be831f969040cba712352f9a6f218a211a46602a -Author: Gavin King -Date: Sun Jan 23 04:18:45 2022 +0100 - - some code simplifications to collection types - - and many more warning cleanups - -commit b7802f5eb6634d365efaa92d750c2b16694a49f3 -Author: Gavin King -Date: Sun Jan 23 02:56:07 2022 +0100 - - clean up yet more warnings, and remove some obsolete code - -commit 24627b214f2bb32c08cd6e9ace9c621cf96899c2 -Author: Gavin King -Date: Sun Jan 23 01:31:16 2022 +0100 - - get IntelliJ to fix a bunch of warnings for itself - -commit 121fd2d87978c8d596893b093c238cfd99dc1f58 -Author: Gavin King -Date: Sun Jan 23 01:03:06 2022 +0100 - - squash warnings in the root package - -commit e3a59f883a0364be17f398da91338dcfe8e6e231 -Author: Gavin King -Date: Sun Jan 23 00:53:38 2022 +0100 - - get rid of billions of obsolete WeakerAccess suppressions - -commit a4cb390552244c1f4923ef4acf5b3838a7995111 -Author: Gavin King -Date: Sun Jan 23 00:10:24 2022 +0100 - - squash some warnings - - mainly by just adding wildcards - -commit 3f073ae551f8114b8c067b709e78d0694f605926 -Author: Gavin King -Date: Sat Jan 22 23:48:44 2022 +0100 - - get rid of a class that was "being phased out" - - and use some more correct generic types - -commit 6f2273d74981f2413a08285b85ee2502bea9ddb7 -Author: Steve Ebersole -Date: Fri Jan 21 23:48:58 2022 -0600 - - HHH-15030 - SelectQuery, MutationQuery, etc - - SelectQuery as typed - -commit dccb1580fe434eba181d1dba624b6a1dbee1bc76 -Author: Steve Ebersole -Date: Sat Jan 22 11:24:02 2022 -0600 - - native query function-call checking - -commit 74c09c0af4b6c10af58940f64fade5ec77772798 -Author: Gavin King -Date: Sat Jan 22 21:22:52 2022 +0100 - - remove incorrect javadoc - -commit b189d4e9c4da6e3c09cab7458d5cfeb01b22eb26 -Author: Gavin King -Date: Sat Jan 22 20:24:57 2022 +0100 - - Javadoc for various annotations - -commit 766483e46d87ba7ca46f9e69edcb3420415b0f8d -Author: Gavin King -Date: Sat Jan 22 19:46:13 2022 +0100 - - remove hibernate.query.omit_join_of_superclass_tables - -commit 6ddb12412cc77fed64e33686d176301799c5cf67 -Author: Gavin King -Date: Sat Jan 22 19:27:11 2022 +0100 - - more work on javadoc of settings - -commit b3b8ef6073ecfd630c509b2f71e8f8f94cc10994 -Author: Gavin King -Date: Sat Jan 22 12:45:35 2022 +0100 - - move DEFAULT_QUERY_PLAN_MAX_COUNT to QueryEngine - - which helps clean up the Javadoc for AvailableSettings - -commit 1ce86ee7e7c17232a409b429e1b848499c285c3d -Author: Gavin King -Date: Sat Jan 22 12:38:40 2022 +0100 - - deprecate a setting that is currently unused - -commit 8a2c000b78622953a9ccfd3b38d56e9049a2cfc6 -Author: Gavin King -Date: Sat Jan 22 11:59:06 2022 +0100 - - fix some generics warnings - -commit ec64ce73216f56eda9ab2be47749a9002b3a3c9d -Author: Gavin King -Date: Sat Jan 22 11:26:45 2022 +0100 - - more work on Query javadoc - -commit 891435f3bb19e23b75d6dcd72a63c290d4814abf -Author: Gavin King -Date: Sat Jan 22 10:48:50 2022 +0100 - - javadoc preamble for Query - -commit eb9e70e30d43523ed7da81debfcf902a7b6f918d -Author: Gavin King -Date: Sat Jan 22 10:06:27 2022 +0100 - - fix some minor generics issues - -commit 2f72d762666400f8b8d83bf463fe9dc04b1e2829 -Author: Gavin King -Date: Sat Jan 22 09:48:11 2022 +0100 - - add some @Deprecated annotations on the methods that return raw types - -commit bab5b2bf9947dc6d848c60631da6df76f97bb663 -Author: Steve Ebersole -Date: Fri Jan 21 23:50:21 2022 -0600 - - minor fixes for function call tests - -commit dd41ebc3cffb9bf995d8eba69dd97ad4ef03509c -Author: Steve Ebersole -Date: Fri Jan 21 22:22:14 2022 -0600 - - HHH-15030 - SelectQuery, MutationQuery, etc - -commit 3365a4fe54f661ca1e4adfa4500928b9c39f3243 -Author: Steve Ebersole -Date: Fri Jan 21 21:55:10 2022 -0600 - - HHH-15030 - SelectQuery, MutationQuery, etc - -commit 159792209ab26bf6d6c82a8e774e133c4aaa635e -Author: Gavin King -Date: Sat Jan 22 00:37:19 2022 +0100 - - more Javadoc refresh - -commit fd75e3e75d11ac75d890c2b780e865689067dee4 -Author: Gavin King -Date: Sat Jan 22 00:36:48 2022 +0100 - - remove some obsolete config properties - -commit 0b01d406c3e4f2869339f6d80bbed3dc38de33bb -Author: Gavin King -Date: Fri Jan 21 23:54:19 2022 +0100 - - second phase of Javadoc refresh for settings - -commit 3202a56617b9a72782955c48abe429a5f8a56a65 -Author: Karel Maesen -Date: Fri Jan 21 15:11:20 2022 +0100 - - HHH-14807 Fix checkstyle errors - -commit cbf98a18454db816044c1c397661eb46b3506cb7 -Author: Karel Maesen -Date: Fri Jan 21 14:46:26 2022 +0100 - - HHH-14807 Upgrade SpatialPredicates for Oracle - -commit d560d819885b80d16bbe98b33828b22b1a1b5bc8 -Author: Karel Maesen -Date: Wed Jan 5 11:24:23 2022 +0100 - - HHH-14807 Refactor function contribution - -commit 355694342d87ff184395cfa9f18961422bea1191 -Author: Karel Maesen -Date: Tue Jan 4 21:56:20 2022 +0100 - - HHH-14807 Upgrade to H6 - -commit 9234aff3ec427f3f99e962adb28086927699dfcc -Author: Steve Ebersole -Date: Fri Jan 21 13:26:02 2022 -0600 - - SelectQuery, MutationQuery, etc - -commit 233470efdb59c2323249c06825e7bbb4d5527e27 -Author: Steve Ebersole -Date: Thu Jan 20 22:38:11 2022 -0600 - - Add SelectionQuery, MutationQuery - -commit 0d709e82134b6f15c3b818ede9829ef739cb50eb -Author: Steve Ebersole -Date: Mon Jan 17 17:08:18 2022 -0600 - - HHH-15030 - Introduce SelectionQuery, MutationQuery, UntypedNativeQuery, MutationNativeQuery, JpaQuery, etc; - HHH-14855 - Support passing a String representation of EntityGraph we can parse through the graph-language parser - - rebasing main - -commit a632ebd6b5b8878adf09c71586bff9a4654c59d4 -Author: Steve Ebersole -Date: Mon Jan 17 17:33:35 2022 -0600 - - HHH-15030 - Introduce SelectionQuery, MutationQuery, UntypedNativeQuery, MutationNativeQuery, JpaQuery, etc; - HHH-14855 - Support passing a String representation of EntityGraph we can parse through the graph-language parser - - rebase from main - -commit 30e48401e0013095e15ce319bcfc1f2eff308dd9 -Author: Steve Ebersole -Date: Fri Jan 21 11:35:09 2022 -0600 - - api, spi, internal, deprecation - - org.hibernate.query package - -commit cd9c877e93f5a7aa62cb63e1550a7d11e0f0338a -Author: Steve Ebersole -Date: Fri Jan 21 08:03:35 2022 -0600 - - api, spi, internal, deprecation - - org.hibernate.query package - -commit 8cda382ef941944131d1e455288b1d881edac6d1 -Author: Steve Ebersole -Date: Fri Jan 21 07:48:25 2022 -0600 - - api, spi, internal, deprecation - - org.hibernate.query package - -commit 2b5a5fc1967642507ea5f765b757435e0458329e -Author: Steve Ebersole -Date: Thu Jan 20 23:31:33 2022 -0600 - - api, spi, internal, deprecation - - org.hibernate.query package - -commit a780d8683c33f80d6b421c04a95932b8eb49da7a -Author: Gavin King -Date: Fri Jan 21 18:59:20 2022 +0100 - - drop hibernate.query.native.ordinal_parameter_base - - and deprecate hibernate.cache.keys_factory - -commit 466e7e74693e4b3bd4325203d6bcaf96d471d282 -Author: Gavin King -Date: Fri Jan 21 18:35:43 2022 +0100 - - first round of Javadoc update to AvailableSettings - -commit 2df71bb7abf41496f06dbe8f2fde76b9642cc84e -Author: Gavin King -Date: Fri Jan 21 15:18:02 2022 +0100 - - remove some more deprecated stuff from Environment - - and refresh its Javadoc - -commit 329b2fc9c4c88a386d3295588c2f607c9b83d617 -Author: Gavin King -Date: Fri Jan 21 14:50:23 2022 +0100 - - remove hibernate.jdbc.use_streams_for_binary config property - - this should be handled by the Dialects - -commit 8327f8567ddf7756228b397248b198546aa8642c -Author: Gavin King -Date: Fri Jan 21 16:17:05 2022 +0100 - - more Javadoc for JtaPlatform and friends - -commit 27b227113013ab29416fd73708c1fa6a5d00c20a -Author: Jan Schatteman -Date: Fri Jan 21 15:15:41 2022 +0100 - - Some deprecation removals (#4681) - - * Remove deprecations in org.hibernate.action.internal - - Signed-off-by: Jan Schatteman - - * Remove deprecated org.hibernate.lob.ReaderInputStream - - Signed-off-by: Jan Schatteman - - * Remove deprecated org.hibernate.tool.schema.extract.spi.SequenceInformation.getIncrementSize() - - Signed-off-by: Jan Schatteman - - * Update hibernate-core/src/main/java/org/hibernate/tool/schema/internal/AbstractSchemaValidator.java - - Co-authored-by: Christian Beikov - - Co-authored-by: Christian Beikov - -commit a79891a426f6e8ea3fb8ef539b2f6e026d80f6e0 -Author: Gavin King -Date: Fri Jan 21 14:21:28 2022 +0100 - - the the in Javadoc and comments - -commit 7ab5a04d4238dabd0d09c090789c2a743173556b -Author: Gavin King -Date: Fri Jan 21 10:44:46 2022 +0100 - - improve the SQL formatter - - we were rendering a many SQL functions badly - -commit 6f3ffe8abcd110b4578ae5311bb85f9fca00567b -Author: Gavin King -Date: Fri Jan 21 09:52:52 2022 +0100 - - put back in test for HQL casting between double and string - -commit 376d0c220f10b87fd3efd529f27b0f0f952e5d7d -Author: Gavin King -Date: Fri Jan 21 10:19:30 2022 +0100 - - fix checkstyle violations - -commit 5ded7b8833eb7073a4d28c77931d6198568d3860 -Author: Steve Ebersole -Date: Thu Jan 20 22:49:20 2022 -0600 - - api, spi, internal, deprecation - - SynchronizeableQuery - -commit 5761e7801b9b52201feb65c68bd343a7c5781d75 -Author: Steve Ebersole -Date: Thu Jan 20 22:19:02 2022 -0600 - - api, spi, internal, deprecation - - org.hibernate.jpa - -commit e1e16a5041baa8d08ce9560bf088bf8105bd9ba8 -Author: Gavin King -Date: Thu Jan 20 22:34:48 2022 +0100 - - improve an error message and some javadoc - -commit d385cc88257151467b13c1431458eeca473be979 -Author: Gavin King -Date: Thu Jan 20 22:07:22 2022 +0100 - - remove hibernate.query.validate_parameters - - in H6 we're going to always validate them - -commit a59bf70ccfd6b0a960dc6537b92b610672e7dd9d -Author: Gavin King -Date: Thu Jan 20 21:22:40 2022 +0100 - - remove hibernate.query.conventional_java_constants - - this was apparently a sorta nasty bandaid to a performance problem in query compilation - and it caused problems for some users, breaking interpretation of enum values - -commit a84793bd6d2830ff705cbdc2174dcec7b9974d6c -Author: Gavin King -Date: Thu Jan 20 18:53:08 2022 +0100 - - remove hibernate.cache.provider_configuration_file_resource_path - - this was unused - -commit 6cbfb30ea4b490691562a133d634f3c85c78aea3 -Author: Steve Ebersole -Date: Thu Jan 20 11:29:01 2022 -0600 - - api, spi, internal, deprecation - -commit ff79e0f12a595f04258300cf8680e9498c372ca4 -Author: Gavin King -Date: Thu Jan 20 18:02:12 2022 +0100 - - use @linkplain instead of @link where there is plain text - -commit 846af92b54e11550a142cc4f6bb7b0b6e23b0285 -Author: Gavin King -Date: Thu Jan 20 17:35:41 2022 +0100 - - remove JACC and JMX stuff from docs - - it got left over somehow - -commit e7acffef1536524126c1075dd4730537b6bef67d -Author: Gavin King -Date: Thu Jan 20 16:43:25 2022 +0100 - - remove some legacy config properties - - the following are gone: - - hibernate.ejb.resource_scanner - hibernate.query.substitutions - hibernate.jdbc.sql_exception_converter - hibernate.native_exception_handling_51_compliance - hibernate.legacy_limit_handler - hibernate.jdbc.wrap_result_sets - -commit dded606259b6bd3bf827355f0f177d82b63b6d5d -Author: Gavin King -Date: Thu Jan 20 15:23:16 2022 +0100 - - use @value instead of @link for setting names in Javadoc - -commit 71f122d2e57e0332ec268e9bdd525bcf8b870822 -Author: Gavin King -Date: Thu Jan 20 15:16:41 2022 +0100 - - remove check for deprecated setting - - I don't think we need to look for org.hibernate.ejb.HibernatePersistence anymore - -commit 7fa2fd05880c62edacc3c8919edf2ff193cefe6a -Author: Christian Beikov -Date: Thu Jan 20 15:37:59 2022 +0100 - - Small documentation and internal updates - -commit ffd72a7d60b8a1d1ff9d8c8793806c1461809469 -Author: Christian Beikov -Date: Thu Jan 20 10:53:47 2022 +0100 - - Get rid of Type#dictatedSizes and Type#defaultSizes and move methods from Sized as default methods to UserType - -commit 5fcacce3b13f2fd73364cbefb6eef5cdfb8da32a -Author: Christian Beikov -Date: Thu Jan 20 14:00:52 2022 +0100 - - Replace some uses of Type#getSqlTypeCodes with BasicType#getJdbcType - -commit 445cedfec72cfb178c92f3c25295efaa6fb3c1fb -Author: Christian Beikov -Date: Thu Jan 20 10:14:35 2022 +0100 - - Cleanup the naming of JavaDescriptor and JavaTypeDescriptor to align with the new naming JavaType - -commit 895ac83537a0722ee561abe3319767b315b0a519 -Author: Christian Beikov -Date: Wed Jan 19 17:46:08 2022 +0100 - - Mark some classes as internal which should go away when transitioning to SqlAst based rendering - -commit 4361790205a8fbce69cf85efdb4fb02552bf4af4 -Author: Andrea Boriero -Date: Thu Jan 20 13:18:18 2022 +0100 - - Fix ArrayIndexOutOfBoundsException for CollectionJoin#on(Predicate ...) - -commit e6a9220606a2ca95b75f99a212016807bd4d6b37 -Author: Gavin King -Date: Thu Jan 20 11:56:14 2022 +0100 - - clean up very old Dialect javadoc - - and squash a couple of warnings - -commit 019f87106a58646cdb49775a0ba4cdd173667e38 -Author: Gavin King -Date: Tue Jan 18 20:37:20 2022 +0100 - - tests for @DialectOverride.Xxxx - -commit 8aa0665731e95e29a991af403af4fd21b7e3a269 -Author: Gavin King -Date: Sun Jan 9 13:48:00 2022 +0100 - - introduce the @DialectOverride annotation - - for overriding certain mapping annotations that specify native SQL - -commit a9ddebf643aa59ec75e347eb81a65db5df40be1e -Author: Andrea Boriero -Date: Wed Jan 19 18:36:43 2022 +0100 - - HHH-15044 Revert HHH-14826 fix because the provided test was wrong - -commit a05f167db6be0298d97163f67bd4e88ba5fb633c -Author: Steve Ebersole -Date: Wed Jan 19 15:30:07 2022 -0600 - - minor work on migration-guide.adoc - -commit a74d0b72be6cfe8fafdfd417022f92f9a34996f9 -Author: Andrea Boriero -Date: Fri Jan 7 16:21:15 2022 +0100 - - Fix converter issues - -commit 36d6760abf176b00e62d5b550687961c42d6665b -Author: Christian Beikov -Date: Wed Jan 19 15:42:14 2022 +0100 - - Fix missing commit which was causing dangling connection/tx - -commit 8783781f7c9976dbc5721a024cb95dc26ceae2b2 -Author: Christian Beikov -Date: Wed Jan 19 15:07:10 2022 +0100 - - Add another TCK test for BigDecimal handling and fix parameter rendering for some Dbs - -commit 1e07c4f85fb2d06109b3b70b58f7a36727600cc0 -Author: Andrea Boriero -Date: Tue Jan 18 17:13:29 2022 +0100 - - Fix expression type for arithmetic operations - -commit 4775be3bb858262b8ee7b14612f0ac9a27cf1037 -Author: og151037 -Date: Wed Jan 19 12:56:56 2022 +0100 - - HHH-15042: add offset-clause usage for DB2zDialect - -commit 227930b090983f9599c995edc686bb27aa8c97f6 -Author: Yoann Rodière -Date: Tue Jan 18 11:49:09 2022 +0100 - - HHH-15022 Test deleting all entities of a given type in a table-per-class hierarchy with a default schema - -commit dd176727b294c0d0acdf66f004dffe7ccec751b0 -Author: Sanne Grinovero -Date: Wed Jan 19 11:36:14 2022 +0000 - - HHH-15040 Upgrade to Hibernate Commons Annotations 6.0.0.CR1 - -commit 6072564b93fd54c75bd9be9957e3d24480fbaffd -Author: Gavin King -Date: Wed Jan 19 13:46:03 2022 +0100 - - improve javadoc for @Formula - -commit 101de7028917a95ac1ce1f898142e1a5b83709c9 -Author: Gavin King -Date: Wed Jan 19 13:33:25 2022 +0100 - - improve javadoc for @JoinFormula-related stuff - -commit 47c695bace50a3aeb5e46cf76d1970afa8a85e56 -Author: Gavin King -Date: Wed Jan 19 13:14:55 2022 +0100 - - remove unused imports - -commit 659bbc01678b4d65e2e74f9d40f15cc32ed1d89e -Author: Christian Beikov -Date: Wed Jan 19 12:24:17 2022 +0100 - - Re-add accidently removed SkipDialects for ManyToOneWithFormulaTest - -commit 9e3dc8d3e1d96ab4d8a7f6345034709b6fff4c72 -Author: Steve Ebersole -Date: Tue Jan 18 17:49:55 2022 -0600 - - clean up remaining test suite failures - -commit ba024c5475c109a7433532b4fc9d7d2160ae2c89 -Author: Steve Ebersole -Date: Tue Jan 18 17:20:32 2022 -0600 - - clean up remaining test suite failures - -commit 1dcdec9c15c9de05745f88a66da55b91f2922631 -Author: Steve Ebersole -Date: Tue Jan 18 17:19:25 2022 -0600 - - clean up remaining test suite failures - -commit 7437a96b128f02eb3eecb8e917a4fdaa7953935f -Author: Steve Ebersole -Date: Tue Jan 18 17:16:23 2022 -0600 - - clean up remaining test suite failures - -commit e8d8b43bfd88778a06358831c99577f6463a789f -Author: Steve Ebersole -Date: Tue Jan 18 16:06:47 2022 -0600 - - clean up remaining test suite failures - -commit aefb3c3edc616a10a96b60e87c64e0fc4b38304b -Author: Steve Ebersole -Date: Tue Jan 18 15:56:24 2022 -0600 - - clean up remaining test suite failures - -commit 1ad913387156112305b3ab6292b890fbf021323d -Author: Steve Ebersole -Date: Tue Jan 18 14:10:15 2022 -0600 - - clean up remaining test suite failures - -commit 4e5a28deaa780d445a15c47d5dbd8935e087428a -Author: Christian Beikov -Date: Thu Jan 6 19:47:13 2022 +0100 - - Add support for non-synthetic virtual model parts - -commit fb882f56f313e09889c362952e489ec26d527765 -Author: Christian Beikov -Date: Thu Jan 6 14:14:01 2022 +0100 - - Finalize moving annotations tests and ensure columns are sorted also for collection keys properly - -commit 1ede36212bf0b02198396671b747d4459b0d0335 -Author: William Burns -Date: Tue Jan 18 11:43:28 2022 -0500 - - HHH-15037 Criteria Update/Delete with vararg parameters throws NullPointerException - -commit cfb98abf7aa99972a830dfeeebdd664a98992421 -Author: Steve Ebersole -Date: Tue Jan 18 12:19:09 2022 -0600 - - WrongClassException - -commit 0ea552825027b319c254fed615aab15b9bfbfd44 -Author: Andrea Boriero -Date: Tue Jan 18 11:26:25 2022 +0100 - - Fix criteria mod failing on derby - -commit 181217ef1fecb867ded8799935d0a3ed9a2eb067 -Author: Christian Beikov -Date: Tue Jan 18 16:19:28 2022 +0100 - - Re-introduce the regex pattern for the format pattern check - -commit d0f6c3302cc7e879830ec1d71a7f8cb01ab276c3 -Author: Christian Beikov -Date: Mon Jan 17 19:12:28 2022 +0100 - - HHH-15035 Fix native query type discovery with h2 2.0.202+ with float(..) DDL type - -commit fb749b6b3200176cbb5de680475eafdc3c24d2c4 -Author: Christian Beikov -Date: Thu Jan 6 18:33:26 2022 +0100 - - Adapt tests and skips for H2 2.0.202+ - -commit 6feb33f4e1fa768eab237691e3ec1c0cdd883bef -Author: Christian Beikov -Date: Thu Jan 6 18:32:27 2022 +0100 - - HHH-15009 Allow augmenting supported physical table types through dialect for H2 2.0.202+ support - -commit fe44411e60a59bffe2d08b7b92678cfb392e2823 -Author: Christian Beikov -Date: Thu Jan 6 18:30:55 2022 +0100 - - HHH-15014 Fix subquery tuple rendering for H2 2.0.202+ - -commit ad43a625ae9527d25b4e3a7346c9c75e3ac2866c -Author: Christian Beikov -Date: Thu Jan 6 18:29:29 2022 +0100 - - Allow skipping dialect versions even when using `@RequiresDialect` - -commit 0fb19fd4fb676baae4c54bd12ef7b0e654ba676c -Author: Christian Beikov -Date: Thu Jan 6 18:26:05 2022 +0100 - - Get rid of column names that are problematic on H2 2.0.202+ - -commit c284315931d58720df2d17f35b00a9f90ef940f3 -Author: Christian Beikov -Date: Thu Jan 6 18:24:12 2022 +0100 - - Add validation for format function and remove `aa` format as no database supports long/short AM/PM markers - -commit b8fab567cccb7df93aaa5f84c648496ca9c60add -Author: Andrea Boriero -Date: Tue Jan 18 09:14:41 2022 +0100 - - Fix CriteriaBuidler#locate() arguments order rendering - -commit 370d9354fc869d82c7bdc49ce55f091a67d6a5a3 -Author: Andrea Boriero -Date: Tue Jan 18 09:14:37 2022 +0100 - - Fix CriteriaBuidler#locate() arguments order rendering - -commit 6f1ddc32dd23c1cea86ffdda2039289d6929ab88 -Author: Steve Ebersole -Date: Mon Jan 17 20:38:15 2022 -0600 - - fix NPE when selecting enum value - -commit 53d38262ba3a9e45bd7f759ca6b2bca357a20208 -Author: Gavin King -Date: Sat Jan 8 12:32:01 2022 +0100 - - test showing selecting enum value causes NPE - -commit 9e7a091d67bcc2fd960e3fb41b64e44067093178 -Author: Andrea Boriero -Date: Mon Jan 17 12:06:56 2022 +0100 - - Fix CriteriaBuidler#locate() arguments order rendering - -commit 23a011385de3864b6c0227708c40cefe414b4690 -Author: Andrea Boriero -Date: Mon Jan 17 14:36:03 2022 +0100 - - Fix MaskSensitiveInformationTest failure - -commit a7d76b2370c5088f84e1465fe50c045c89682c29 -Author: Steve Ebersole -Date: Sun Jan 16 22:54:19 2022 -0600 - - more `@NotImplementedYet` clean-up - -commit 37094e3e808aec1dd28480ac03b458c0ccefe9c5 -Author: Steve Ebersole -Date: Sun Jan 16 22:02:25 2022 -0600 - - Javadoc work - -commit 6ec996f1d5c8d0d5f6d3c36fe11e9a8aa4d9cfa7 -Author: Steve Ebersole -Date: Sun Jan 16 21:47:02 2022 -0600 - - WrongClassException tests - -commit e38f63a0cbcdcb1fdcbcc1fa9c1366cbcb3c7cfa -Author: Sanne Grinovero -Date: Tue Jan 4 16:54:13 2022 +0000 - - HHH-15033 Restrict JNDI lookups to "java" scheme - -commit 85113431087e7dafa163365c546699fe199e82de -Author: Sanne Grinovero -Date: Fri Jan 14 22:41:27 2022 +0000 - - HHH-15033 Reduce visibility of JndiServiceImpl - -commit ef980cbb5da3fe0eca2ec620ff179500deffdcbf -Author: Andrea Boriero -Date: Sat Jan 15 19:24:03 2022 +0100 - - Throw IllegalArgumentException when the an attribute name is not resolved as a subPath - -commit 9fba739bc2327a2402262c29cdcb6fd4f4477834 -Author: Andrea Boriero -Date: Thu Jan 13 18:34:27 2022 +0100 - - Throw IllegalArgumentException for null Criteria literal value - -commit fb17eb52df562092e1fa95c562d639c1b24a1254 -Author: Steve Ebersole -Date: Sun Jan 16 11:00:13 2022 -0600 - - more `@NotImplementedYet` clean-up - fix bad test assertions - -commit 3bed089caf9253da2cb5f90a0138c9017e5fb072 -Author: Sanne Grinovero -Date: Sat Jan 15 16:41:44 2022 +0000 - - HHH-15031 Upgrade to ByteBuddy 1.12.7 - -commit c0137e7de242d9e561cab9e9b64d6d7a22958865 -Author: Steve Ebersole -Date: Sat Jan 15 08:50:14 2022 -0600 - - additional clean up of - "massive" cleanout of the transformers stuff - -commit c43b6ff606b3ae47b189495a9739a783b30bcd4a -Author: Gavin -Date: Wed Jan 12 12:57:55 2022 +0100 - - massive cleanout of the transformers stuff - - - add meaningful generic types to stuff - - remove things which weren't used/tested, and seem obsolete - (and which could not be propertly generified) - -commit 22457cc74df5fc1d581d8763dace42299459e50e -Author: Andrea Boriero -Date: Fri Jan 14 09:15:12 2022 +0100 - - Throw IllegalArgumentException when the an attribute name is not resolved as a subPath - -commit 326f2ae775878c74510950ec0d927ea85db8c15f -Author: Steve Ebersole -Date: Fri Jan 14 20:36:35 2022 -0600 - - Clean up usages of `@NotImplementedYet` - -commit 73e936b2809fe601bcb7ff64250fb8f9daa8cbf3 -Author: Sanne Grinovero -Date: Fri Jan 14 20:35:18 2022 +0000 - - HHH-15029 Small refactoring in JndiServiceImpl: no need to use a Properties for the context configuration - -commit 1b2508e4e0406b1d1fe8b7b5223c3d711d0ee35e -Author: Sanne Grinovero -Date: Fri Jan 14 13:10:02 2022 +0000 - - HHH-15029 Remove deprecated JndiHelper - -commit 4eca44eecd682958d6e3502c8fc39ad4c20c6abd -Author: Steve Ebersole -Date: Fri Jan 14 15:58:30 2022 -0600 - - Clean up usages of ``@NotImplementedYet` - -commit 7de0e79cadd1002e9b1d98a307986439cbdc7e7e -Author: Steve Ebersole -Date: Fri Jan 14 15:56:59 2022 -0600 - - Clean up usages of ``@NotImplementedYet` - -commit 834426e8f6d2c27d815164d2d565ca785864e13b -Author: Steve Ebersole -Date: Fri Jan 14 15:25:05 2022 -0600 - - Fix bug with creating a NaturalIdCacheKey via SimpleCacheKeysFactory - -commit 9fe3c861ca73bcc8f30ef7678f0bdda0d5236406 -Author: Steve Ebersole -Date: Fri Jan 14 14:49:17 2022 -0600 - - HHH-15023 - Move Query and NativeQuery back to org.hibernate.query - -commit b8d5b0bd45f22a469976f3fc5283038d7f07170f -Author: Sanne Grinovero -Date: Fri Jan 14 12:17:49 2022 +0000 - - HHH-15028 Upgrade to JBoss Logging 3.4.3.Final - -commit fbec85b47500f3e4fdca536a84a61c5325554f39 -Author: Gavin -Date: Fri Jan 14 07:27:01 2022 +0100 - - get rid of the language "positional parameter" - - they're not really positional in JPA, they're just labelled by integers - - also use "argument" instead of "value", since that's the proper term - -commit 1e973a0b553b2fa2243f11b5771e0f54fe3bc275 -Author: Andrea Boriero -Date: Thu Jan 13 19:15:58 2022 +0100 - - Throw IllegalArgumentException when cannot resolve attribute names - -commit bb05cdadc6f2ce6b3519fc0c2439ba5c54167141 -Author: Andrea Boriero -Date: Thu Jan 13 17:03:28 2022 +0100 - - Throw IllegalArgumentException when cannot resolve attribute names - -commit b7ab3276af3c31c7e6e45ccde527c9fe7883fd93 -Author: Yoann Rodière -Date: Mon Jan 10 13:46:54 2022 +0100 - - Limit concurrent Github Actions builds - -commit fbae1a4651418ddba1c7ff33ebc399d741dd6a20 -Author: Sanne Grinovero -Date: Wed Jan 12 14:37:16 2022 +0000 - - HHH-15026 Upgrade to Log4J 2.17.1 - -commit e6866034dee694643a7bd6e15841088b62e32673 -Author: Sanne Grinovero -Date: Wed Jan 12 11:11:23 2022 +0000 - - HHH-15024 Upgrade to Jandex 2.4.2.Final - -commit 6efff11d446f358f7b868816f82dccb285dda026 -Author: Sanne Grinovero -Date: Wed Dec 22 17:31:03 2021 +0000 - - HHH-15000 Upgrade to Hibernate Commons Annotations 6.0.0.Beta1 - -commit 14bf19ff7e5a1d55814b707fedeafb4c706e61a9 -Author: Gavin King -Date: Tue Jan 11 22:35:12 2022 +0100 - - remove deprecated Statistics APIs - -commit f7b4a94c452c26ae25c8eff79e48512118461cb7 -Author: Gavin King -Date: Tue Jan 11 22:21:23 2022 +0100 - - minor refresh of the Statistics API - - - added getStart() returning an Instance - - removed a left-over @MXBean annotation - - refreshed some Javadoc - - fixed some warnings - -commit fda6e96c5e83b340119a873fc029eefd85a96ac5 -Author: Steve Ebersole -Date: Tue Jan 11 21:01:56 2022 -0600 - - HHH-15023 - Move Query and NativeQuery back to org.hibernate - -commit e446b7c99b706ee762ad8ea0b75377a07d31d564 -Author: Steve Ebersole -Date: Tue Jan 11 15:47:13 2022 -0600 - - Log4j Vulnerability - https://blog.gradle.org/log4j-vulnerability; - Upgrade Gradle Enterprise plugin to 3.8 - -commit ef6c14a0be13d445b56d46f14190ceff106f957d -Author: Steve Ebersole -Date: Tue Jan 11 15:26:12 2022 -0600 - - Upgrade to Gradle 7.3.3 - -commit 152815273561e8393eebce59f843cbc6fdd8528d -Author: Gavin -Date: Tue Jan 11 18:20:25 2022 +0100 - - remove deprecated methods of Cache interface - -commit be4b75158267a03f9590db9475658cae2d6e7346 -Author: Gavin -Date: Tue Jan 11 14:02:15 2022 +0100 - - remove use of deprecated caching methods from tests - -commit abf3360b494066f40836f040eef1716db0e6f118 -Author: Gavin -Date: Tue Jan 11 14:01:47 2022 +0100 - - improve Javadoc for Cache and fix some warnings - -commit 0f9a141c9ec283e3a4df2f9fc1cd93fa1b61aaed -Author: Andrea Boriero -Date: Tue Jan 11 16:59:52 2022 +0100 - - List annotatted with @OrderBy interpreted with BAG semantic - -commit 2bbeeb5ab2b42cec5868967f4ebfde478f6f51f2 -Author: Andrea Boriero -Date: Tue Jan 11 12:53:23 2022 +0100 - - Fix postLoad callback method calls - -commit 8f5fefd8066683ab12605f81516a55d363422f73 -Author: Steve Ebersole -Date: Mon Jan 10 12:25:08 2022 -0600 - - HHH-15017 - Clean-up Query#setParameter overloads - - - https://hibernate.atlassian.net/browse/HHH-15017 - -commit b62c23ab29f428a8d0f3ff5ed3efa49b804d356e -Author: Steve Ebersole -Date: Sat Jan 8 10:05:24 2022 -0600 - - HHH-15017 - Clean-up Query#setParameter overloads - - - https://hibernate.atlassian.net/browse/HHH-15017 - -commit b8114bad313e414608f40e8e41e1f6ad6d5dbbb1 -Author: Andrea Boriero -Date: Mon Jan 10 12:03:40 2022 +0100 - - Fix postLoad callback method not called - -commit 8d43be4b78e7faf28ef1064de120f9d351c21918 -Author: Sanne Grinovero -Date: Mon Jan 10 15:55:41 2022 +0000 - - HHH-15018 OracleTypesHelper shouldn't log stacktraces when the Oracle JDBC driver isn't loadable - -commit d2584730f3be8cf743e92875fb63608347cfaf9b -Author: Steve Ebersole -Date: Mon Jan 10 09:54:06 2022 -0600 - - Document @IdGeneratorType; - Some work to clean up User Guide sections on id-generators - -commit 64d25f16d18eb9480339a2855f0032f4b75e518f -Author: Gavin King -Date: Mon Jan 10 14:14:25 2022 +0100 - - make 'element' and 'value' synonyms in doc - -commit 2e8bf3d1dfb641fd28f7675eb29a70706584f36e -Author: Gavin King -Date: Mon Jan 10 13:53:15 2022 +0100 - - make 'element' and 'value' synonyms, along with 'index' and 'key' - -commit e6128551b36484ede3e9dcfb44ba41a9777707c6 -Author: Gavin King -Date: Mon Jan 10 13:39:29 2022 +0100 - - document new collection aggregate function syntax - - and fix some other problems I found in the examples - -commit 3e8f1c67dff903fde928d240af26ba56190dc9a8 -Author: Gavin King -Date: Mon Jan 10 11:11:17 2022 +0100 - - clean up lots of warnings by adding wildcards to raw types - - also comment out some unused code - -commit 4b5e6e19697b4465d5fa8f06b61d1e77102682f2 -Author: Gavin King -Date: Mon Jan 10 11:08:05 2022 +0100 - - introduce new syntax for aggregate functions applying to collections - - max(element x.y), min(index x.y), sum(element x.y) - - and rationalize the node types here - -commit 38fc97feb300fda87a137310d4f667b016333c6f -Author: Gavin King -Date: Mon Jan 10 01:19:19 2022 +0100 - - sort out some confusion regarding elements() vs value() + indices() vs index() - - Strictly, elements() and indices() don't make sense as select items, but we - have tests for this, and users who reported bugs and sent in patches, etc, etc, - so I'm going to go ahead and keep accepting them in the select clause as a - blessed misuse. - - I'm not however going to allow them to be dereferenced because no, that's why. - -commit abd63d73ea1473786b43860f33b41692b627a6e9 -Author: Gavin King -Date: Sun Jan 9 23:58:50 2022 +0100 - - clean up warnings and broken Javadoc links on Cache interface - -commit 7f9f8e1ff3c9d9ee9698ed08c5cd272526d09bf8 -Author: Gavin King -Date: Sun Jan 9 23:53:18 2022 +0100 - - clean up FlushMode - -commit 3fb6c1ce261347486884b54060d4c261a5f55a4e -Author: Gavin King -Date: Sun Jan 9 23:33:17 2022 +0100 - - Refresh the javadoc of a bunch of annotations - -commit 596debed4d301de84a207f2d0fa7fda9043908cb -Author: Gavin King -Date: Sun Jan 9 22:32:43 2022 +0100 - - make @Check work when applied at the field level - - This was a bug! - - Also add checkConstraint member to @Table to allow check constraints on secondary tables - - Also clean up some Javadoc of some related annotations - -commit bd8bf15e00a52623103c8f87f5b71a418add2fbf -Author: Gavin King -Date: Sun Jan 9 12:35:20 2022 +0100 - - fix some warnings in IntelliJ (unnecessary StringBuilder) - -commit 4324509a59c0f8e4e6e16eee8c154f302826bd88 -Author: Gavin King -Date: Sun Jan 9 20:22:37 2022 +0100 - - allow @Comment to apply at the class level - - yes, you can do it with the @Table annotation but this is nicer, - no good reason to not allow it - -commit 9eac2b193b38f613b90f991a2a03f9b107139b67 -Author: Gavin King -Date: Sun Jan 9 17:35:58 2022 +0100 - - skip some tests on TiDB - -commit c88a9ac8bc47f552c63e75cce791d20458e5f9ff -Author: Gavin King -Date: Sun Jan 9 11:46:12 2022 +0100 - - improve javadoc for @Order/@Sort annotations - -commit 740779165d33242c2e31568070ca0f7c3fafbd0c -Author: Gavin King -Date: Sat Jan 8 13:23:31 2022 +0100 - - add IdentifierLoadAccess.withReadOnly() - - adding this to the other XxxxLoadAccess interfaces is much harder, - but this one is easy - -commit e02e1e2ffb940cbef9c076b6f8da1f4475f0632e -Author: Gavin King -Date: Fri Jan 7 11:17:55 2022 +0100 - - remove the layer-breaking getLobCreator() methods from the Hibernate class - - This is in principle a breaking change, but one I consider pretty innocuous, - since I can't imagine why anyone was calling Hibernate.getLobCreator(session) - instead of session.getLobHelper(). - -commit e331c2870e8caeda510c317a21893a2e7a488fdc -Author: Gavin King -Date: Sat Jan 8 10:43:03 2022 +0100 - - more cosmetic improvements to HQL error reporting - - makes the messages and exception types a bit more consistent - -commit 60ad64b2a660c44b29079885ea5469a9e943d87c -Author: Gavin King -Date: Sat Jan 8 11:58:44 2022 +0100 - - update explanation of limit/fetch join problem for H6 - -commit e79d7efbceb6c59f19876b25cd35ddbe252e4169 -Author: Gavin King -Date: Fri Jan 7 00:11:36 2022 +0100 - - use instanceof instead of isInstance() on the hot path - - surely NBD, but such an easy thing to fix and remove all doubt - -commit 6c83e1d0ece045dbf5d848b982984e5384033443 -Author: Gavin King -Date: Sat Jan 8 02:13:34 2022 +0100 - - cosmetic improvements to HQL error reporting - - makes the messages and exception types a bit more consistent - -commit 3103d84949f4c3c130aeda5253fb106249241ede -Author: Gavin King -Date: Sat Jan 8 02:31:20 2022 +0100 - - fix an incorrect statement about case sensitivity - -commit fc079ba226c4905fbe11a842e2892e63c2717048 -Author: Gavin King -Date: Fri Jan 7 23:13:10 2022 +0100 - - disable test on some dialects - -commit 77aa6ab24496e95ad08446ee9834be208991f16f -Author: Gavin King -Date: Fri Jan 7 19:36:54 2022 +0100 - - use Map.entry() instead of ouw own MapEntryImpl for entry() function - - add tests for HQL collection functions - -commit 90cd25bc5d3136b7f8bc7a7da2c16e18aa3b60eb -Author: Gavin King -Date: Fri Jan 7 19:51:29 2022 +0100 - - remove obsolete comments and enable a (fixed) test - -commit 032d2245315ed17d8db04af655a23db725cb61c1 -Author: Gavin King -Date: Fri Jan 7 17:12:53 2022 +0100 - - totally trivial test for autoquoting of initial _ - - that actually really does test that it does what it should :) - -commit 32f4122470c3f1d103f2a768bfe88c9fdfc84909 -Author: Gavin King -Date: Fri Jan 7 17:08:06 2022 +0100 - - autoquote column names with initial _ on those dbs that require it - -commit 54b5a85af42bf668b4336001fa3de3b78d8f15aa -Author: Gavin King -Date: Fri Jan 7 12:09:31 2022 +0100 - - add a whole passage about serialization - -commit 1b1790bb8cb41e660d9f040d4a10b1ee6202260c -Author: Gavin King -Date: Fri Jan 7 11:06:35 2022 +0100 - - improvements to javadoc for Transaction + SharedSessionContract - -commit 0e8203c600e8b954fadbf258277d63ecd83248fe -Author: Gavin King -Date: Fri Jan 7 09:29:26 2022 +0100 - - remove obsolete APIs and clean up warnings - - rewrite the incorrect javadoc for the class Hibernate - -commit b444fbf9a5c15efdfaa9fd46f14d86cb725b03d8 -Author: Gavin King -Date: Fri Jan 7 01:26:41 2022 +0100 - - deprecate "old" methods of session and add a new one - - - deprecated load() - - deprecated save(), saveOrUpdate(), and update() - - deprecated delete() - - deprecated "dangerous" overloads of refresh() - - added getReference() taking an entity name - - improved the Javadoc for lots of operations - -commit 448d678fb5b404bcd56715ca62a25fc3e08381f6 -Author: Steve Ebersole -Date: Thu Jan 6 21:45:14 2022 -0600 - - Drop `@CollectionClassificationType`; - Drop `@CollectionSemantics`; - Drop `@CollectionSemanticsRegistration(s)`; - Add `@CollectionTypeRegistration(s)`; - Rename `@CustomType` to `@Type`; - User Guide and Migration Guide changes - -commit b8d26f829e7ae33ef93fb91c5517a5d07a056eac -Author: Gavin King -Date: Thu Jan 6 21:59:34 2022 +0100 - - add a test for selecting a datetime literal - - seems to be causing problems in 2 dbs - -commit 2c00a647cb94b74b2bbfdda97afaa64cca2110cf -Author: Gavin King -Date: Thu Jan 6 17:20:33 2022 +0100 - - add a test for datediff()/dateadd() functions - -commit a1ea84a3ac4196d8e566835ca572cb17052f371a -Author: Gavin King -Date: Thu Jan 6 23:26:21 2022 +0100 - - two very minor doc fixes - -commit 86025a9af8cd981a889ebdc16070238fe26e3d6c -Author: Gavin King -Date: Thu Jan 6 15:23:47 2022 +0100 - - try to get the test working again on Sybase - -commit 01600b48e55668344b58f58bde0ecb936d357721 -Author: Gavin King -Date: Thu Jan 6 14:11:10 2022 +0100 - - remove a workaround for a bug on derby that was fixed ages ago - -commit aef951f279980d6b413b5bf5d74cd645b4f1f6b8 -Author: Gavin King -Date: Thu Jan 6 12:08:40 2022 +0100 - - move some function arg typechecking up to the SQM phase - - this is where it needs to be for checking of named queries at startup - and for any checks that happen in an IDE or at build time - -commit 7178caea8deb2421b9b20d62ff4ff4c50882f778 -Author: Gavin King -Date: Wed Jan 5 20:59:11 2022 +0100 - - fix lots of warnings in AbstractHANADialect - -commit cc91beb5360db409408218dfcc4402593ee1523a -Author: Gavin King -Date: Wed Jan 5 16:07:37 2022 +0100 - - typecheck HQL function arguments - -commit a73068cc0f220f83d8a32779a31f5c4f5174822c -Author: Steve Ebersole -Date: Thu Jan 6 09:05:38 2022 -0600 - - Improve CollectionClassification javadoc - -commit 773f3429c68e581fe59b353a9378bee8d551e123 -Author: Steve Ebersole -Date: Thu Jan 6 08:52:26 2022 -0600 - - hibernate.mapping.default_list_semantics (`AvailableSettings#DEFAULT_LIST_SEMANTICS`) - - make LIST the default classification for List attributes with no `@OrderColumn`, etc. - -commit 1beabbdf40361efd12905de3e1109d0049e4fb41 -Author: Gavin King -Date: Wed Jan 5 13:14:12 2022 +0100 - - update some of the tests to use non-deprecated methods - - or at least suppress the warnings - -commit 261ca55b0f4205916df7fb79fcc7be6a0054228b -Author: Gavin King -Date: Wed Jan 5 13:13:21 2022 +0100 - - improve some javadoc for Query - -commit 780fb3e500cab21b9b3bcc5b9cf8e09e383e145e -Author: Gavin King -Date: Wed Jan 5 13:10:57 2022 +0100 - - add createStatement() methods - - these are needed for executing insert/update/delete queries, because we - deprecated the createQuery() methods that accept no Class as a parameter - - these are much better-named anyway, and have a better return type - -commit c96f22dfe0053980469017bcb98925fb52d438d1 -Author: Gavin King -Date: Thu Jan 6 14:39:32 2022 +0100 - - remove hibernate.dialect.show_hql_functions and just make it a log category - - really unclear why I didn't do it that way in the first place - -commit 0b96d8fca74b980e01bb55e916e12732da74949b -Author: Steve Ebersole -Date: Thu Jan 6 06:21:01 2022 -0600 - - - fix too-long identifier for Oracle - -commit bcb1577b437b8dd11fdc3c405da3a142bf275e47 -Author: Filipe Roque -Date: Tue Jan 4 22:57:55 2022 +0000 - - HHH-15013 H2 2.0.202 no longer supports nextval, replacing with ANSI SQL - -commit 30f627ce3995b73b99c3f345ad34a61af4cc1ed0 -Author: Gavin King -Date: Thu Jan 6 10:01:20 2022 +0100 - - improvements to Javadoc for hints - -commit 17a06e2ffa8e38f5032cf8b3841d6eedfc065b29 -Author: Gavin King -Date: Thu Jan 6 01:02:30 2022 +0100 - - fix for problem on main - -commit 1131292fa9e394edc02b5a7cb51a61811e36e809 -Author: Steve Ebersole -Date: Wed Jan 5 20:51:41 2022 -0600 - - - fix apparently illegal Oracle identifier - -commit a71ba9e3853fb943ac3301692f554684f293b09f -Author: Steve Ebersole -Date: Wed Jan 5 16:24:11 2022 -0600 - - Initial work to re-organize the Collections chapter in the UserGuide; - Docs for @CollectionType, @CollectionClassificationType and @CollectionSemantics; - Some api/spi/internal work; - Migration Guide; - -commit f7af0017f7a3079b920570a7f3a5976b7cc33023 -Author: Christian Beikov -Date: Wed Jan 5 12:36:48 2022 +0100 - - Adapt a few Oracle pagination with lock tests to consider that only Oracle 12.2 supports the fetch clause perfectly - -commit 3704dad923981f37628ec5904a84e96213f66f0d -Author: Christian Beikov -Date: Wed Jan 5 10:33:38 2022 +0100 - - Add a wait to a test that uses a database generated timestamp - -commit 97dd83895413d692059c2ab423b9059a77cb8b67 -Author: Christian Beikov -Date: Tue Jan 4 18:10:17 2022 +0100 - - Move last query test and fix issue with parent table group access when parent is correlated - -commit 2666f3f6e09717be9272f173b2e234afb5b00053 -Author: Christian Beikov -Date: Tue Jan 4 17:38:07 2022 +0100 - - Add feature requirement for multi-insert test - -commit 6e8f344a9f2c16f233d379d6037e35caabbb1b17 -Author: Christian Beikov -Date: Tue Jan 4 17:32:56 2022 +0100 - - Implement handling of top level limit/offset/fetch clause when collection fetches are involved - -commit afe9b6744e3e4e95f715825394edbb3360e3d5f9 -Author: Christian Beikov -Date: Tue Jan 4 15:17:22 2022 +0100 - - Fix HANA test failures - -commit de1de9f6299c32944da320ca16c17f8827b857fd -Author: Christian Beikov -Date: Tue Jan 4 15:09:09 2022 +0100 - - Fix issues with Oracle rownum pagination on Oracle before version 12.2 - -commit 4e29f8d9deb61cdb0efd2cf7865ddffe20901ba2 -Author: Christian Beikov -Date: Tue Jan 4 12:32:17 2022 +0100 - - Add table to readme showing how to test with every database - -commit 2e0a2eea43ea1b5712de26093b2decf0b2f6939f -Author: Christian Beikov -Date: Tue Jan 4 12:31:46 2022 +0100 - - Fix issues with multi table values inserts and add optimization for simple values inserts - -commit cb5e0b08b92f709cee77a73913e1796ff170123d -Author: Christian Beikov -Date: Mon Jan 3 23:27:21 2022 +0100 - - Fix collation handling for ordering expressions. Fix SqmQuerySpec#setRestriction - -commit bddbb4d287575dd43630c7cb5a2aac90e195ef31 -Author: Gavin King -Date: Wed Jan 5 11:14:36 2022 +0100 - - examples for native functions - -commit f64f311c4f9971efd13dff555027a5a94f925358 -Author: Filipe Roque -Date: Mon Dec 27 02:02:52 2021 +0000 - - HHH-14985 H2Dialect does not work properly with h2 2.0.202 on inserts - -commit 31a795b8c77effdb53a5df25237fe02a7cbbe1a5 -Author: Gavin King -Date: Tue Jan 4 23:31:09 2022 +0100 - - quotes not needed for enum values in doc example - -commit e1d1d21a30c6f2ad29e75c81d055836b05abd1cb -Author: Gavin King -Date: Tue Jan 4 23:28:33 2022 +0100 - - move a passage to a place it's easier to find - -commit 2d55d9a3a81747b29c6317640827b3fe15220319 -Author: Gavin King -Date: Sun Jan 2 00:40:09 2022 +0100 - - document id(), version(), naturalid() functions - -commit 5a0537aa0419ecd469a99a17dfc12eec6925d9de -Author: Gavin King -Date: Sun Jan 2 00:36:30 2022 +0100 - - rough implementation of naturalid() function in HQL - - and add tests for id(), version(), naturalid() - -commit 80b5c1e085cf95c595fd1fdcfe7665d763c4c97a -Author: Gavin King -Date: Mon Jan 3 18:04:43 2022 +0100 - - get rid of things named Ejb3 - -commit ef4b2732d322cbc45ac924bae5dbd20378493527 -Author: Fabio Massimo Ercoli -Date: Tue Jan 4 16:59:42 2022 +0100 - - Change assertions expecting rownum expression is used - -commit 3095116bcf111bba7340a15b5ed0018c688b818d -Author: Fabio Massimo Ercoli -Date: Thu Dec 23 17:30:34 2021 +0100 - - Restore OraclePaginationWithLocksTest test execution - -commit 4ae977a41e39765b50d813d90aa30c1b42aecfac -Author: Gavin King -Date: Tue Jan 4 16:53:07 2022 +0100 - - disable a test on Sybase - - (missed this failure) - -commit 254d4d0351491d9e443ecc2c3154c61d25c44ac2 -Author: Gavin King -Date: Tue Jan 4 15:31:58 2022 +0100 - - correctly handle "weird" function names with periods and quotes in HQL - -commit b1aea5f9938dc77f5367cfae323b8c8522af523a -Author: Gavin King -Date: Tue Jan 4 16:17:59 2022 +0100 - - document the existence of quoted identifiers - -commit 193423631447c01f7e85a0d5939ebcdb7e260937 -Author: Gavin King -Date: Tue Jan 4 13:39:50 2022 +0100 - - document that you can insert multiple rows with 'values' - -commit ef53b2a2defcc348be29afdf065d104f2ff07d4b -Author: Gavin King -Date: Tue Jan 4 13:39:23 2022 +0100 - - make the BNFs more readable - - and add one for grouped item - -commit 008455bc0c2f4d3da60393e706afd8db39f084a7 -Author: Gavin King -Date: Tue Jan 4 03:10:34 2022 +0100 - - rename some grammar rules and add documentation - - I want this to be readable to users - -commit 9c7d39abf114467623c3da73029a92aa5dda5d8e -Author: Andrea Boriero -Date: Mon Jan 3 14:32:53 2022 +0100 - - Fix broken Session#refresh() method - -commit e27f6af4b9c2aa494d20fb8d2e26b0fca8a4d9e8 -Author: Gavin King -Date: Sun Jan 2 18:52:12 2022 +0100 - - test demonstrating that refresh() doesn't - -commit ae2b19cbb0e53824eb7a21eac18a265ddb73160d -Author: Gavin King -Date: Tue Jan 4 02:37:08 2022 +0100 - - finally rewrite a sentence I wrote close to 20 years ago - - I almost feel like I shouldn't push this... - -commit 59e36c46c408d34f7bb6a068b194421c4df52253 -Author: Gavin King -Date: Mon Jan 3 22:06:06 2022 +0100 - - better documentation for limit and friends - - with code example - -commit b9a040effbc36357ca606e9959b6fc12144a3864 -Author: Gavin King -Date: Mon Jan 3 20:26:37 2022 +0100 - - switch to inconsolata for monospace font - -commit b72e2620c66a999f49102b7d9c4b31814d4a3e36 -Author: Gavin King -Date: Mon Jan 3 21:01:01 2022 +0100 - - remove a strange statement that was simply wrong from the docs - -commit 0e55930c759c0811475b9e942ba7c9cefa13c931 -Author: Gavin King -Date: Mon Jan 3 20:48:42 2022 +0100 - - use more standard whitespace in example code in docs - -commit 0f9faf85e556da9120156174bbd09f3bee61d0b1 -Author: Gavin King -Date: Mon Jan 3 19:38:04 2022 +0100 - - minor improvements to the beginning part of HQL chapter - -commit 4e0c131a27c49b7d8994ce5ae0cf6717eb518c4e -Author: Gavin -Date: Mon Jan 3 17:00:21 2022 +0100 - - allow parameter in like escape - - as required by JPQL - -commit b55ccabba150630a9b7782cfc396eda8c0691746 -Author: Gavin -Date: Mon Jan 3 15:58:10 2022 +0100 - - slightly nicer css - -commit 49d9155f4efecf7f55f46bfd9ae2f040891a88fb -Author: Gavin -Date: Mon Jan 3 15:57:50 2022 +0100 - - do a much better job of explaining query language concepts - - and add an example of a union query - -commit cf4d2d4338130eeef71f0f8ac3d503e801d1d6d3 -Author: Gavin -Date: Mon Jan 3 17:06:17 2022 +0100 - - undocument a fixed limitation - -commit 0cf96c09b705982498f893513f9693a836bf6050 -Author: Andrea Boriero -Date: Mon Dec 27 11:52:40 2021 +0100 - - Re-enable additional tests - -commit 6f714f16b3a77eee76f980a6e5709b3f7279f8c0 -Author: Gavin King -Date: Sun Jan 2 17:40:28 2022 +0100 - - remove unnecessary parens - -commit 948eaf721014d7a3387eabcad7a9798937b04ac8 -Author: Gavin King -Date: Sun Jan 2 16:54:15 2022 +0100 - - more comments on 'fetch join' - - - and improve a table - - and add BNF for limit/offset and order by - -commit 6c28a133dd445f45602256a02e30abe68d22da01 -Author: Gavin King -Date: Sun Jan 2 14:55:25 2022 +0100 - - enum + Java constant examples - - + minor fixes - -commit 72889fe861c8b0eceda928bf1fe70b08ef54321d -Author: Gavin King -Date: Sun Jan 2 12:28:56 2022 +0100 - - add some missing functions to docs - -commit fdd1a52e01dc33e9e6e99e0ed2997c71175b3e58 -Author: Gavin King -Date: Sun Jan 2 12:28:27 2022 +0100 - - promote log10() to standard function status - -commit c48be75d3b8106a2e6f13ec79b46c108a9556458 -Author: Gavin King -Date: Sun Jan 2 15:45:48 2022 +0100 - - add an examples with treat() (#4552) - - and slightly reorg doc - -commit 5ae55d7bfb01d0ec8fca6f86067fd6d087ff08fd -Author: Gavin King -Date: Sun Jan 2 13:39:33 2022 +0100 - - redesign 'collate' and add tests - - * and add tests and documentation for 'collate' - * much better and less-ambiguous syntax for collate(), consistent with cast() and treat() - * reimplement collate() using the function infrastructure - * implement collate() for HSQLDB - - This feature was previously untested and at least partially broken, and was making a mess - of the HQL grammar. - -commit 4509cad31576d6d65646232218992c67785edcd4 -Author: Gavin King -Date: Sun Jan 2 02:49:50 2022 +0100 - - at least *mention* treat() - -commit 648dac628fc4532c1b566a504d830c5909f4f32d -Author: Gavin King -Date: Sun Jan 2 02:35:31 2022 +0100 - - minor fixes to docs - -commit de7aaa88dcff2a4dbfe8e99ef9c63279e181505e -Author: Gavin King -Date: Sat Jan 1 23:14:05 2022 +0100 - - clean up sample BNFs - -commit 9edcf6b0c00df9dbd4a18142b59e311a2e06a8a2 -Author: Gavin King -Date: Sat Jan 1 22:53:25 2022 +0100 - - moar tables - -commit a61ffbfea7b21e05603d01c462e30cec24beabf4 -Author: Gavin King -Date: Sat Jan 1 21:39:47 2022 +0100 - - fix insert ... values (...) statements - - they break when using a MultiTableInsertQueryPlan, but we probably don't need one - -commit cb787e87a80a025936f1a39637d7daba2cdf8f2c -Author: Gavin King -Date: Sat Jan 1 21:19:12 2022 +0100 - - mention OffsetDateTime in lterals - -commit ec6540ea567062d7a24ceb58c35481c1276464e6 -Author: Gavin King -Date: Sat Jan 1 20:56:23 2022 +0100 - - get rid of useless headings on sample code fragments - -commit 0966c7be1d4981d98ca608345703b7b7f5049302 -Author: Gavin King -Date: Sat Jan 1 12:14:07 2022 +0100 - - more HQL doc rewriting - - much better documentation for HQL statement types - rewrite section on predicates and logical operators - rewrite from/join section - stop shouting so much - document that H6 auto-removes non-distinct entity results - document limit/offset - document set operators and 'cross join' - slight reorg of Query API chapter, and new title - use "ordinal" instead of "positional" for parameters - -commit df72d7db3dac21ae12384513e1d44d73c3a1ea79 -Author: Gavin King -Date: Sat Jan 1 22:27:29 2022 +0100 - - reenable some LiteralTests - -commit f9afab5492341429399ec5d5cd0ede4f3c6a9e27 -Author: Gavin King -Date: Sat Jan 1 21:00:57 2022 +0100 - - minor cleanups to the grammar - - - simplify two rules that were unnecessarily flexible - - remove useless parens - - rename some rules for readability - - clean up some warnings in SemanticQueryBuilder - -commit 7599d3b2ddaca5af7795cb8f840c74fbb1c5610a -Author: Steve Ebersole -Date: Fri Dec 31 16:37:55 2021 -0600 - - Re-write of `Collections` domain model section - - preliminary work - -commit 7c475c8ac02e3db95930e9809835be82320a6430 -Author: Steve Ebersole -Date: Fri Dec 31 16:21:32 2021 -0600 - - migration-guide - -commit 614ecbdc578f92e53eea74079fa13b089dcdc825 -Author: Fabio Massimo Ercoli -Date: Wed Dec 22 13:40:37 2021 +0100 - - Remove PASS_DISTINCT_THROUGH flag - -commit f5fdb653a84962f3f94930b8871c8c2495008b24 -Author: Fabio Massimo Ercoli -Date: Wed Dec 22 13:38:36 2021 +0100 - - Remove not used examples from documentation - -commit a9c6caa888edda2d99f3d23f26713837321395c4 -Author: Fabio Massimo Ercoli -Date: Wed Dec 22 13:30:51 2021 +0100 - - Update the documentation with removed flag - -commit aa6035a9fd39eb098e00887fbee573d71296ec0f -Author: Fabio Massimo Ercoli -Date: Tue Dec 21 21:48:14 2021 +0100 - - Remove use of PASS_DISTINCT_THROUGH from distinct test - - Property will be deleted in a subsequent commit - -commit 3f8a0b67761ebf2f709ee2806679d7a551b2fe63 -Author: Gavin King -Date: Tue Dec 28 18:37:39 2021 +0100 - - HQL doc rewrite/restructure - - - document new features of HQL (literals, functions, filter, rollup) - - rewrite parts of the section dealing with the Query API + execution - - split out a new chapter about the query language, and reorder sections - - remove material about deprecated/removed features - - get rid of use of java.sql.Timestamp from the code! - - make use of repeatable annotations in code examples - -commit 4a88399bb5b96c380e04551423087917149970a8 -Author: Gavin King -Date: Fri Dec 31 16:53:10 2021 +0100 - - remove name() from @ColumnDefault + @GeneratedColumn - - after all that, we decided it wasn't necessary :-D - -commit 9beab3871608035bc430cad17aba5c8283844d2c -Author: Steve Ebersole -Date: Fri Dec 31 11:32:35 2021 -0600 - - Re-write of `Collections` domain model section - - preliminary work - -commit aa08c90b52c4de2c86f33f31b0d5d27b461d1afc -Author: Gavin King -Date: Tue Dec 28 20:43:02 2021 +0100 - - add some overrides that should not be necessary - - Javac doesn't mind, but IntelliJ seems to get confused - -commit 4ea949d93d1323a9c2b56da0e6c66b1f4179f257 -Author: Steve Ebersole -Date: Fri Dec 31 11:08:14 2021 -0600 - - Re-write of `Collections` domain model section - - preliminary work - -commit f2c3ac7db7b666508c462d082d0a0d91a52ea3ca -Author: Gavin King -Date: Thu Dec 30 15:10:14 2021 +0100 - - remove some obsolete code from AnnotationBinder - -commit 5bcf691d2b8f1f5302741018ab6827e6806b4437 -Author: Gavin King -Date: Thu Dec 30 21:04:11 2021 +0100 - - mention @GeneratedColumn in the docs - -commit 4ce27e70ae33385e1644d3efda33bc3c6a9c8dcf -Author: Gavin King -Date: Tue Sep 14 21:34:35 2021 +0200 - - introduce @GeneratedColumn annotation - - to make it easy to produce portable DDL with 'generated always as' - or equivalent - - also add 'name' to @ColumnDefault, and add some missing tests for - basic usage patterns of @ColumnDefault - -commit 37010a1a8d1d55e84cf1f7eb520bcee3cb7fcd07 -Author: Gavin King -Date: Fri Dec 31 15:59:12 2021 +0100 - - fix a broken @see annotation + remove one - -commit b7caec4b6837a3e28998ef23f8536daabfe883ea -Author: Steve Ebersole -Date: Thu Dec 30 13:07:46 2021 -0600 - - `@CollectionClassificationType`; - `AvailableSettings.DEFAULT_LIST_SEMANTICS` / MappingDefaults.getImplicitListClassification`; - additional improvements to CollectionSemantics resolution handling from annotations - -commit 452f114957f69346c444819d9487414fa983fd17 -Author: Steve Ebersole -Date: Thu Dec 30 09:00:03 2021 -0600 - - `@CollectionType` + better CollectionSemantics resolution handling from annotations; - HHH-9688 - Combination of @OrderBy and @SortComparator - - HHH-9688 was simple change in the code I was working on already, so went ahead and just did it - -commit e16c78f7ea22238ef7f7beee40cc55fe1af7fc70 -Author: Steve Ebersole -Date: Tue Dec 28 14:55:25 2021 -0600 - - log4j config - -commit bf1eec69d088a96a13b1beec08c113fc7b75d7a1 -Author: Gavin King -Date: Wed Dec 29 11:55:38 2021 +0100 - - minor fixes to generic types in QueryParameterBinding - - gets rid of some warnings - -commit 537953e12c22235769f22b5e4a927b9d2c911037 -Author: Gavin King -Date: Wed Dec 29 11:48:49 2021 +0100 - - more cleanups to the Javadoc for Query - -commit 553688ca6712ea48fc444700b4f27e97f06204c0 -Author: Gavin King -Date: Tue Dec 28 19:12:22 2021 +0100 - - fix the javadoc of Query.getSingleResult() - - which incorrectly described the semantics of this method - - and add tests for this stuff, since we didn't seem to have them - -commit 0b2a357670ae41aac326f99d9c8b38f825f23989 -Author: Gavin King -Date: Fri Dec 24 13:03:05 2021 +0100 - - add MappingMetamodel.isEntityClass() and clean up raw types - -commit 0bf2365955d8813711afdb67e9e0acdf297a17f0 -Author: Gavin King -Date: Fri Dec 24 12:36:27 2021 +0100 - - fix signature of createQuery(CriteriaUpdate|CriteriaDelete) - -commit ac845bca3156b587b5a85309a17f5d3cb7667a7c -Author: Gavin King -Date: Wed Dec 15 00:09:45 2021 +0100 - - impl the new overload of createNativeQuery() - - - and add a second new overload - - tolerate non-entity classes as arguments to these methods - - the overloads accept a result class, and return a typed Query - -commit 4ea59b4961dffa3199cb845902fa7e065dd247cd -Author: Gavin King -Date: Tue Dec 14 23:45:27 2021 +0100 - - deprecate a bunch of methods of Query + QueryProducer - -commit 8a68ee49c153a0ac3b680495a187579caf9245cd -Author: Gavin King -Date: Sun Dec 12 12:12:43 2021 +0100 - - remove wildcards from APIs in Query hierarchy - - I hate doing this but it's necessary since Query is often - used as a raw type, and the wildcards result in additional - compiler warnings at the usage site - - Also clean up some other warnings I encountered in this code - -commit 82aff7cd8ad60209e1d07428bd8517032b847a55 -Author: Gavin King -Date: Mon Dec 27 18:07:53 2021 +0100 - - add tests for Session.fetch() - -commit 313de3f917eef41070bae43c2cd52547ed58b137 -Author: Gavin King -Date: Mon Dec 27 19:08:12 2021 +0100 - - implement Session.fetch() for bytecode-enhanced proxies - - had to add a way to easily set collectionsInDefaultFetchGroup - -commit 8770db00af6ebe7f530f45b399cc8cb881d7b3df -Author: Gavin King -Date: Mon Jul 26 17:07:11 2021 +0200 - - add fetch() to StatelessSession - -commit 2d10698d942dd27314e5c9ea756eec7725cec5ad -Author: Gavin King -Date: Sat Dec 25 13:08:27 2021 +0100 - - remove operations that always threw UnsupportedOperationException - -commit a25aa20187b46d7a45e1b8df0b208c4d7ea3042e -Author: Gavin King -Date: Sat Dec 25 13:05:59 2021 +0100 - - clean up some warnings - -commit 9d0ee368ca986369aa1b811861db4389a1114af6 -Author: Gavin King -Date: Mon Dec 27 19:39:56 2021 +0100 - - reword some javadoc - -commit 4a8a2ae3cce8457e70c59ee50613c70cd389438e -Author: Gavin King -Date: Fri Dec 24 13:40:00 2021 +0100 - - tests for Session.getReference(Object) - - and clean up lots of warnings in ProxyTest - -commit 65ce96b776e3d88e86f55258fdae28c411e0b6eb -Author: Gavin King -Date: Fri Dec 24 13:39:33 2021 +0100 - - add Session.getReference(Object) - - like in Hibernate Reactive - - this is really useful for dealing with detached instances + associations - -commit 0dc94d312e419b4f6f6bcf89fc1f4060a0b8ed14 -Author: Dariush Moshiri -Date: Sat Dec 25 19:06:22 2021 +0100 - - HHH-14682: Enable COMMENT ON H2 - -commit f2f2a195cddf767c859e0b64aefddf285849457f -Author: Gavin King -Date: Sat Dec 25 00:30:15 2021 +0100 - - fixes to Session javadoc, including usage of @see - -commit 800af2764d4776e1bb099fd775144210a0a68900 -Author: Gavin King -Date: Sat Dec 25 00:22:11 2021 +0100 - - remove reference to obsolete config property - -commit 92a000b8e62b18e80dc6a1c8a2c65a38349ac85c -Author: Gavin King -Date: Fri Dec 24 20:07:24 2021 +0100 - - misc Javadoc fixes, and added @links - -commit 8adc1d8d7039a6b5b1b34243d081d932246e49df -Author: Gavin King -Date: Fri Dec 24 19:32:48 2021 +0100 - - use @code instead of in Javadoc - -commit fb8186d3e8b1ba532c6b248cf433235ed2379494 -Author: Christian Beikov -Date: Fri Dec 24 00:21:48 2021 +0100 - - Cleanup stored procedure handling and add support for stored procedure function return - -commit 1aefd1977aef0bbd1f515d771f675d4b7c1dd826 -Author: Christian Beikov -Date: Thu Dec 23 17:32:12 2021 +0100 - - Rename result.SqlSelectionImpl to ResultSetMappingSqlSelection. Introduce support for resolving the selection type also for normal JdbcValuesMapping. - -commit 313bc2666ca908ca3b8b0ad9adfedec18fc2a945 -Author: Andrea Boriero -Date: Thu Dec 23 12:01:25 2021 +0100 - - Remove few NotYetImplementedFor6Exception - -commit 67f73f20ef4985299d5e8ec3e843d3c44b2eb613 -Author: Andrea Boriero -Date: Wed Oct 6 16:46:54 2021 +0200 - - Remove few NotYetImplementedFor6Exception - -commit 87c059ac9530f570dae1024c6ce1292ced7310f7 -Author: Andrea Boriero -Date: Wed Oct 6 16:31:19 2021 +0200 - - Remove DomainResultProducer NotYetImplementedFor6Exception - -commit 63c119bf89216d0184e4970ce9d7a939e530b8db -Author: Andrea Boriero -Date: Wed Oct 6 14:47:15 2021 +0200 - - Remove ProcedureParameterImplementor NotYetImplementedFor6Exception - -commit 5b425f39fddd7b1c75d20d33c97b176b367dabdc -Author: Andrea Boriero -Date: Wed Oct 6 14:23:01 2021 +0200 - - Remove EntityPersister NotYetImplementedFor6Exception - -commit 2200a221a73e12d93cea804263418feb8e8aae3f -Author: Andrea Boriero -Date: Wed Oct 6 14:18:51 2021 +0200 - - Remove ModelPart NotYetImplementedFor6Exception - -commit 0a41272e16be5707c66b050fd1544c0016d6b30a -Author: Andrea Boriero -Date: Wed Oct 6 12:47:01 2021 +0200 - - Remove JdbcMappingContainer NotYetImplementedFor6Except - -commit ee11f9a9ef1e7af26dd6892c8f3bb8a2877f5daa -Author: Andrea Boriero -Date: Wed Oct 6 12:27:45 2021 +0200 - - Remove Bindable NotYetImplementedFor6Exception - -commit c612669bb50e8e3cd8de8a0aa4b120ce5cc1bf74 -Author: Andrea Boriero -Date: Tue Oct 5 16:36:43 2021 +0200 - - Remove few NotYetImplementedFor6Exception - -commit 7a3ad20aeab47be1ee60311fda2e89e67af3fa61 -Author: Andrea Boriero -Date: Tue Oct 5 13:43:14 2021 +0200 - - Remove few NotYetImplementedFor6Exception - -commit aec5ce9d8ab2f5cdad25a36a442d47a081910fa5 -Author: Christian Beikov -Date: Thu Dec 23 16:37:10 2021 +0100 - - Move some more tests and fix H2 tuple comparison issues - -commit 2f8d22e9e54dba4f3acfd3c8b53169055d6325e8 -Author: Fabio Massimo Ercoli -Date: Thu Dec 23 14:15:43 2021 +0100 - - Fix test to follow 6.0 behaviour (#4513) - - * Fix test to follow 6.0 behaviour - -commit 91a720772fea8821b8f8be7d79c29eba55b24352 -Author: Fabio Massimo Ercoli -Date: Wed Dec 22 21:09:29 2021 +0100 - - Set correct key type if !referenceToPrimaryKey - -commit 3ea5a066ede573db9b3d743d223985d8762cd100 -Author: Christian Beikov -Date: Thu Dec 23 00:30:04 2021 +0100 - - Add query plan cache statistics for native queries and implement proper caching - -commit 1184a5963bfd2bbc4ef2db1fe60d3e6de15584c7 -Author: Christian Beikov -Date: Wed Dec 22 10:03:37 2021 +0100 - - Re-add AvailableSettings.JPA_METAMODEL_GENERATION and re-enable metamodel tests - -commit 195df690198e774249c98801a20ae835f006878f -Author: Jan Schatteman -Date: Wed Dec 22 18:06:13 2021 +0100 - - Fixed and moved MappedSuperclassInheritanceTest to orm.test - - Signed-off-by: Jan Schatteman - -commit 90e551da4b3fbf91378226b41f216656ac369dd6 -Author: Christian Beikov -Date: Thu Dec 23 00:31:53 2021 +0100 - - Fix default null ordering for H2 and re-enable test - -commit ef6f1909254844146264da13584b289e42af310a -Author: Andrea Boriero -Date: Tue Dec 21 18:39:31 2021 +0100 - - Fix collection element order by path resolution - -commit 1f42b9badbf86e1fab3112566897cbd8a3f3c0af -Author: Andrea Boriero -Date: Fri Oct 29 10:57:56 2021 +0200 - - Log first Exception when MappingModelCreationProcess cannot complete - -commit da1972ed7bd32e86c829fa18f0a5854f6919849a -Author: Sanne Grinovero -Date: Wed Dec 22 11:23:48 2021 +0000 - - HHH-14999 Upgrade to Hibernate Validator 6.2.1.Final (EE) and 7.0.2.Final (Jakarta) - -commit 31030019d9bf0cc76c79821ec4a72effc2e3773c -Author: Sanne Grinovero -Date: Wed Dec 22 11:22:05 2021 +0000 - - HHH-14998 Upgrade to GraalVM 21.3.0 - -commit e42364246d2efaa771e620a337a6a385cb797c0c -Author: Sanne Grinovero -Date: Wed Dec 22 11:21:07 2021 +0000 - - HHH-14997 Upgrade to Agroal 1.14 - -commit cb0f26c6bf1bcde19a7dca54041eacafad2030d2 -Author: Sanne Grinovero -Date: Wed Dec 22 11:19:50 2021 +0000 - - HHH-14996 Upgrade to JBoss Logging Processor (and matching Annotations) 2.2.1.Final - -commit 90c0717b379c10aaaa1b687a91a0fa002e4f1582 -Author: Sanne Grinovero -Date: Wed Dec 22 11:18:58 2021 +0000 - - HHH-14995 Upgrade to Jandex 2.4.1.Final - -commit fec4fb7a85bc35b1b1927f3bb17f0898585de436 -Author: Christian Beikov -Date: Wed Dec 22 10:56:17 2021 +0100 - - Fix connection leak through connection validation code - -commit 779cbef20ca577b2727db6f4ed47f050325831b5 -Author: Christian Beikov -Date: Wed Dec 22 09:42:46 2021 +0100 - - Fix tests for HANA - -commit dd0e65c698139aec5e02c1e31cdbd6df105a9ff8 -Author: Sanne Grinovero -Date: Mon Dec 20 16:53:35 2021 +0000 - - Upgrading the DB2 JDBC driver JCC to 11.5.7.0 - -commit a27694c9523ca27eea6b96bd1e013c498b6506b0 -Author: Sanne Grinovero -Date: Mon Dec 20 16:21:13 2021 +0000 - - Upgrade to DB2 container image ibmcom/db2:11.5.7.0 - -commit 29bfb799aab84d796110753416093574cfcc967b -Author: Christian Beikov -Date: Tue Dec 21 18:26:37 2021 +0100 - - Fix some test issues with HANA and emulate derived table column naming on HANA - -commit 39484b160dba77dbd6f8224bd295d568de7053d9 -Author: Christian Beikov -Date: Tue Dec 21 10:47:56 2021 +0100 - - Cleanup support for virtual embeddable model parts and reuse existing compatible joins for implicit joins - -commit d5d350e5e7052f13847f482d38c0182183746227 -Author: Christian Beikov -Date: Mon Dec 20 16:14:46 2021 +0100 - - HHH-11433 Allow usage of KEY expression in a join - -commit 360fec82f1ef25ca83cae405af1130c6e437301e -Author: Christian Beikov -Date: Mon Dec 20 12:45:15 2021 +0100 - - Reset connection pool after changing system TZ. Don't use distinct predicate when comparing primary keys in envers - -commit dcd4479cf1f526ed3520668c9821ae38b43e7dc3 -Author: Andrea Boriero -Date: Mon Dec 20 21:17:45 2021 +0100 - - Fix instantiation of composite property ref - -commit 99c13e596598574f2ca19689cf908fc48cd810b7 -Author: Chris Cranford -Date: Sat Dec 18 21:34:24 2021 -0500 - - HHH-11595 Introduce `CollectionAuditTable` support - -commit d9fa35c6f122ef9316f42d9638965b8eb338f826 -Author: Chris Cranford -Date: Sat Dec 18 19:03:56 2021 -0500 - - HHH-13361 Cleanup test - -commit aa5bdab6ecc8a9475d4458cdd883046a5d90aee9 -Author: Chris Cranford -Date: Sat Dec 18 18:50:36 2021 -0500 - - HHH-13361 Refactor mappers - -commit b5755b6945d8c5e528da890097de5cf2b93c15c3 -Author: Chris Cranford -Date: Sat Dec 18 17:37:18 2021 -0500 - - HHH-13361 Allow auditing entities with nested identifiers - -commit c5f719ef39a47bfcecb37ce0fe2e7661dac1ef0c -Author: Steve Ebersole -Date: Sat Dec 18 19:14:07 2021 -0600 - - clean up javadoc - -commit f0e7b2160b6e3d8c7cf457aa5e4637114de56a8b -Author: Steve Ebersole -Date: Sat Dec 18 18:43:25 2021 -0600 - - 6.0 Final tasks - general test_legacy dir clean-up - - Drop test that where either copied over or had corresponding tests - - - leaves just the "bulkid" tests - -commit f9fa2e6e5332ee6b57f16275dd9d9f47c1efc31a -Author: Steve Ebersole -Date: Sat Dec 18 12:37:28 2021 -0600 - - 6.0 Final tasks - general test_legacy dir clean-up - - At this point, everything left in test_legacy is something I think we want to account for in the test suite (move it, etc) - -commit 8f9d200936f6bf8768ef5107f4b01e391f55e37c -Author: Steve Ebersole -Date: Sat Dec 18 12:18:02 2021 -0600 - - 6.0 Final tasks - analyze legacy Criteria tests - - See if anything makes sense as additions to SqmNodeBuilder (as JPA CriteriaBuilder extension); make list; delete - - The only one I considered was support for the legacy `Restrictions#naturalId` - -commit 8cc9a064ecdc1fe5fc9c3f4f03a522f127a5040c (tag: 6.0.0.Beta3) -Author: Steve Ebersole -Date: Sat Dec 18 11:33:01 2021 -0600 - - Post-steps for release : `6.0.0.Beta3` - -commit 4925f8dfd838f07428c2125bbf86108b0cf81e83 -Author: Steve Ebersole -Date: Sat Dec 18 07:44:37 2021 -0600 - - Pre-steps for release : `6.0.0.Beta3` - -commit 7c604d7c3b1c392d11d8dca220bb4aae749058fc -Author: Steve Ebersole -Date: Sat Dec 18 07:43:32 2021 -0600 - - HHH-14977 - @Where is broken in 6.0 - - Fix up bad rebase of https://github.com/hibernate/hibernate-orm/pull/4465 (Make TableReference an interface with various sub-classes) on top of this work - -commit fe5a7466cfb661608117c4e7c93ff3e6068b8ac3 -Author: Steve Ebersole -Date: Sat Dec 18 07:21:35 2021 -0600 - - slightly expand the documentation for Boolean - minor fix-ups - -commit 7a81ec78ffc7131aaf99143ec26c1d7e1525de47 -Author: Gavin King -Date: Sun Dec 12 01:11:47 2021 +0100 - - slightly expand the documentation for Boolean - -commit 863802cfd06e88c9f98ea64051280617a90b015d -Author: Gavin King -Date: Fri Nov 26 12:42:20 2021 +0100 - - proposed API for instantiation of detached collections + proxies - - this is useful for object-graph deserialization - -commit 6fbb90aa548228a396d77af685b88690767c69ed -Author: Sanne Grinovero -Date: Sat Dec 18 10:21:54 2021 +0000 - - HHH-14987 Upgrade to Log4j 2.17.0 - -commit ab0f1d40afc67ccb18c9a4c0895ca7418c2d71d7 -Author: Sanne Grinovero -Date: Thu Dec 16 22:01:04 2021 +0000 - - HHH-14988 Upgrade to ByteBuddy 1.12.5 - -commit d1a732fcf1a803e6974471a0ba1b18987b409c4d -Author: Christian Beikov -Date: Fri Dec 17 15:39:45 2021 +0100 - - Tryout a deterministic test class order - -commit fb302063874561a423f203b0b299d898d6bcb4c6 -Author: Christian Beikov -Date: Wed Dec 15 14:18:08 2021 +0100 - - Add emulation for simple lateral joins and make use of lateral joins for min/max index/element paths if possible - -commit ab954925e47a01772e8f0b0bc86fa9e21e2ee34d -Author: Christian Beikov -Date: Wed Dec 15 09:43:40 2021 +0100 - - Simplify TableJoin to only allow the distinction between inner and left joins - -commit 1988ffa310f7102e8e91e5764a4a03b803e12bcf -Author: Christian Beikov -Date: Wed Dec 15 09:24:43 2021 +0100 - - Support lateral joins by introducing a lateral flag in TableGroupJoin and add a FunctionTableReference for table valued functions - -commit b75277b42157a00b9b2c1b34339e2b6d6b88c7b0 -Author: Christian Beikov -Date: Tue Dec 14 16:20:20 2021 +0100 - - Split TableReference class into interface and NamedTableReference implementation to allow QueryPartTableReference and ValuesTableReference to fit into the picture - -commit 70114d30ece5492e75f995a6a9e28281a177606c -Author: Gavin King -Date: Thu Dec 16 18:22:17 2021 +0100 - - treat integral types as equivalent for purposes of schema validation/update - -commit a2272be61c38a4afd95891da45923479047f1b04 -Author: Gavin King -Date: Sat Dec 11 22:34:02 2021 +0100 - - documentation surrounding @Lob and Length - -commit d6bdca77f2c90661af2ad739d1f1908c32a0cdd5 -Author: Andrea Boriero -Date: Fri Dec 17 17:53:26 2021 +0100 - - Fix Stack Overflow caused by EntitySelectFetchByUniqueKeyInitializer - -commit ecd9d2a19335e4c3ad63789670dc289a000c021b -Author: Fabio Massimo Ercoli -Date: Fri Dec 17 15:14:15 2021 +0100 - - Test eager cycles derived by 1to1 owner by contained - -commit 275f6325d3eb7b08d9420bc9c6f21412239c92db -Author: Steve Ebersole -Date: Sat Dec 18 04:36:25 2021 -0600 - - HHH-14986 - drop build_command - -commit 9be679bfeed9624f87a50eb2d1a540951b53e28c -Author: Chris Cranford -Date: Fri Dec 17 17:27:03 2021 -0500 - - HHH-14986 Introduce custom build_command - -commit 5e5e783b98852178007ae31cc93cde9b42242176 -Author: Chris Cranford -Date: Fri Dec 17 16:35:30 2021 -0500 - - HHH-14986 Use JDK11 with LGTM check - -commit 335a4d62e30662057ea3af874ea1d77073eb4ddf -Author: Steve Ebersole -Date: Sat Dec 18 04:26:38 2021 -0600 - - HHH-14977 - @Where is broken in 6.0 - - `@Where` and `@Filter` fragments are now fully handled as AST - each fragment gets its own Predicate instance. - - Some more work coming to clean up methods we no longer use which require the old String-manip approach. - -commit 98c9cf136ce35b889aa8824eecb7c36d29ed6934 -Author: Chris Cranford -Date: Fri Dec 17 18:57:19 2021 -0500 - - HHH-14280 Fix test failures - -commit c249b019e6d989f041265ad40c60136a6b6b22cd -Author: Chris Cranford -Date: Fri Dec 17 15:31:38 2021 -0500 - - HHH-14280 Reworked test - -commit f4994a4cf6c1114b910747c1cffc16fa875be6c1 -Author: Rapenok, Ivan -Date: Sun Oct 25 18:28:08 2020 +0300 - - HHH-14280 - audit query does not work when @IdClass composite identifier contains association to a not audited entity - Add possible solution - -commit 0ea49974d0692985d9b2ab71d1ad47e43534639a -Author: Rapenok, Ivan -Date: Sun Oct 25 18:27:42 2020 +0300 - - HHH-14280 - audit query does not work when @IdClass composite identifier contains association to a not audited entity - Add test case - -commit 4c758b2d481cbefdb0b67d500c5a7b52cfe54a35 -Author: Steve Ebersole -Date: Fri Dec 17 17:50:36 2021 -0600 - - HHH-14977 - @Where is broken in 6.0 - - `@Where` and `@Filter` fragments are now fully handled as AST - each fragment gets its own Predicate instance. - - Some more work coming to clean up methods we no longer use which require the old String-manip approach. - -commit 1c5ec0612c76d414a0a051277e276cf97d78cf70 -Author: Steve Ebersole -Date: Wed Dec 15 17:52:26 2021 -0600 - - HHH-14977 - @Where is broken in 6.0 - - `@Where` and `@Filter` fragments are now fully handled as AST - each fragment gets its own Predicate instance. - - Some more work coming to clean up methods we no longer use which require the old String-manip approach. - -commit 4e4f2e40b44eaefbc7aa95cbd4935ce7ea7eb358 -Author: Chris Cranford -Date: Wed Dec 15 23:28:21 2021 -0500 - - HHH-9432 Fix test failures - -commit 921a958e886187d2496f9d3052941a01922058c0 -Author: Chris Cranford -Date: Tue Jan 10 11:15:22 2017 -0500 - - HHH-9432 Fix audit queries when `@Where` applied to discriminator mappings - -commit 9ace8a9dd3d97858c10355be924730db7930c9d0 -Author: Chris Cranford -Date: Fri Dec 17 14:38:15 2021 -0500 - - HHH-13817 Support to-one relation traversals in RevisionsOfEntity queries - -commit 96e7d4cbb13872fc6dbba97b4b7c78ce65b9e18c -Author: Chris Cranford -Date: Fri Dec 17 15:16:10 2021 -0500 - - HHH-11573 Fix rebase issues - -commit d263466dc08fb34dba010a9f7fdeebd84d2101dd -Author: Chris Cranford -Date: Tue Dec 14 19:05:45 2021 -0500 - - HHH-11573 Moved test class - -commit a408fa45974dac1bb42d621307fb1922ac72bda1 -Author: Chris Cranford -Date: Mon May 14 13:43:27 2018 -0400 - - HHH-11573 - Fix non-deterministic result ordering & test validation. - -commit 8d7562a314495b1d917fa83f60af05c03252e087 -Author: Chris Cranford -Date: Thu Mar 23 13:00:39 2017 -0400 - - HHH-11573 - Added todo wrt query context. - -commit 938b481cd91efa596852557456fecbf18a1b20fc -Author: Chris Cranford -Date: Thu Mar 23 13:00:24 2017 -0400 - - HHH-11573 - Test case fixes. - -commit 6676a9c7bdbae91c8820590ed6dfd02f808f4ef8 -Author: Chris Cranford -Date: Thu Mar 23 12:59:31 2017 -0400 - - HHH-11573 - Fix javadoc typo. - -commit 1eec41a136b3405e104b6c9cc9aa200e3f8cd8fe -Author: Felix Feisst -Date: Thu Mar 16 21:02:08 2017 +0100 - - HHH-11573 Query based on type expressions - -commit 9d75e6d6203853c4f8d5122dc84812011a54f235 -Author: Christian Beikov -Date: Thu Dec 16 12:10:39 2021 +0100 - - Fix some wrong assignability checks - -commit f765eb4a87da20b858047bac18dd7b5c94b91cec -Author: Andrea Boriero -Date: Thu Dec 9 11:59:03 2021 +0100 - - Fix issue with Hibernate proxy - -commit d845f4b066f4f1379aa700cb48665818156b6aab -Author: Fabio Massimo Ercoli -Date: Tue Dec 7 18:07:53 2021 +0100 - - Test load of polymorphic entities - -commit 5626b075dc676dc5a3d66437f8c47ae8d6a5483e -Author: Andrea Boriero -Date: Wed Dec 15 12:17:38 2021 +0100 - - Fix instantiation of VirtualId - -commit c92a47589236aeabc2722d49949d8b7fed8348b3 -Author: Christian Beikov -Date: Fri Dec 17 14:51:48 2021 +0100 - - Get rid of unnecessary lexer rules - -commit 017d1a2dcd396281623d614cb97cb3197fbfefec -Author: Andrea Boriero -Date: Wed Dec 15 10:51:29 2021 +0100 - - Reenable additional tests - -commit b75c2117b29c7d5210675a3a3c4b7fa4fcd3ce60 -Author: Christian Beikov -Date: Thu Dec 16 14:59:04 2021 +0100 - - Fix resolving table references for discriminator path - -commit 9c8eabcd9529b93340cacacb0c339a51daaec7c2 -Author: Chris Cranford -Date: Fri Dec 17 00:01:55 2021 -0500 - - HHH-11896 Fix test failures on Oracle - -commit 2e8d16efca1aaf2f33b9df42a4572e8d394205bb -Author: Chris Cranford -Date: Thu Dec 16 20:41:54 2021 -0500 - - HHH-11896 Fix test to be deterministic - -commit 3e3d227c9a40b08451d9f20ee3bdf19d9a6d9429 -Author: Felix Feisst -Date: Fri Jul 28 10:13:33 2017 -0400 - - HHH-11896 Support 'on-clause' criterion when traversing audit query relations - -commit e07a8c3bd568037e51be262a4dc08d134fbebd5e -Author: Chris Cranford -Date: Thu Dec 16 20:37:00 2021 -0500 - - HHH-11895 Fix test to be deterministic - -commit d9f3e822911f8fd90b1c72d1a83bf448e5b0054b -Author: Felix Feisst -Date: Fri Jul 28 03:17:52 2017 -0400 - - HHH-11895 Support traversal of components in audit query API - -commit 25421733d665f225f7b3c8f5ae78dd946e4ddf05 -Author: Chris Cranford -Date: Thu Dec 16 05:06:33 2021 -0500 - - HHH-14981 Support null precedence with Envers Query API - -commit bc65526c775280085f34152366775c134eff224c -Author: Gavin King -Date: Wed Dec 15 16:01:01 2021 +0100 - - clean up the Dialect-specific default property handling - -commit 057b9bfc04ca115898a3b4bac0ee896c7f3dfeae -Author: Chris Cranford -Date: Wed Dec 15 22:56:22 2021 -0500 - - HHH-11452 Fix test failures - -commit e50037ec8c6e3570c8167ba6d0c7ea29ef762b3c -Author: Felix Feisst -Date: Tue May 9 15:11:50 2017 -0400 - - HHH-11452 Added possibility to apply the like operator on a function criterion. Added possibility to use the id of an entity as function argument. - -commit 640bd85975571fb3bbde5c6ec598f3f56c4c308f -Author: Felix Feisst -Date: Thu Mar 16 09:51:57 2017 -0400 - - HHH-11452 Extended audit query API to specify the use of scalar - functions. - -commit bb092221028ac4fdd98d18519c7b4627699d7e6b -Author: Felix Feisst -Date: Tue May 9 07:57:44 2017 -0400 - - HHH-11735 Support traversal of to-many-associations in audit queries. - -commit b384b37f395f14f5e64c6b6d4d00e0868d62fe01 -Author: Chris Cranford -Date: Mon Feb 17 16:52:48 2020 -0500 - - HHH-8051 Gracefully handle not-found to-one associations - -commit 28b8b33b88bc5516b18cf0c9343276d2cb934047 -Author: Fabio Massimo Ercoli -Date: Tue Dec 14 16:30:23 2021 +0100 - - Support multiload by single natural id - -commit 2814c053991231390cab312d98aafa2209c46c2a -Author: Fabio Massimo Ercoli -Date: Sat Dec 11 21:19:42 2021 +0100 - - Test multiload on single event - -commit 647c2a923c9893ca8b4d81419209c7797eb7471a -Author: Fabio Massimo Ercoli -Date: Tue Dec 14 20:24:18 2021 +0100 - - Use single loader to load single instance on multiloading - -commit cef98f67a9a507203ddc99d000541497cbf8cda1 -Author: Fabio Massimo Ercoli -Date: Tue Dec 14 19:48:42 2021 +0100 - - Test multiloading on partial cached entities - -commit 579b3f0dcb943b768bd263dfb568ba7e18da340d -Author: Steve Ebersole -Date: Wed Dec 15 10:49:30 2021 -0600 - - HHH-14977 - @Where is broken in 6.0 - - Next iteration where `@Where` fragments generate AST one or more `WhereFilterPredicate` instances. - - At the moment, `@Filter` fragments are collected together using the existing String-manipulation style and still collected into a single `FilterPredicate`. Next step is to make that more AST-centric and hopefully get rid of the String-manip-based methods - -commit c5c24344a4c8ab0af56c26164d13502700c62a8c -Author: Sanne Grinovero -Date: Tue Dec 14 21:45:29 2021 +0000 - - HHH-14979 Upgrade to Log4J 2 2.16.0 - -commit a4b574e826dd95bd139ce9f3d5cc267ba8d20975 -Author: Andrea Boriero -Date: Tue Dec 14 14:34:03 2021 +0100 - - @FailureExpected annotation added to tests in orm 6 substituted with @NotImplementedYet - -commit bd9276d6d7fc6a389f7c0b397c1c5af881982e66 -Author: Gavin King -Date: Tue Dec 14 22:55:23 2021 +0100 - - clean up version stuff in DB2i/z dialects - -commit e992b4175638b2181e31064593827ec5abecc52a -Author: Gavin King -Date: Tue Dec 14 18:28:39 2021 +0100 - - clean up constructor model in Dialects - - and fix strange model of versions on Maria/TiDB - -commit e2be0960fd242d1aa36adac435a7f92569806a95 -Author: Gavin King -Date: Tue Dec 14 16:38:16 2021 +0100 - - let's not use LONGVARCHAR to mean two different things - -commit eb3bcdb94ab90ded616028b559bb13a6d13a043e -Author: Gavin King -Date: Sun Dec 12 14:42:53 2021 +0100 - - reworked approach to Dialect column type customization - -commit 103e5c658b7dac278fec57c51f597edb83ba7c06 -Author: Steve Ebersole -Date: Tue Dec 14 15:35:58 2021 -0600 - - HHH-14977 - @Where is broken in 6.0 - - simple fix hooking in to the existing String based building. working on a version that - uses the AST - -commit d89b28e1a9891d5a7eabb53bcc74844c86eefa19 -Author: Andrea Boriero -Date: Mon Dec 13 19:12:37 2021 +0100 - - Re-enabled additional tests - -commit 6ebceedf484e768f4334f4596d92cfc8cb3406bf -Author: Andrea Boriero -Date: Mon Dec 13 18:59:41 2021 +0100 - - Fix Query#getParameters() returning an empty Set when the query has no parameters - -commit ba558503a8d9e4463fcb18f68eba500d18259351 -Author: Andrea Boriero -Date: Mon Dec 13 18:46:55 2021 +0100 - - Fix thowing IllegalArgumentException when accessing procedure not registered parameters - -commit a6ee855d29f8861567e76d458fbd48011ab132fd -Author: Andrea Boriero -Date: Mon Dec 13 18:18:19 2021 +0100 - - Fix thowing IllegalArgumentException when accessing procedure not registered parameters - -commit fa499dff94a71ad0abe450228ee214519290c8bb -Author: Andrea Boriero -Date: Mon Dec 13 17:27:46 2021 +0100 - - Fix issue with ResultSetMapping resolution - -commit 09d859fd3c4540aa928856af46cc436303dd19d2 -Author: Christian Beikov -Date: Tue Dec 14 10:12:39 2021 +0100 - - Re-enable all community dialect tests - -commit c4e7e2b3fe368c871ba010b0658bf586455fa868 -Author: Christian Beikov -Date: Mon Dec 13 17:33:04 2021 +0100 - - Fix support for dropping local temporary tables - -commit eecda61cebafeefaf010284e39f81a3c63555376 -Author: Christian Beikov -Date: Tue Dec 7 18:39:22 2021 +0100 - - Move more tests and fix subselect support - -commit b9814f5cefdf62c5ec319b1ed6b6e05f06954118 -Author: Ivaylo Mitrev -Date: Thu Dec 2 17:38:26 2021 +0200 - - HHH-14948 Adapt contributed patch to 6.0 branch - -commit 1172943252bfada34e038f0a337418044f484c4c -Author: Gavin King -Date: Mon Dec 13 09:30:22 2021 +0100 - - fix broken float type precision conversion - - it is not the case that ln(10) = log_2(10) - -commit 36be5cc3da2f365bb47088635edd287df6aa0458 -Author: Andrea Boriero -Date: Mon Dec 13 11:52:42 2021 +0100 - - Re-enabled additional tests - -commit fcda293c5e57fb3c25796fdb4f9e2e6470946280 -Author: Steve Ebersole -Date: Sun Dec 12 15:47:57 2021 -0600 - - HHH-14975 - Allow use of auto-applied AttributeConverter as native-query result or parameter - -commit 38fa2aef75fa65ee6a099912d7671dd1c4e463c3 -Author: Steve Ebersole -Date: Sun Dec 12 15:14:28 2021 -0600 - - HHH-13082 - Support specifying an AttributeConverter class as a @ColumnResult#type - -commit bd784b6e9025507f280350cd333fae6ab6013c22 -Author: Steve Ebersole -Date: Sun Dec 12 12:30:01 2021 -0600 - - Misc cleanup related to `MultiLoader` hierarchy - -commit 8fef9c4de40ec6d13d842a676b1e68f75d11e67a -Author: Steve Ebersole -Date: Sat Dec 11 20:08:38 2021 -0600 - - Test for https://hibernate.atlassian.net/browse/HHH-11784 - -commit ccc88e9ad46ffb684b94eca9e76127b35b8d049d -Author: Gavin King -Date: Sat Dec 11 18:33:52 2021 +0100 - - update the community dialects - -commit 0ca7a659b0c56793740b495343da8e024f441023 -Author: Gavin -Date: Fri Dec 10 14:33:11 2021 +0100 - - "long" varchar/varbinary mappings - - add Length class with useful constant values - well-defined mappings for "long" varchar/varbinary types - make LONGVARCHAR a synonym for VARCHAR with length=LONG32 - make LONGVARBINARY a synonym for VARBINARY with length=LONG32 - add Dialect.getMaxVarcharLength() + friends - make schema validator ignore the differences between string types - -commit f389952a9dff9b35def4fe309822143cbb26f82f -Author: Gavin King -Date: Fri Dec 10 20:47:59 2021 +0100 - - add ability to run tests locally on mysql - -commit 675d176b57b849601e0b88ad7f7a110a111eb3de -Author: Gavin King -Date: Fri Dec 10 19:39:45 2021 +0100 - - stop trying to clear the public schema on postgres - - because you don't have permission to do that - -commit 611b6c01795edb3d84b6cd0254c6e89bcc7ebd35 -Author: Gavin King -Date: Fri Dec 10 19:40:43 2021 +0100 - - don't do things that can fail in static initializers - - because the failure gets swallowed by a nasty NCDFE - and is impossible to track down - -commit e13cf2e0d1a942365723b907b7aa39c03731d684 -Author: Gavin King -Date: Fri Dec 10 19:38:59 2021 +0100 - - fix the hibernate.properties so they work on H6 - -commit a35ad1905b2f63535e66a05272bf8ac54d67249d -Author: Steve Ebersole -Date: Fri Dec 10 15:14:39 2021 -0600 - - HHH-10832 - Remove org.hibernate.property.access.spi.EnhancedGetterMethodImpl - -commit a87157ddb869d9cb8cbe382018c268ade1a3eb7f -Author: Steve Ebersole -Date: Fri Dec 10 14:42:56 2021 -0600 - - fix Derby test failures - -commit 64af4885b986529340141d0d7b55740c6966471a -Author: Steve Ebersole -Date: Fri Dec 10 14:39:51 2021 -0600 - - HHH-14950 - Support mapping of embeddables with no setters w/ custom instantiator - HHH-14964 - EmbeddableInitializer are called multiple times - -commit 1e4f1fef4425ad1bebcab509e1244905f04cf7c7 -Author: Steve Ebersole -Date: Wed Dec 8 23:19:06 2021 -0600 - - HHH-14950 - Support mapping of embeddables with no setters w/ custom instantiator - HHH-14964 - EmbeddableInitializer are called multiple times - - HHH-14950 works for the most part, but cannot be used "for real" because of HHH-14964 - -commit a2a6425b8203a5ee6bbe79e8feb44b2fb0eccdac -Author: Steve Ebersole -Date: Fri Dec 10 13:36:26 2021 -0600 - - fix Oracle test failures - -commit c6ed830d825e8ba12ee2b11c729e1e2ea1e51bbf -Author: Fabio Massimo Ercoli -Date: Fri Dec 10 12:25:19 2021 +0100 - - Cache and expose column size - -commit dfc92330d86dbe76c0613df2d6af0269a8aabfe0 -Author: Sebastian Nohn -Date: Fri Dec 10 14:05:15 2021 +0100 - - HHH-14972 bump log4j to 2.15.0 fixing an RCE (CVE-2021-44228) - -commit e08a7665c8567b376c155228434e676d181ee911 -Author: Andrea Boriero -Date: Tue Dec 7 18:23:48 2021 +0100 - - Fix load of entity with Date[] field - -commit 15121842f16d343da75c39eec12310b3665b4fa3 -Author: Fabio Massimo Ercoli -Date: Tue Dec 7 15:52:56 2021 +0100 - - Test persist of array of dates - -commit 62e55f3c3c542668a8a107472bdabb80717b6af5 -Author: nathan.xu -Date: Wed Dec 8 12:37:09 2021 -0500 - - HHH-14970 make use of new Java language features from v8 to v11 - -commit 0bb647e62bb5c31cb8efd4869e5ae27449e5568c -Author: Gavin King -Date: Thu Dec 9 20:29:56 2021 +0100 - - revert to previous design with raw types - - there is a problem with this approach: the user now gets unchecked - warnings since we've recently filled in the type args of the params - of some methods of Query and NativeQuery - - but it's very hard to see how to fix the problem without breaking - compatibility - -commit a1e3f0cd6f418766198a53212c76f8b950964539 -Author: Gavin King -Date: Thu Dec 9 15:41:52 2021 +0100 - - fix some warnings and clean up some typing issues - - this is a general cleanup of the Session + Query hierarchies - -commit b91944c09a3fa80e404b022aa04a1d46416a0a76 -Author: Fabio Massimo Ercoli -Date: Thu Dec 9 19:27:49 2021 +0100 - - Support statistics when criteria(s) are executed - -commit f05f002c22e1286afb1a455830af81b384c1c3a2 -Author: Fabio Massimo Ercoli -Date: Thu Dec 9 18:35:10 2021 +0100 - - Test statistics of criteria(s) executed - -commit e6d4bc6cfa1db3ffd836dca632c368caf8a807c8 -Author: Steve Ebersole -Date: Thu Dec 9 13:03:17 2021 -0600 - - More documentation work - -commit 76c329f91912dabe109509a783931f41c5252894 -Author: Steve Ebersole -Date: Thu Dec 9 12:54:20 2021 -0600 - - More work on ``@AttributeBinderType` - -commit b889375eb6dedcb55f3afab27871291a2960a44f -Author: Gavin King -Date: Thu Dec 9 15:44:22 2021 +0100 - - remove left-behind method createSQLQuery() from StatelessSession - -commit 61772103958cc8aacad80064edaf1bde92a59acf -Author: Gavin King -Date: Thu Dec 9 16:13:01 2021 +0100 - - remove Session.disconnect()/reconnect() - - this stuff is so old and so bad that it's not even worth deprecating - -commit 042bd478257b578123ad4391c148b7797aa635c5 -Author: Gavin King -Date: Thu Dec 9 16:00:14 2021 +0100 - - finally remove all remaining traces of Session.connection() - -commit 75fc936b95e6a97e2df5ed58afe8c653b3ba8b32 -Author: Gavin King -Date: Thu Dec 9 11:56:17 2021 +0100 - - improve the javadoc for AttributeBinder+AttributedBinderType - -commit b1ed2063391286969a77277fa3496c2babf85d48 -Author: Gavin King -Date: Thu Dec 9 12:44:19 2021 +0100 - - replace use of
with

in all the javadoc - -commit 44fea07abff9b2abc89a4ae592dcd99cf6021661 -Author: Steve Ebersole -Date: Thu Dec 9 07:45:44 2021 -0600 - - HHH-14497 - Drop legacy id-generator settings; - HHH-14718 - Drop deprecated generator implementations - -commit 703eaf22a07b6f492f97b62299d23247bca64086 -Author: Steve Ebersole -Date: Thu Dec 9 07:20:28 2021 -0600 - - HHH-14497 - Drop legacy id-generator settings; - HHH-14718 - Drop deprecated generator implementations - -commit 1e33836632085a158360d472cca5034d1906b3c2 -Author: Steve Ebersole -Date: Thu Dec 9 07:03:28 2021 -0600 - - to test pushing - -commit 7a6cef5838a47ac95601e5c50879ead2dd732c52 -Author: Steve Ebersole -Date: Thu Dec 9 00:51:40 2021 -0600 - - Miscellaneous - - - Finished DialectVersion - - User Guide tidying - - User Guide section on AttributeBinder - -commit fa4b76702c396aa7130e66abe9fa0028a68fd809 -Author: Steve Ebersole -Date: Wed Dec 8 21:17:05 2021 -0600 - - HHH-14950 - Support mapping of embeddables with no setters (assuming a custom instantiator or repo-strategy is used) - - Tests; - Remove `ComponentTuplizer` and friends; - Remove `ComponentMetadata` - -commit 09cc6d7b0013cb10006b1925e6d7ed7ffdff5138 -Author: Steve Ebersole -Date: Sat Dec 4 12:43:07 2021 -0600 - - HHH-14950 - Support mapping of embeddables with no setters (assuming a custom instantiator or repo-strategy is used) - - Tests - -commit 37bc00e567f7ba1ec602af28dcd9d3c06a8c0018 -Author: Steve Ebersole -Date: Wed Dec 8 17:31:02 2021 -0600 - - HHH-10558 - Add support for java.time.Year; - HHH-13393 - Add support for ZoneId - - ZoneOffsetJavaTypeDescriptor was already added - -commit 61cba870966f6884d19c08b8c2c6123868455fc7 -Author: Gavin King -Date: Fri Nov 26 13:04:37 2021 +0100 - - fix the signature of Session.merge() - - previously Session.merge() erased the generic type parameter - inherited from the supertype, obligating the client code to - perform a typecast - -commit 942dd7283fdf726391663b25646ad0629a5e9d3a -Author: Steve Ebersole -Date: Wed Dec 8 15:54:50 2021 -0600 - - DialectVersion - - - rename `#isSince` to `#isSameOrAfter` - -commit 10d759e139d21f0298307c3bf92527b4d8d00d15 -Author: Steve Ebersole -Date: Tue Dec 7 08:28:33 2021 -0600 - - Dialect version - -commit d354d49ab13192e293aff89b39969a0dfcfd1a1e -Author: Steve Ebersole -Date: Fri Dec 3 13:27:18 2021 -0600 - - added `DatabaseVersion#getCanonicalVersion` - -commit 43206b02fc7574817f6a8138fffa755420af03c5 -Author: Steve Ebersole -Date: Fri Dec 3 13:16:51 2021 -0600 - - initial work on DatabaseVersion#isAfter - -commit ad48a01e2c8b37279913566255761be8f1c10437 -Author: Steve Ebersole -Date: Wed Dec 8 14:54:13 2021 -0600 - - Fix PropertyBinder to use HCANNHelper to resolve meta-annotations - -commit 848c9f09144e3c04351a215d107f3dd0fdde124d -Author: Steve Ebersole -Date: Wed Dec 8 14:33:30 2021 -0600 - - HHH-14497 - Drop legacy id-generator settings; - HHH-14718 - Drop deprecated generator implementations; - HHH-14959 - Drop IdentifierGeneratorFactory as a Service; - HHH-14960 - Add @GeneratorType for better custom generator config; - HHH-14496 - Deprecate (or drop) IdGeneratorStrategyInterpreter; - HHH-14961 - Deprecate (or drop) IdentifierGeneratorStrategyProvider; - HHH-14962 - Delay actual creation of IdentifierGenerator instances as late as possible - - Add `GenerationTypeStrategy` and `GenerationTypeStrategyRegistration`; - deprecate org.hibernate.jpa.spi.IdentifierGeneratorStrategyProvider - -commit 3c97ac2077bc072322dbb961e667f9f208cde553 -Author: Steve Ebersole -Date: Wed Dec 8 10:29:43 2021 -0600 - - HHH-14497 - Drop legacy id-generator settings; - HHH-14718 - Drop deprecated generator implementations; - HHH-14959 - Drop IdentifierGeneratorFactory as a Service; - HHH-14960 - Add @GeneratorType for better custom generator config - - Fixed CustomGeneratorTests failure on databases which do not support sequences - -commit 1e8f6f9bbd471117dab379c17f8e24282372ec65 -Author: Steve Ebersole -Date: Wed Dec 8 10:17:51 2021 -0600 - - HHH-14497 - Drop legacy id-generator settings; - HHH-14718 - Drop deprecated generator implementations; - HHH-14959 - Drop IdentifierGeneratorFactory as a Service; - HHH-14960 - Add @GeneratorType for better custom generator config - - org.hibernate.id.factory.spi.StandardGenerator - -commit c5ad9e129e58285078c4aa4d823c89e23843f30c -Author: Steve Ebersole -Date: Wed Dec 8 00:22:52 2021 -0600 - - HHH-14497 - Drop legacy id-generator settings; - HHH-14718 - Drop deprecated generator implementations; - HHH-14959 - Drop IdentifierGeneratorFactory as a Service; - HHH-14960 - Add @GeneratorType for better custom generator config - -commit ce4f22f4003d53e6a8dfdfa2b95b1a1f6b204679 -Author: Steve Ebersole -Date: Tue Dec 7 19:21:05 2021 -0600 - - HHH-14497 - Drop legacy id-generator settings; - HHH-14718 - Drop deprecated generator implementations; - HHH-14959 - Drop IdentifierGeneratorFactory as a Service; - HHH-14960 - Add @GeneratorType for better custom generator config - -commit c39426150863aee3af289197400881669319a0eb -Author: Steve Ebersole -Date: Tue Dec 7 16:51:33 2021 -0600 - - HHH-14497 - Drop legacy id-generator settings; - HHH-14718 - Drop deprecated generator implementations; - HHH-14959 - Drop IdentifierGeneratorFactory as a Service - -commit 365aa58254177b2df092658a7b6c36f3a6cebbcd -Author: Gavin King -Date: Tue Dec 7 23:44:00 2021 +0100 - - add two new annotations to the list in Annotations.adoc - -commit ce3644e81dd911f0f608dc931c16dd8d81879605 -Author: Gavin King -Date: Tue Dec 7 23:27:51 2021 +0100 - - add a wildcard to generic type - - and slightly improve javadoc - -commit 13983e1449e65c11c4cc651c3f95eb5dfd34b09b -Author: Gavin King -Date: Tue Dec 7 22:50:46 2021 +0100 - - detect the MultiTenantConnectionProvider when registered as a service - - instead of looking at the property - -commit 6d43d62a5a0c8863b62ab5709c2171251f81702d -Author: Gavin King -Date: Tue Dec 7 21:31:14 2021 +0100 - - fix test fallout from rebase - - update test to jakarta package name - and refix moved tests - -commit 8f7e0c4c2fdcd36b1a0e9e3f0131442f0891dae6 -Author: Gavin King -Date: Mon Sep 13 13:39:04 2021 +0200 - - HHH-6054 introduce notion of a "root" tenant - -commit 47d0b1265fdebbaccc1f0eb5d863b48a8b9f2b2b -Author: Gavin King -Date: Mon Sep 13 09:22:48 2021 +0200 - - improve the test for tenant ids - -commit 341eb413f06eca88e91bd17703c09395ec2ade8e -Author: Gavin King -Date: Sat Sep 11 18:03:15 2021 +0200 - - clean up PropertyBinder a bit - -commit 2a2bf17f8f75a7f315893b51263f19378846ca21 -Author: Gavin King -Date: Sat Sep 11 17:18:06 2021 +0200 - - redefine AttributeAccessor in terms of the new AttributeBinder API - -commit 5837a60e71e1590e971f640d16c134e53833f034 -Author: Gavin King -Date: Sat Sep 11 16:00:24 2021 +0200 - - HHH-6054 introduce AttributeBinder and @AttributeBinderType - - and introduce TenantIdBinder on top of this stuff - also make @TenantId imply non-null, immutable - -commit ea0dd35362e1b35c07d286b6a88a4f119354c80f -Author: Gavin King -Date: Sat Sep 11 14:41:37 2021 +0200 - - HHH-6054 improve error checking - -commit 8af548b52d3cfbe438799f11665f035694f0e4dd -Author: Gavin King -Date: Sat Sep 11 12:12:32 2021 +0200 - - HHH-6054 allow ValueGenerator to inspect current value of property - - use this to throw exception from TenantIdGeneration - -commit 6f0676cf9676130247ea564b70f68aa76e7d828d -Author: Gavin King -Date: Sat Sep 11 11:41:30 2021 +0200 - - HHH-6054 add docs for @TenantId - -commit 505bea6ffdc427dc74f6d51aa48df7b7916cbd7f -Author: Gavin King -Date: Fri Sep 10 15:16:04 2021 +0200 - - HHH-6054 support for discriminator-based multitenancy - - added the @TenantId annotation - also allow @TenantId @Formula - -commit b2e69655779a00ff3f4205fbed7b0ca171419cf2 -Author: gavin -Date: Wed Mar 24 11:20:48 2021 +0100 - - remove MultiTenancyStrategy - - Use the existence of a MultiTenantConnectionProvider to infer that multitenancy is enabled. - -commit 915da5228d8ea26ff003dbf6e13b73d3a8150b59 -Author: Steve Ebersole -Date: Tue Dec 7 11:11:30 2021 -0600 - - HHH-14497 - Drop legacy id-generator settings; - HHH-14718 - Drop deprecated generator implementations - -commit 189bc54dbd777fe489079cbc4b33ae43986f9833 -Author: Andrea Boriero -Date: Thu Dec 2 14:11:08 2021 +0100 - - Fix EntityEntry loaded state for persistent arrays - -commit 6c4ec951823a7bcfe6ec93700740e3553a3b3c0c -Author: Christian Beikov -Date: Tue Nov 30 01:40:02 2021 +0100 - - * Cleanup temporary table handling in dialects - * Fix insert handling with respect to version, discriminator and generated identifier insertion - * Introduce SqmMultiTableInsertStrategy to handle multi-table inserts - * Introduce the notion of an "entity table" similar to the "id table" to handle multi-table insertions - * Implement table based and cte based multi-table insertion to support all dialects - * Implement identifier generator optimizer support for multi-table insert - * Fix validation of insert target paths against select item types - * Fix some DML validations - * Implement over-clause support in SQL AST - * Fix multi-valued filter parameter support - -commit c959c7656c477a350a48266f2ff718ea77b1dcba -Author: Andrea Boriero -Date: Tue Dec 7 10:36:50 2021 +0100 - - Fix IdentifiableType#getId(Class type) failing for primitive types - -commit 37d3b66ce411656c305910cff9d9867d8716c965 -Author: Yoann Rodière -Date: Wed Nov 10 09:57:31 2021 +0100 - - HHH-14922 Give precedence to default catalog/schema over implicit catalog/schema - -commit 30e3aa4e7f7c28c4a466e26ff396c3cf7582a866 -Author: Yoann Rodière -Date: Wed Nov 10 09:55:56 2021 +0100 - - HHH-14922 Delay applying the implicit catalog/schema until schema management tool or session factory creation - - This is necessary if we want the default catalog/schema to take - precedence, since the default catalog/schema is applied late, - on schema management tool or session factory creation. - -commit 8f1d1c43ce0285c327243687e2f5ceea1511da28 -Author: Yoann Rodière -Date: Tue Nov 9 18:02:28 2021 +0100 - - HHH-14922 Test behavior when setting both implicit catalog/schema and default catalog/schema - -commit aafacbec478b12e8ae0a0a2b088ebc396b2bf107 -Author: Yoann Rodière -Date: Fri Nov 5 18:25:23 2021 +0100 - - HHH-14921 Test handling of default catalog and schema when not configured during metadata creation - -commit 944c90061a74167aebcb1e367772c4bb8ca691fc -Author: Yoann Rodière -Date: Fri Nov 5 13:35:47 2021 +0100 - - HHH-14921 Test handling of default catalog and schema - -commit 4d5306a82d42e79a9b5eebdd38910dd3bf1450ab -Author: Yoann Rodière -Date: Wed Nov 10 13:54:00 2021 +0100 - - HHH-14921 Delay determination of the default catalog/schema until schema management tool or session factory creation - -commit 495bd51caa68ee90bf21d14b86edf29e1ecebc92 -Author: Yoann Rodière -Date: Mon Dec 6 16:35:25 2021 +0100 - - HHH-14921 Always use SqlStringGenerationContext for generation of SQL strings involving table/sequence names - -commit b6f833441a4c578f0f83249f8a4e518f63227f16 -Author: Yoann Rodière -Date: Thu Nov 4 17:55:55 2021 +0100 - - HHH-14921 Delay generation of SQL strings by identifier generators until schema export or session factory creation - -commit 0c644fa16d80236caa1cc3ef89ecdeb99c7e41bf -Author: Yoann Rodière -Date: Thu Nov 4 14:31:04 2021 +0100 - - HHH-14921 Remove unused method PersistentIdentifierGenerator#generatorKey - -commit 16524e2f6747ff0c447e2f7a91ceb7e1d8d780a9 -Author: Yoann Rodière -Date: Thu Nov 4 14:01:12 2021 +0100 - - HHH-14921 Remove a few unused SQL generation methods in identifier generators - - They are getting in the way of changes related to the default schema - -commit cc13379c77073d70e89fc90150b2f0bf98c080af -Author: Yoann Rodière -Date: Thu Nov 4 13:23:37 2021 +0100 - - HHH-14921 Clarify that org.hibernate.mapping.AuxiliaryDatabaseObject has been replaced with org.hibernate.boot.model.relational.AuxiliaryDatabaseObject - -commit 012bcd1cfb7e4b4f5dd4d45ff5a419ad9274daa5 -Author: Yoann Rodière -Date: Thu Nov 4 10:38:47 2021 +0100 - - HHH-14921 Clarify the ability of IdentifierGenerator to be configured and to register exportables - -commit 05d536d3457f6c1686592a5b73048da9f7e5c5bf -Author: Christian Beikov -Date: Mon Dec 6 20:29:59 2021 +0100 - - Polishing: fix wrong variable name - -commit e1a976bce0370f959454e1485266ee9525db31de -Author: Christian Beikov -Date: Mon Dec 6 19:19:33 2021 +0100 - - HHH-14211 Switch to using oid for CLOB in PostgreSQL to avoid losing data after vacuumlo - -commit 0f46ee24663bd72ef4d7bbecdef954d9d57eae52 -Author: Steve Ebersole -Date: Mon Dec 6 13:26:48 2021 -0600 - - Tests for checking multiple execution of EmbeddableInitializers - -commit 44cb271030b437106b6e63f1acb7578463c68d3a -Author: Christian Beikov -Date: Thu Nov 25 09:49:05 2021 +0100 - - Disable charset client handshake for MySQL and MariaDB - -commit 099dd55b94b2fb3c08681921b09e6f8bf3a3ea80 -Author: Steve Ebersole -Date: Mon Dec 6 12:29:18 2021 -0600 - - Tests for checking multiple execution of EmbeddableInitializers - -commit 7d30b57f15617f679a20aa1389c9385433e45b2c -Author: Christian Beikov -Date: Mon Dec 6 18:56:13 2021 +0100 - - Get rid of wip/6.0 mention - -commit 07155b7993118f2050f942867efaa7d6a9bc3627 -Merge: acc870ea14 fa8b78d345 -Author: Andrea Boriero -Date: Mon Dec 6 17:56:17 2021 +0100 - - Merge remote-tracking branch 'upstream/main' into wip/6.0 - -commit acc870ea14a20f4d47c8ac0bf0bb9663a5883a9c -Merge: 74a395d744 6ecc19b64f -Author: Andrea Boriero -Date: Mon Dec 6 17:46:12 2021 +0100 - - Merge branch 'wip/6.0' of https://github.com/hibernate/hibernate-orm into wip/6.0 - -commit 74a395d744fcce025136fd33b2a4146210cf2ed8 -Merge: 7dc70e9350 2d871d64f2 -Author: Andrea Boriero -Date: Mon Dec 6 17:39:07 2021 +0100 - - Merge branch 'main' into wip/6.0 - -commit fa8b78d345e01d980a6046f226664f28799c73e0 -Author: Neon Ngo -Date: Mon Dec 6 09:51:37 2021 -0500 - - HHH-14956 Fix link to MetadataBuilderContributor javadocs - - - Under Appendix > Configurations > Bootstrap properties - - hibernate.metadata_builder_contributor - -commit b8046d1a809ae1ac7fe2c2c305c67f61ea21c039 -Author: Sanne Grinovero -Date: Wed Nov 24 12:47:34 2021 +0000 - - HHH-14938 Upgrade to MySQL Connector/J 8.0.27 - -commit 6ecc19b64f42d9a34120b7cfe896feefc4521b65 -Author: Sanne Grinovero -Date: Thu Dec 2 10:51:06 2021 +0000 - - Build: No longer needing gradle-karaf-plugin - -commit dc533b65cd049fdc9586304619ee488a8df84802 -Author: Sanne Grinovero -Date: Thu Dec 2 10:50:31 2021 +0000 - - Build: Upgrade Forbidden APIs to 3.2 - -commit bab32c310078e69e30c9267527d882fd263dd84c -Author: Christian Beikov -Date: Mon Dec 6 17:12:59 2021 +0100 - - Small cleanup and add migration guide sections - -commit 9028adc30e9ca79e46074890b4d8d7c3b0edf926 -Author: Steve Ebersole -Date: Mon Dec 6 10:12:25 2021 -0600 - - Clean up test logging (hibernate-core) - -commit 2d871d64f272d99a1da806a7328fef4f2a09f91f -Author: Christian Beikov -Date: Mon Dec 6 11:40:47 2021 +0100 - - HHH-14897 Allow ordering with nulls first/last in JPA Criteria - -commit 7dc70e9350b601aa19504ed8cf3e25fb74196bf1 -Author: Andrea Boriero -Date: Mon Dec 6 14:18:42 2021 +0100 - - Fix ToOneAttributeMapping bidirectionalAttributeName value determination - -commit 71204a9e97cef9c45b079bf033296b6482bf9b83 -Author: Fabio Massimo Ercoli -Date: Sat Dec 4 18:27:03 2021 +0100 - - Test load contained in double containing - -commit 087d486d6b9df99d1497c5a753af67d4c8c478b0 -Author: Steve Ebersole -Date: Sat Dec 4 13:48:20 2021 -0600 - - Tests for debugging potential multiple calls to EmbeddableInstantiators - -commit 9287b97cd3b66ccf0d25e53398ef07239b79f465 -Author: Steve Ebersole -Date: Fri Dec 3 15:31:49 2021 -0600 - - HHH-14949 - Support @Access on @ElementCollection (for embeddable elements) - - Fix - -commit 86799d6c28d56bdfdf6a9c629ea281302ff817d3 -Author: Steve Ebersole -Date: Fri Dec 3 15:22:15 2021 -0600 - - HHH-14949 - Support @Access on @ElementCollection (for embeddable elements) - - Test - -commit 2d064974fdca30fbe5b1172ffa9d677a833e0206 (origin/wip/6.0) -Merge: c190d37a57 69cd716e37 -Author: Andrea Boriero -Date: Fri Dec 3 09:14:46 2021 +0100 - - Merge remote-tracking branch 'upstream/main' into wip/6.0_merge_main - -commit c190d37a574738e15aa25030382f7b2455a45344 -Author: Steve Ebersole -Date: Thu Dec 2 21:36:52 2021 -0600 - - initial work on DialectVersionDetails.isAfterDatabaseVersion - -commit 1c96f30edb9c17750f3a5c17223156209ccf6e6b (tag: 6.0.0.Beta2) -Author: Steve Ebersole -Date: Thu Dec 2 18:12:34 2021 -0600 - - Post-steps for release : `6.0.0.Beta2` - -commit 6dd8936ba5f1fbecfb007b7690ce272bd6b53604 -Author: Steve Ebersole -Date: Thu Dec 2 16:51:49 2021 -0600 - - Pre-steps for release : `6.0.0.Beta2` - -commit 9367561fe47403f67a3c6da02f9aa0f3c07306f2 -Author: Steve Ebersole -Date: Thu Dec 2 16:46:09 2021 -0600 - - 6.0 Beta2 - -commit 629ae9ac698f58fa5ab1c0335fd90cde35cec1b5 -Author: Steve Ebersole -Date: Thu Dec 2 16:27:03 2021 -0600 - - 6.0 Beta2 - -commit e8f0b99e0747288d61c1e2dba74662d6d572af88 -Author: Steve Ebersole -Date: Thu Dec 2 16:14:40 2021 -0600 - - Pre-steps for release : `6.0.0.Beta2` - -commit 6d2040694ee0b5755683c05034e14f12792fc6f2 -Author: Steve Ebersole -Date: Thu Dec 2 16:14:31 2021 -0600 - - 6.0 Beta2 - -commit d5e7fb37a9791b86a2449418548c79cc45ceead9 -Author: Steve Ebersole -Date: Thu Dec 2 16:10:22 2021 -0600 - - 6.0 Beta2 - -commit 8203da2de14bb006978a5e4dee0612a6dc238341 -Author: Steve Ebersole -Date: Thu Dec 2 15:42:41 2021 -0600 - - Fix EnhancedProxy with Embeddable and Lazy BasicAttribute - - - added log message when this condition occurs - - tried adding a `LoggerInspectionRule` based assertion to the test, but found that that rule is unfortunately very dependent on the message actually being logged - -commit 9f155a95ab00d68a2d819fc75912be85f96ca0ef -Author: Fabio Massimo Ercoli -Date: Wed Nov 17 11:20:39 2021 +0100 - - Fix EnhancedProxy with Embeddable and Lazy BasicAttribute - -commit 69cd716e379c724ea39b173bee6c437651c8548c -Author: Jan Schatteman -Date: Thu Dec 2 22:06:01 2021 +0100 - - Revert deprecations on main (#4412) - - * Revert "HHH-14857 - Deprecations in preparation for 6" - - This reverts commit 91e29358be0a73d77ac00de45ddf56dd989fefd2. - - * Revert "HHH-14857 - Deprecations in preparation for 6" - - This reverts commit e4b56b927169b318231770af1b0854b02a6b286c. - -commit ae25b651cad18840fa082ac10f678768c43ae4d2 -Author: Steve Ebersole -Date: Thu Dec 2 14:04:12 2021 -0600 - - HHH-14885 - New composite user-type - HHH-14951 - Add @EmbeddableRepresentationStrategy - - Prep work for `@EmbeddableRepresentationStrategy` - mostly move things from spi package to api, generally all marked `@Incubating` - -commit e06a3dcdbc9fe412a2090e59f2cc92a647cb72ec -Author: Steve Ebersole -Date: Thu Dec 2 12:49:16 2021 -0600 - - HHH-14885 - New composite user-type - HHH-14950 - Support mapping of embeddables with no setters (assuming a custom instantiator or repo-strategy is used) - - Tests illustrating that HHH-14950 does indeed happen - -commit 4b69854b9cdef715ea3c01c47dd9c5a9f4f47ee0 -Author: Steve Ebersole -Date: Thu Dec 2 12:42:14 2021 -0600 - - HHH-14885 - New composite user-type - - Initial work on interface-based embeddables with custom instantiator - -commit 8339dffb88b8979d96acb620c4bc0109c08ff521 -Author: Steve Ebersole -Date: Thu Dec 2 06:51:59 2021 -0600 - - HHH-14885 - New composite user-type - - Initial work on interface-based embeddables - -commit 4cdc1c24fa4374ad47439578fe47f24f69cae8f2 -Author: Christian Beikov -Date: Thu Dec 2 11:34:12 2021 +0100 - - Cleanup some model part APIs - -commit 2977860fc9652e9efd38660265992f517116c71d -Author: Christian Beikov -Date: Thu Dec 2 11:23:07 2021 +0100 - - Switch to Java 11 in the Jenkinsfiles - -commit 47416b9e24244099579da6b59efa4c27956c08df -Author: Christian Beikov -Date: Thu Dec 2 12:29:19 2021 +0100 - - Fixup review comments - -commit 9392b94ee7b9885777556396644db9993dad0bd4 -Author: Andrea Boriero -Date: Wed Dec 1 16:38:48 2021 +0100 - - Fix MatchingIdSelectionHelper#selectMatchingIds - -commit b43639216712e1940073d797ce30d2d01def4cf5 -Author: Andrea Boriero -Date: Wed Dec 1 14:51:47 2021 +0100 - - Re-enable additional tests - -commit 7fa5d45175efa4a2fa7deadf5a3df764bb4ce97d -Author: Andrea Boriero -Date: Tue Nov 30 12:39:24 2021 +0100 - - Fix resolving id columns for NativeQuery with inplicit joins and aliases - -commit 9bd5360bf233599c80e69275c71d8350aaf60b97 -Author: Andrea Boriero -Date: Tue Nov 30 09:59:08 2021 +0100 - - Re-enabled additional tests - -commit 9ef99082e106da89e409366bd2a8564522289aee -Author: Andrea Boriero -Date: Mon Nov 29 19:03:42 2021 +0100 - - Re-enabled additional tests - -commit 0fd83cf649f78f67a282a90177e2f92d6415e0ec -Author: Andrea Boriero -Date: Mon Nov 29 18:37:03 2021 +0100 - - Fix resolving id columns for NativeQuery with inplicit joins and aliases - -commit 91cc3d8d51ec6e8b2a354357d96a9c8b29f011f6 -Author: Andrea Boriero -Date: Mon Nov 29 16:40:20 2021 +0100 - - Re-enabled additional tests - -commit 16460cf3ab5400555f7e62e47c2efa2735eae3ef -Author: Andrea Boriero -Date: Mon Nov 29 15:49:13 2021 +0100 - - Re-enable additional tests - -commit 430071027cb75f906a7fd26d2cdeea39d74909e8 -Author: Fabio Massimo Ercoli -Date: Thu Nov 25 15:23:36 2021 +0100 - - Avoid to recreate the DomainParameterXref twice - -commit 427204910c6b53b13f47b161ca2c4e9fe4f46eda -Author: Fabio Massimo Ercoli -Date: Thu Nov 25 15:11:36 2021 +0100 - - Cache only immutable part of HqlInterpretation - - So that it can be reused safely from different threads - -commit 8c369f1998c95df6c9f7570dc1e2141d081c3e26 -Author: Fabio Massimo Ercoli -Date: Tue Nov 23 19:59:15 2021 +0100 - - Test concurrent queries with multiple params - -commit 8d9ce9cd0eff0e1b993f3a9eb367fd9d3ee1c1be -Author: Andrea Boriero -Date: Thu Dec 2 09:17:30 2021 +0100 - - Fix test failures for MySql, Derby and Sybase - -commit 5e0b98dd6120b14eb12d8e15029638961706fd8e -Author: Steve Ebersole -Date: Wed Dec 1 22:11:56 2021 -0600 - - HHH-14928 - Document CDI integration - -commit 9137b9e79a41da56f967f9030e319da2151115d1 -Author: Steve Ebersole -Date: Wed Dec 1 20:47:14 2021 -0600 - - HHH-14885 - New composite user-type - - `@EmbeddableInstantiatorRegistration` - -commit 61d178ef1bb5d30d81051afc38b94a66d49357b0 -Author: Steve Ebersole -Date: Wed Dec 1 18:16:29 2021 -0600 - - HHH-14885 - New composite user-type - - `@EmbeddableInstantiatorRegistration` - -commit 924c2b29c3a18216778343356d39c7b99faf148a -Author: Steve Ebersole -Date: Wed Dec 1 17:35:43 2021 -0600 - - HHH-14885 - New composite user-type - - Working support for `@EmbeddableInstantiator` on either the embedded site or on the embeddable class. - -commit 8ab27a0ff0e5d2ace1aed523aa90614b4e0f3ad0 -Author: Steve Ebersole -Date: Wed Dec 1 13:48:51 2021 -0600 - - Introduce `VirtualIdEmbeddable` and `IdClassEmbeddable` + instantiators - - - shared `#finishInitialization` handling for `VirtualIdEmbeddable` and `IdClassEmbeddable` - note: was not yet able to get that working with `EmbeddableMappingType` - - clean up ComponentType, esp wrt its use of ComponentTuplizer - - Still need to - - integrate embedded forms. `VirtualIdEmbeddable` does not really need it as it can use the id-mapping itself as the embedded form. But `IdClassEmbedded` should really be integrated - - integrate `VirtualKeyEmbeddable` and `VirtualKeyEmbedded` for use as inverse composite fks - - ability to use the containing composite owner as the parent of a composite (legacy behavior is to always use the "first" entity - -commit 55bfc59db1321d999daf06aa8c95b12a101ba46a -Author: Steve Ebersole -Date: Wed Dec 1 11:50:10 2021 -0600 - - fix gradle deprecations - -commit a6764fbbf4c5885e67eb0cd3138bd7d417669e0f -Author: Sanne Grinovero -Date: Wed Dec 1 15:10:06 2021 +0000 - - HHH-14946 Github actions: add clarifications in cleanup task - -commit 905e51231678ab25096950692a8fe3d4e65ac9eb -Author: Sanne Grinovero -Date: Wed Dec 1 14:54:59 2021 +0000 - - HHH-14946 Github actions: switch to use Java 11 Temurin - -commit 78c3ae11e003729c2402376bb8df4b2a34d5d3ed -Author: Sanne Grinovero -Date: Wed Dec 1 11:31:29 2021 +0000 - - HHH-14946 Upgrade Github Actions to use Java 11 exclusively - -commit 334aeb13492be053cc8ac8743f43cf266fea9bb6 -Author: Sanne Grinovero -Date: Fri Nov 26 16:24:34 2021 +0000 - - HHH-14946 Upgrading base requirements to Java 11 - -commit dc744844e4ec61c69b963fea282b34bffe08f950 -Author: Steve Ebersole -Date: Wed Dec 1 11:32:34 2021 -0600 - - Introduce `VirtualIdEmbeddable` and `IdClassEmbeddable` + instantiators - - - Clean up Component Type, removing as many calls to its tuplizer as possible atm - - Clean up ManagedMappingType, EntityPersister, etc - mainly work around getting and setting value(s) - - Still need to - - integrate embedded forms. `VirtualIdEmbeddable` does not really need it as it can use the id-mapping itself as the embedded form. But `IdClassEmbedded` should really be integrated - - integrate `VirtualKeyEmbeddable` and `VirtualKeyEmbedded` for use as inverse composite fks - - share `#finishInit` handling for `EmbeddableMappingType`, `VirtualIdEmbeddable` and `IdClassEmbeddable` - - ability to use the containing composite owner as the parent of a composite (legacy behavior is to always use the "first" entity - - clean up ComponentType, esp wrt its use of ComponentTuplizer - -commit b23c2f48c16036e9181612412bc002c31a8a8724 -Author: Steve Ebersole -Date: Wed Dec 1 09:35:16 2021 -0600 - - Introduce `VirtualIdEmbeddable` and `IdClassEmbeddable` + instantiators - - - Clean up Component Type, removing as many calls to its tuplizer as possible atm - - Clean up ManagedMappingType, EntityPersister, etc - mainly work around getting and setting value(s) - - Still need to - - integrate embedded forms. `VirtualIdEmbeddable` does not really need it as it can use the id-mapping itself as the embedded form. But `IdClassEmbedded` should really be integrated - - integrate `VirtualKeyEmbeddable` and `VirtualKeyEmbedded` for use as inverse composite fks - - share `#finishInit` handling for `EmbeddableMappingType`, `VirtualIdEmbeddable` and `IdClassEmbeddable` - - ability to use the containing composite owner as the parent of a composite (legacy behavior is to always use the "first" entity - - clean up ComponentType, esp wrt its use of ComponentTuplizer - -commit eb5afb0427a72a827f7a6ef8c4b88ee07efc2a47 -Author: Steve Ebersole -Date: Wed Dec 1 07:06:22 2021 -0600 - - Introduce `VirtualIdEmbeddable` and `IdClassEmbeddable` + instantiators - - Move all component instantiations to use the new mapping model EmbeddableInstantiator - - Still need to - - integrate embedded forms. `VirtualIdEmbeddable` does not really need it as it can use the id-mapping itself as the embedded form. But `IdClassEmbedded` should really be integrated - - integrate `VirtualKeyEmbeddable` and `VirtualKeyEmbedded` for use as inverse composite fks - - share `#finishInit` handling for `EmbeddableMappingType`, `VirtualIdEmbeddable` and `IdClassEmbeddable` - - ability to use the containing composite owner as the parent of a composite (legacy behavior is to always use the "first" entity - - clean up ComponentType, esp wrt its use of ComponentTuplizer - -commit 5b44aa5d44588985baaeb5753914f2a9465d33c8 -Author: Steve Ebersole -Date: Tue Nov 30 19:38:02 2021 -0600 - - Introduce `VirtualIdEmbeddable` and `IdClassEmbeddable` + instantiators - - EmbeddableInitializer fully uses EmbeddableInstantiator and value injection - - Still need to - - integrate EmbeddableInstantiator work (ComponentType/ComponentTuplizer) - - integrate embedded forms. `VirtualIdEmbeddable` does not really need it as it can use the id-mapping itself as the embedded form. But `IdClassEmbedded` should really be integrated - - integrate `VirtualKeyEmbeddable` and `VirtualKeyEmbedded` for use as inverse composite fks - - share `#finishInit` handling for `EmbeddableMappingType`, `VirtualIdEmbeddable` and `IdClassEmbeddable` - - ability to use the containing composite owner as the parent of a composite (legacy behavior is to always use the "first" entity - -commit a9fce4b69dd2698268817c23a0dd2898ef410bdc -Author: Steve Ebersole -Date: Tue Nov 30 19:34:37 2021 -0600 - - Introduce `VirtualIdEmbeddable` and `IdClassEmbeddable` + instantiators - - EmbeddableInitializer fully uses EmbeddableInstantiator and value injection - - Still need to - - integrate EmbeddableInstantiator work (ComponentType/ComponentTuplizer) - - integrate embedded forms. `VirtualIdEmbeddable` does not really need it as it can use the id-mapping itself as the embedded form. But `IdClassEmbedded` should really be integrated - - integrate `VirtualKeyEmbeddable` and `VirtualKeyEmbedded` for use as inverse composite fks - - share `#finishInit` handling for `EmbeddableMappingType`, `VirtualIdEmbeddable` and `IdClassEmbeddable` - - ability to use the containing composite owner as the parent of a composite (legacy behavior is to always use the "first" entity - -commit 82d884d65cab12d6d17ce23a68ed2e0a4366e722 -Author: Steve Ebersole -Date: Tue Nov 30 17:05:10 2021 -0600 - - Introduce `VirtualIdEmbeddable` and `IdClassEmbeddable` + instantiators - - Prep work for EmbeddableInstantiator - initializer - - Still need to - - integrate EmbeddableInstantiator work - - integrate embedded forms. `VirtualIdEmbeddable` does not really need it as it can use the id-mapping itself as the embedded form. But `IdClassEmbedded` should really be integrated - - integrate `VirtualKeyEmbeddable` and `VirtualKeyEmbedded` for use as inverse composite fks - - share `#finishInit` handling for `EmbeddableMappingType`, `VirtualIdEmbeddable` and `IdClassEmbeddable` - - ability to use the containing composite owner as the parent of a composite (legacy behavior is to always use the "first" entity - -commit 42d1fcca1956844a0ae2c951de5d26e3f4c1a58c -Author: Steve Ebersole -Date: Tue Nov 30 16:07:58 2021 -0600 - - Introduce `VirtualIdEmbeddable` and `IdClassEmbeddable` + instantiators - - Prep work for EmbeddableInstantiator - initializer - - Still need to - - integrate EmbeddableInstantiator work - - integrate embedded forms. `VirtualIdEmbeddable` does not really need it as it can use the id-mapping itself as the embedded form. But `IdClassEmbedded` should really be integrated - - integrate `VirtualKeyEmbeddable` and `VirtualKeyEmbedded` for use as inverse composite fks - - share `#finishInit` handling for `EmbeddableMappingType`, `VirtualIdEmbeddable` and `IdClassEmbeddable` - - ability to use the containing composite owner as the parent of a composite (legacy behavior is to always use the "first" entity - -commit 142299e7a8774f842c6ba868f3bc9a1eaa00ef70 -Author: Steve Ebersole -Date: Tue Nov 30 15:26:16 2021 -0600 - - Introduce `VirtualIdEmbeddable` and `IdClassEmbeddable` + instantiators - - Prep work for EmbeddableInstantiator - initializer - - Still need to - - integrate EmbeddableInstantiator work - - integrate embedded forms. `VirtualIdEmbeddable` does not really need it as it can use the id-mapping itself as the embedded form. But `IdClassEmbedded` should really be integrated - - integrate `VirtualKeyEmbeddable` and `VirtualKeyEmbedded` for use as inverse composite fks - - share `#finishInit` handling for `EmbeddableMappingType`, `VirtualIdEmbeddable` and `IdClassEmbeddable` - - ability to use the containing composite owner as the parent of a composite (legacy behavior is to always use the "first" entity - -commit 29ed0a0566babc0f2b2bd0f0f66b3a34dc110a1f -Author: Steve Ebersole -Date: Tue Nov 30 13:42:16 2021 -0600 - - Introduce `VirtualIdEmbeddable` and `IdClassEmbeddable` + instantiators - - Prep work for EmbeddableInstantiator - initializer - - Still need to - - integrate EmbeddableInstantiator work - - integrate embedded forms. `VirtualIdEmbeddable` does not really need it as it can use the id-mapping itself as the embedded form. But `IdClassEmbedded` should really be integrated - - integrate `VirtualKeyEmbeddable` and `VirtualKeyEmbedded` for use as inverse composite fks - - share `#finishInit` handling for `EmbeddableMappingType`, `VirtualIdEmbeddable` and `IdClassEmbeddable` - - ability to use the containing composite owner as the parent of a composite (legacy behavior is to always use the "first" entity - -commit 01c6b144cecf77af797adbc718651f4de90b521c -Author: Steve Ebersole -Date: Tue Nov 30 07:14:52 2021 -0600 - - Introduce `VirtualIdEmbeddable` and `IdClassEmbeddable` + instantiators - - Prep work for EmbeddableInstantiator - initializer - - Still need to - - integrate EmbeddableInstantiator work - - integrate embedded forms. `VirtualIdEmbeddable` does not really need it as it can use the id-mapping itself as the embedded form. But `IdClassEmbedded` should really be integrated - - integrate `VirtualKeyEmbeddable` and `VirtualKeyEmbedded` for use as inverse composite fks - - share `#finishInit` handling for `EmbeddableMappingType`, `VirtualIdEmbeddable` and `IdClassEmbeddable` - - ability to use the containing composite owner as the parent of a composite (legacy behavior is to always use the "first" entity - -commit 185bcd43aae5d7a86ef4ea3474cfba1075c6682e -Author: Steve Ebersole -Date: Tue Nov 30 06:58:13 2021 -0600 - - Introduce `VirtualIdEmbeddable` and `IdClassEmbeddable` + instantiators - - Prep work for EmbeddableInstantiator - initializer - - Still need to - - integrate EmbeddableInstantiator work - - integrate embedded forms. `VirtualIdEmbeddable` does not really need it as it can use the id-mapping itself as the embedded form. But `IdClassEmbedded` should really be integrated - - integrate `VirtualKeyEmbeddable` and `VirtualKeyEmbedded` for use as inverse composite fks - - share `#finishInit` handling for `EmbeddableMappingType`, `VirtualIdEmbeddable` and `IdClassEmbeddable` - - ability to use the containing composite owner as the parent of a composite (legacy behavior is to always use the "first" entity - -commit d506bb379c0d77d0f4e258a5183195afdd6ea961 -Author: Steve Ebersole -Date: Mon Nov 22 15:07:24 2021 -0600 - - Introduce `VirtualIdEmbeddable` and `IdClassEmbeddable` + instantiators - - More clean-up (Tuplizers!!) - - Mostly EntityTuplizer in this commit - - Still need to - - integrate EmbeddableInstantiator work - - integrate embedded forms. `VirtualIdEmbeddable` does not really need it as it can use the id-mapping itself as the embedded form. But `IdClassEmbedded` should really be integrated - - integrate `VirtualKeyEmbeddable` and `VirtualKeyEmbedded` for use as inverse composite fks - - share `#finishInit` handling for `EmbeddableMappingType`, `VirtualIdEmbeddable` and `IdClassEmbeddable` - -commit bb2b0a6c470e609083ae71432e07831058e99200 -Author: Steve Ebersole -Date: Mon Nov 22 13:00:36 2021 -0600 - - Introduce `VirtualIdEmbeddable` and `IdClassEmbeddable` - - Clean-up - - Still need to - - integrate EmbeddableInstantiator work - - integrate embedded forms. `VirtualIdEmbeddable` does not really need it as it can use the id-mapping itself as the embedded form. But `IdClassEmbedded` should really be integrated - - integrate `VirtualKeyEmbeddable` and `VirtualKeyEmbedded` for use as inverse composite fks - - share `#finishInit` handling for `EmbeddableMappingType`, `VirtualIdEmbeddable` and `IdClassEmbeddable` - -commit 0322d8fa848aa45d1fc7e7a3d645323388a57522 -Author: Steve Ebersole -Date: Sun Nov 21 09:21:59 2021 -0600 - - Introduce `VirtualIdEmbeddable` and `IdClassEmbeddable` - - EmbeddableInstantiator - - Still need to - - integrate EmbeddableInstantiator work - - integrate embedded forms. `VirtualIdEmbeddable` does not really need it as it can use the id-mapping itself as the embedded form. But `IdClassEmbedded` should really be integrated - - integrate `VirtualKeyEmbeddable` and `VirtualKeyEmbedded` for use as inverse composite fks - - share `#finishInit` handling for `EmbeddableMappingType`, `VirtualIdEmbeddable` and `IdClassEmbeddable` - -commit 546a635be9a5eadb03b85a8507309cd40ee28364 -Author: Steve Ebersole -Date: Sun Nov 21 08:20:37 2021 -0600 - - Introduce `VirtualIdEmbeddable` and `IdClassEmbeddable` - - Added new form of `SqlExpressionResolver#createColumnReferenceKey` - - Still need to - - integrate EmbeddableInstantiator work - - integrate embedded forms. `VirtualIdEmbeddable` does not really need it as it can use the id-mapping itself as the embedded form. But `IdClassEmbedded` should really be integrated - - integrate `VirtualKeyEmbeddable` and `VirtualKeyEmbedded` for use as inverse composite fks - - share `#finishInit` handling for `EmbeddableMappingType`, `VirtualIdEmbeddable` and `IdClassEmbeddable` - -commit 86e8b2751c898e859d45b2618837c9930baf807f -Author: Steve Ebersole -Date: Sun Nov 21 08:08:34 2021 -0600 - - Introduce `VirtualIdEmbeddable` and `IdClassEmbeddable` - - This 3rd commit cleans up some code - - Still need to - - integrate EmbeddableInstantiator work - - integrate embedded forms. `VirtualIdEmbeddable` does not really need it as it can use the id-mapping itself as the embedded form. But `IdClassEmbedded` should really be integrated - - integrate `VirtualKeyEmbeddable` and `VirtualKeyEmbedded` for use as inverse composite fks - - share `#finishInit` handling for `EmbeddableMappingType`, `VirtualIdEmbeddable` and `IdClassEmbeddable` - -commit dd4f380ea9d176fda1f05789218914254a86035b -Author: Steve Ebersole -Date: Fri Nov 19 16:47:45 2021 -0600 - - Introduce `VirtualIdEmbeddable` and `IdClassEmbeddable` - - This second commit renames `EmbeddableMappingType` - - Still need to - - integrate EmbeddableInstantiator work - - integrate embedded forms. `VirtualIdEmbeddable` does not really need it as it can use the id-mapping itself as the embedded form. But `IdClassEmbedded` should really be integrated - - integrate `VirtualKeyEmbeddable` and `VirtualKeyEmbedded` for use as inverse composite fks - - share `#finishInit` handling for `EmbeddableMappingType`, `VirtualIdEmbeddable` and `IdClassEmbeddable` - -commit 524b46b246987678ae4d7df9bbaa074c412466e3 -Author: Steve Ebersole -Date: Fri Nov 19 14:31:19 2021 -0600 - - Introduce `VirtualIdEmbeddable` and `IdClassEmbeddable` - - This initial commit is scaled back - it only introduces the embeddable forms and supporting changes. - - Still need to - - integrate EmbeddableInstantiator work - - integrate embedded forms. `VirtualIdEmbeddable` does not really need it as it can use the id-mapping itself as the embedded form. But `IdClassEmbedded` should really be integrated - - integrate `VirtualKeyEmbeddable` and `VirtualKeyEmbedded` for use as inverse composite fks - -commit 25d8fda12c9c80e5ff0f09e48f2cf01c2b2874b2 -Author: Sanne Grinovero -Date: Wed Nov 24 16:14:39 2021 +0000 - - Improve reliability of ProposedGeneratedTests - -commit 46857f456a92afab792283439356265f11872719 -Author: Andrea Boriero -Date: Wed Dec 1 10:04:14 2021 +0100 - - Fix SimpleNaturalIdLoader#resolveIdToNaturalId() - -commit df0479951c847f8a0c132fb45f556f6a7990725e -Author: Andrea Boriero -Date: Tue Nov 30 13:35:07 2021 +0100 - - Fix o.h.Interceptor#onSave call - -commit 55db51894fa9219d3625d71d8a3405c6f79773e1 -Author: Chris Dennis -Date: Tue Nov 16 11:15:58 2021 -0500 - - HHH-14837 : Re-enable hibernate-jcache module. - -commit b4cfe7e54a7e58544f1f321d67bda70c8cd1d376 -Author: Andrea Boriero -Date: Sun Nov 28 17:09:35 2021 +0100 - - Fix readOnly value and Query#scroll() - -commit 0fbfc30eaa0bfda1b7ccd6435553943c90a160ae -Author: Andrea Boriero -Date: Fri Nov 26 16:14:36 2021 +0100 - - Fix refresh of a Proxy instance - -commit 158968660857531ffad6495bc7cbc93a1afafa3f -Author: Andrea Boriero -Date: Mon Nov 29 12:38:59 2021 +0100 - - Fix envers test failure with Sybase - -commit 11f40dbf8bc15efff3dd10e262a02221663c8c44 -Author: Chris Cranford -Date: Sun Nov 28 16:55:17 2021 -0500 - - HHH-9228 HHH-9229 Shorten table names to try and fix CI failures - -commit dd8f1a31a71a07a224a516ea782256f622807068 -Author: Chris Cranford -Date: Sat Nov 27 05:49:47 2021 -0500 - - HHH-9062 Fix failing tests - -commit 6c1db681feb91435a316aee0ea5edfe53a3b3c92 -Author: Chris Cranford -Date: Sat Nov 27 05:22:35 2021 -0500 - - HHH-13395 Fix sourcing of service registry - -commit 35759031392bddfc8b5678a5126896d9877c84b5 -Author: Chris Cranford -Date: Sat Nov 27 04:55:59 2021 -0500 - - HHH-13395 Use the new Integrator signature - -commit dbecdc41ac481906f0bda139e1e1de875d9fc230 -Author: Chris Cranford -Date: Sat Nov 27 04:41:52 2021 -0500 - - HHH-9062 Allow validity audit strategy to store revision end timestamps on joined subclass audit tables. - -commit 9124fd84b468148c14ceeb3dcec92e4525640937 -Author: Chris Cranford -Date: Sat Nov 27 02:33:53 2021 -0500 - - Fix HBM joined-subclass key order by sorting - -commit f83fb5461495d0de0928895e6c4c5b5df90d7e92 -Author: Andrea Boriero -Date: Fri Nov 26 13:06:37 2021 +0100 - - Fix TypeDefinitionBinder registering TypeDefinition - -commit 1f541170c7c170319ec19f070cc876f85562dba9 -Author: Andrea Boriero -Date: Thu Nov 25 18:18:45 2021 +0100 - - Re-enable additional tests - -commit 0e1822e5dd18b18fadbd258baf477df8f091a36b -Author: Andrea Boriero -Date: Thu Nov 25 17:15:22 2021 +0100 - - Re-enabled additional tests - -commit e7992a35d4d9fd14ac75ae16a3b061a4e65c3ebd -Author: Andrea Boriero -Date: Thu Nov 25 16:26:37 2021 +0100 - - Re-enable additional tests - -commit 26c3a1f32bdec3cc3af2492c143f53418390da6e -Author: Chris Cranford -Date: Fri Nov 26 02:15:00 2021 -0500 - - HHH-12077 Support short-naming of audit strategies - -commit f379d51504388a302b0fa4241b9f5b8c21f05e76 -Author: Chris Cranford -Date: Fri Nov 26 01:37:33 2021 -0500 - - HHH-9228 HHH-9229 Fix audited/auditoverride for embeddables and mappedsuperclass - -commit 205f0ce9bfca6f1e700731dfc78774fec8df0d70 -Author: Chris Cranford -Date: Fri Nov 26 00:49:33 2021 -0500 - - HHH-6210 Added config option to allow revend timestamp fields to be long data types - -commit 1abf044f2e2d7a8038af0d8c75db14eb2997bd58 -Author: Chris Cranford -Date: Thu Nov 25 22:09:22 2021 -0500 - - HHH-10496 Allow RevisionTimestamp to be java.time.LocalDateTime - -commit 267a1cdb4696fb2e4319a0386a9e23210715cf14 -Author: Chris Cranford -Date: Thu Nov 25 18:59:40 2021 -0500 - - HHH-10912 Only run with default audit strategy - -commit 5ccaba123bea3458cf2fde726fc60f2d7967275d -Author: Chris Cranford -Date: Thu Nov 25 18:53:20 2021 -0500 - - HHH-10925 Allow ignoring tests based on strategy - -commit 85388ec48f396201fe8afe9e304bb0c4dd2e159c -Author: Chris Cranford -Date: Thu Nov 25 18:14:08 2021 -0500 - - HHH-11469 Remove deprecated ModificationStore - -commit e513453aa482e1249485efa793fa34e5d7886f90 -Author: Chris Cranford -Date: Wed Nov 24 02:04:22 2021 -0500 - - HHH-11483 Build Envers model using JAXB - -commit ce6850bdfabad5bb33d47dd6bc5209e3e1c7be14 -Author: Jan Schatteman -Date: Mon Nov 22 23:53:15 2021 +0100 - - Remove 'statementInspectorClass' from @Jpa and refactor its usage to use - a @SettingProvider - - Signed-off-by: Jan Schatteman - -commit cc43aaefb9385c108a34f65c42de6d9f453e89d7 -Author: Andrea Boriero -Date: Thu Nov 25 12:40:47 2021 +0100 - - Re-enable additional tests - -commit 492d391e732ff3dc70b3e08599f611f8d2389fd7 -Author: Andrea Boriero -Date: Thu Nov 25 09:48:44 2021 +0100 - - Re-enable additional tests - -commit 9766b05ebabaf702f4a4759cf823d970dcee1d79 -Author: Andrea Boriero -Date: Thu Nov 25 09:25:22 2021 +0100 - - Re-enable additional tests - -commit 36fa3fca8e3a3b3809963975184190860e3a295d -Author: Andrea Boriero -Date: Wed Nov 24 18:21:29 2021 +0100 - - Re-enabled stream tests - -commit acd78256eb69da356db40e68926118a17f8666ae -Author: Andrea Boriero -Date: Wed Nov 24 09:40:43 2021 +0100 - - Fix statistics for native query - -commit da05181c3ad02e97a160703f274355911d71900a -Author: Andrea Boriero -Date: Wed Nov 17 11:06:01 2021 +0100 - - Update migration-guide.adoc - -commit 92e8436014f25d0359c0d9108fc463038c9cab53 -Author: Andrea Boriero -Date: Tue Nov 16 14:26:12 2021 +0100 - - Re-enable additional tests - -commit 7f574f4a2a45ff1db38aa08441b6138743dae366 -Merge: cbcec73d4f bdc1e4103d -Author: Andrea Boriero -Date: Thu Nov 25 09:54:48 2021 +0100 - - Merge branch 'wip/6.0_merge' into wip/6.0 - -commit cbcec73d4fa4ca0845d0f8ca620dcdc02cd91b17 -Author: Christian Beikov -Date: Tue Nov 23 18:16:48 2021 +0100 - - * Handle quoted identifiers in HQL and the Ordering parser - * Switch from the "expression" to "expressionOrPredicate" rule in the HQL grammar where it makes sense as required by some HQL tests - * Cleanup parser rule ordering to allow more keywords in the identifier rule - * Implement literal support for Ordering parser - * Add special AvgFunction as needed by H2, HSQL, DB2, SQL Server and Sybase that casts arguments to double if necessary - * Fix wrong deduplication of order by fragments in case a plural attribute is fetched multiple times - * Implement support for de-referencing any-valued mappings in HQL - * Avoid unnecessary entity subtypes in polymorphic splitted queries if a base type also matches the requested type - * Implement pagination support for polymorphic splitted queries - * Cleanup path part resolving by removing lots of duplicate code - * Aligh HQL parsing expectations to the expected behavior of 5.x - * Add method to `JavaType` that allows determining if a type is can be widened to another which is used for arithmetic type resolving - * Implement validations for fetch owner checking - * Fix issues with the id table creation due to lacking column lengths in the column DDL type - * Fix issues and add some optimizations related to multi-table delete handling - * Add the notion of a special "implicit" alias to avoid generating a unique alias for unaliased or implicit HQL joins - * Properly implement multiple bag fetch validation - * Make sure filter predicates are applied for all plural attribute joins - * Fix some issues with undecidable parameter type inference - * Fix some issues with negated SQM predicates not being converted to the proper SQL AST predicates - * Fix issues with qualifying DML target referencing columns - * Fix `is null` semantics for tuples referring to embeddable types - * Capture necessary details from JdbcValuesMetadata in the cached data to avoid executing a query on cache hit when types should be inferred - * Get rid of special CollectionPropertyNames and writeup a migration guide section for the replacements - -commit bdc1e4103d279072f865a653ae1ec5d02623ebeb -Merge: 39dae088ec f604e8fa33 -Author: Andrea Boriero -Date: Wed Nov 24 16:48:43 2021 +0100 - - Merge remote-tracking branch 'upstream/main' into wip/6.0_merge - -commit 39dae088ec5bdeea88c6acd41359d2388455ba40 -Author: Andrea Boriero -Date: Wed Nov 24 16:25:23 2021 +0100 - - Update migration-guide - -commit d21db9e8076efe2bf61c9b51014b348528341e22 -Author: Andrea Boriero -Date: Thu Nov 18 14:55:14 2021 +0100 - - Fix loading OnetoOne self referencing entity - -commit f604e8fa33acc79bdb00d4ec61a9926c5c127460 -Author: Marius Klein -Date: Tue Nov 23 11:09:42 2021 +0100 - - HHH-14937 SybaseASE15 supports schemas and catalogs - -commit aded53a7607361ea616caede18fc087019d688b9 -Author: Karel Maesen -Date: Mon Nov 22 19:43:00 2021 +0100 - - HHH-14808 Fix PredicateSmokeTest - - Refactors SpatialTestBase to use a SessionFactoryAware - implementation that performs necessary initialisations - (e.g. H2). - -commit 35f374aac736de2e6fb7553f04b8944ff1589e42 -Author: Yoann Rodière -Date: Mon Nov 22 08:59:05 2021 +0100 - - HHH-14936 Avoid NPE in JdbcConnectionContext's static init - -commit eaea919cf576d17a427a20d285096e5de133b61a -Author: Christian Beikov -Date: Tue Nov 16 18:05:41 2021 +0100 - - Fix HBM based model binding wrt id-classes and move the last derived id tests - -commit b8429bca421fab8c1495cb4d926190f3483c1692 -Author: Christian Beikov -Date: Fri Nov 12 13:09:30 2021 +0100 - - Introduce a proper EmbeddableMappingType for id-class and handle id-class uses uniformly - -commit 971f58e335f75433369e8f15cf636ffd265df9f2 -Author: Andrea Boriero -Date: Thu Nov 11 10:04:30 2021 +0100 - - Expose virtual id types in JPA metamodel - -commit 57f7e59e14ab8f4e81b22800855949ab30af1f9e -Author: Andrea Boriero -Date: Wed Nov 10 17:36:21 2021 +0100 - - Fix SqlResultSetMappingDescriptor generating ResultMemento for Embeddable attributes - -commit a771d035c9e24ce9b2bb20dd42aa18bac167f2ae -Author: Andrea Boriero -Date: Wed Nov 10 14:41:56 2021 +0100 - - Fix null embeddable with circular reference - -commit b520752c8d0cff59adbfdecc2cbede422e786863 -Author: Andrea Boriero -Date: Wed Nov 10 09:04:31 2021 +0100 - - Fix issue with class used as IdClass and also embedded in another IdClass - -commit 07a314b663529ab17a8707ed177ddb425c704832 -Author: Andrea Boriero -Date: Fri Nov 5 16:08:51 2021 +0100 - - Fix EmbeddableMappingType trowing exception wehen the attributeMapping is an instance of EmbeddedAttributeMapping - -commit 55b1ec48f16305948f8a88f0fc0d959404f46d8c -Author: Andrea Boriero -Date: Thu Nov 4 09:37:42 2021 +0100 - - Fix MappingModelCreationHelper#interpretToOneKeyDescriptor() throwing NotYetImplementedFor6Exception for NonAggregateIdentifier - -commit d33200b3093fb867f9444e5ca3482e8d24007fb4 -Author: Andrea Boriero -Date: Thu Nov 11 11:03:37 2021 +0100 - - Fix using wrong vale mapping for paramter binging with EntityCollectionPart - -commit 411355852aa6d7842694954f217d7df86992f899 -Author: Andrea Boriero -Date: Wed Nov 3 22:53:25 2021 +0100 - - Fix PersistenceUnitUtilImpl#getIdentifier() throws NPE for NonAggregateIdentifier - -commit eae9a39b147db1f778f25d565dc6a48d93df77a3 -Author: Andrea Boriero -Date: Mon Nov 1 21:59:12 2021 +0100 - - Fix throw exception when an Entity has an EmbeddedId being also an IdClass of another Entity - -commit 9d08be53a647c0fcf09b4ecc2867e2a1d84a1142 -Author: Andrea Boriero -Date: Fri Oct 29 16:42:41 2021 +0200 - - Fix load NonAggregateIdentifier by id - -commit b971d76bf6020d528de786df9ce85defaa019762 -Merge: 69d2c65880 c3631970a5 -Author: Andrea Boriero -Date: Thu Nov 18 12:45:25 2021 +0100 - - Merge remote-tracking branch 'upstream/main' into wip/6.0 - -commit 69d2c65880117c649054a5f4bd96915b101ef589 -Author: Jan Schatteman -Date: Wed Nov 17 14:52:52 2021 +0100 - - Removal @Deprecated from availablesettings (#4369) - - * Remove deprecated *_CLASSLOADER from AvailableSettings - - Signed-off-by: Jan Schatteman - - * Remove deprecated HBM2DLL_CREATE_NAMESPACES and DEPRECATED_EXTRA_PHYSICAL_TABLE_TYPES from AvailableSettings - - Signed-off-by: Jan Schatteman - - * Remove deprecated and duplicated HBM2DDL_DB_NAME, HBM2DDL_DB_VERSION, HBM2DDL_DB_MAJOR_VERSION, HBM2DDL_DB_MINOR_VERSION from AvailableSettings - - Signed-off-by: Jan Schatteman - -commit e1354b3a8181d5eaa3c382e1c1804f09176525f3 -Author: Christian Beikov -Date: Wed Nov 17 12:41:19 2021 +0100 - - Switch to TCK 3.0.1 with JDK 11 in Hibernate 6.0 - -commit c3631970a5d1d445adafc07b0632181c18c1ae8d -Author: nathan.xu -Date: Wed Nov 17 01:55:32 2021 -0500 - - HHH-14927 fix other obvious defects in user guide - -commit f54f6bdf4e2536e283112cf8ae181fa059e19c36 -Author: nathan.xu -Date: Tue Nov 16 15:45:35 2021 -0500 - - HHH-14927 bump current hibernate version from 5.5 to 5.6 in user guide - -commit 088baa6e86714169626f71995f95182592b29a72 -Author: Andrea Boriero -Date: Tue Nov 16 17:27:56 2021 +0100 - - Fix compilation errors after merge - -commit 8c5adc86d04caf96712f3324f30a99da929f6ece -Merge: 8e8cccfa70 1dc49271c1 -Author: Andrea Boriero -Date: Tue Nov 16 17:23:06 2021 +0100 - - Merge remote-tracking branch 'upstream/main' into wip/6.0_merge_main_1 - -commit 1dc49271c18afa355d5ea331cd7c91123cfd0361 -Author: Sanne Grinovero -Date: Tue Nov 16 15:26:48 2021 +0000 - - HHH-14540 Maintain strict API backwards compatibility - -commit e155fc551e3a61cd98062c3fd17e59758f310766 -Author: Chris Cranford -Date: Tue Nov 9 12:54:44 2021 -0500 - - HHH-14540 Don't share session-scoped interceptors with temp session - -commit 8e8cccfa70a52f79cd2221a7440f1f3dfe67606a -Author: Andrea Boriero -Date: Tue Nov 16 09:52:44 2021 +0100 - - Re-enable additional tests - -commit 8042cc2cdbdc60dea038eefb777eaa44f8a8bd21 -Author: Andrea Boriero -Date: Mon Nov 15 18:21:02 2021 +0100 - - Implemented BasicValue#accept method - -commit 115234e70eb5a9ef722bca13ebef101adccd6c33 -Author: Andrea Boriero -Date: Mon Nov 15 17:51:47 2021 +0100 - - Fix lazy toOne mappedby proxy generation - -commit c1e16b4e4ac25729662625ad5417dc257a1d1160 -Author: Andrea Boriero -Date: Mon Nov 15 11:08:10 2021 +0100 - - Re-enabled additional tests - -commit 2e74d026f25140dbd3e91dfc00a14688d952c0eb -Merge: 37703e2e4c 0c0fab9cef -Author: Andrea Boriero -Date: Tue Nov 16 09:28:40 2021 +0100 - - Merge branch 'wip/6.0_merge_main' into wip/6.0 - -commit 0c0fab9cef545a60b102d8a1f9d339168cf69613 -Merge: 3e97b1c205 3845d2f97f -Author: Andrea Boriero -Date: Tue Nov 16 09:27:42 2021 +0100 - - Merge remote-tracking branch 'upstream/main' into wip/6.0_merge_main - -commit 3845d2f97f91f6fbab3c295ea43a39e8da1f0c2a -Author: Maciej Walkowiak -Date: Wed Nov 10 21:47:41 2021 +0100 - - Refer correct entity in "Composite identifiers with associations" section - - Code sample uses `Book` entity instead of `PersonAddress`. - -commit fa3a364b7948f8e2b739e96afe76a3d1cf748e90 -Author: Björn Kautler -Date: Wed Nov 3 14:50:59 2021 +0100 - - Fix dead link in documentation - -commit 37703e2e4cf454cfcfb258718423a841f9a174eb -Author: Jan Schatteman -Date: Mon Nov 15 23:03:16 2021 +0100 - - Remove deprecated properties from AvailableSettings (#4362) - - * Remove deprecated ACQUIRE_CONNECTIONS and RELEASE_CONNECTIONS from AvailableSettings - - Signed-off-by: Jan Schatteman - - * Remove deprecated PROXOOL_PREFIX and PREFER_POOLED_VALUES_LO from AvailableSettings - - Signed-off-by: Jan Schatteman - -commit 3e97b1c205f91c19ad594bb9066b12d051e52cfc -Author: Christian Beikov -Date: Fri Nov 12 17:33:55 2021 +0100 - - Unify parameter type resolving - -commit f967e16fee9b6cab7b726e7edcb60849accd6011 -Author: Karel Maesen -Date: Fri Nov 12 14:32:09 2021 +0100 - - HHH-14925 Using JavaTypeRegistry#findDescriptor() - -commit 8a96c4e7c7b0190cffec02898942c8ac6777692d -Author: Karel Maesen -Date: Fri Nov 12 13:32:38 2021 +0100 - - HHH-4925 Minor fixes - -commit fa48448f77794c87b543e0d5e22f41b7d48fc2c1 -Author: Karel Maesen -Date: Thu Nov 11 18:53:32 2021 +0100 - - HHH-14925 Fix type resolution in SqmCriteriaNodeBuilder - -commit 64331aada6c79758079f183d4ed3b431ee3b61b4 -Author: Karel Maesen -Date: Thu Nov 11 18:51:57 2021 +0100 - - Fix documentation issues - -commit 5a7ad6d11c0d83156e67b7fbe39082a6eb544429 -Author: Karel Maesen -Date: Thu Nov 11 17:36:11 2021 +0100 - - HHH-14925 Add additional unit tests. - -commit 0300e54fef1c987e61fa0413106718d30a85e3c8 -Author: Karel Maesen -Date: Thu Nov 11 16:03:22 2021 +0100 - - HHH-14925 Remove deprecated BasicType implementations - -commit f4909b7046e14544b0c45838b3f0bb3f5573fd60 -Author: Karel Maesen -Date: Thu Nov 11 13:08:34 2021 +0100 - - Downgrade H2 - -commit e48da8d52c0a883ebeaded550a783743390b57bf -Author: Karel Maesen -Date: Thu Nov 11 12:28:44 2021 +0100 - - HHH-14925 Switch for Postgis to javatype/jdbctype - - Also some documentation improvements and dead code removal. - -commit cf477a61ffbb49ae3065f9159350bd35903d8202 -Author: Karel Maesen -Date: Fri Nov 5 16:53:06 2021 +0100 - - HHH-14803 Use MySQLGeometryJdbcType for MariaDB - -commit 54967d026541690c8862d4c72c5a77ad283af2af -Author: Karel Maesen -Date: Fri Nov 5 16:19:56 2021 +0100 - - HHH-14804 Various improvements - -commit 022d2c0a13b24a36daba8007252538d9e5e68a77 -Author: Karel Maesen -Date: Thu Nov 4 08:26:49 2021 +0100 - - HHH-14906 Fix naming inconsistencies - - Also fixes some minor checkstyle violations and - removes dead code - -commit 65aa8f7a5bb7902874c322b72b6c0faa25eda71c -Author: Karel Maesen -Date: Wed Nov 3 22:58:01 2021 +0100 - - HHH-14804 Upgrade MySQL8 support - -commit 2deee38103fdb12dcc09f0fe63a98ae6e9d8f541 -Author: Karel Maesen -Date: Wed Nov 3 20:26:07 2021 +0100 - - HHH-14906 Support for H2GIS - - Notice that the tests cannot be run from the gradlew cli due to - compatability issues with the H2 version - -commit 9f70a6b1000e3cce86eded0a4e578b6f3ba7cf69 -Author: Karel Maesen -Date: Mon Nov 1 18:06:18 2021 +0100 - - HHH-14804 Upgrade MySQL spatial support (WIP) - -commit 0636f1de14c8171acb2cd85e2b14e62aff086198 -Author: Karel Maesen -Date: Sat Oct 30 18:51:16 2021 +0200 - - HHH-14803 Upgrade MariaDB Spatial support - -commit a7167e2a484a02b32a8023ce19dc729e3c65fded -Author: Fabio Massimo Ercoli -Date: Mon Nov 15 05:18:28 2021 +0100 - - Allow fetching nested unique keys - -commit e10eaf3ef4fceb00193d38bdb33c23f79734b669 -Author: Fabio Massimo Ercoli -Date: Thu Nov 4 21:36:30 2021 +0100 - - Test query entity with mapped by embedded - -commit 7dab08448fdbec6126f208c2469775dc7e116ba7 -Author: Andrea Boriero -Date: Fri Nov 12 15:35:40 2021 +0100 - - Re-enable additional tests - -commit 1b879a65f0b7983628fc1f71326267016d7093b7 -Merge: 7b1201d542 b125d13ede -Author: Andrea Boriero -Date: Mon Nov 15 13:52:08 2021 +0100 - - Merge remote-tracking branch 'upstream/main' into wip/6.0_merge - -commit b125d13edea4c330bfcfa2681360aebb59aeabd0 -Author: Ratul sharker -Date: Sun Nov 14 17:48:19 2021 +0600 - - HHH-14916 : test case written. - -commit 1a641695fa48ae1eb4b545a6eac36152f50e4038 -Author: Ratul sharker -Date: Sun Nov 14 17:43:21 2021 +0600 - - HHH-14916 : inside `renderFetches`, `renderJoins` called if the `fetch` is `instanceof` `Form` interface. - -commit 76eeb6fb5e5421bca80a908ced6eca944f750474 -Author: nathan.xu -Date: Fri Nov 12 21:04:15 2021 -0500 - - HHH-14926 fix ascii error in 'test-case-guide.adoc' - -commit 7b1201d5421118446681e56dd703af3a70e5b14d -Author: Steve Ebersole -Date: Thu Nov 11 16:49:59 2021 -0600 - - Some pre-work for embeddable instantiator work. - -commit db12d5a17a72d048d0e53bd2d0906d827bb0bbe5 -Author: Jan Schatteman -Date: Thu Nov 11 22:49:30 2021 +0100 - - Remove deprecated JPA_METAMODEL_GENERATION and JPA_METAMODEL_POPULATION from AvailableSettings - - Signed-off-by: Jan Schatteman - -commit 60a3c08563aaad2e679a724dccac555eec978fa8 -Author: Christian Beikov -Date: Fri Nov 12 09:31:33 2021 +0100 - - Downgrade H2 to 1.4.197 for testing and to allow usage of H2GIS - -commit 3f7536a94ee5d5bf648714591443f17f97ad6e63 -Author: Steve Ebersole -Date: Thu Nov 11 03:10:39 2021 -0600 - - The JPA TCK tests expect very specific things regarding a negated predicate node. - -commit 7ce1c673ff7f17c8dc2e688b5deb7fbebfcb4316 -Author: Steve Ebersole -Date: Thu Nov 11 09:09:54 2021 -0600 - - JpaCompliance improvement - -commit 6c816932ed1b1e0305b64d05920b857a87db8809 -Author: Christian Beikov -Date: Thu Nov 11 09:51:25 2021 +0100 - - Fix generated values fetching for component attributes and implement identity select for Oracle - -commit 9a329f4991d06a9f25bad2c34ba96bec0fddff62 -Author: Christian Beikov -Date: Wed Nov 10 16:56:06 2021 +0100 - - Various fixes and move tests from test.jpa - - * Remodel `@MapKey` support to not create subqueries in the on-clause anymore - * Make sure the index table group is reused for the to-one association a `@MapKey` refers to - * Consistently register collection part table groups - * Implement support for FK optimization for EntityCollectionPart - -commit 38d1c122eb2946c1d55f3e9965a80a811b4c16b0 -Author: Christian Beikov -Date: Thu Nov 4 16:24:50 2021 +0100 - - Various fixes and move tests from test.jpa - - * Implement parameter list expansion for native queries - * Fix empty subselect fetched collection initialization - * Implement support for nested table group joins to allow joins on the map-key - * Replace `getTableReference` with `resolveTableReference` where appropriate to distinguish which calls can cause table reference joins to be created - * Fix some table reference resolving issues with inverse embeddable model parts - * Use a Fetch for entity ids instead of a DomainResult - * Fix bidirectional fetching for collection initializtion - * Implement table reference join pruning for treat usages - * Implement strict JPA compliance for different parameter styles - * Ensure From nodes in Criteria are unique - * Add unique key support to DelayedEntityFetch - * Check if FetchParent is enhanced for lazy loading for DelayedEntityFetch - * Register entity instances under all possible EntityUniqueKey - * Introduce EntityJavaTypeDescriptor that implements equality based on object identity - -commit 24c758c2e95d31d39ce7393c32033ec189a0a394 -Author: Christian Beikov -Date: Mon Oct 25 15:11:10 2021 +0200 - - Do not alter the join type anymore for non-real table groups that have table reference joins. Handle nullable key tables for to-ones properly and implement bidirectional one-to-one fetching optimization - -commit 45c891a75a545ba5d7ea06d19dae3f46f51993c8 -Author: Christian Beikov -Date: Mon Oct 25 10:17:36 2021 +0200 - - Use emailext in Jenkins pipeline to notify explicit people - -commit e5a78f0ee507f146d04d7c1b59fef57f75ed20a8 -Author: Christian Beikov -Date: Tue Nov 9 13:41:41 2021 +0100 - - Add test exclusion property handling to jakarta module - -commit 723735ca765ab84e2a1c18af6826290b16bd0394 -Author: Jan Schatteman -Date: Thu Oct 14 23:08:29 2021 +0200 - - Use org.hibernate.testing.orm.junit.RequiresDialect instead of org.hibernate.testing.RequiresDialect and indicate Dialect version where needed. - - Signed-off-by: Jan Schatteman - -commit c4401452dd61b532a03a2c54eba5ef14ab9e32fa -Author: Jan Schatteman -Date: Thu Oct 21 22:38:57 2021 +0200 - - Enable a SettingProvider[] in @Jpa and refactor away the NonStringValueSettingProvider class - - Signed-off-by: Jan Schatteman - -commit f935d2b8e1ce86a37c43a8a293a7f61a77082814 -Author: Steve Ebersole -Date: Tue Nov 9 18:54:18 2021 -0600 - - HHH-14923 - Allow CriteriaQuery to determine its "return type" as part of setting the selection - -commit 2d38df66fd9df7493f99117bb0f85274e54d674d -Author: Jan Schatteman -Date: Fri Oct 29 17:28:25 2021 +0200 - - Updated test to JUnit5 to remove reference to Dialect subclass - Moved it back for now to the old location, since it fails with a - non-related error that will have to be looked at as soon as there is an - implementation for composite sub-types - - Signed-off-by: Jan Schatteman - -commit 599b0ba39f70cd0d576b706e9f6d07de897fb653 -Author: Steve Ebersole -Date: Mon Nov 8 16:37:31 2021 -0600 - - HHH-14919 - Improve handling for java.sql.Date, Time and Timestamp - -commit 9c9a326ae6b2ce0ca74e35ebe3bcf29db32e2b75 -Author: Andrea Boriero -Date: Fri Nov 5 13:38:39 2021 +0100 - - Fix Dialect#BatchLoadSizingStrategy#determineOptimalBatchLoadSize taking into account org.hibernate.cfg.AvailableSettings#IN_CLAUSE_PARAMETER_PADDING - -commit 53ad8d36e20e8e8bb7f7bd21fe2bf27b08305483 -Author: Andrea Boriero -Date: Thu Oct 28 15:46:25 2021 +0200 - - HHH-14876 Fix BatchLoadSizingStrategy#determineOptimalBatchLoadSize() - -commit f9d0b7d06951a4dbf8cd3c208a06dfe9ba8d2b77 -Author: Andrea Boriero -Date: Mon Oct 18 22:06:26 2021 +0200 - - HHH-14876 Parameter padding for IN clauses doesn't work in Hibernate 6.0.0.Beta1 - -commit 3f6a7827609e3d875451790e978038314bb94ada -Author: Andrea Boriero -Date: Tue Nov 9 12:12:43 2021 +0100 - - Fix ScrollableCollectionFetchingTest Hana db failures - -commit e9a933fe68c1f50499e5c8db1536179640c9cbef -Merge: 0eee5ff5b0 2e1f7b5d89 -Author: Andrea Boriero -Date: Tue Nov 9 10:50:16 2021 +0100 - - Merge remote-tracking branch 'upstream/main' into wip/6.0_merge - -commit 2e1f7b5d89dffca6cd2502ebb3f4e487078d7934 -Author: Yoann Rodière -Date: Mon Nov 8 13:16:40 2021 +0100 - - HHH-14918 Test entity with composite ID containing an association to another entity which itself has a composite ID containing an association to another entity - -commit ccd58ee499eefca66664ef0305679ae85367c655 -Author: Yoann Rodière -Date: Mon Nov 8 13:28:44 2021 +0100 - - HHH-14918 Always process components containing an ID copy as we would any other FK - -commit 0eee5ff5b0ef094884979dec3a1ba3315af81069 -Author: Steve Ebersole -Date: Fri Nov 5 10:35:21 2021 -0500 - - HHH-14905 - Verify that custom JavaType and JdbcType registration combo works - -commit 9fec060fe2c61881080b410ddd4a93799d2b581b -Author: Steve Ebersole -Date: Thu Nov 4 15:49:11 2021 -0500 - - HHH-14914 - Passing an ExtendedBeanManager which is never notified leads to runtime errors - -commit 0ea110aea2a6b3029d6b4183cd6583156fde5cf2 -Author: Steve Ebersole -Date: Thu Nov 4 14:53:14 2021 -0500 - - HHH-14913 - sub-query modifiers are ignored - -commit b70487546e772a2b4b655219764484741314c38e -Author: Andrea Boriero -Date: Thu Nov 4 19:42:39 2021 +0100 - - Code refactoring - -commit 0b46966096c9064e673702b34bade5dc72754f68 -Author: Steve Ebersole -Date: Thu Nov 4 13:09:22 2021 -0500 - - HHH-14905 - Verify that custom JavaType and JdbcType registration combo works - -commit 31eb3b82c51e6890cfb6ceec969179ec408ea32c -Author: Steve Ebersole -Date: Thu Nov 4 11:08:18 2021 -0500 - - HHH-14905 - Verify that custom JavaType and JdbcType registration combo works - -commit 34cdd3077c9a5116a746262411c649700ffc383e -Author: Steve Ebersole -Date: Wed Nov 3 15:13:55 2021 -0500 - - HHH-14905 - Verify that custom JavaType and JdbcType registration combo works - -commit e28d61330ecbf7443a107f869db5fbe9b462e653 -Author: Andrea Boriero -Date: Thu Oct 28 09:39:02 2021 +0200 - - Derby dialect supportsResultSetPositionQueryMethodsOnForwardOnlyCursor should return false - -commit 0facaf563231987ddb48be11b37d832a6319e66b -Author: Andrea Boriero -Date: Wed Oct 27 20:54:54 2021 +0200 - - Re-enable additional scrollable fetch test - -commit 9b569932d2006e16be98a1ea1d9ea83d8b8518ea -Author: Andrea Boriero -Date: Tue Oct 26 19:28:23 2021 +0200 - - Fix DynamicBatch loading - -commit 29e22c68ac524376514816a32ee4d99851c3e1cf -Author: Andrea Boriero -Date: Tue Oct 26 13:59:53 2021 +0200 - - Fix SingleIdEntityLoaderDynamicBatch#load() method - -commit 696eea9bbeef6b8b78cb0e9de2bb5c1e90541078 -Author: Andrea Boriero -Date: Mon Oct 25 09:24:21 2021 +0200 - - Fix lazy loading of lazy basic attributes when an entity is fetched - -commit 3dedb223650d7e907cec05d077a1888fb6779e27 -Author: Andrea Boriero -Date: Thu Oct 21 10:42:28 2021 +0200 - - Implement FetchingScrollableResultsImpl - -commit 9d8fbfb727c78eccfaf502d45f116dde841d5571 -Author: Andrea Boriero -Date: Wed Oct 20 09:21:29 2021 +0200 - - Bytecode enhamcement fix unnecessary query for an optional OneToOne - -commit 47605bf93b96c158e88efaf74da34508c6dbbafc -Author: Fabio Massimo Ercoli -Date: Sun Oct 31 17:43:10 2021 +0100 - - Navigate all possible targetKeyPropertyNames - -commit fdcb07420f8c292ed49db939d7a977fb54b72eab -Author: Fabio Massimo Ercoli -Date: Wed Oct 27 18:08:30 2021 +0200 - - Defer the extraction of the sub part - - When the foreign key is set to the to-one attribute, this is necessary to have an entity identity mapping using the foreign key SQL attributes - -commit de0dffe1058358f76942d5631ebae6d9a7ece802 -Author: Fabio Massimo Ercoli -Date: Tue Oct 26 18:45:21 2021 +0200 - - Allow ast navigation embedded > to-one - -commit 4e216a121c21b5aa1fe72e0b09ee45d8e6e3295e -Author: Fabio Massimo Ercoli -Date: Tue Oct 26 22:31:13 2021 +0200 - - Test embedded > to-one | embedded - -commit 6c53a9d1abf1bb2e38cfbb986a8bb33188aacfb9 -Author: Sanne Grinovero -Date: Fri Oct 29 14:01:54 2021 +0100 - - HHH-14903 The new getConfiguredJdbcBatchSize method optimisation should apply to StatelessSession as well - -commit eef65b5bc2a39eecefa11ac4f83c84e016ca0978 -Author: Karel Maesen -Date: Sat Oct 30 14:16:13 2021 +0200 - - Resolve to SqlTypes.GEOMETRY for Postgresql/CockroachDB - -commit 4a105c7e9140cdab95c25617c9605ff2bf2f9361 -Author: Steve Ebersole -Date: Fri Oct 29 16:05:30 2021 -0500 - - release.gradle - fixed aggregate Javadoc error - -commit 312fb4355d2b1aa16c4ebf5b9096191afacf496e -Author: Steve Ebersole -Date: Fri Oct 29 15:55:50 2021 -0500 - - release.gradle : skip for `build` task - -commit 46877fdcb43643d3b34703848276f2615671d457 -Author: Steve Ebersole -Date: Fri Oct 29 15:21:14 2021 -0500 - - HHH-14902 - JpaCompliantLifecycleStrategy$BeanImpl#initialize causes a deployment failure due to CDI Bean Manager not being available - -commit 98a00ea9a18bb3566d3b1f1081a2f5f5a47d3be3 -Author: Andrea Boriero -Date: Thu Oct 28 14:43:51 2021 +0200 - - Fix java.time.temporal.UnsupportedTemporalTypeException: Unsupported field: Year when calling JdbcDateJavaTypeDescriptor#toString() - -commit 47593f641258a4db3805a6937740fae4532fdc62 -Merge: 0925e48ebf f9bc1a279a -Author: Andrea Boriero -Date: Thu Oct 28 14:18:32 2021 +0200 - - Merge remote-tracking branch 'upstream/main' into wip/6.0_merge - -commit f9bc1a279a22f54dd92eee02a00d3fd6b79f3610 -Author: Hibernate-CI -Date: Wed Oct 27 11:13:33 2021 +0000 - - 5.6.2-SNAPSHOT - -commit 2c3b3cb3d789f05b6457661268a327ecc4caa2d0 (tag: 5.6.1) -Author: Hibernate-CI -Date: Wed Oct 27 11:08:47 2021 +0000 - - 5.6.1.Final - -commit a2cbe10e0799af2ea77dc64c57ceeb493f16b203 -Author: Sanne Grinovero -Date: Tue Oct 26 17:07:23 2021 +0100 - - HHH-14901 Refactor shared code into a single reused method - -commit cc7498cf3ce621b929197db7b83914a101cae774 -Author: Sanne Grinovero -Date: Tue Oct 26 16:58:32 2021 +0100 - - HHH-14901 Introduce a new BatchBuilder implementation, suitable for immutable code deployments - -commit 7f71dca1aee845bd8bfe5055ed6b31c3d912de52 -Author: Sanne Grinovero -Date: Tue Oct 26 10:30:01 2021 +0100 - - HHH-14899 StaleObjectStateExceptionHandlingTest should expect a StaleStateException - -commit 634c257d93729e1a645eded974a190d13cf6b74b -Author: Sanne Grinovero -Date: Tue Oct 26 10:06:11 2021 +0100 - - HHH-14899 Rename test class to fix typo: StateObjectStateExceptionHandlingTest to StaleObjectStateExceptionHandlingTest - -commit 7ff73d178f4ae6c0add8ada23a45b979a18591ad -Author: Sanne Grinovero -Date: Mon Oct 25 17:49:52 2021 +0100 - - HHH-14899 Inconsistent default value for STATEMENT_BATCH_SIZE - -commit 959dfea66fae35dc28353bab5c6a12c30e2f26af -Author: Sanne Grinovero -Date: Mon Oct 25 17:37:00 2021 +0100 - - HHH-14899 Have SessionImpl override the default method getConfiguredJdbcBatchSize - -commit 5ad60c4b6151fd7eaddef0a112787ebfacb91a86 -Author: Sanne Grinovero -Date: Mon Oct 25 17:09:04 2021 +0100 - - HHH-14900 No need in tests to shadow the jdbcBatchSize field of BatchBuilderImpl extensions - -commit aba67cfe6eef2da0534dadf62c8916a65a34a45e -Author: Sanne Grinovero -Date: Mon Oct 25 17:03:03 2021 +0100 - - HHH-14900 BatchBuilderImpl doesn't need to be Configurable - -commit 9ecd1799a0f408b86d2e9398a41fdb7f310938a6 -Author: Sanne Grinovero -Date: Mon Oct 25 17:00:50 2021 +0100 - - HHH-14900 Since the BatchBuilderImpl Service is shared, mutable field jdbcBatchSize should be marked volatile - -commit 8a2869a09ae642a7539fcc085c52e616f86c9f93 -Author: Sanne Grinovero -Date: Mon Oct 25 16:55:57 2021 +0100 - - HHH-14900 Remove dead logger - -commit 0925e48ebf69c594cd171e939ef2d52198498643 -Author: Steve Ebersole -Date: Mon Oct 25 13:55:34 2021 -0500 - - more user-guide basic-type chapter work; - renamed `JavaTypeDescriptorRegistry` to `JavaTypeRegistry`; - renamed `JdbcTypeDescriptorRegistry` to `JdbcTypeRegistry` - -commit 3c26c470b0cf4b975f6d2dc0f43092698497fd8c -Author: Steve Ebersole -Date: Sun Oct 24 07:36:31 2021 -0500 - - fix aggregateJavadoc problem - -commit e588245f737cc5376c060ea7c3654bae91dca287 -Author: Andrea Boriero -Date: Mon Oct 25 18:09:54 2021 +0200 - - Fix checkstyle error - -commit 5d62eac4b9635c7c1ffe1e6078925668ef8bb667 -Merge: 67c2c51d47 91e29358be -Author: Andrea Boriero -Date: Mon Oct 25 18:05:46 2021 +0200 - - Merge remote-tracking branch 'upstream/main' into wip/6.0_merge - -commit 67c2c51d4799f0e0ded1ecc1776315c949d57a9e -Author: Andrea Boriero -Date: Tue Oct 12 14:38:26 2021 +0200 - - Re-enabled additional tests - -commit 6745f71f8806a4f17c6c79a2445a368b77730491 -Author: Christian Beikov -Date: Sat Oct 23 18:16:17 2021 +0200 - - Add support for from-space wide explicit join ordering and thus support entity/cross joins on all JpaFrom elements - -commit 1456a2dd7f601b90c1bee67e743a758ca9801b04 -Author: Christian Beikov -Date: Sat Oct 23 15:34:39 2021 +0200 - - Render implicit joins as nested table group joins instead of sub queries - -commit 756afb878802fb6a2d2f493013e83b1ef530c448 -Author: Christian Beikov -Date: Fri Oct 22 16:27:33 2021 +0200 - - Fix collection table cleanup issues for all strategies - -commit fa3101c29eb4599791a0ecf8a77383e07747c8c7 -Author: Christian Beikov -Date: Thu Oct 21 14:46:58 2021 +0200 - - Fix join predicate rendering and fix support for implicit joins in the ON clause - -commit 8fc0e05930243ae836fff1916b652318d2cf0401 -Author: Jan Schatteman -Date: Thu Sep 9 17:10:18 2021 +0200 - - Re-enable WithClauseTest - - Signed-off-by: Jan Schatteman - -commit f043014ec771b52ae22231be01c67a1c252d7f1b -Author: Steve Ebersole -Date: Fri Oct 22 06:42:08 2021 -0500 - - more user-guide basic-type chapter work - -commit a3c36af5c6610fe24b5fafcde762f90857c55599 -Author: Steve Ebersole -Date: Thu Oct 21 16:47:09 2021 -0500 - - HHH-14877 - FetchMode.SUBSELECT ignored - - - cleanup - -commit aef07759467d89e9fe562d4bbd9385b1fea816fc -Author: Steve Ebersole -Date: Wed Oct 20 12:01:11 2021 -0500 - - HHH-14877 - FetchMode.SUBSELECT ignored - - - fixed additional tests - -commit 96c0b04658826e41b5051c81781e2652f9317191 -Author: Steve Ebersole -Date: Wed Oct 20 11:05:25 2021 -0500 - - HHH-14877 - FetchMode.SUBSELECT ignored - - - fixed Oracle errors related to follow-on locking - -commit 653de50aa5fa868321876d23038f955855ae445c -Author: Steve Ebersole -Date: Wed Oct 20 09:13:34 2021 -0500 - - HHH-14877 - FetchMode.SUBSELECT ignored - - Worked on FetchMode.SUBSELECT support but also worked on a few general collection fetch issues and a few improvements - -commit aca86036d3587cf183a3fbcff7589dda978aacd2 -Author: Steve Ebersole -Date: Tue Oct 19 17:18:32 2021 -0500 - - HHH-14877 - FetchMode.SUBSELECT ignored - - Worked on FetchMode.SUBSELECT support but also worked on a few general collection fetch issues and a few improvements - -commit db70fd38dd1362c84768526fd4605efe163b6634 -Author: Steve Ebersole -Date: Tue Oct 19 15:44:25 2021 -0500 - - HHH-14877 - FetchMode.SUBSELECT ignored - - Worked on FetchMode.SUBSELECT support but also worked on a few general collection fetch issues and a few improvements - -commit e8e62c4d6c9a22a8a2d257abe9d8c608bcc22571 -Author: Steve Ebersole -Date: Fri Oct 15 18:59:53 2021 -0500 - - HHH-14877 - FetchMode.SUBSELECT ignored - -commit b5558307a9c3d8f3e5ed217beaeb3db01a9d3ec6 -Author: Steve Ebersole -Date: Thu Oct 21 16:25:50 2021 -0500 - - Clean up various legacy "read path" contracts - - - clean-up unused Type methods - * Type#nullSafeGet - * Type#hydrate - * Type#resolve - * Type#getSemiResolvedType - * Type#semiResolve - * related - - start removing usage of Tuplizer - - start removing usage of legacy Tuplizer-based Instantiator - - drop `EntityMode` completely - - preliminary clean-up of EntityTuplizer - - preliminary clean-up of ComponentTuplizer - -commit c34ea34f6b96f50352336a524e06cedfc0908700 -Author: Steve Ebersole -Date: Thu Oct 21 15:01:21 2021 -0500 - - Clean up various legacy "read path" contracts - - - clean-up unused Type methods - * Type#nullSafeGet - * Type#hydrate - * Type#resolve - * Type#getSemiResolvedType - * Type#semiResolve - * related - - start removing usage of Tuplizer - - start removing usage of legacy Tuplizer-based Instantiator - - Drop `EntityMode` completely - -commit d2530df5ac4ec5071a7f589d01f7c8defc661733 -Author: Steve Ebersole -Date: Wed Oct 20 17:37:52 2021 -0500 - - Clean up various legacy "read path" contracts - - - clean-up unused Type methods - * Type#nullSafeGet - * Type#hydrate - * Type#resolve - * Type#getSemiResolvedType - * Type#semiResolve - * related - - start removing usage of Tuplizer - - start removing usage of legacy Tuplizer-based Instantiator - -commit 3efaec2cff7d4ca91ea52021744084df96a3607b -Author: Steve Ebersole -Date: Wed Oct 20 16:12:40 2021 -0500 - - Clean up various legacy "read path" contracts - - - clean-up unused Type methods - * Type#nullSafeGet - * Type#hydrate - * Type#resolve - * Type#getSemiResolvedType - * Type#semiResolve - * related - - start removing usage of Tuplizer - - start removing usage of legacy Tuplizer-based Instantiator - -commit 62f761732d78b6424383419b5bf1110163b6feec -Author: Steve Ebersole -Date: Wed Oct 20 15:48:36 2021 -0500 - - Clean up various legacy "read path" contracts - - - clean-up unused Type methods - * Type#nullSafeGet - * Type#hydrate - * Type#resolve - * Type#getSemiResolvedType - * Type#semiResolve - * related - - start removing usage of Tuplizer - - start removing usage of legacy Tuplizer-based Instantiator - -commit cf36d17fac11d5d417d79e2f35c8422d83ad843c -Author: Steve Ebersole -Date: Fri Sep 10 17:35:09 2021 -0500 - - Clean up various legacy "read path" contracts - - * Type#nullSafeGet - * Type#hydrate - * Type#resolve - * Type#getSemiResolvedType - * Type#semiResolve - * related - -commit 91e29358be0a73d77ac00de45ddf56dd989fefd2 -Author: Steve Ebersole -Date: Thu Oct 21 16:13:55 2021 -0500 - - HHH-14857 - Deprecations in preparation for 6 - -commit 1fdd0a6df12dbc9ec18e79a012390e910fd73698 -Author: Steve Ebersole -Date: Thu Oct 21 14:34:26 2021 -0500 - - improve hibernate-core-jakarta build - -commit 85cd748de58dd090b04212ad0770f479187a29f5 -Author: Steve Ebersole -Date: Thu Oct 21 14:15:57 2021 -0500 - - improve hibernate-core-jakarta build - -commit e4b56b927169b318231770af1b0854b02a6b286c -Author: Steve Ebersole -Date: Thu Oct 21 13:52:33 2021 -0500 - - HHH-14857 - Deprecations in preparation for 6 - -commit 54ea27a4d586477ade662441b616dc11c2545c51 -Author: Steve Ebersole -Date: Thu Oct 21 12:25:25 2021 -0500 - - improve hibernate-core-jakarta build - -commit 3d27f61221fd136359c6ee8d3c2d334a06522d3b -Author: Christian Beikov -Date: Wed Oct 20 13:56:24 2021 +0200 - - Fix non-deterministic time based test - -commit c63308e50120302759c86747dd98b85c3667c430 -Author: Christian Beikov -Date: Wed Oct 20 12:15:44 2021 +0200 - - Setup notifications for PingCAP on TiDB environment - -commit ae8bedfa6db14e275c150b21b399f5c2461b1748 -Author: bb7133 -Date: Mon Oct 18 22:29:13 2021 +0800 - - update wrong SkipForDialect - -commit 5bd27eb85399cb2342582c079f0469bcd7c0d0ee -Author: bb7133 -Date: Wed Jul 21 00:29:18 2021 +0800 - - HHH-14576 : Introduce the dialect for TiDB - -commit 00aa4addec5ba938050e23d043609331731cad90 -Author: Fabio Massimo Ercoli -Date: Wed Oct 20 13:45:24 2021 +0200 - - HHH-14890 Add javadoc for interpretToOneKeyDescriptor(s) - -commit 70a19bae684efe6dcf71e66bd857188330167f2d -Author: Fabio Massimo Ercoli -Date: Tue Oct 19 14:28:52 2021 +0200 - - HHH-14890 Interpret nested ToOne key descriptor - -commit 1f3f3e263970f7171b1439a638fb2315af2a0fc6 -Author: Fabio Massimo Ercoli -Date: Tue Oct 19 17:05:16 2021 +0200 - - HHH-14890 Test mapped by on embeddable - -commit 98de63d0a1dc64894adb03e0021220828e84437a -Author: Christian Beikov -Date: Wed Oct 20 13:14:56 2021 +0200 - - Handle keywords initialization for dialects through DialectResolutionInfo and un-deprecate Dialect#getKeywords - -commit ae9d99a32cdd3cc46271a95044122db7252fb765 -Author: Christian Beikov -Date: Tue Oct 19 18:28:04 2021 +0200 - - Handle the fact that PostgreSQL uses a backslash as default escape character in the like predicate - -commit 2f52c8024c14a66cd3e83406f0c5b8180f986efa -Author: Higor Tavares <42852956+higortavares@users.noreply.github.com> -Date: Tue Oct 19 18:35:12 2021 -0300 - - remove the commented code - -commit ead2447524bd65cd452486940c31770a5fc8ba30 -Author: nathan.xu -Date: Tue Oct 19 23:28:36 2021 -0400 - - HHH-14891 update JTS package name in user guide (Hibernate Spatial BasicTypes table in 'Domain Model' chapter) - -commit 9c2c7e13dd179e8cbb41a7ffd68d343cf6fbdf07 -Author: Andrea Boriero -Date: Mon Oct 18 11:23:36 2021 +0200 - - HHH-14875 Slow query log seems to be missing in Hibernate 6.0.0.Beta1 - -commit dd36e349b1a96164ec3c8a6c042ba0c1bb994624 -Merge: a4e406a54e d2906c022e -Author: Andrea Boriero -Date: Tue Oct 19 16:36:48 2021 +0200 - - Merge branch 'wip/6.0_merge' into wip/6.0 - -commit a4e406a54eb3f5d6ed2b4090f9073c28e5d22515 -Author: Christian Beikov -Date: Fri Oct 15 13:28:26 2021 +0200 - - * Add SqlTypes as analogy to java.sql.Types containing constants for Hibernate specified types - * Add FormatMapper for a pluggable JSON serialization and deserialization strategy - * Add native UUID type support for H2, Cockroach, PostgreSQL - * Add native INET type support for Cockroach, PostgreSQL - * Add native JSON type support for MySQL, Cockroach, PostgreSQL - * Add native INTERVAL SECOND type support for H2, Cockroach, PostgreSQL - * Add fallback JdbcTypes for new SqlTypes - * Register column types for new SqlTypes - * Add support for BasicTypeReference in TypedParameterValue - * Fix a lot of method signatures with respect to type parameter issues - * Fix CustomType, UserType and EnhancedUserType with respect to type parameters - * Get rid of StringRepresentableType and some other unused deprecated methods - -commit 541302a511304a2a43f07bde6278d0d875ddbf8b -Author: Christian Beikov -Date: Mon Oct 11 18:16:10 2021 +0200 - - Get rid of most basic type subclasses - -commit 4f861e13bab2cc64aa7bee602e615391560da246 -Author: Christian Beikov -Date: Mon Oct 11 13:32:11 2021 +0200 - - Properly handle SQLFunction registrations - -commit d2906c022ead4ccba13b162c454f7fca5c12eb22 -Author: Andrea Boriero -Date: Tue Oct 19 16:23:42 2021 +0200 - - Upgrade org.asciidoctor.jvm.convert to 3.3.2 - -commit 7f46f11f3b100c4d6b9a1088284a2b9945236c13 -Merge: 6ddf3530fa 9dd6cd06c9 -Author: Andrea Boriero -Date: Tue Oct 19 16:23:07 2021 +0200 - - Merge remote-tracking branch 'upstream/main' into wip/6.0_merge - -commit 6ddf3530fa48d6d2f8bf4842ccfc125c9b0887d8 -Author: Andrea Boriero -Date: Mon Oct 18 19:17:58 2021 +0200 - - EntityValuedFetchable add isOptional and isUnwrapproxy methods - -commit 6ffcee44a60849466778438ca103bc612f543174 -Author: Andrea Boriero -Date: Mon Oct 18 19:16:46 2021 +0200 - - search second level cache if proxy entity metamodel has subclasses - -commit 1ffa1347a36e20f288b904fb57a32e5533e4a70b -Author: Andrea Boriero -Date: Mon Oct 18 14:05:37 2021 +0200 - - Rename ToOneAttributeMapping isInternalLoadNullable to isOptional - -commit f02ffde061f8b40896e26c951c8a9ee4950d3941 -Author: Andrea Boriero -Date: Thu Oct 14 17:42:30 2021 +0200 - - Re-enabled additional tets - -commit ad5326a8ce95e9183af6f661a9bcd9e906efc8aa -Author: Andrea Boriero -Date: Thu Oct 14 16:03:52 2021 +0200 - - Re-enabled additional tests - -commit 73452ae61f026136c954517beb10858d47b08d59 -Author: Andrea Boriero -Date: Thu Oct 14 15:32:30 2021 +0200 - - Fix ToOne with Ignore not found lazy loading - -commit d95dad597cf1974d352a1ec467da6e81db7bdb27 -Author: Andrea Boriero -Date: Thu Oct 14 11:50:30 2021 +0200 - - Re-enabled additional tests - -commit 449d4adc27b09cf77fcd450e96ca7ad4e1221ce0 -Author: Andrea Boriero -Date: Thu Oct 14 11:46:17 2021 +0200 - - Fix cascade loader not join associations after first collection - -commit 57e2d25dd35f6ca920160c6ea407d36f1b8cc352 -Author: Andrea Boriero -Date: Wed Oct 13 14:46:41 2021 +0200 - - Re-enabled additional tests - -commit dcab4bf7bf0196cd465c14616ffbe60b07470ad4 -Author: Andrea Boriero -Date: Wed Oct 13 14:44:04 2021 +0200 - - Fix unfetched collection assembling - -commit d616f2aa5539550a667513b7e72491a91adfe7b7 -Author: Andrea Boriero -Date: Wed Oct 13 11:53:16 2021 +0200 - - Fix ToOneAttributeMapping tableGroup creation - -commit fa694c5d41e5effb2a33cee66294cd6ac80f52eb -Author: Andrea Boriero -Date: Wed Oct 13 11:37:17 2021 +0200 - - Re-enabled additional tests - -commit 563ee455308a9bf88dd2f8484ddf6d40b5d25b2e -Author: Andrea Boriero -Date: Wed Oct 13 09:53:06 2021 +0200 - - Fix delayed entity fetch loading trying to instantiate abstract class - -commit 7eccda9f36140dbda58970e8114c0c2317a764b8 -Author: Andrea Boriero -Date: Mon Oct 4 21:04:51 2021 +0200 - - Fix java.lang.ClassCastException: org.hibernate.internal.StatelessSessionImpl cannot be cast to org.hibernate.event.spi.EventSource - -commit a3920e589245ceeb41a643b94cc0bc501cf44af9 -Author: Christian Beikov -Date: Thu Oct 7 08:24:37 2021 +0200 - - Small test fixes. Fix unwraps and mutation strategy configuration - -commit 9fa2671cbc679103d1fe16a7088301f17fdf67fa -Author: Christian Beikov -Date: Wed Oct 13 10:24:56 2021 +0200 - - Update to Gradle 7.2 - -commit 8a0e4a9cdd2675e2ecc7bcb4e864024cdf74bbc8 -Author: Christian Beikov -Date: Tue Oct 12 14:58:19 2021 +0200 - - HHH-14663 : Add testing for s390x - -commit 9dd6cd06c9c8d5d4c23232663845d9d02176bc8f -Author: Sanne Grinovero -Date: Mon Oct 18 11:35:45 2021 +0100 - - HHH-14882 StandardStack needs to support null entries - -commit ef3fe11ae673558e278d8c30902253365950da78 -Author: Sanne Grinovero -Date: Thu Oct 14 12:56:27 2021 +0100 - - HHH-14882 Minor implementation optimisations in internal StandardStack - - The current StandardStack implementation is based on a LinkedList, which is well known to be a suboptimal choice; this should be switched to a lazily allocated ArrayDeque. - -commit 6008264711a828f5b798157db068a3126422534e -Author: Sanne Grinovero -Date: Mon Oct 18 10:33:22 2021 +0100 - - HHH-14816 Optimise LockMode#fromExternalForm for common case - -commit 3bee3a1c7932f38b7e0cdc593a786cfbab395f28 -Author: Sanne Grinovero -Date: Mon Oct 18 10:30:14 2021 +0100 - - HHH-14816 Minor refactoring of LockModeTypeHelper conversions - -commit 8e0f0b412365458e2a3442b80a8c00be9e2ba35d -Author: Dariush Moshiri -Date: Tue Oct 12 13:10:36 2021 +0200 - - HHH-14816 Can not set lock mode with QueryHint due to type case problem - -commit 8cf51a601ba1744ed3e432edd23d79a119292c3d -Author: nathan.xu -Date: Sun Oct 17 16:11:55 2021 -0400 - - HHH-14883 Fix an Asciidoc defect and other verbiage issues in 'spatial' chapter in user guide - -commit c545cee28cabb7ddf2b778e78d05bf8197c3f5f6 -Merge: 7b5e8de7bf 8afce5b5ed -Author: Andrea Boriero -Date: Fri Oct 15 12:07:14 2021 +0200 - - Merge remote-tracking branch 'upstream/main' into wip/6.0_merge - -commit 8afce5b5ed72a8fa9e15fbaa608a5b2abb92e9de -Author: Yoann Rodière -Date: Tue Oct 12 19:03:15 2021 +0200 - - HHH-14869 Fix CallbackRegistryImpl#registerCallbacks considering all given callbacks have the same type - -commit 965f5bd92528364a828b3a4f3b78599ee7263575 -Author: Yoann Rodière -Date: Mon Oct 11 15:21:04 2021 +0200 - - HHH-14869 Extract JPA listener definitions when building metadata rather than when creating the SessionFactory - -commit acc42253c3ffef2f3cf65de4559ab25d8cc5757f -Author: Sanne Grinovero -Date: Thu Oct 14 22:06:01 2021 +0100 - - Fixed typo in migration-guide.adoc - -commit 7b5e8de7bf6a4fa6e6bd72bb0fe8a45acbeb6e7a -Merge: 4323f9f011 97f75f2aeb -Author: Andrea Boriero -Date: Thu Oct 14 18:45:09 2021 +0200 - - Merge remote-tracking branch 'upstream/main' into wip/6.0_merge - -commit 97f75f2aeb822f86f4cb28bcb1f1ca01bc8b941c -Author: Yoann Rodière -Date: Thu Oct 14 15:02:37 2021 +0200 - - HHH-14881 Test attribute converters provided through CDI and configured through orm.xml - -commit 7cc0c8370b589fd766e1a157c2c040662e3f4b1c -Author: Yoann Rodière -Date: Thu Oct 14 15:11:06 2021 +0200 - - HHH-14881 Allow providing attribute converters through CDI when configured through orm.xml - -commit fc636995c3cf624d941549225c2accc35a93a34b -Author: Yoann Rodière -Date: Thu Oct 14 14:31:41 2021 +0200 - - HHH-14880 orm.xml: Take into account for - -commit 4323f9f0118a77342e097491d4c28349228a32fb -Author: Andrea Boriero -Date: Tue Oct 12 18:13:23 2021 +0200 - - HHH-14874 Lazy loading of basic attributes in different @LazyGroups throws ArrayIndexOutOfBoundsException - -commit 3b47b85ce8c4e7727fa988811180d1d322012c42 -Author: Andrea Boriero -Date: Tue Oct 12 18:11:13 2021 +0200 - - HHH-14874 Add test for issue - -commit cc31223b78db02811348384009ef75eaa559b3a6 -Author: Andrea Boriero -Date: Tue Oct 12 18:44:49 2021 +0200 - - Re-enabled additional tests - -commit 92e1f593dca9930484f17c2d67d4450dd31aa8d7 -Author: Steve Ebersole -Date: Tue Oct 12 10:47:41 2021 -0500 - - Drop doc section on JACC - -commit 4543ab176b524e9fb45a0be1cd4fe11081c2b7ef -Author: Andrea Boriero -Date: Tue Oct 12 13:22:33 2021 +0200 - - Re-enabled additional tests - -commit 5f6e53334cfcc8973a4291e7fec01028fedf9244 -Author: Andrea Boriero -Date: Mon Dec 2 10:57:37 2019 +0000 - - HHH-13766 Add test for issue - -commit 9b48207ba0ba1bbfa4f3e9a03df84668f7155e5e -Author: Andrea Boriero -Date: Tue Oct 12 12:09:15 2021 +0200 - - Re-enabled additional test - -commit 6b5cb2cfc4bab2dc00a9169ec3f042b199c4b9f5 -Merge: e93d33be16 d998696a0f -Author: Andrea Boriero -Date: Tue Oct 12 11:49:54 2021 +0200 - - Merge remote-tracking branch 'upstream/main' into wip/6.0 - -commit e93d33be162bf2d49c98cc6c579105bc316851b5 -Author: Yoann Rodière -Date: Mon Oct 4 14:02:44 2021 +0200 - - Have SessionFactory#getMetamodel() return a JpaMetamodel - - It just makes sense, since JpaMetamodel is Hibernate ORM's - extension of jakarta.persistence.metamodel.Metamodel, - and SessionFactory#getMetamodel() is Hibernate ORM's extension - of EntityManager#getMetamodel(). - -commit a16305e01f0c749456715eab09398a549fa9e93b -Author: Yoann Rodière -Date: Mon Oct 4 14:00:43 2021 +0200 - - Minor cleanup of MappingMetamodelImpl - -commit 0c27e3428d6c99166dbc0724518512f467849b3b -Author: Yoann Rodière -Date: Mon Oct 4 13:53:01 2021 +0200 - - Remove a few redundant method overrides in metamodel interfaces - -commit dd1fb78f3214b4f8c82fb82a6493edb035c8912f -Author: Steve Ebersole -Date: Mon Oct 11 17:39:43 2021 -0500 - - 6.0.0.Beta1 post-release - -commit 677e4ffab6c946de4880e11f2b4239b6935b1cb4 (tag: 6.0.0.Beta1) -Author: Steve Ebersole -Date: Mon Oct 11 15:56:05 2021 -0500 - - Pre-steps for release : `6.0.0.Beta1` - -commit d998696a0ff230f607e9aea4e9932f9f20a76ae7 -Author: Hibernate-CI -Date: Mon Oct 11 21:23:51 2021 +0000 - - 5.6.1-SNAPSHOT - -commit e19eea19d1e1db5b80c0144093c0593ce4ff880b (tag: 5.6.0) -Author: Hibernate-CI -Date: Mon Oct 11 21:19:02 2021 +0000 - - 5.6.0.Final - -commit e9e5374ed26ac7e951ece09f128f0f7753c6c78d -Author: Steve Ebersole -Date: Mon Oct 11 15:52:26 2021 -0500 - - HHH-14871 - Temporarily disable hibernate-gradle-plugin - -commit 099ad0a00711ceef7185a971173681227ed777da -Author: Steve Ebersole -Date: Mon Oct 11 14:53:10 2021 -0500 - - troubleshoot gradle-plugin failures on CI release job - -commit 0be2bcc0ca547e01b512c8160280dd78d08c2bf7 -Author: Steve Ebersole -Date: Mon Oct 11 13:55:56 2021 -0500 - - make Antlr runtime an explicit implementation dependency - -commit 48068e0311e99b31636cad15daf9631f9221eb94 -Author: Steve Ebersole -Date: Wed Sep 29 01:37:48 2021 -0500 - - HHH-14857 Deprecations in preparation for 6 - -commit cbb6b3820be4c7a8262bad18e49d035aadb79738 -Author: Steve Ebersole -Date: Mon Oct 11 13:13:53 2021 -0500 - - clean-up from rebase - -commit 686d8fcbf14076c4b78c63c3a00a78a63644f791 -Author: Steve Ebersole -Date: Mon Oct 11 11:47:50 2021 -0500 - - HHH-14870 - Rename {Xyz}TypeDescriptor as {Xyz}Type - - * `JavaTypeDescriptor` -> `JavaType` - * `JdbcTypeDescriptor` -> `JdbcType` - -commit 3a0065eea4ed3d98e73b8f57dc68c3999740ddcd -Author: Steve Ebersole -Date: Mon Oct 11 11:17:07 2021 -0500 - - HHH-14870 - Rename {Xyz}TypeDescriptor as {Xyz}Type - - * `JavaTypeDescriptor` -> `JavaType` - * `JdbcTypeDescriptor` -> `JdbcType` - -commit 7b61966882386c6877a35aee95c04745a80ff473 -Author: Steve Ebersole -Date: Mon Oct 11 12:10:43 2021 -0500 - - dropped no-longer-used no-op impls intended for annotations - -commit 34a9fa2e5582859de2520b7873f3192a23bc5df1 -Author: Sanne Grinovero -Date: Mon Oct 11 11:36:08 2021 +0100 - - HHH-14868 Upgrade to ByteBuddy 1.11.20 - -commit 1d4fe5d178ae31f2d5584a2b9feee6fc88420d7b -Author: Christian Beikov -Date: Mon Oct 11 12:19:50 2021 +0200 - - Increase timeout for HANA - -commit ba350d13c6143d1764915de94e2218c1cd8c0c4b -Author: Christian Beikov -Date: Mon Oct 11 10:43:32 2021 +0200 - - Handle TimeZoneStorage annotation - -commit 548df627e61f342fd668c7c3fb188df421f9c0c0 -Author: Christian Beikov -Date: Thu Oct 7 12:19:32 2021 +0200 - - Implement global configuration and sketch out annotations for time zone storage configuration. Move type tests and add skips for some tests running into H2 bugs. Also, fix some jdbc type assertion tests - -commit 597f4bdf6a348afa1df39e650abcff71bfb6fa21 -Author: Christian Beikov -Date: Thu Oct 7 11:17:29 2021 +0200 - - Get rid of JdbcTypeDescriptor remapping - -commit 88a0afc8e285f0ef70f867205027fcc6e85732f9 -Author: Yoann Rodière -Date: Fri Oct 8 16:03:07 2021 +0200 - - HHH-13295 Test @EmbeddedId + @MapsId targeting a derived entity - -commit 7906a27b6ae1218ceadd8d55deb2c911d14a80f9 -Author: Yoann Rodière -Date: Fri Oct 8 16:30:12 2021 +0200 - - HHH-13295 Always perform @MapsId's second pass after entity ID second passes - -commit ac1a30f808e886f66da868912ff45d890baf38e9 -Author: Steve Ebersole -Date: Sat Oct 9 08:10:53 2021 -0500 - - HHH-12623 - Improve Javadoc comments for QueryHints.html#NATIVE_SPACES - -commit fbba2d49a9219afffc9b09b1fceb9f7c884df2a3 -Author: Steve Ebersole -Date: Fri Oct 8 09:46:53 2021 -0500 - - test failures from custom-type work - -commit 41603e8d75ea01e69646c25ccf151924f98c09d7 -Author: Steve Ebersole -Date: Fri Oct 8 09:18:58 2021 -0500 - - Fix User Guide build problems - -commit d452b6e3ea1e93d76cabfed18b456bc255da6fe9 -Author: Steve Ebersole -Date: Thu Oct 7 16:53:30 2021 -0500 - - HHH-14856 - Introduce @CustomType; - HHH-14865 - Re-work @Any and @ManyToAny support; - HHH-14863 - Compositional definition of basic value mappings; - HHH-14864 - Drop legacy Type-based annotations - - * documentation work - -commit ede52e9aba872fd4d40c0e4f1549b7505ad57ba5 -Author: Steve Ebersole -Date: Thu Oct 7 16:46:35 2021 -0500 - - HHH-14856 - Introduce @CustomType; - HHH-14865 - Re-work @Any and @ManyToAny support; - HHH-14863 - Compositional definition of basic value mappings; - HHH-14864 - Drop legacy Type-based annotations - - * documentation work - * support for using most of the new mapping annotations related to basic and any mappings as meta-annotations - * support for `@Mutability` on AttributeConverter implementations - * additional tests in the User Guide's BitSet mapping Case Study - -commit abc8225e9ddff097abe0f94b2da8fa9b62af4a72 -Author: Steve Ebersole -Date: Thu Oct 7 13:10:53 2021 -0500 - - at the moment we expose `antlr` as an implementation dependency, which is exposed as a compile dependency. Instead use `antlr_runtime` as a runtime-only dependency and `antlr` for the `AntlrPlugin` - -commit 95aa8246ed57e37e3c13e4c5c15fb181e02f3b6e -Author: Steve Ebersole -Date: Thu Oct 7 12:17:42 2021 -0500 - - HHH-14856 - Introduce @CustomType; - HHH-14865 - Re-work @Any and @ManyToAny support; - HHH-14863 - Compositional definition of basic value mappings; - HHH-14864 - Drop legacy Type-based annotations - - layer in missed support for `@MapKeyClass` and `@ElementCollection#targetClass` in BasicValue resolution as part of BasicValueBinder handling - -commit 9ad34c21d4daadff01933715dc41a506daad94e1 -Author: Steve Ebersole -Date: Fri Oct 1 08:20:38 2021 -0500 - - HHH-14856 - Introduce @CustomType; - HHH-14863 - Compositional definition of basic value mappings; - HHH-14864 - Drop legacy Type-based annotations; - HHH-14865 - Re-work @Any and @ManyToAny support; - - * re-use BeanInstanceProducer - * Removed `@CollectionId#type` - * Change `@Any` / `@ManyToAny` - * Removed `@MapKeyType` - * Removed `@TypeDef` - * Removed `@TypeDefs` - * Removed `@Type` - * Removed `@AnyMetaDefs` - * Removed `@AnyMetaDef` - * Removed `@MetaValue` - -commit 710ebe57b0c1c8081d49f56a9048b990b2562f40 -Author: Christian Beikov -Date: Wed Oct 6 16:51:57 2021 +0200 - - Get rid of using specialized BasicType implementations and references to those and instead use a BasicTypeReference that is lazily resolved - -commit 1cb6ff8916ef74efb020429aa6ebab4d9b5342f7 -Author: Christian Beikov -Date: Tue Oct 5 17:34:32 2021 +0200 - - Cleanup naming of JavaTypeDescriptor and JdbcTypeDescriptor implementations. Get rid of PrimitiveType, IdentifierType, DiscriminatorType and AllowableTemporalParameterType - -commit 653f62ac6021f1bd0aee7ea0835a17749a18ad1b -Author: Christian Beikov -Date: Tue Oct 5 15:39:56 2021 +0200 - - Move VersionType logic to VersionJavaTypeDescriptor - -commit 81e66fa97092f743926cca731c26914bb20f436a -Author: Christian Beikov -Date: Tue Oct 5 12:03:23 2021 +0200 - - Get rid of LiteralType - -commit bfe2da9d4f8374a9921a4f14e872bfaf72cd32e9 -Author: Christian Beikov -Date: Tue Oct 5 11:43:51 2021 +0200 - - Move type adjustment from AdjustableBasicType to AdjustableJdbcTypeDescriptor - -commit bb52778229dfa8b817930947dc0fb64407ef0d6a -Author: Andrea Boriero -Date: Mon Oct 4 10:28:33 2021 +0200 - - Fix GH actions store creation procedure craetion privileges for mysql - -commit a6a61f65d6d2394e401dde7c8c2483ba5eb106d3 -Author: Andrea Boriero -Date: Fri Oct 1 22:43:49 2021 +0200 - - Fix determining the correct ValueBinder for IN ProcedureParameter - -commit 0941ac7da1065d388b3c0f912e03140c9aa03b23 -Author: Andrea Boriero -Date: Fri Oct 1 22:15:23 2021 +0200 - - Native query as a function call is no longer supported - -commit 8276bd569a3657b43386f3ecc942310d7b3aa4b0 -Author: Andrea Boriero -Date: Fri Oct 1 12:45:35 2021 +0200 - - Implement ParameterMementoImpl#resolve() method - -commit 72d06c164ade4312b04b5ccffc4bcf5d7502a932 -Author: Andrea Boriero -Date: Fri Oct 1 11:01:12 2021 +0200 - - Fix issue with ResultSetMappig for classes - -commit dd43a3923b73421d348bf44d86f02c00b7c1e55f -Author: Andrea Boriero -Date: Thu Sep 30 20:42:46 2021 +0200 - - Fix typo and minor improvement - -commit 18fee9cf5a684d940a5c5efbab263b5c7480c69c -Author: Andrea Boriero -Date: Thu Sep 30 19:31:01 2021 +0200 - - Fix Delaying Basic attribute fetching - -commit b872d8ad74c900162a5940b7641f267f19f52853 -Author: Andrea Boriero -Date: Thu Sep 30 19:30:55 2021 +0200 - - Fix CoercionException conversion to IllegalArgumentException for Query parameter binding - -commit 8df7a3ab16317537d20bdfeea940c37c9a64420c -Author: Andrea Boriero -Date: Thu Sep 30 13:44:28 2021 +0200 - - Use ResultSetMapping from ProcedureCall instead of creating a new one - -commit 7e92c295150e4d96ebbbfe9a579cc0c8a2f5ec89 -Author: Andrea Boriero -Date: Thu Sep 30 12:58:55 2021 +0200 - - Fix test creating BootstrapContextImpl twice - -commit 95486ce5b13dc5c1ecf8a0b0cfaebb41a8b3d602 -Author: Andrea Boriero -Date: Tue Sep 28 08:15:07 2021 +0200 - - Implementing Procedure Call - -commit 6931635c4f8cdf7adf6e3cd93cab1639db500b72 -Author: Andrea Boriero -Date: Mon Sep 27 08:08:32 2021 +0200 - - Implementing ProcedureParamBindings - -commit d4007c5071881dd4b6e0d61e5bae1213be970879 -Author: Christian Beikov -Date: Tue Oct 5 08:52:54 2021 +0200 - - Fix fetching from a treated type and cleanup naming for collection fetching as well as fix bugs that IMO hid behind this bad naming - -commit 9e83129fc3a389a5ab08e4bc40521d545a218354 -Author: Christian Beikov -Date: Fri Oct 1 13:44:44 2021 +0200 - - Change JavaTypeDescriptor#fromString to accept a CharSequence instead of String and introduce CharSequence utilities to avoid creating intermediate strings - -commit 40ccad1db2a41b3c49391b7ebfbbef9a1f56326e -Author: Christian Beikov -Date: Fri Oct 1 01:12:52 2021 +0200 - - Get rid of deprecated dialect methods, JoinFragment, LegacyLimitHandler, LegacySequenceSupport, CaseFragment, SelectFragment etc. - -commit f416b728a99f490374f67ab616a29aa7fe13c030 -Author: Christian Beikov -Date: Thu Sep 30 19:57:01 2021 +0200 - - Get rid of RowSelection, QueryParameters and related deprecated functionality - -commit 1246a22c83f5239737a5e57b0fe4414cdd69f94b -Author: Christian Beikov -Date: Thu Sep 30 19:46:55 2021 +0200 - - Remove some row selection uses - -commit c5baae7e114087cb594ac573d9009198bc4b1c9c -Author: Christian Beikov -Date: Thu Sep 30 19:41:12 2021 +0200 - - Improve SQL rendering performance by avoiding intermediate String objects - -commit 2cb1078fe3db6d62baa4ac623ae77353874eaec4 -Author: Christian Beikov -Date: Thu Sep 30 19:40:35 2021 +0200 - - Fix some string literal parsing issues regarding escape sequences - -commit f61eeb5a25e89382aab6538269b21d163e90196f -Author: Christian Beikov -Date: Thu Sep 30 15:05:15 2021 +0200 - - Temporarily disable testing environments that are also tested on GH actions - -commit bcc33a76cb7245fd806430712b10b3d7dbc5d6bf -Author: Christian Beikov -Date: Thu Sep 30 15:04:13 2021 +0200 - - Cancel old pipeline runs if a new commit arrives before the old build finishes - -commit cef798852866301f7a07347679792eecee1db106 -Author: Andrea Boriero -Date: Mon Oct 4 13:03:08 2021 +0200 - - Re-enabled additional tests - -commit 6c49c5508774baa7ffe82463b61a3c7730f2cbbd -Author: Christian Beikov -Date: Mon Oct 4 11:27:48 2021 +0200 - - Fix setting null values on native queries for mysql/mariadb - -commit 0557536e16e1377a3ef0fe527c5aa8b03780e75f -Author: Andrea Boriero -Date: Mon Oct 4 10:10:48 2021 +0200 - - Activate correct profile for mysql8 on GH actions - -commit 8c40de9cffde270ce5852d9d07310903b08f7fba -Merge: ab2957d89f 2396dfbb3d -Author: Andrea Boriero -Date: Fri Oct 1 11:34:10 2021 +0200 - - Merge remote-tracking branch 'upstream/main' into wip/6.0_merge_main_7 - -commit ab2957d89f25656c018b49de09984ad4235ec7d1 -Author: Steve Ebersole -Date: Thu Sep 30 14:57:30 2021 -0500 - - HHH-14820 - Customized EnumType not working with hbm mapping in Hibernate 6 - -commit c799f858013b8043ce2e17b3ba8b5d83b6a4d1c7 -Author: Steve Ebersole -Date: Thu Sep 30 11:53:51 2021 -0500 - - HHH-14820 - Customized EnumType not working with hbm mapping in Hibernate 6 - -commit bef0554eb7e1425797948445c003a65a359e5939 -Author: gtoison -Date: Thu Sep 9 21:02:56 2021 +0200 - - HHH-14820 - Customized EnumType not working with hbm mapping in Hibernate 6 (Reproducer) - - A simple unit test illustrating issue HHH-14820 : since Hibernate ORM 6 - the custom NamedEnumUserType is only instantiated once (while there are - two enums configured with this type) - -commit d8b984ed7fe17352bd2b4d286b8707212ee5f60c -Author: Christian Beikov -Date: Wed Sep 29 18:53:37 2021 +0200 - - Fix some column type definitions in dialects regarding their maximum capacities. Allow the dialect to resolve the length based on type code, type name, precision, scale and display size. Fix some dialect related issues with tests. Fix untyped null parameter binding issues - -commit 7fd3706a18e4740a5fdae20c1bc05f10755e20c8 -Author: Christian Beikov -Date: Wed Sep 29 18:50:55 2021 +0200 - - Fix build script regarding tools.jar inclusion into testCompile configuration - -commit d5078456a2ed6bf537afae9017ab3f8699be9e02 -Author: Christian Beikov -Date: Wed Sep 29 18:50:16 2021 +0200 - - NullnessLiteral cleanup - -commit 10e508dfe7999b3270abc65e71cf689a82d82c10 -Author: Christian Beikov -Date: Wed Sep 29 18:47:15 2021 +0200 - - Add the Object type to the basic type registry and resolve it by Java type instead of referring to JavaObjectType or StandardBasicTypes.OBJECT_TYPE - Also add special JdbcTypeDescriptor implementations that resolve the parameter type or use a VARBINARY on null values, as needed for some dialects, which register these descriptors - -commit 05f643f208456d5500e9df9c09421fe4c72f7683 -Author: Christian Beikov -Date: Wed Sep 29 16:42:44 2021 +0200 - - Move some more jpa.test subpackages to orm.test - -commit 08b0a705e6d401e7f4a12e1b358654d5d015e515 -Author: Christian Beikov -Date: Tue Sep 28 13:17:41 2021 +0200 - - Remove `@NotImplementedYet` from some tests and fix some other tests - -commit f1680fabcddd6ed93bb3313853c4d74854fe2c00 -Author: Christian Beikov -Date: Mon Sep 27 17:53:23 2021 +0200 - - Fixes for the move of jpa.test.query to orm.test - - * Allow JdbcTypeDescriptor to resolve JavaTypeDescriptor also based on precision/scale to support resolving VARCHAR(1) to Character - * Implement support for rendering comments and hints for DML statements. - * Implement support for tuple transformer - * Apply type inference on SQM parameters and put coercion behind `isLoadByIdComplianceEnabled` consistently - * Implement native query result type validation - * Fix some temporal type related resolving issues - * Fix parameter validation issue - * Apply delayed fetch builders for implicit basic attributes for result set mappings - * Use resolved JdbcTypeDescriptor and column length/scale to resolve recommended JdbcTypeDescriptor - * Fix type resolving for composite path sources - * Make ManagedDomainType implement AllowableParameterType - * Make DiscriminatorSqmPathSource implement AllowableParameterType - * Fix some id-class related path source issues - -commit d4ecfbc1b84593c3e8eecf66d3ae1a0afeafb551 -Author: Christian Beikov -Date: Tue Sep 28 09:57:27 2021 +0200 - - Move jpa.test.query to orm.test - -commit 2396dfbb3d4b606916c8407403c9f9b95d9d9b35 -Author: Hibernate-CI -Date: Wed Sep 29 13:51:37 2021 +0000 - - 5.6.0-SNAPSHOT - -commit 2ec769b5e410e71123754f81bf8911b4fac9f174 (tag: 5.6.0.CR1) -Author: Hibernate-CI -Date: Wed Sep 29 13:46:39 2021 +0000 - - 5.6.0.CR1 - -commit 33a2c88279cf1293aff79d33c2ac308856ebe98f -Author: Andrea Boriero -Date: Mon Sep 27 12:47:46 2021 +0200 - - Re-enabled additional tests - -commit aa514f7cfc1257f8a2e46934134e3550f87d4351 -Author: Steve Ebersole -Date: Wed Sep 29 02:16:35 2021 -0500 - - fix to aggregateJavadoc task - -commit 120019b343d79216d9a49ae2fec45164860ed073 -Author: Steve Ebersole -Date: Wed Sep 29 02:11:49 2021 -0500 - - HHH-14848 - Move Ant tasks + support from hibernate-core into tooling/hibernate-ant - -commit 439f4fb208fb6ee35f2a0fbfa0dc9bee0d4a8d13 -Author: Steve Ebersole -Date: Wed Sep 29 02:09:58 2021 -0500 - - HHH-14848 - Move Ant tasks + support from hibernate-core into tooling/hibernate-ant - -commit ee721283883481d94284e3e07b7ca605bc056155 -Author: Steve Ebersole -Date: Wed Sep 29 01:56:58 2021 -0500 - - HHH-14848 - Move Ant tasks + support from hibernate-core into tooling/hibernate-ant - -commit 998caa56af0a35b5cf8e8ca78e5f77802707e015 -Author: Steve Ebersole -Date: Mon Sep 27 14:07:01 2021 -0500 - - HHH-14848 - Move Ant tasks + support from hibernate-core into tooling/hibernate-ant - -commit c68322df993807a69a75831106c3435351b02678 -Author: Steve Ebersole -Date: Mon Sep 27 12:22:43 2021 -0500 - - HHH-14846 - Drop JMX integration - -commit 8a8a92ca5e0bd266c6772e9cf45156df1b322ebc -Author: Steve Ebersole -Date: Mon Sep 27 13:19:54 2021 -0500 - - HHH-14844 - Drop JACC integration - -commit 986d65a288b29bf49f8b8107d50d11308bb87bbf -Author: Steve Ebersole -Date: Tue Sep 28 19:01:28 2021 -0500 - - HHH-14837 - Move to Jakarta EE - - More settings work - -commit ff4db00aece4a8f9bea694c1893fdb4a21884c65 -Author: Steve Ebersole -Date: Mon Sep 27 12:12:53 2021 -0500 - - HHH-14847 - Deprecate JMX support - -commit 05b2ca3b834dc4df544fb6a6575066c0ae19315c -Author: Andrea Boriero -Date: Tue Sep 28 09:18:50 2021 +0200 - - Rename AvailbaleSetting JAKARTA_DIALECT_DB_VERSION to JAKARTA_HBM2DDL_DB_VERSION and fix its values - -commit 60b3d4ec8f47c76b664590501fef48218adc8ba5 -Author: Andrea Boriero -Date: Tue Sep 28 09:17:17 2021 +0200 - - Add `ASE` to Sybase database names recognition - -commit ba9c3201ebefc84e465223e7297db3aa54a48d50 -Author: Steve Ebersole -Date: Mon Sep 27 12:54:34 2021 -0500 - - HHH-14845 - Deprecate JACC support - -commit e59028fbcf98f769e512c9d9bc0a54b9e90b02ff -Author: Steve Ebersole -Date: Mon Sep 27 12:47:40 2021 -0500 - - HHH-14845 - Deprecate JACC support - -commit 35b951394354870fc5622366c3bda1bf8161fd16 -Author: Steve Ebersole -Date: Mon Sep 27 12:39:26 2021 -0500 - - HHH-14845 - Deprecate JACC support - -commit 694a0e4aed83640c056e6bbdb0cb9e99786eb213 -Author: Sanne Grinovero -Date: Mon Sep 27 22:46:35 2021 +0100 - - HHH-14852 Upgrade GraalVM to version 21.2.0 - -commit 828b96522c630efaae97f8dfb798afce25a67f3d -Author: Steve Ebersole -Date: Mon Sep 27 15:13:33 2021 -0500 - - HHH-14837 - Move to Jakarta EE - - fix references to JPA as Jakarta Persistence - -commit 87e5de74aa7820db9c75f0a5dba0d5d3fccf2c31 -Author: taghizadeh87 <84373927+taghizadeh87@users.noreply.github.com> -Date: Mon Sep 27 18:42:59 2021 +0330 - - Fix typo - -commit 84629e314dbc8ed6adfc4d9fb6d234755da63528 -Author: Steve Ebersole -Date: Mon Sep 27 10:01:54 2021 -0500 - - HHH-14837 - Move to Jakarta EE - - fix-ups from the latest rebase (Bean Validation integration); - still looking into the incompatible class changes problem - -commit f07a36b78fc7f61ffc0ca3207e748d7b58d090d6 -Author: Steve Ebersole -Date: Mon Sep 27 08:35:26 2021 -0500 - - HHH-14837 - Move to Jakarta EE - - fix-ups from the latest rebase - -commit 7bc1d55cddb98340dfa565cb7ebb4cc4ad3971f6 -Author: Steve Ebersole -Date: Mon Sep 27 07:09:29 2021 -0500 - - improved aggregated javadoc generation - -commit e422d913dbb5d1e7f17cb8706c9da1e07f25e4e5 -Author: Steve Ebersole -Date: Fri Sep 24 12:43:26 2021 -0500 - - HHH-14837 - Move to Jakarta EE - - improved support for schema tooling settings - -commit 679a9192030cc1dcb5b4719ff97f50d30b53c915 -Author: Steve Ebersole -Date: Fri Sep 24 11:01:31 2021 -0500 - - HHH-14837 - Move to Jakarta EE - - improved support for schema tooling settings - -commit 3f2d48d7f566dd11ca8dcae74bfa6ef8c52fd7ab -Author: Steve Ebersole -Date: Thu Sep 23 16:34:44 2021 -0500 - - HHH-14837 - Move to Jakarta EE - - migration guide - -commit f7921f536ebb491a4b5dd45b9043d34188f6f479 -Author: Steve Ebersole -Date: Thu Sep 23 15:43:15 2021 -0500 - - HHH-14837 - Move to Jakarta EE - - tests for Jakarta JPA XSDs - -commit a9387033b2f431ac851c4d9964890f7fec09dcb2 -Author: Steve Ebersole -Date: Thu Sep 23 15:01:29 2021 -0500 - - HHH-14837 - Move to Jakarta EE - - - fixups - -commit 47b58f7fa24dfe4ad37480286543bb9b58292d36 -Author: Steve Ebersole -Date: Thu Sep 23 09:49:09 2021 -0500 - - HHH-14837 - Move to Jakarta EE - - - fix ConcreteLike.java from hibernate-jpamodelgen - -commit 995e7d9780c4a4e9198a93f90812ae288269d6ea -Author: Steve Ebersole -Date: Thu Sep 23 08:57:10 2021 -0500 - - HHH-14837 - Move to Jakarta EE - - - fix hibernate-jpamodelgen dependencies - -commit 53a274f7db84191ea588cb9595b05ccaa6b34e1d -Author: Steve Ebersole -Date: Thu Sep 23 07:48:37 2021 -0500 - - HHH-14837 - Move to Jakarta EE - - - prefer `jakarta.persistence.*` settings (*) - - deprecation warnings for `javax.persistence.*` settings (*) - - [*] - not all cases yet; need to discuss - -commit 089a3f86ae6460530c5a91e7e3480cfdc5d78a86 -Author: Steve Ebersole -Date: Wed Sep 22 17:52:06 2021 -0500 - - HHH-14837 - Move to Jakarta EE - - preliminary transformation; - only `javax.persistence.*` settings supported atm - -commit d43b9940b9d5147b4c428ca54e4b85f08fa94df6 -Author: Andrea Boriero -Date: Fri Sep 24 18:23:51 2021 +0200 - - Add hql execution to Statistics - -commit e62b3710a8721182796ca8d7501b4d2b61a32b6f -Author: Andrea Boriero -Date: Fri Sep 24 17:02:58 2021 +0200 - - Improved JdbcSelectExecutorStandardImpl#resolveJdbcValuesSource() method - -commit 4a0351b15764d7ab7b6799bdc2d5772cd3b9a0cd -Author: Andrea Boriero -Date: Fri Sep 24 16:38:27 2021 +0200 - - Improved JdbcSelectExecutorStandardImpl#getResultSize() method - -commit 573d1460465e20319702ff29c60c3fb920be3eee -Author: Andrea Boriero -Date: Fri Sep 24 11:36:31 2021 +0200 - - Removed Dialect#areStringComparisonsCaseInsensitive() method - -commit ca83c6ca7eb1a66db3b1ba8923d247863e0c81a5 -Author: Andrea Boriero -Date: Mon Sep 20 20:24:54 2021 +0200 - - HHH-13140 Criteria API multiselect aliases are not passed through to the JPQL query and they are not available in ResultTransformer - -commit 6cb13ddf0c8197402d5bb7b6f18d94a79b28ff08 -Author: Andrea Boriero -Date: Mon Sep 20 17:50:15 2021 +0200 - - Fix join type for TableGroupJoin created from the Select clause - -commit 504dd2c6b404b3ad4b3256bd493ab7ad9f9e3e03 -Author: Andrea Boriero -Date: Mon Sep 20 17:48:48 2021 +0200 - - Fix AliasToMap converter for JPA Criteria - -commit fcfb2074f2d31c2a977075050b68eb46882811de -Author: Andrea Boriero -Date: Wed Sep 15 09:33:09 2021 +0200 - - Fix TupleElement#getAlias() returning null - -commit 9d131ce69f76a3f8b1527923b9d6d5af234209af -Author: Andrea Boriero -Date: Wed Sep 15 09:31:45 2021 +0200 - - Minor code cleaning - -commit b2aca3c846f2617ba8996f238d971d336411f6d1 -Author: Andrea Boriero -Date: Wed Sep 15 09:31:05 2021 +0200 - - Implemented QueryKey.ParameterBindingsMemento NO_PARAMETER_BINDING_MEMENTO - -commit ac1123be053294f39edf309e9acb5af748d11415 -Author: Andrea Boriero -Date: Wed Sep 15 09:30:16 2021 +0200 - - Fix NPE with cache key - -commit 16f4a10908a71e92ba67a96b5fa83dfa59905930 -Author: Andrea Boriero -Date: Wed Sep 15 09:26:38 2021 +0200 - - Add hql query execution to Statistics - -commit 19802edec139a413db974fe90aa313f0f39ac908 -Author: Andrea Boriero -Date: Wed Sep 15 09:12:23 2021 +0200 - - Re-enabled additional tests - -commit 70c09dfb54cfaa9af58b499ecc34058003c4231c -Author: Andrea Boriero -Date: Fri Sep 24 13:17:25 2021 +0200 - - Fix test failure after merge - -commit 0b9a4706859936bd8e12e705001aefc304823546 -Merge: 340c1b3f61 c6e3bf2ef8 -Author: Andrea Boriero -Date: Fri Sep 24 12:50:56 2021 +0200 - - Merge remote-tracking branch 'upstream/main' into wip/6.0 - -commit c6e3bf2ef868ff81850d46a9d525af9afbbdb563 -Author: Gail Badner -Date: Thu Sep 23 11:47:59 2021 -0700 - - HHH-14835 : More changes to support SchemaMigrator/SchemaValidator using Hibernate Reactive - - Add jira key to test case - -commit 8cecdd3f43796c134688d99b6387d59600e75738 -Author: Andrea Boriero -Date: Mon Aug 30 17:45:57 2021 +0200 - - HHH-14835 : Fix Sybase Connection#getSchema() throws an exception - - (cherry picked from commit aaba4767fe2842c442104dff0a377a0f63ecffdd) - -commit dec331362ce8eda9aa66a7ba98971a302e8ca535 -Author: Gail Badner -Date: Mon Sep 20 22:02:02 2021 -0700 - - HHH-14835 : More changes to support SchemaMigrator/SchemaValidator using Hibernate Reactive - - Changes required for sequences to be created with a default catalog - -commit 340c1b3f615c7fc87b6234c02ba38050afe4e54d -Author: Christian Beikov -Date: Thu Sep 23 15:24:33 2021 +0200 - - HHH-11042 Implement tuple distinct count emulation - -commit 3ecc602852c68dc02a984c6fb4d79268a7bbdc47 -Author: Christian Beikov -Date: Thu Sep 23 00:20:57 2021 +0200 - - Implement tuple count emulation - -commit aa7b5529e908a0d24a4149417fdc2dae1c167c47 -Author: Christian Beikov -Date: Wed Sep 22 23:02:56 2021 +0200 - - Fix determining table groups for fetches and reuse joins for parsed paths. Fix determining correct table group for SqmFrom usages. Fix indexed access for plural paths - -commit 07f6d31d2b4a462eaee453f0bbdb999079807e24 -Author: Christian Beikov -Date: Wed Sep 22 08:41:51 2021 +0200 - - Fix missing table reference issues by translating all SqmRoots and SqmJoins to proper path interpretations - -commit e8d337828b80a52b5470b8484751aeb156cd9398 -Author: Christian Beikov -Date: Wed Sep 22 06:56:48 2021 +0200 - - Fix bidirectional fetching issues - -commit 905227d2ed50f40e27a2870313c63f4f06beb5dd -Author: Christian Beikov -Date: Fri Sep 10 19:08:43 2021 +0200 - - Get rid of unnecessary sql tokens for joins and improve join counting for tests - -commit 582e7f84aaa044643cca9e6e6f6a8e746bf708c4 -Author: Christian Beikov -Date: Fri Sep 10 19:08:00 2021 +0200 - - Implement support for detecting bidirectional attribute name for many-to-one - -commit 3cf0d9f037cf6fb9549bd5ea760a0bb0f44ea701 -Author: Christian Beikov -Date: Fri Sep 10 17:07:01 2021 +0200 - - fixup! Move jpa.enhancement, jpa.graphs, jpa.ops, jpa.orphan, jpa.secondarytable, jpa.transaction, jpa.userguide, jpa.version and query.criteria packages - -commit bc6022459d39b54d074c8e4675fa09620378adea -Author: Christian Beikov -Date: Fri Sep 10 11:56:18 2021 +0200 - - Fix JPA Criteria parameter inference for case when expressions - -commit e59f2b9761463bc49abbb8f211cf49bfe8d74a4e -Author: Christian Beikov -Date: Fri Sep 10 10:10:14 2021 +0200 - - Fix too eager collection fetching, wrong fetch timing determination and `entityAlias = :param` usages - -commit 6096bbdfa13f2e9bf2b3ab7137650d3ec9042f6c -Author: Christian Beikov -Date: Fri Sep 10 10:09:27 2021 +0200 - - Move jpa.enhancement, jpa.graphs, jpa.ops, jpa.orphan, jpa.secondarytable, jpa.transaction, jpa.userguide, jpa.version and query.criteria packages - -commit 5df67d8b43252258ade4c051c602826166378f3c -Author: Jan Schatteman -Date: Wed Sep 22 22:36:20 2021 +0200 - - Move and adapt tests from sql/storedproc - - Signed-off-by: Jan Schatteman - -commit bd2f8271bd26e4eb23fb60f5a0373a646ac7a366 -Author: Steve Ebersole -Date: Thu Sep 23 08:32:46 2021 -0500 - - fix aggregateJavadoc task config - -commit 5b24b171da69b403971eba6878fabad0e96fe1fa -Author: Andrea Boriero -Date: Tue Aug 17 19:10:15 2021 +0200 - - Resolve collection key selection expressions for delayed collection fetches of dynamic fetch builders with the suffixed column alias of the referenced property name - -commit 44babcb880bec14955da7dd0898bebed3b72ab01 -Author: Karel Maesen -Date: Tue Sep 21 09:57:58 2021 +0200 - - HHH-14738 Remove redundant function contribution - -commit b88596df6ac15cf5defd9cec3584a0a58b0c512e -Author: Karel Maesen -Date: Mon Sep 20 21:02:46 2021 +0200 - - HHH-14808 SpatialPredicates use value() method for literal expressions - -commit 9de428ac1af5a0aa141f811909ac9c98eac3db82 -Author: Karel Maesen -Date: Mon Sep 20 19:24:02 2021 +0200 - - HHH-14800 Remove redundant doBindNull() overrides - -commit 3995c644d1feeb4d40856e0e4cd8219c05fc75fb -Author: Karel Maesen -Date: Mon Sep 20 19:01:53 2021 +0200 - - HHH-14800 Implements suggestions from code review - - - set version in deprecated Postgis dialects - - fast path for Contributor resolution - - add TODO label for Ignored tests - -commit cf854c5cfc49659e80e60fd6050eafcd532fbd28 -Author: Karel Maesen -Date: Sat Sep 18 17:37:54 2021 +0200 - - Fix checkstyle errors - -commit 5bae2d81967889065d8bff5e8503a417a4dc804c -Author: Karel Maesen -Date: Sat Sep 4 13:07:23 2021 +0200 - - HHH-14808 Basic SpatialPredicates - -commit 2bdd10389ba028b9d3c146b67295353c95e2e5d7 -Author: Karel Maesen -Date: Sat Aug 28 14:16:56 2021 +0200 - - HHH-14757 Use geolatte's JTSUtils - -commit f72d6045b13c0a6ea3df16eac3761cc814309765 -Author: Karel Maesen -Date: Thu Aug 26 23:45:36 2021 +0200 - - HHH-14738 Add test cases for functions with parameter arguments - - Fix rebase errors - -commit 60d3914769088d32726ef086dc9c700187be66c5 -Author: Karel Maesen -Date: Thu Aug 26 23:10:28 2021 +0200 - - HHH-14738 Refactor common test setup to base class - -commit 331ae9d5c95310124f2b4064ee49b56ed11570cc -Author: Karel Maesen -Date: Thu Aug 26 22:26:37 2021 +0200 - - HHH-14738 Ignore spatial tests for dialects not supported by Spatial - -commit 9316c161c789e9beea1e6b4999cb196ed43e58f1 -Author: Karel Maesen -Date: Thu Aug 26 21:37:06 2021 +0200 - - HHH-14802 Update CockroachDB support for 6 - -commit bc44d65eb3cc241361a17fa9428fd78bd89316d3 -Author: Karel Maesen -Date: Thu Aug 26 18:30:25 2021 +0200 - - HHH-14801 Register alternative function names for backwards compatibility - -commit e185ec8913b1f8b33752384476e73f8d50739783 -Author: Karel Maesen -Date: Wed Aug 25 20:44:23 2021 +0200 - - HHH-14738 Clean up obsolete test support code - -commit ba475866343788ec9f5458d205409274031d10c9 -Author: Karel Maesen -Date: Sat Aug 7 15:36:23 2021 +0200 - - HHH-14801 Register remaining spatial functions for Postgis - - Add more spatial functions - -commit 24c5099eb706c88f1c5cd5211520be4e63782969 -Author: Karel Maesen -Date: Sat Aug 7 14:22:47 2021 +0200 - - HHH-14801 Improve registering functions for Postgis - -commit 35f42528fbe3d0abe82676720b3fc0f14ffbc8c8 -Author: Karel Maesen -Date: Thu Jul 29 19:36:37 2021 +0200 - - HHH-14738 Using DynamicTests to test function/entity combinations - -commit 9251e8bfdc377f9d0ec25dfbe2bbd536a8e66cf6 -Author: Karel Maesen -Date: Wed Jul 28 23:18:58 2021 +0200 - - HHH-14801 Add ServiceRegistry as a parameter to the SqmFunctionDescriptors constructor - -commit 71b197d362e3cdf5ae957961156e82b1eb4c8a86 -Author: Karel Maesen -Date: Mon Jul 26 18:34:40 2021 +0200 - - HHH-14738 Refactor spatial functions integration tests - -commit f5f0ccfdd393a5c42188f553cc611a4d1ecb299e -Author: Karel Maesen -Date: Sat Jul 24 17:48:20 2021 +0200 - - HHH-14800 Use FunctionContributor interface to register spatial functions - -commit 0b9de79a7d2ae5a57e26d8c5bcfc041d72e938e6 -Author: Karel Maesen -Date: Mon Jul 19 22:52:19 2021 +0200 - - HHH-14800 Use TypeContributor to register spatial types - -commit 04491e67754a9be07eb1b220d62e443bd01f0593 -Author: Karel Maesen -Date: Mon Jul 19 21:57:45 2021 +0200 - - HHH-14800 Introduce SpatialTypeContributor - - See discussion #4111 - -commit dcf2a85d2025f8e13f3289532730fabd9cdec32b -Author: Karel Maesen -Date: Tue Apr 13 18:13:30 2021 +0200 - - HHH-14800 Prepare refactoring hibernate-spatial - - In preparation for the design as discussed in #4111: - - Fixex compile errors - - Deprecates the SpatialDialects - - Removes the matrix test configuration (obsolete) - - Removes support for Criteria - -commit 61d1891f5503b1e6737fa873aed2cc8e47203b3b -Author: Andrea Boriero -Date: Tue Sep 21 09:11:49 2021 +0200 - - Re-enabled additional tests - -commit e466c520029ac44da3191f379c0ae86592b6c661 -Merge: 9dcca5f213 ec841c0d6c -Author: Andrea Boriero -Date: Tue Sep 21 08:46:04 2021 +0200 - - Merge remote-tracking branch 'upstream/main' into wip/6.0 - -commit ec841c0d6c97c03b9f0877fc924e462e3b9ec8d2 -Author: Hibernate-CI -Date: Mon Sep 20 22:45:22 2021 +0000 - - 5.6.0-SNAPSHOT - -commit 1321725abaf7cd19b214b11b8803c443f449b456 (tag: 5.6.0.Beta2) -Author: Hibernate-CI -Date: Mon Sep 20 22:40:29 2021 +0000 - - 5.6.0.Beta2 - -commit 8e744f0dc2a9439709c3a11bcfa588eb6310f6f7 -Author: Sanne Grinovero -Date: Mon Sep 20 23:03:52 2021 +0100 - - HHH-14833 Upgrade to Byte Buddy 1.11.16 - -commit 99f027166d285cc48a33eb87f48530040f3def8a -Author: Yanming Zhou -Date: Fri Oct 23 15:08:36 2020 +0800 - - HHH-4369 Introduce @Comment for comment on column - -commit 5ffed50f1fa5cfbbf09b8a1c111f6df73d1d8eca -Author: Andrea Boriero -Date: Fri Sep 17 13:14:39 2021 +0200 - - HHH-14826 Fix failure of o.h.test.onetoone.cache.OneToOneCacheTest#OneToOneCacheByForeignKey() - -commit 340b9012d93d94d8becc21cc71fd99554f283705 -Author: Andrea Boriero -Date: Fri Sep 17 13:07:04 2021 +0200 - - HHH-14826 Extract issue specific tests from OneToOneCacheTest - -commit a652822ff5f5d8d533acb9b7fb6eea867fc4e456 -Author: Amit Mendapara -Date: Fri Sep 17 15:32:50 2021 +0530 - - HHH-14826 Fix regression caused by one-to-one L2 cache support - -commit b15433a49c3a443023bf75098c174e890d64bb27 -Author: Amit Mendapara -Date: Fri Sep 17 15:31:45 2021 +0530 - - HHH-14826 Add test to check regression caused by OneToOne cache support - -commit 5e542b16cb22acac3a3f6357d49f413ad16270e9 -Author: Yoann Rodière -Date: Mon Sep 20 16:47:32 2021 +0200 - - HHH-14828 Remove final modifier from enhanced fields - - We need to remove the final modifier if we want to address the possibility - of that field being lazy. - -commit d35b592762fe2b1ff93e5362598acba586fa801b -Author: Yoann Rodière -Date: Fri Sep 17 17:35:19 2021 +0200 - - HHH-14828 Do not enhance final field write access - -commit 0b80bb73c9ecf4d18b99547937f8fcc86d48a548 -Author: Yoann Rodière -Date: Fri Sep 17 16:48:23 2021 +0200 - - HHH-14828 Enable bytecode enhancement logging in core tests - -commit 1d3f9183e6422c9535c4c3612a932c9dd37fc7bb -Author: Yoann Rodière -Date: Fri Sep 17 16:47:49 2021 +0200 - - HHH-14828 Fix incorrect logging in FieldAccessEnhancer - -commit e0286ba4b4a1a34c37292ff9d61ec546245e351f -Author: Yoann Rodière -Date: Fri Sep 17 15:20:44 2021 +0200 - - HHH-14828 Test bytecode enhancement on entities/embeddables with a final field - -commit 9dcca5f213cc77f8e973e1b0b3b65a40782f5dc0 -Author: Andrea Boriero -Date: Fri Sep 17 15:34:46 2021 +0200 - - Fix issues after merge main branch - -commit 6519b3bfcdf092fd15bea0b71780155b6089c3b8 -Merge: 52c932cc1c d17861d928 -Author: Andrea Boriero -Date: Fri Sep 17 15:33:08 2021 +0200 - - Merge remote-tracking branch 'upstream/main' into wip/6.0 - -commit 52c932cc1c51f5866e6bb84f14e61120e66228fa -Merge: 83e5ba0450 ad6af3af7d -Author: Andrea Boriero -Date: Fri Sep 17 11:52:20 2021 +0200 - - Merge remote-tracking branch 'upstream/main' into wip/6.0 - -commit d17861d928973ad8302391938e0987ea8a5d6673 -Author: Gail Badner -Date: Mon Aug 30 18:16:40 2021 -0700 - - HHH-14794 : More changes to support SchemaMigrator/SchemaValidator using Hibernate Reactive - - Changes required by SQL Server - -commit 24b9605c5201a9d4217d3454627fd7a74ab02354 -Author: ENTERPRISE-X64\bertiepinnock -Date: Sat Sep 11 00:08:55 2021 +0100 - - HHH-13661 | Added case to PostgreSQL Dialect to map client operation cancellation to QueryTimeoutException - -commit ad6af3af7d022a03a578e8806cf1acba2725810e -Author: Nathan Xu -Date: Thu Jan 21 15:21:01 2021 -0500 - - HHH-14413 fix issue that EntityUpdateAction increments version despite veto on update - -commit 83e5ba04502509e0e0e4c6bf41e743bf734f70cc -Author: Andrea Boriero -Date: Thu Sep 16 16:57:58 2021 +0200 - - Re-enabled additional test - -commit 7b6ee23f1903c4ea32da84406e95df6a52d460b5 -Merge: 793c8096ac 86ad83f0b5 -Author: Andrea Boriero -Date: Thu Sep 16 16:49:52 2021 +0200 - - Merge remote-tracking branch 'upstream/main' into wip/6.0 - -commit 86ad83f0b5b582bcf705d934d51921818cdc6b44 -Author: Yoann Rodière -Date: Thu Sep 16 10:51:31 2021 +0200 - - HHH-14827 Fix @AssociationOverride/@PrimaryKeyJoinColumn at type level being ignored when also using orm.xml - -commit 70d7ac6ecdb8373002f88ff2824fbe22d253a244 -Author: Yoann Rodière -Date: Thu Sep 16 10:50:56 2021 +0200 - - HHH-14827 Fix @AttributeOverride at type level being ignored when also using orm.xml - -commit 170821c135ccd3b572b8208340f464d66fba7f3f -Author: Yoann Rodière -Date: Thu Sep 16 10:40:55 2021 +0200 - - HHH-14827 Test using @AttributeOverride and also an orm.xml file - -commit 793c8096ac2e1b0a01af5bb914f62d6bf01478cf -Author: Andrea Boriero -Date: Wed Sep 15 18:52:40 2021 +0200 - - Fix SQLServer test failure - -commit 3126e797847b79dc81664dee5bf3a8c59a7a7aee -Merge: 3eaafaf2f3 f6a03cf771 -Author: Andrea Boriero -Date: Wed Sep 15 17:02:55 2021 +0200 - - Merge remote-tracking branch 'upstream/main' into wip/6.0 - -commit f6a03cf7715439ba09bac42afc5380414c545517 -Author: Rafael Lillo -Date: Sun Sep 12 20:28:00 2021 +0200 - - HHH-5249 Add more details MappingException - -commit caa84d3ad9baefb34514ad378d435331266811b5 -Author: Knut Wannheden -Date: Mon Sep 13 14:49:45 2021 +0200 - - HHH-13999 Support SQL Server 2016 - - SQL Server 2016 (13.x) and later support the `if exists` clause for most `drop` DDL statements. The new `SQLServer2016Dialect` dialect accounts for this and offers the advantage that no error messages get logged when using `hibernate.hbm2ddl.auto=create-drop`. - -commit 0cbf0e5bf849ef6554a8f5afd39519af6ddf48ae -Author: Jan Schatteman -Date: Tue Sep 14 00:25:50 2021 +0200 - - Minor improvement to the previous backport commit - - Signed-off-by: Jan Schatteman - -commit 3eaafaf2f35c5921f909a5b0d01d53bdacd7515c -Author: Krzysztof Debski -Date: Tue Jul 27 19:16:11 2021 +0200 - - HHH-11755 Drop "Serializable" from the Event Listener interfaces - -commit 0af8755949c52348ba25a1f8763c34652bbeaa18 -Author: Christian Beikov -Date: Thu Sep 9 15:53:14 2021 +0200 - - Backport of changes from 6314395edf05117f374a8de5e5e506840a337ebb on - wip/6.0 (Fix connection leaks by properly closing service registries) - -commit 6af44dd6cfa9037917b501123a00ac023dc7b95c -Author: Steve Ebersole -Date: Fri Sep 10 17:47:31 2021 -0500 - - fix JCache tests - -commit f24b91da2a789b0cb5a3b292b16b2621ee40916a -Author: boris-unckel -Date: Thu Jul 29 15:19:17 2021 +0200 - - HHH-14763 Avoid suppress exceptions in try/finally - -commit 6314395edf05117f374a8de5e5e506840a337ebb -Author: Christian Beikov -Date: Thu Sep 9 15:53:14 2021 +0200 - - Fix connection leaks by properly closing service registries - -commit 77c1370e45340cc4f71c2970c1252eb273cfdf54 -Author: Christian Beikov -Date: Tue Sep 7 01:12:18 2021 +0200 - - HHH-14642, HHH-13717 Various JPA Criteria related fixes - - * Get rid of unnecessary whitespace and optional keywords in generated SQL - * Handle some type inference related issues with some databases requiring to render casted parameters in some situations - * Ensure SQM model is fully serializable - * Ensure JPA Criteria throws expected exceptions - * Make sure JPA Criteria implementations work properly - * Move jpa.test.callback and jpa.test.criteria packages - * Improve the reuse of SqmPath instances - * Get rid of many raw-types related warnings - * Make Predicate extend Expression and handle SQL rendering/emulation - * Support fetching SqmTuple as array - * Implement treat operator support - -commit a216a23ae4e0b812ec3bb460e3b6c57cc13407fd -Author: Yoann Rodière -Date: Wed Sep 8 15:24:05 2021 +0200 - - HHH-14814 Test delete HQL queries with function calls - -commit 6866a1e77b87ee02670df1e0f4da2703e7cee7df -Author: Steve Ebersole -Date: Wed Sep 8 13:30:48 2021 -0500 - - disable local build-cache for CI jobs - -commit 304af1c3a6d252b9651a77f9f0413a4ff5cbf12b -Author: Andrea Boriero -Date: Wed Sep 8 17:05:34 2021 +0200 - - Fix Oracle test failure - -commit e2a1ae27d7901b75baf475fd5ce6fed3f8797358 -Author: Andrea Boriero -Date: Wed Sep 8 11:39:07 2021 +0200 - - Fix Oracle identifier is too long test failure - -commit 7275f160a7674445de580920e7af34f02ebd61e4 -Author: Andrea Boriero -Date: Wed Sep 8 09:28:12 2021 +0200 - - Re-enabled additional tests - -commit 0c96fd75af1a53533b47787e3de9f2f2af6154aa -Author: Andrea Boriero -Date: Wed Sep 8 09:14:28 2021 +0200 - - Re-enabled additional tests - -commit b2b81973887f0d2f0e358c4aa8950b8b4c5af63c -Author: Andrea Boriero -Date: Tue Sep 7 19:02:56 2021 +0200 - - Migrate test to JUnit 5 - -commit 8ce2098deb34621cc5b51e28fea065a1ff832fe1 -Author: Gavin King -Date: Tue Sep 7 15:04:57 2021 +0200 - - test for filtering @OneToMany associations by discriminator - - see https://github.com/eclipse-ee4j/jpa-api/issues/39#issuecomment-830112571 - -commit 3bc890dc48dd6eb6dec22f6448b920fb467d9160 -Merge: 236e901cd1 e0d262cc3f -Author: Andrea Boriero -Date: Tue Sep 7 17:34:40 2021 +0200 - - Merge branch 'main' into wip/6.0_merge_main - -commit 236e901cd1583de36d751967199057ed7fac93c0 -Merge: e07e6d4105 a666ac0dac -Author: Andrea Boriero -Date: Tue Sep 7 17:22:42 2021 +0200 - - Merge remote-tracking branch 'upstream/main' into wip/6.0 - -commit e0d262cc3fbdea8507f834c09f408d1bade189af -Author: Arkadiusz Biczewski -Date: Mon Sep 6 15:59:47 2021 +0200 - - HHH-14813 Update DB2 dialect with bind parameters limit - - Provide allowed parameters limit for DB2 queries based on official documentation: https://www.ibm.com/docs/en/db2/11.5?topic=sql-xml-limits - -commit e07e6d4105d807eb81348dacb1fb663a9984916d -Author: Andrea Boriero -Date: Mon Aug 23 14:41:18 2021 +0200 - - Re-enabled additional tests - -commit 8dbac8d44c601ec6c953426d6cbbc2069edc75c5 -Author: Andrea Boriero -Date: Thu Aug 19 11:16:16 2021 +0200 - - Re-enabled additional tests - -commit 05ea5d2c79f48ab60f39e139da8ac60c2ee822c7 -Author: Andrea Boriero -Date: Wed Aug 18 11:16:47 2021 +0200 - - Re-enabled additional tests - -commit ccb590caf400f25031131f2193a17bd617fc6783 -Author: Andrea Boriero -Date: Wed Aug 18 10:46:40 2021 +0200 - - Re-enabled additional tests - -commit 6f32391ed7dbc0256c2187f676630c6a3d760cb8 -Author: Andrea Boriero -Date: Wed Aug 18 10:15:03 2021 +0200 - - Re-enabled additional tests - -commit 8d6ada33572e96dc2ec274c8a8e4304b6cc29e1c -Author: Andrea Boriero -Date: Mon Aug 16 23:01:04 2021 +0200 - - Re-enabled additional tests - -commit 94c4bcf66fcc01b8164a175893cdb30bd4c141a5 -Author: Andrea Boriero -Date: Mon Aug 16 22:31:37 2021 +0200 - - Re-enabled additional tests - -commit 4563c73abb0cdc5ac48700c50052151825c1fca2 -Author: Andrea Boriero -Date: Mon Aug 16 17:48:11 2021 +0200 - - Fix final attributes getter and setter methods log Could not create proxy factory instead of failing SF creation - -commit 7d4df4a01b6549aa81f6f85df9708fc59dab469e -Author: Andrea Boriero -Date: Mon Aug 16 16:57:33 2021 +0200 - - Re-enabled additional tests - -commit a666ac0dac9450c4f0c99bcad549edf9b996a94a -Author: rmartinc -Date: Thu Sep 2 10:55:40 2021 +0200 - - HHH-14796 Cannot replace an existing JPQL NamedQuery with a native NamedQuery - -commit 971a47d15d8ab23064de0689d7707b4b3b288a0a -Author: Gavin King -Date: Sun Sep 5 14:08:23 2021 +0200 - - expose two operations on EntityType for use by Hibernate Reactive - - see https://github.com/hibernate/hibernate-reactive/pull/954 - -commit 3810727f5d4dbd6c0f4e8b8c84a1ef2dc1377ce2 -Author: Yoann Rodière -Date: Mon Sep 6 11:30:34 2021 +0200 - - HHH-14811 Throw LazyInitializationException on lazy-loading an association on a deleted entity with bytecode enhancement - -commit 30a5acf74115aabeb9470094a9734ee565787807 -Author: Yoann Rodière -Date: Mon Sep 6 11:30:09 2021 +0200 - - HHH-14811 Test loading a lazy association on a deleted entity with bytecode enhancement - -commit 2cbcf152df8a9ed28091ca74674961ee0f9fb0c3 -Author: Sanne Grinovero -Date: Mon Sep 6 10:28:27 2021 +0100 - - HHH-14812 Upgrade integration tests to use Oracle JDBC driver v 21.3.0.0 - -commit 6efb29e98e0289551bdf1ba4de2929a16dd4c0d1 -Merge: e929ac94ce 3edad14c18 -Author: Andrea Boriero -Date: Tue Sep 7 09:36:49 2021 +0200 - - Merge remote-tracking branch 'upstream/main' into wip/6.0 - -commit e929ac94cea12fa464a06d87ee7d825908ec2a17 -Author: Gavin King -Date: Mon Sep 6 15:07:03 2021 +0200 - - removed unused code path from generateInsertString() - - as suggested in the TODO - -commit d1806c5e92d744360abe9dbb6f24b10081f7fb5b -Author: Gavin King -Date: Mon Sep 6 13:04:45 2021 +0200 - - insert with @DynamicInsert should use generateIdentityInsertString() - - see the comment in generateInsertString() - -commit 3ae605731134e784c907e10f9a543b42f8281f6a -Author: Jan Schatteman -Date: Tue Aug 31 22:51:32 2021 +0200 - - Fixed and reorganized tests in hibernate-jcache - - Signed-off-by: Jan Schatteman - -commit 3edad14c181dada98606119a9e635a2ba88b1159 -Author: Karel Maesen -Date: Sat Aug 28 14:16:56 2021 +0200 - - HHH-14757 Use geolatte's JTSUtils - -commit fe1f89d75453f0e3f80328013735894537050276 -Author: Karel Maesen -Date: Sat Aug 28 13:58:39 2021 +0200 - - HHH-14633 Upgrade geolatte-geom to 1.8.2 - -commit 60e97bcfca949aa6abcabca892885d775b085c6f -Author: Steve Ebersole -Date: Thu Sep 2 14:02:46 2021 -0500 - - Allow for PU jar-file entries as relative file paths (intended for testing) - -commit dd6efa509b7bf6c948272ecc52049cc7052a5801 -Author: Christian Beikov -Date: Thu Sep 2 13:08:58 2021 +0200 - - Introduce internal init_sql config and by default enable ansinull for Sybase ASE - -commit 9e4e9ce0d5d7d36f504732443e80f0e2161079ac -Author: Christian Beikov -Date: Thu Sep 2 13:07:40 2021 +0200 - - Determine ansinull setting for Sybase ASE and implement proper comparison handling when it is off - -commit c71171a762e0245168269629918a6afda28cb09d -Author: Christian Beikov -Date: Thu Sep 2 13:06:34 2021 +0200 - - fixup! Ignore some tests that run into HSQLDB bugs - -commit ec2b1c67560f7a50cae12bc803ba56364405b07e -Author: Christian Beikov -Date: Wed Sep 1 21:26:35 2021 +0200 - - Fix test for oracle - -commit ea099e7e85530a80ecfe69f3b56941d4f14c68c5 -Author: Christian Beikov -Date: Wed Sep 1 21:19:25 2021 +0200 - - Fix some query caching issue related to pagination parameters and a small case sensitivity issue - -commit 59fbdb9039906242e16284063ee1177bd4f0f1eb -Author: Christian Beikov -Date: Wed Sep 1 20:58:13 2021 +0200 - - Treat BIT if reported by ResultSetMetaData like BOOLEAN - -commit c9a526999a6ae2139b8f73c179c9860512330cd2 -Author: Christian Beikov -Date: Wed Sep 1 20:57:34 2021 +0200 - - Ignore some tests that run into HSQLDB bugs - -commit 99f4363a984226dccfa7c9dde9c82663743f1acb -Author: Christian Beikov -Date: Wed Sep 1 19:49:54 2021 +0200 - - Switch to junit 5 platform for hibernate-enhance-maven-plugin module - -commit 0b0d9339a6936c262b76138ce45b92a0901bbec5 -Author: Christian Beikov -Date: Wed Sep 1 19:48:37 2021 +0200 - - Switch to old junit platform for hibernate-enhance-maven-plugin module - -commit 65016aaf4215ef89e8b79538f8f41de585c57d65 -Author: Christian Beikov -Date: Wed Sep 1 18:15:14 2021 +0200 - - Implement envers order fragment support by introducing an internal sqm function and re-enable all envers tests - -commit 04ac8b13c3ad2021e70402b5db00dc4c2e74e17f -Author: Christian Beikov -Date: Wed Sep 1 18:14:00 2021 +0200 - - Fix some envers tests - -commit 062c3cd724203f6a781203bcbde1782cc1ca3362 -Author: Christian Beikov -Date: Wed Sep 1 18:09:55 2021 +0200 - - Make use of distinct predicate in envers - -commit 86000e9f22009f279e332ab96c56f3869fecf6a7 -Author: Christian Beikov -Date: Wed Sep 1 18:08:51 2021 +0200 - - Capture whether a foreign key is constrained and allow skipping the foreign key access optimization explicitly - -commit f23ecfc58e17e4e7b0e0c67ce35bfd6f65052e27 -Author: Christian Beikov -Date: Wed Sep 1 18:06:16 2021 +0200 - - Implement type name preserving for envers and properly escape string values when transforming to literals - -commit acc5d0d977b240efddd7f9cf4d6bf118285bb700 -Author: Christian Beikov -Date: Wed Sep 1 18:03:28 2021 +0200 - - Re-implement nested property access in getPropertyValue - -commit c16731d14a3c3188a4797f3ac2c4d7ea6d143cfb -Author: Christian Beikov -Date: Wed Sep 1 18:02:42 2021 +0200 - - Cleanup docs, implement appendHqlString for DiscriminatorSqmPath and fix MapMember type - -commit 76bfbccbe666c5f2599ecc0af0ff44c3fe6a3db4 -Author: Christian Beikov -Date: Wed Sep 1 18:00:38 2021 +0200 - - Fix issues with parameterized user type by restoring what Hibernate 5 did - -commit f2598d70b976d88f07773f3a222e0fc99452f294 -Author: Christian Beikov -Date: Wed Sep 1 17:58:44 2021 +0200 - - Fix secondary table join component ordering issue - -commit 20d09fafe4d89f42bef28ef8b3e6810678823533 -Author: Andrea Boriero -Date: Tue Aug 24 18:59:58 2021 +0200 - - Throw Mapping exception when multiple component for the same java class has different property mapping - -commit bf57f31a8fa442d268eedbcf6802333932964c0d -Author: Jan Schatteman -Date: Mon Aug 9 17:25:26 2021 +0200 - - Move some tests from test.annotations to orm.test.annotations - - Signed-off-by: Jan Schatteman - -commit a9725f4fca43fbceed6d835e4acede39ac6ab3e6 -Author: Andrea Boriero -Date: Tue Aug 31 14:52:37 2021 +0200 - - Re-enabled additional envers tests - -commit c223ea16cb0bb0278a227850151602ff6e34a643 -Author: Andrea Boriero -Date: Tue Aug 31 14:11:09 2021 +0200 - - Fix Sybase issue storing negative values for Byte attributes - -commit f3ff509095935112c3207a3741f347e92697c93f -Author: Andrea Boriero -Date: Mon Aug 30 15:59:22 2021 +0200 - - Fix resolveMappingExpressable for SqmFieldLiteral - -commit 118b160b0266b8f672c59d92f92fb264d0e5733e -Author: Christian Beikov -Date: Tue Aug 31 13:45:53 2021 +0200 - - Introduce special str function implementation for T-SQL - -commit b4a82f0854033f8de17cb669882efc508f6558e7 -Author: Christian Beikov -Date: Tue Aug 31 12:54:01 2021 +0200 - - Introduce TupleType for modelling structural types - -commit 1a3629a5710ddd05842ff2a3678dbed722a8b0f6 -Author: Christian Beikov -Date: Tue Aug 31 10:06:37 2021 +0200 - - Fix some tests and config. Enable all documentation tests. Add profile for PG13 - -commit bf79ff6cfd45d86bd02be8b9271b10f8854d5051 -Author: Andrea Boriero -Date: Mon Aug 30 16:30:26 2021 +0200 - - Fix Sybase failure - -commit bb7b524e403b710d617cf022ef8e1aa02783df00 -Author: Andrea Boriero -Date: Mon Aug 30 09:13:12 2021 +0200 - - Re-enabled additional tests - -commit 6f60cd8918017d96b15e793dd202d096142c0f56 -Author: Steve Ebersole -Date: Mon Aug 30 09:27:19 2021 -0500 - - improve discriminator handling - - - use fetch/result as the distinction for whether to select Class / entity-name or the "underlying type" value for discriminator. The only time we'd have a DomainResult for the discriminator is for Query where the type is selected; all other times want the underlying type - -commit aaba4767fe2842c442104dff0a377a0f63ecffdd -Author: Andrea Boriero -Date: Mon Aug 30 17:45:57 2021 +0200 - - Fix Sybase Connection#getSchema() throws an exception - -commit c01734adcac9f393cb040fb19186affb8ee6fc1e -Author: Christian Beikov -Date: Mon Aug 30 15:01:58 2021 +0200 - - Rely on fetch of version attribute mapping instead of creating domain result for version mapping for entity initializers to allow overriding the selection expression - -commit 58440ed42d71ecaa902d0128b3c3a6c9c86e7feb -Author: Christian Beikov -Date: Mon Aug 30 14:59:11 2021 +0200 - - Fix failing EmbeddableOverrideTest on old Oracle versions due to too long identifier - -commit 75d2ada4d8f0a16acb78745ae4655ed8359d3f16 -Author: Christian Beikov -Date: Tue Aug 17 18:30:31 2021 +0200 - - Fix component and foreign- as well as primary-key properties/columns ordering - -commit cdeb95a4d5fead6e7fb4d0a78ad6797017b0c818 -Merge: 3da7de2bce ae80deb63c -Author: Andrea Boriero -Date: Mon Aug 30 14:07:19 2021 +0200 - - Merge remote-tracking branch 'upstream/main' into wip/6.0 - -commit ae80deb63c4150552b255ec15bb679db95aec0b6 -Author: Sanne Grinovero -Date: Fri Aug 27 15:22:59 2021 +0100 - - Upgrade the Migration Guide for 5.6 - -commit 5e4b3bd32173b685c3a6c57daf18f5ddcfef3793 -Author: Hibernate-CI -Date: Fri Aug 27 09:39:27 2021 +0000 - - 5.6.0-SNAPSHOT - -commit 8f3cd7476d667f32c435de08c98029c187a22fa3 (tag: 5.6.0.Beta1) -Author: Hibernate-CI -Date: Fri Aug 27 09:34:52 2021 +0000 - - 5.6.0.Beta1 - -commit 3da7de2bceec91f0ddf67269b970657f83dcd718 -Author: Steve Ebersole -Date: Thu Aug 26 12:18:15 2021 -0500 - - temporarily re-disable hibernate-spatial - -commit 84a4938a527e4d32e5fdff13de793a287264bf11 -Author: Steve Ebersole -Date: Thu Aug 26 11:42:39 2021 -0500 - - Jenkinsfile - hibernate-spatial - -commit d1ab98df85a06f0b678d4bc7a22d41b51c0b01d5 -Author: Steve Ebersole -Date: Thu Aug 26 11:36:51 2021 -0500 - - fix Test tasks in terms of Gradle task caching - -commit 476ea9230ee2c6ce60c7c3166a06912c2d0bdc6f -Author: Steve Ebersole -Date: Thu Aug 26 09:43:33 2021 -0500 - - re-enable `hibernate-spatial` - -commit 9267c5e6a64f9f1d128af219230ec58b6d4d42ab -Author: Sanne Grinovero -Date: Wed Aug 25 16:11:38 2021 +0100 - - HHH-14792 Remove support for bytecode enhancement via Javassist - -commit a70b99452649bed57804adef8455add8f349327d -Author: Gail Badner -Date: Mon Aug 16 18:18:01 2021 -0700 - - HHH-14744 : Refactor contextual information for SchemaManagementTool to be more easily extended by Hibernate Reactive - - 1. Add CockroachDB192Dialect#getNameQualifierSupport and #buildIdentifierHelper. - 2. Change semantics for AbstractInformationExtractorImpl#processIndexInfoResultSet - to be more friendly to subclasses. - -commit f4f4d49da0de10b96cb52829de2315722fb148eb -Author: Gail Badner -Date: Mon Aug 16 10:40:22 2021 -0700 - - HHH-14744 : Refactor contextual information for SchemaManagementTool to be more easily extended by Hibernate Reactive - - Add MySQLDialect#getNameQualifierSupport - -commit b17a46cbd575871708e832458c9b02a9470b7b16 -Author: Gail Badner -Date: Thu Aug 12 19:38:18 2021 -0700 - - HHH-14744 : Refactor contextual information for SchemaManagementTool to be more easily extended by Hibernate Reactive - - Remove SequenceInformationExtractorPostgresSQLDatabaseImpl and PostgreSQL10Dialect#getSequenceInformationExtractor - -commit 352eb2fae16ec614d50da59fd52514b2a20186a1 -Author: Gail Badner -Date: Thu Aug 12 18:47:51 2021 -0700 - - HHH-14744 : HHH-14744 : Refactor contextual information for SchemaManagementTool to be more easily extended by Hibernate Reactive - - Move methods from PostgreSQL10Dialect into PostgreSQL81Dialect; remove @GeneratedValue from SchemaUpdateTest - -commit 3720e5fac4ca798d94ab736c88f85a60f501be5a -Author: Gail Badner -Date: Wed Aug 4 23:40:40 2021 -0700 - - HHH-14744 : HHH-14744 : Refactor contextual information for SchemaManagementTool to be more easily extended by Hibernate Reactive - - Remove PostgreSQL10Dialect#buildIdentifierHelper since it is no longer needed. - -commit 42b8be78520b6a44b99e102dd1f3c7fdc1c31fbb -Author: Gail Badner -Date: Tue Aug 3 16:58:35 2021 -0700 - - HHH-14744 : Refactor contextual information for SchemaManagementTool to be more easily extended by Hibernate Reactive - - Correct specifications for row order of some ResultSets. - -commit 95ef2ae41da28ad0629ca412868f3d06547b336c -Author: Gail Badner -Date: Mon Aug 2 21:48:58 2021 -0700 - - HHH-14744 : Refactor contextual information for SchemaManagementTool to be more easily extended by Hibernate Reactive - - Add Javadoc and other minor changes to make it easier to review - -commit 8aae155c50fa3e26daa59be41ab2c8a05fb57d72 -Author: Gail Badner -Date: Thu Jul 29 14:08:30 2021 -0700 - - HHH-14744 : Refactor contextual information for SchemaManagementTool to be more easily extended by Hibernate Reactive - - Move new methods out of SchemaManagementTool and into ExtractionTool - -commit 800436ee88da1892a2df9f7b6e47e152e0bfa52e -Author: Gail Badner -Date: Fri Jul 23 17:35:43 2021 -0700 - - HHH-14744 : Checkstyle fixes - -commit 4bb3de09a1af8b9e237e222f20f4f807b8511d88 -Author: Gail Badner -Date: Fri Jun 11 12:09:35 2021 -0700 - - HHH-14744 : Refactor contextual information for SchemaManagementTool to be more easily extended by Hibernate Reactive - - HHH-14744 : Restore databases/pgsql/resources/hibernate.properties and gradle/databases.gradle - -commit a083481c5b8d795c20c8a0a4892406351e7a46b1 -Author: Hibernate-CI -Date: Wed Aug 25 14:07:42 2021 +0000 - - 5.6.0-SNAPSHOT - -commit 180af749c6a9d4febaddad752ceb331c6044d601 (tag: 5.5.7) -Author: Hibernate-CI -Date: Wed Aug 25 14:02:51 2021 +0000 - - 5.5.7.Final - -commit 39ee0236bef5ed81460fb2e8ec6df60291f8a08a -Author: Andrea Boriero -Date: Tue Aug 24 13:06:36 2021 +0200 - - Fix problem with DB2, PostgerSQL with CTE table names for quoted tables - -commit 3f87ed17eebc6edac4130256c07edbbb779d6e8e -Author: Andrea Boriero -Date: Tue Aug 24 11:58:38 2021 +0200 - - Re-enabled additional tests - -commit 2622ce70d2ae43235ee677474265b3a757263069 -Author: Andrea Boriero -Date: Mon Aug 23 19:10:50 2021 +0200 - - Re-enabled envers tests - -commit a8201bacdb6772ee15c48f55a3404b082f6711a6 -Author: Andrea Boriero -Date: Tue Aug 24 09:45:10 2021 +0200 - - Fix Sybase failing test - -commit 718d1e4380802759ac295ad680fc231eb19ec5fc -Author: Andrea Boriero -Date: Tue Aug 24 08:47:53 2021 +0200 - - Fix compilation errors - -commit dbed6112c8b22b6aeebf640361b15f7a0a3a464e -Author: Steve Ebersole -Date: Mon Aug 23 19:21:19 2021 -0500 - - test enablement - org.hibernate.query package - -commit b7bbbcc19cf859d11d26c4824997c5653b793a3d -Author: Steve Ebersole -Date: Mon Aug 23 17:51:32 2021 -0500 - - Query hints - native query synchronized spaces - - + cleaned up unused contracts in `org.hibernate.query.sql` - -commit bc4b0c9d0868fe5f346c7abd13173464f54aa6ac -Author: Steve Ebersole -Date: Mon Aug 23 17:42:27 2021 -0500 - - Query hints - native query synchronized spaces - - + cleaned up unused contracts in `org.hibernate.query.sql` - -commit 0c674deda5eb59ef68c921e786447bddde55f52e -Author: Steve Ebersole -Date: Mon Aug 23 13:40:03 2021 -0500 - - Query hints - - + dropped `AbstractProducedQuery` (no subclasses) - -commit 397ca4e4a0a2ab18a1b73e0ff8b30d2e2e2dd6f9 -Author: Andrea Boriero -Date: Mon Aug 23 17:47:52 2021 +0200 - - Re-enabled envers tests - -commit 64c331150bbcebd3c205641f311ead86f68195a0 -Author: Andrea Boriero -Date: Mon Aug 23 17:23:12 2021 +0200 - - Re-enabled additional documentation tests - -commit f507c3a00ea2842a78c75878fa9624a6a521b380 -Author: Andrea Boriero -Date: Mon Aug 23 16:25:41 2021 +0200 - - Re-enabled envers tests - -commit 83fba3064f373aef561e441be238c1a7b43a15ea -Author: Andrea Boriero -Date: Mon Aug 23 15:38:03 2021 +0200 - - Re-enabled envers tests - -commit 8121b5daa34f1caba8f9edf9db653e0f38d09162 -Author: Andrea Boriero -Date: Mon Aug 23 15:34:51 2021 +0200 - - Re-enabled envers tests - -commit 6f052f035ef8f2aaab38f2a505b288c251f19bab -Author: Andrea Boriero -Date: Mon Aug 23 15:33:52 2021 +0200 - - Re-enabled envers tests - -commit 6011421fb76a51e0d7bd8e9f4fea68f0f4eeec3d -Merge: db3346962a 6e6b6eb0ae -Author: Andrea Boriero -Date: Mon Aug 23 15:05:28 2021 +0200 - - Merge remote-tracking branch 'upstream/main' into wip/6.0 - -commit db3346962ac5d9c3cf31946a283d0acba7f19dd5 -Author: boris-unckel -Date: Thu Jul 29 15:57:54 2021 +0200 - - HHH-14764 Testsuite: AssertionErrors must not be caught - - Fixes https://hibernate.atlassian.net/browse/HHH-14764 - -commit ebb91e44c3a9550e6c86cc8ea1a4747d53802714 -Author: Steve Ebersole -Date: Sun Aug 22 11:41:22 2021 -0500 - - fixes for Antlr tasks - -commit 82856070ecbbee47f112d978953b4adf8a8dd01a -Author: Steve Ebersole -Date: Fri Aug 20 18:48:14 2021 -0500 - - discriminator work - - - Handle discriminator as Fetch for entity ResultGraphNodes. This allows us to make the distinction about whether to handle the discriminator as `Class` or as its "underlying" type when selecting it. Fetches return the underlying type. DomainResults return `Class`, or String for entity-named entity mappings - -commit 6803c09645cc3a0752d2f1b04d12d34edf5df876 -Author: Steve Ebersole -Date: Fri Aug 20 18:27:46 2021 -0500 - - fixes for Antlr tasks - -commit 524b2982cf9d5fb6ed4f5883395cc10ba28026ca -Author: Steve Ebersole -Date: Fri Aug 20 14:26:40 2021 -0500 - - discriminator work - - - Handle discriminator as Fetch for entity ResultGraphNodes. This allows us to make the distinction about whether to handle the discriminator as `Class` or as its "underlying" type when selecting it. Fetches return the underlying type. DomainResults return `Class`, or String for entity-named entity mappings - -commit fb651ef07d02afcf745c808ed18ea14927ef7502 -Author: Steve Ebersole -Date: Fri Aug 20 14:02:26 2021 -0500 - - discriminator work - - - Handle discriminator as Fetch for entity ResultGraphNodes. This allows us to make the distinction about whether to handle the discriminator as `Class` or as its "underlying" type when selecting it. Fetches return the underlying type. DomainResults return `Class`, or String for entity-named entity mappings - -commit 78bd816a855a0483493fc30a50f25bfd77aa8057 -Author: Steve Ebersole -Date: Fri Aug 20 13:38:44 2021 -0500 - - discriminator work - - - Handle discriminator as Fetch for entity ResultGraphNodes. This allows us to make the distinction about whether to handle the discriminator as `Class` or as its "underlying" type when selecting it. Fetches return the underlying type. DomainResults return `Class`, or String for entity-named entity mappings - -commit c0de4c7854e45574855c42f295be931d62951b52 -Author: Steve Ebersole -Date: Fri Aug 20 13:03:16 2021 -0500 - - discriminator work - - - Handle discriminator as Fetch for entity ResultGraphNodes. This allows us to make the distinction about whether to handle the discriminator as `Class` or as its "underlying" type when selecting it. Fetches return the underlying type. DomainResults return `Class`, or String for entity-named entity mappings - -commit 83ac9d5d3d2059ed32b78ce89934e289186c959a -Author: Steve Ebersole -Date: Thu Aug 5 15:27:04 2021 -0500 - - xjc task config - -commit a532445e35a94a4931e21c1f622e873df7bec029 -Author: Steve Ebersole -Date: Thu Aug 5 13:54:29 2021 -0500 - - test migration - -commit 6e6b6eb0ae72c438bb6d51a90f82a89d299f4ba4 -Author: Sanne Grinovero -Date: Thu Aug 19 17:42:33 2021 +0100 - - HHH-14788 Upgrade to Byteman 4.0.16 - -commit bbc9e6af207338d0eaba00a472169c7776c3613b -Author: Andrea Boriero -Date: Mon Aug 9 18:27:50 2021 +0200 - - Re-enabled additional tests - -commit 75ff2500c7eb6fe0c7a1abd3b22580deb1d290c5 -Author: Andrea Boriero -Date: Mon Aug 9 18:06:29 2021 +0200 - - Re-enabled additional tests - -commit d46db44082b8daa6a7ffd2118c16b1149195a20d -Author: Andrea Boriero -Date: Mon Aug 9 17:58:22 2021 +0200 - - Re-enabled additional tests - -commit 746aeb5c95ae001a5a02509f9030f69a760f0db9 -Author: Andrea Boriero -Date: Mon Aug 9 15:45:52 2021 +0200 - - Re-enabled additional tests - -commit 9710bfcf394fa20dc4c3518dd2581cff721c99c7 -Author: Andrea Boriero -Date: Mon Aug 9 15:15:11 2021 +0200 - - Fix load toOne association not referencing a PK with FetchMode.SELECT - -commit 5160c8ac6acae302b8a2422994303fa047ceb9dd -Author: Andrea Boriero -Date: Thu Aug 5 15:46:04 2021 +0200 - - Fix throw EntityNotFoundException when an association not mapped with @NotFound(IGNORE) is null - -commit 1ba359529222ac8e5dc4dbe5b5bd7a63e3bf9fe2 -Author: Christian Beikov -Date: Mon Aug 16 17:12:01 2021 +0200 - - HHH-14777 Enabled skip locked rendering for MariaDB 10.6+ - -commit dffe592cde32704a5bfeb7700733dcc6b113cb79 -Author: Christian Beikov -Date: Mon Aug 16 17:08:35 2021 +0200 - - HHH-14777 Enabled skip locked rendering for MariaDB 10.6+ - -commit 971d0f1fc5f7a31d373a4b806f4e9b16789eb1fb -Author: The Geeky Asian -Date: Fri Feb 7 02:55:30 2020 +0400 - - HHH-13848 - Fix for potential NullPointerException - - The callers of the convert() method in ResourceRegistryStandardImpl expect an exception which is then thrown. This me produce NullPointerException, which has been fixed in this commit. - -commit e0c77e82ad7204d5201634e383c7f66c6154b1bc -Author: Christian Beikov -Date: Mon Aug 16 17:01:23 2021 +0200 - - Properly calculate binary digit numbers for float based on decimal digit numbers - -commit e415d1bde60975c502d753288c7d877713c42a9a -Author: Christian Beikov -Date: Mon Aug 9 19:50:10 2021 +0200 - - Move annotations.manytoone tests and fix table reference resolving issues - -commit 76f424fcffa0790618c790cd0e2389c48899edeb -Author: Christian Beikov -Date: Mon Aug 9 15:42:15 2021 +0200 - - Move annotation.manytomany tests and fix filter rendering as well as collection owner initialization and fetching of non-PK to-one attributes - -commit b326b303d38b42040b793bee1ec35f31d71ba6f0 -Author: Christian Beikov -Date: Mon Aug 9 15:40:23 2021 +0200 - - Add a millisecond sleep to ensure generated timestamp annotation tests work - -commit 58078aee66b114c5866561ab7d135ea20e545cf0 -Author: Christian Beikov -Date: Mon Aug 9 15:37:50 2021 +0200 - - Move annotations.lob tests - -commit 1544493edca742f84b3e8275603e274af87f0322 -Author: Christian Beikov -Date: Mon Aug 9 11:25:09 2021 +0200 - - Wire up custom collection types - -commit ffff90757a18708dec69330ed9ce6bff4721f7e0 -Merge: 8174f8ab9d 544dbbf762 -Author: Andrea Boriero -Date: Mon Aug 16 16:21:26 2021 +0200 - - Merge remote-tracking branch 'upstream/main' into wip/6.0 - -commit 8174f8ab9dd80234706abac6f4e9ed7569a2cba4 -Author: Andrea Boriero -Date: Mon Aug 16 13:43:35 2021 +0200 - - Re-enabled additional tests - -commit 7e4275c46ee5f24325285518e2a7297354bcea1b -Author: Andrea Boriero -Date: Mon Aug 16 13:06:20 2021 +0200 - - Loading circula bidirectional fetch associations not referring to PK - -commit 053153847b7f6b275533511fce3066735545dfe9 -Author: Andrea Boriero -Date: Wed Aug 11 15:17:16 2021 +0200 - - Initialize collection with key not referring to PK - -commit 544dbbf762bb64ec4d631a76dc52ed03a809418d -Author: Yoann Rodière -Date: Wed Aug 11 10:27:51 2021 +0200 - - HHH-14770 Revert "HHH-14770 Optimise access to EntityPersister in Metamodel via Class type" - - This reverts commit 9a335c1c04dca581caedb1e0b55c6ecf34d33433. - -commit ad61c8f1d41a86552e297058c3fc7b7fd93fe350 -Author: Andrea Boriero -Date: Wed Aug 11 09:23:43 2021 +0200 - - Fix errors after upstream/main merge - -commit 52b83829f1be7c2e1b0468080cb4d80c63cdfe8d -Merge: e1b82b005c fb0279e3a7 -Author: Andrea Boriero -Date: Wed Aug 11 09:22:57 2021 +0200 - - Merge remote-tracking branch 'upstream/main' into wip/6.0 - -commit e1b82b005c4bd5c285badb10b1ba212dd6cee82c -Author: boris-unckel -Date: Thu Jul 29 09:43:52 2021 +0200 - - HHH-14762 Testsuite: Assert.notNull must not be used on primitive types - - Fix https://hibernate.atlassian.net/browse/HHH-14762 - -commit fb0279e3a7e5e0daef1330aeb7cd2d17ff98cde2 -Author: Sanne Grinovero -Date: Mon Aug 9 16:09:34 2021 +0100 - - HHH-14625 Avoid performing a ServiceRegistryLookup in JtaTransactionCoordinatorImpl constructor - -commit fb62f9611a8cd215588ebf56e890b94b1352c1c5 -Author: Andrea Boriero -Date: Mon Aug 9 11:30:58 2021 +0200 - - Fix issue with query alias case sensitive and JPAQL strict compliance - -commit 135361a6b8c03144be3ffcc592962388ed14b61b -Author: Sanne Grinovero -Date: Mon Aug 9 14:23:04 2021 +0100 - - HHH-14776 Optimise Loader operations by using the Persister directly - -commit edcce3e1c22aa88ca60f69a90f438d8878b4ff87 -Author: Sanne Grinovero -Date: Mon Aug 9 11:45:40 2021 +0100 - - HHH-14776 Promote method instantiate(EntityPersister, Serializable) from SessionImplementor to SharedSessionContractImplementor - -commit 9a335c1c04dca581caedb1e0b55c6ecf34d33433 -Author: Sanne Grinovero -Date: Thu Aug 5 22:12:56 2021 +0100 - - HHH-14770 Optimise access to EntityPersister in Metamodel via Class type - -commit d4c296b73286bffb5c67118e188d025950bd6c27 -Merge: 3be25aa899 2390416318 -Author: Andrea Boriero -Date: Mon Aug 9 12:48:00 2021 +0200 - - Merge remote-tracking branch 'upstream/main' into wip/6.0 - -commit 23904163188a9d09c19897d795c68e32fe8e91f1 -Author: Sanne Grinovero -Date: Thu Aug 5 23:56:36 2021 +0100 - - HHH-14773 JdbcCoordinatorImpl micro improvement: unguarded tracev parameters should be constant - -commit c9b8776d3aed4b4d1271065a7eb878a4b4a71f0d -Author: boris-unckel -Date: Thu Jul 29 08:09:13 2021 +0200 - - HHH-14760 Close resource - potential resource leak - - Fixes https://hibernate.atlassian.net/browse/HHH-14760 - -commit 3be25aa899e046865e393e485ffd89c27737669f -Author: boris-unckel -Date: Thu Jul 29 08:09:13 2021 +0200 - - HHH-14760 Close resource - potential resource leak - - Fixes https://hibernate.atlassian.net/browse/HHH-14760 - -commit 2f166c31dfa8c756d90fe283f0d9a9df5ed1e1d9 -Author: Christian Beikov -Date: Fri Aug 6 18:05:30 2021 +0200 - - Fix some documentation tests and respect filters in Session.find as per HHH-14772, and respect explicit polymorphism - -commit b6683d235218e62130563ccf60b58a9a83642448 -Author: Christian Beikov -Date: Fri Aug 6 13:26:54 2021 +0200 - - Fix some more result set mapping issues and fix HHH-7525 as well as HHH-10504 - -commit dd650705d07416fd6b8e324d4724d67fbd064145 -Author: Christian Beikov -Date: Thu Aug 5 17:44:35 2021 +0200 - - Add some delay between save an update of update-timestamp tests - -commit 62514e9e538107f1cd1535ad676d4fc808a020ec -Author: Christian Beikov -Date: Thu Aug 5 11:41:25 2021 +0200 - - Fix resolving parameter type if other side is a subquery returning a collection part - -commit b30c9aea8e94b4dcbca32e83294361444dc80ed9 -Author: Christian Beikov -Date: Wed Aug 4 21:29:39 2021 +0200 - - Move annotations.loader tests and implement support for collection returns - -commit 15f2dca36d5ca633b9c9455d0f271ab517e17dcf -Author: Christian Beikov -Date: Wed Aug 4 16:29:17 2021 +0200 - - Move annotations.inheritance tests and implement qualifier omission for formulas in DML statements - -commit f84585c5edd5814fd3274d078dcc4ca59be92bca -Author: Christian Beikov -Date: Wed Aug 4 16:08:01 2021 +0200 - - Move annotations.immutable tests and implement immutable update warning/error - -commit eaba3acc202dfebc7887c1930f9f45d996a9ea46 -Author: Christian Beikov -Date: Wed Aug 4 15:22:01 2021 +0200 - - Move annotations.idmanytoone tests and fix property lookup of identifierMapper - -commit 7b58e700db1ae7bad49887ecf3e5a768d1f54401 -Author: Christian Beikov -Date: Wed Aug 4 13:56:35 2021 +0200 - - Make sure the SerializableJavaTypeDescriptor is never used for entities. Fix a wrong JDBC mapping causing problems converted attributes. Force IMMEDIATE fetch timing for many-to-one associations with NotFound.IGNORE - -commit 5da81c226382eb46c0b9f433060ef88cc6a8ba17 -Author: Christian Beikov -Date: Wed Aug 4 13:53:30 2021 +0200 - - Move annotations.formula package - -commit adf8da6beda96c214ab69fcab5ee4aa7a5a1bb17 -Author: Christian Beikov -Date: Wed Aug 4 13:52:16 2021 +0200 - - Move annotations.fetch package - -commit 7216823afd52cfb138989c4cb4b8f381d6c9bd0d -Author: Christian Beikov -Date: Wed Aug 4 11:50:30 2021 +0200 - - Move annotations.enumerated tests and fix some type parameterization and enum related issues - -commit 38e1704f4305a40c0b92ce52c6847eb1041ce9cd -Author: Christian Beikov -Date: Fri Jul 30 16:22:11 2021 +0200 - - Fix creation of proper navigable path for identifier mapper - -commit 75f4e635f207357f91c049b0e7c2b50920c49201 -Author: Christian Beikov -Date: Fri Jul 30 14:07:10 2021 +0200 - - Fix HBM return-join handling - -commit 95a34e2895287afbb8b201265a7dcab03506e94f -Author: Christian Beikov -Date: Thu Jul 29 18:43:32 2021 +0200 - - Move test.type.contributor and implement support for constructor injection of TypeBootstrapContext - -commit d3810b8f7a035a27cf9cbca75d8318a2c551d046 -Author: Christian Beikov -Date: Fri Aug 6 10:25:20 2021 +0200 - - Implement support for non-primary-key foreign keys - -commit 42ff387193a3eb68eaee76005667af76be387461 -Author: Sanne Grinovero -Date: Thu Aug 5 23:57:52 2021 +0100 - - HHH-14771 Upgrade to Byte Buddy 1.11.12 - -commit 3ec8b27b2a389b1211c412f36c906efb92071a2c -Author: Jan Schatteman -Date: Wed Aug 4 22:00:48 2021 +0200 - - Added doc notes on the filter clause and the ilike predicate - - Signed-off-by: Jan Schatteman - -commit 89d16bddc8ae14d342446ef0e6015ab1f684eadd -Author: Christian Beikov -Date: Wed Aug 4 10:07:09 2021 +0200 - - Switch to case sensitive collations and fix SQL Server issues - -commit 0c1c46935230064c1e3ac90271c3db57485b8749 -Author: Jan Schatteman -Date: Mon Jul 19 19:29:20 2021 +0200 - - HHH-14739 - Implement ILike support - - Signed-off-by: Jan Schatteman - -commit be485796b177b86ee88a6ec935d95af083f79b1d -Author: Christian Beikov -Date: Thu Aug 5 11:33:43 2021 +0200 - - Cleanup the grammar and generify same-structured function rules - -commit 07ec4f208d32d2cdab40ce27f0731b7bdec8a1ee -Author: Steve Ebersole -Date: Thu Aug 5 10:04:54 2021 -0500 - - asciidoctor task config - -commit f43016cd3431f55870d0a36de22746ac60dbcbaa -Author: Steve Ebersole -Date: Thu Aug 5 08:26:19 2021 -0500 - - "fix" for Gradle plugin publishing - -commit e0076f8e20040729d2faba1b2d1c1db33a2248d1 -Author: Christian Beikov -Date: Tue Aug 3 10:55:27 2021 +0200 - - Fix generated value issues with Oracle - -commit 1fb839b8417a23766648be3c3d711d3bde47d8da -Author: Christian Beikov -Date: Tue Aug 3 10:25:25 2021 +0200 - - Skip some tests for databases that don't support a current_timestamp function with microsecond precision - -commit ca22db14bb3cd2d892b02fd3f1c5f49d21441901 -Author: Christian Beikov -Date: Tue Aug 3 09:56:49 2021 +0200 - - Fix some issues with collection-path related HQL functions minindex/maxindex/minelement/maxelement/elements/indices and group by item rendering problems - -commit 4acdf1ab3eb66ba133dade3899cb394b8fcc5c5c -Author: Steve Ebersole -Date: Wed Aug 4 21:01:41 2021 -0500 - - 6.0.0.Alpha9 release - -commit 85b8fba140efafdbd5a9b4acef56325504c14cdd (tag: 6.0.0.Alpha9) -Author: Steve Ebersole -Date: Wed Aug 4 21:00:05 2021 -0500 - - 6.0.0.Alpha9 release - -commit d4584827ed60eadbba1809c88318f2b97e6d00ad -Author: Hibernate-CI -Date: Wed Aug 4 20:23:31 2021 +0000 - - 5.5.7-SNAPSHOT - -commit 6cdab40f67d21ed20c71ce213d469a7c03691cc6 (tag: 5.5.6) -Author: Hibernate-CI -Date: Wed Aug 4 20:18:14 2021 +0000 - - 5.5.6.Final - -commit 4c5b1cb2a857832802da30d83fcc6dec87f1045c -Author: Andrea Boriero -Date: Wed Aug 4 19:08:17 2021 +0200 - - plugin publishing tokens - -commit ac8a212393972723b19a2ae369eb9c0f94cebea1 -Author: Steve Ebersole -Date: Wed Aug 4 11:17:25 2021 -0500 - - plugin publishing tokens - -commit 8ab124d5f36653fc09af087daa770e853fe10433 -Author: Steve Ebersole -Date: Wed Aug 4 07:41:56 2021 -0500 - - plugin publishing tokens - -commit 9dd7afb1365ec1cd772329b4ebcf67fec87f8719 -Author: Steve Ebersole -Date: Wed Aug 4 07:26:29 2021 -0500 - - plugin publishing tokens - -commit 53fc4901819bd67a4cca1a0064efab83715b8a47 -Author: Steve Ebersole -Date: Tue Aug 3 14:03:32 2021 -0500 - - Document value generation; - Moved `@CurrentTimestamp` from src/test/java to src/main/java - -commit 34a1fa8c7f2e586461b059f67c1f9dacfad3021d -Author: Steve Ebersole -Date: Tue Aug 3 11:39:09 2021 -0500 - - Drop jcenter for dependencies - -commit be8be18bc0d2f68e1f6747f9d3025c45edcdc594 -Author: Steve Ebersole -Date: Mon Aug 2 18:04:41 2021 -0500 - - minor asciidoctor task improvements + update plugin to 3.1 version - -commit 3b78f303095e93bc44711e9db94142c8f765c04c -Author: Steve Ebersole -Date: Mon Aug 2 16:35:16 2021 -0500 - - Few Gradle file related tasks - - - dropped explicit apt output handling - Gradle has that built in - - Switched other uses to write to the standard `${buildDir}/generated/sources` dir - -commit 230c787b3c4315bc09e11891fc377d5ab26e9e11 -Author: Steve Ebersole -Date: Mon Aug 2 15:42:58 2021 -0500 - - Fixes for Yoann's search + 6.0 tracking - - - Support for generated values - - See `@ProposedGenerated` for proposed change to `@Generated`; without that change, `@Generated` will not work with update-generation; nor does it work on 5.x - -commit b8afa46d8f5852704dbedd8ad8286fe0416f5d0f -Author: Christian Beikov -Date: Thu Jul 29 16:15:53 2021 +0200 - - Fix row value comparison emulation rendering issue that occurred on SAP HANA - -commit 4ee71faecfd5b1bca11e2e01dec6e41afb0fd439 -Author: Christian Beikov -Date: Thu Jul 29 13:46:06 2021 +0200 - - Improve SemanticQueryBuilder performance and fix a few generics related issues - -commit e93f43a43fd5a47fd72bc451a5d802993abfc52e -Merge: df9df2a738 e528a1ab53 -Author: Andrea Boriero -Date: Mon Aug 2 14:02:30 2021 +0200 - - Merge remote-tracking branch 'upstream/main' into wip/6.0 - -commit e528a1ab538c31b7d1cb151c43d07e617e1a3101 -Author: Christian Beikov -Date: Mon Aug 2 09:32:15 2021 +0200 - - HHH-14768 Fix recursive type variable rendering - -commit df9df2a738f57ff0af591f8d8892274ba055b323 -Author: Steve Ebersole -Date: Thu Jul 29 13:29:51 2021 -0500 - - Fixes for Yoann's search + 6.0 tracking - - - test for Criteria handling. Unable to reproduce unfortunately - -commit 8362ce72ba4f275dd69c0484abc8b2f8209cdf0a -Author: Steve Ebersole -Date: Thu Jul 29 13:28:41 2021 -0500 - - Fixes for Yoann's search + 6.0 tracking - - query-options - null cache-mode - -commit a716b348f7e762950c1e91d66cca4190fdfe949d -Author: Steve Ebersole -Date: Thu Jul 29 13:02:52 2021 -0500 - - japmodelgen xjc task cacheability - -commit c1f28b4d091e5c6c798d50fde23955700a43c92b -Author: Hibernate-CI -Date: Thu Jul 29 14:18:40 2021 +0000 - - 5.5.6-SNAPSHOT - -commit 3de90a261fdae6f9b41b0184a40d7412f6a096fe (tag: 5.5.5) -Author: Hibernate-CI -Date: Thu Jul 29 14:13:58 2021 +0000 - - 5.5.5.Final - -commit b1975ba05d0305b49c51f80d4b021557e3f93044 -Author: Gail Badner -Date: Wed Jul 28 11:48:56 2021 -0700 - - HHH-11926 : Add FailureExpected test - -commit 83975eaddf7f04680f12a1059eb737730da5ce6b -Author: Sanne Grinovero -Date: Tue Jul 27 16:20:53 2021 +0100 - - HHH-14755 Allow configuring the DefaultIdentifierGeneratorFactory to ignore BeanContainer(s) - -commit d4ed42149b2be6bc05b68fb83ef5ba0340520f4e -Author: Sanne Grinovero -Date: Tue Jul 27 16:21:05 2021 +0100 - - HHH-14755 Remove some dead code from DefaultIdentifierGeneratorFactory - -commit 78e620d9fe59e676e43418201142137691bbc2dc -Author: boris-unckel -Date: Thu Jul 29 08:33:29 2021 +0200 - - HHH-14761 Exception message String.format too many variables - - Fix https://hibernate.atlassian.net/browse/HHH-14761 - -commit 1a6924c2977481fa5f0bf7c8d975bfdd33988aba -Author: Christian Beikov -Date: Wed Jul 28 11:55:27 2021 +0200 - - HHH-14724 Fix generation of problematic metamodel classes which use TYPE_USE annotations - -commit 0fdf431715a5421d07f8d9a0a8f48ca822b668aa -Author: Thomas Heigl -Date: Thu Jul 29 11:18:56 2021 +0200 - - HHH-14724 Add test for intersection types - -commit e868e61cecf723598eefd3baf087018bfe64016f -Author: Thomas Heigl -Date: Sun Jul 11 11:57:53 2021 +0200 - - HHH-14724 Test-case demonstrating compilation issues with converters and validation - -commit e82a45d61614ab1fd3160cf3d8ef854449afe1f4 -Author: Christian Beikov -Date: Mon Jul 26 17:18:34 2021 +0200 - - Fix issues with Oracle 12.1c - -commit ad49a41cd99e3b19420e3981e6602a4402ae6fad -Author: Christian Beikov -Date: Thu Jul 8 17:21:50 2021 +0200 - - Fix issues with HANA to allow running the testsuite - -commit 87604549efbe646d8f8459ef14fbdad82b3ab0c3 -Author: Christian Beikov -Date: Thu Jul 8 17:20:12 2021 +0200 - - Support usage of boolean expression in predicate context - -commit 87258af3f99cd465e5266c5711654ac5c466e40d -Author: Christian Beikov -Date: Thu Jul 8 17:18:04 2021 +0200 - - HHH-14495 Use table name, rather than entity name, as base for per-entity implicit sequence naming - -commit 34f0b08c24327bd3a81be42ed8e13cebec141176 -Author: Christian Beikov -Date: Tue Jul 6 12:55:10 2021 +0200 - - HHH-14512 Add Jenkinsfile for matrix build - -commit 8dd0ed7c2da99e81b292983cf93b31c9491ee850 -Author: Gavin King -Date: Tue Jul 27 12:36:29 2021 +0200 - - clean imports and remove useless override - -commit 7aeb03beea7b3faa474dc1921a2d7adce3ee5d22 -Author: Gavin King -Date: Mon Jul 26 16:00:03 2021 +0200 - - remove older getJdbcType() method - -commit 526b3659c83d75ed3e0d1d3d87467fdafd64e32e -Author: Gavin King -Date: Fri Jul 23 21:59:02 2021 +0200 - - more correct test code - -commit 07096e7cc10292405d42d76255399171dadf659d -Author: Gavin King -Date: Fri Jul 23 21:24:09 2021 +0200 - - introduce JDBCTypeDescriptor.getDefaultSqlTypeCode() - - and rename sqlType -> jdbcTypeCode in Type hierarchy for consistency - - See https://github.com/hibernate/hibernate-orm/discussions/4088 - -commit 80e77b63d53829dbbb67955e5c26ff44204bdf39 -Author: Steve Ebersole -Date: Wed Jul 28 04:15:58 2021 -0500 - - additional work to get jakarta module tests working - -commit 431de4ba68263added025575dc067dc67c40ebb6 -Author: Steve Ebersole -Date: Tue Jul 27 19:53:42 2021 -0500 - - remove dependency on hibernate-core-jakarta tests from hibernate-envers-jakarta - -commit d16073f7ceb8f351b6a61d845be92a0833dc3b96 -Author: Steve Ebersole -Date: Tue Jul 27 19:38:44 2021 -0500 - - remove dependency on hibernate-core tests from hibernate-envers - -commit 1c100f5af0ab34a64b08bf7dbbef426ea6369640 -Author: Steve Ebersole -Date: Tue Jul 27 09:17:15 2021 -0500 - - Tests for binding composite-valued query parameters - -commit aa5d40852c2a5fcb82002fc9906ac142e78317cc -Author: Alvaro Esteban Pedraza -Date: Tue Jun 19 18:10:20 2018 -0300 - - HHH-10661 Reduce code duplication in serialize method of StatefulPersistenceContext - -commit ff9f6efc0dff90778e3470bb439fe446924bb355 -Author: Sanne Grinovero -Date: Tue Jul 27 14:12:55 2021 +0100 - - HHH-11413 Fixing code style - -commit 787f0a44ea752f9f24aef5740936415f2c8c9116 -Author: Dariush Moshiri -Date: Sat Jul 24 17:01:29 2021 +0200 - - HHH-11413: Native named query creation fails unintuitively when no resultClass is specified - -commit 6d9bcd09c1b6279a123f582111b37cea4be69d94 -Author: Steve Ebersole -Date: Mon Jul 26 16:37:18 2021 -0500 - - Tests for binding composite-valued query parameters - -commit c1732f867c8a68a4fad7d9b7083b7c6b891a65dd -Author: Steve Ebersole -Date: Mon Jul 26 15:16:37 2021 -0500 - - Query domain-results - -commit 9f2ae95397133fffa4c30e37b78c8f5e3b70eace -Author: Steve Ebersole -Date: Mon Jul 26 13:51:22 2021 -0500 - - Gradle task cache - Gradle 7 prep - -commit 967553add4640dbd9eb60e4b36803809c31f880f -Author: Andrea Boriero -Date: Mon Jul 26 12:32:46 2021 +0200 - - Fix multiparameter binding issue - -commit e4571cbf303f27c3aa173a89b967cb29854f9868 -Author: Andrea Boriero -Date: Wed Jul 21 13:07:31 2021 +0200 - - Fix issue with Sybase,the hbm mapping was causing errors with case sensitive dbs - -commit 77d870f08c7d842f97c3480fb2d2849dc21985e9 -Author: Andrea Boriero -Date: Wed Jul 14 19:52:50 2021 +0200 - - Re-enabled additional tests - -commit 3aa875b03746ee1a09b13d87d57fee17d664b702 -Author: Andrea Boriero -Date: Wed Jul 14 16:38:46 2021 +0200 - - Fix ScrollableResultsImpl not initializing non lazy collections - -commit ba5d90d116ab033faea542569d9bf16593301397 -Author: Andrea Boriero -Date: Wed Jul 14 09:30:35 2021 +0200 - - Fix StatelessSession#uniqueResult() not clearing the temporary PersistenceContext - -commit 4eb27e61b1bd4c074e8e2b87f9ffceb18bc521d6 -Author: Andrea Boriero -Date: Tue Jul 13 17:56:35 2021 +0200 - - Fix StateleSession call to PostLoadEvent causing NPE - -commit 78b8b4aed8daa98b9a3aa1d5d76e5a40ee57fb90 -Author: Andrea Boriero -Date: Tue Jul 13 17:04:49 2021 +0200 - - Fix close connection when a transaction is not active and connection handling mode is not equal to AFTER_STATEMENT - -commit a648e637cc235815dd146e56bbfe68cf31225e85 -Author: Andrea Boriero -Date: Tue Jul 13 13:42:45 2021 +0200 - - Re-enabled additional tests - -commit 3022371d3e39a574077f81547b6dd3c116279b6b -Author: Andrea Boriero -Date: Mon Jul 12 10:15:39 2021 +0200 - - Re-enabled additional tests - -commit 96be0130893c7a7b6aa50b7ee8d90301eb54c7e7 -Author: Andrea Boriero -Date: Sat Jul 10 20:59:21 2021 +0200 - - Re-enabled additional tests - -commit 96f8273673e6fdf333404fe48acd131975e7a607 -Author: Andrea Boriero -Date: Fri Jul 9 21:01:14 2021 +0200 - - Fix create a new instance while a corresponding one is loading - -commit 8dcd63dcee699fea179e875c2fd18f15df247cb6 -Author: Andrea Boriero -Date: Fri Jul 9 15:45:41 2021 +0200 - - Fix Sybase error when use jdbc metadata defaults is set to false - -commit 6c98d3400f9bf085bc19b01be527cbcdb939eec9 -Author: Andrea Boriero -Date: Fri Jul 9 13:48:01 2021 +0200 - - Change default MysqlDialect constructor to use version 5 instead of 4 - -commit c06788dd888d49fb927c98382b54bdcb7247d338 -Author: Andrea Boriero -Date: Fri Jul 9 11:34:49 2021 +0200 - - Re-enabled additional tests - -commit 821d85b9a3bdd1bbbbe0f1da0cecd8d404fd181a -Author: Andrea Boriero -Date: Fri Jul 9 11:34:35 2021 +0200 - - Implemented EmbeddableMappingType and EmbeddedIdentifierMappingImpl applySqlSelections methods - -commit ab8cfe0d8362bdee0ac632c9d5c9025f76311f27 -Author: Andrea Boriero -Date: Thu Jul 8 18:45:37 2021 +0200 - - Fix multi value parameters expansion for SelfRenderingSqmFunction - -commit 3f7044eebe70249d7d595cfd204e4533cbc4f530 -Author: Andrea Boriero -Date: Thu Jul 8 14:42:17 2021 +0200 - - Re-enabled additional tests - -commit 6b4f4755f388f90ad5b5ae19551d9ee651db0f48 -Author: Karel Maesen -Date: Mon Jul 26 15:42:59 2021 +0200 - - HHH-14745 Fix formatting - -commit 649b2187e16e257ee3d74e30a1f649550bdef437 -Author: Karel Maesen -Date: Mon Jul 26 15:37:59 2021 +0200 - - HHH-14745 Directly contribute functions to the SqmFunctionRegistry - -commit c0a18ee99e2ce742e6f5df627fde1df272b17e70 -Author: Karel Maesen -Date: Mon Jul 26 15:29:27 2021 +0200 - - HHH-14745 Add ordinal() to avoid non-determinism - -commit 9aba4532cd46a40ffe54d7e510761980432b2899 -Author: Karel Maesen -Date: Mon Jul 26 14:43:31 2021 +0200 - - HHH-147 Fix method name in contract - -commit 21dd7a35f106e462fe0651b1163162863be6cbea -Author: Karel Maesen -Date: Sat Jul 24 17:46:43 2021 +0200 - - HHH-14745 Add FunctionContributor contract - -commit 76df5a5f4bfaa8131ef6b57b358e26e5220b0d73 -Merge: 70093b8980 0325cd632a -Author: Andrea Boriero -Date: Mon Jul 26 15:15:29 2021 +0200 - - Merge remote-tracking branch 'upstream/main' into wip/6.0 - -commit 70093b89805e138eee1b6e5d850d492ba3df0528 -Author: Steve Ebersole -Date: Fri Jul 23 10:07:39 2021 -0500 - - release project and up-to-date improvements - -commit 2c969c0dbc4aed96af7bdab8e97e726f5788139a -Author: Steve Ebersole -Date: Tue Jul 20 11:11:20 2021 -0500 - - improve `:release:assembleDocumentation` task - -commit 0325cd632a704ff82b789544bfefb7e11ac97cd9 -Author: Sanne Grinovero -Date: Tue Jul 20 11:32:40 2021 +0100 - - HHH-14740 Still need the nullcheck removed in HHH-14727 - -commit 2e4f2c75dfcd20a8eb68916fe8d71a209b155858 -Author: Steve Ebersole -Date: Mon Jul 19 16:46:50 2021 -0500 - - upgrade `matrix-test` plugin to version `3.1.1` - -commit e2e93e51b71fb8a24a9b69fcbd3f8bb6a1e06ae2 -Author: Steve Ebersole -Date: Mon Jul 19 16:45:50 2021 -0500 - - improvements to JAXB XJC handling - -commit 1ec2cd6c5e2ec765ef317d44d0171078e9a76890 -Author: Steve Ebersole -Date: Mon Jul 19 10:38:41 2021 -0500 - - fix assembleDocumentation task - -commit fc9113127867a2f4f569904de1fdb30a4ec302c9 -Author: Steve Ebersole -Date: Mon Jul 19 10:18:52 2021 -0500 - - make jakarta tasks cacheable - -commit 4f265ee8ce9d2f84a08dea53849b9427360c4fc0 -Author: Steve Ebersole -Date: Mon Jul 19 09:42:21 2021 -0500 - - hibernate-transaction-client dep resolution during Gradle conf - -commit 4454f170fac9d94adbcf71932c1a964fb0cb7046 -Author: Hibernate-CI -Date: Mon Jul 19 09:33:59 2021 +0000 - - 5.5.5-SNAPSHOT - -commit fb36fe25413b3701661472bc1c1ca602660b83ef (tag: 5.5.4) -Author: Hibernate-CI -Date: Mon Jul 19 09:29:02 2021 +0000 - - 5.5.4.Final - -commit c0041ba07350808cc4e621cabd773541ddcd4b69 -Author: Andrea Boriero -Date: Fri Jul 9 14:47:58 2021 +0200 - - HHH-14772 InformationExtractorJdbcDatabaseMetaDataImpl#getCurrentSchema() method returns currentCatalog if schema == null - -commit f60d8bcd1245ac62271d82408a13a37a3de3febf -Author: Sanne Grinovero -Date: Fri Jun 25 18:23:24 2021 +0100 - - HHH-14734 No good reason tu use TypeCache(s) with WithInlineExpunction - -commit e782ddf8f9591d21c09889c3456db22580f70acc -Author: Sanne Grinovero -Date: Fri Jun 25 11:19:56 2021 +0100 - - HHH-14733 Not useful to clear the bycodeprovider caches on sessionFactoryClosing - -commit 6608d03bfc86088b0d658e583fb0372d44d240f6 -Author: Sanne Grinovero -Date: Fri Jun 25 18:19:43 2021 +0100 - - HHH-14732 ProxyDefinitionHelpers are immutable and can be declared static - -commit 0768663895803b8b93aaf27eab4092c7efd36e3b -Author: Sanne Grinovero -Date: Fri Jun 25 14:27:32 2021 +0100 - - HHH-14731 Simplify SPI ProxyFactoryFactory#buildBasicProxyFactory to accept a single class or interface only - - And deprecate method org.hibernate.bytecode.spi.ProxyFactoryFactory#buildBasicProxyFactory(java.lang.Class, java.lang.Class[]) - -commit 6c98441518b32ba54c806001881e7b6ae235d5b0 -Author: Andrea Boriero -Date: Fri Jul 16 13:22:37 2021 +0200 - - HHH-14730 Avoid loading the same entity proxy twice for the same result set - -commit 5616284a12fd53f06d336c2d75f851d8dcacfd8f -Author: Sanne Grinovero -Date: Tue Jul 13 16:36:39 2021 +0100 - - HHH-14727 Minor code cleanup in StandardSQLExceptionConverter - -commit 98e64579fac6569d86d5466f49024cb9bc9a4028 -Merge: b26b00a358 0a16e341c9 -Author: Andrea Boriero -Date: Fri Jul 16 11:24:53 2021 +0200 - - Merge branch 'main' into wip/6.0 - -commit e4199decb5852a8de58a1d71f1510d6894877f27 -Author: Yoann Rodière -Date: Mon Jul 5 15:29:43 2021 +0200 - - HHH-14707 Upgrade to Byte Buddy 1.11.8 - -commit 0a16e341c9e4b64d703e89b500a0cab115b4d8d0 -Author: Yoann Rodière -Date: Thu Jul 15 18:19:16 2021 +0200 - - HHH-14730 Avoid loading the same entity proxy twice for the same result set - -commit 4a2d19a171067a08237d7915bd48efd5238c6955 -Author: Yoann Rodière -Date: Thu Jul 15 16:56:59 2021 +0200 - - HHH-14730 Test lazy loading of bytecode-enhancement proxy triggered by loading of a collection with eager references to that proxy - -commit 8b02aaf5a8711446457665e96b69161b57026cea -Author: Andrea Boriero -Date: Sun May 16 09:35:06 2021 +0200 - - HHH-14608 Merge causes StackOverflow when JPA proxy compliance is enabled - -commit 8dcf6f983b18d1f5d6a6cc3d66b0f7cb84d2d935 -Author: Andrea Boriero -Date: Sun May 16 09:33:56 2021 +0200 - - HHH-14608 Add test for issue - -commit 1c16d8da971578e121208688c07a110875cc268a -Author: Sanne Grinovero -Date: Thu Jul 15 15:39:37 2021 +0100 - - HHH-14728 Include CamelCaseToUnderscoresNamingStrategy from Spring Boot - -commit 6d16d6d32fa7fe3dc5a5bcacb818a810e997c484 -Author: Gail Badner -Date: Thu Jul 8 14:56:56 2021 -0700 - - HHH-14720 : Aliases generated for mixed-case column names that end in a number are not all lower-case - -commit c4ff6c19ac1bbcc23ce7616aa0e050ba4971a975 -Author: Gail Badner -Date: Thu Jul 8 14:55:55 2021 -0700 - - HHH-14720 : Added test case - -commit b26b00a3586ca8e40d99576c726531ebd6328b99 -Author: Steve Ebersole -Date: Wed Jul 14 11:44:35 2021 -0500 - - Bump matrix testing plugin to 3.1.0 (prep for Gradle 7) - -commit 1b5c78c85bb2126cdf44dd6066437ed200b30067 -Author: Steve Ebersole -Date: Wed Jul 14 11:42:40 2021 -0500 - - Bump matrix testing plugin to 3.1.0 (prep for Gradle 7) - -commit 7c80d8b460dbc3bc94e4a42a00736eec0dc5f841 -Author: Steve Ebersole -Date: Wed Jul 14 11:12:33 2021 -0500 - - Upgrade com.gradle.common-custom-user-data-gradle-plugin - -commit c78a0a2b163bf1d9b59392a3d51827aa11d80c31 -Author: Yoann Rodière -Date: Tue Jul 6 09:49:35 2021 +0200 - - HHH-14709 Move to Gradle's built-in way of testing Java modules - -commit 15f30bd338a6b1b20c14489cf9914c5213d07661 -Author: Yoann Rodière -Date: Tue Jul 6 09:33:23 2021 +0200 - - HHH-14709 Upgrade to Gradle 6.7.1 - -commit c11b460cb2264362466fd5729a6310610cb43696 -Merge: d40a8582be 4e9b96247f -Author: Andrea Boriero -Date: Fri Jul 9 08:44:01 2021 +0200 - - Merge remote-tracking branch 'upstream/main' into wip/6.0 - -commit 4e9b96247f90ce97b3597e04e1401474df6e4683 -Author: Sebastian Nohn -Date: Thu Jul 8 11:33:23 2021 +0200 - - HHH-14715: Update maven-core to 3.8.1 fixing CVE-201-26291 - -commit 8e68ad2349845ec05837f1ce90ed1ee9b9a253ed -Author: Sebastian Nohn -Date: Thu Jul 8 23:12:53 2021 +0200 - - HHH-14719 bump apache-derby to 10.14.2.0 fixing CVE-2015-1832 and CVE-2018-1313 - -commit d40a8582bef9ca6bb034e70adda909b892645a33 -Merge: a2e3c58257 834f125c07 -Author: Andrea Boriero -Date: Thu Jul 8 19:59:59 2021 +0200 - - Merge remote-tracking branch 'upstream/main' into wip/6.0 - -commit a2e3c582579fb6fad078a8b5a5476a22a302022c -Author: Andrea Boriero -Date: Wed Jul 7 16:41:59 2021 +0200 - - Fix a typo - -commit 94a258c8d78db54c44e543aab6fedad06d8f4e8c -Author: Andrea Boriero -Date: Wed Jul 7 14:39:48 2021 +0200 - - Fix wrong creation of inner join - -commit bf22f098d14c1a5c95da647ad889ce6e74d54689 -Author: Andrea Boriero -Date: Wed Jul 7 09:35:10 2021 +0200 - - Removed TableGroup#isInnerJoinPossible() - -commit 241300c0c112577d8ca69f6ac4e76221f54fcffb -Author: Andrea Boriero -Date: Tue Jul 6 16:22:17 2021 +0200 - - Fix wrong creation of inner join - -commit ba5f77210a25595f06585a3a646adb4803b9f271 -Author: Andrea Boriero -Date: Tue Jul 6 13:43:54 2021 +0200 - - Removed useless call to SQLQueryParser#process() from NativeQueryImpl - -commit 0831823b274372e4942563e6331311bfa5f30fb2 -Author: Andrea Boriero -Date: Fri Jul 2 19:00:20 2021 +0200 - - Fix ManyToOneType#isModified() causing unnecessary update execution - -commit 547e247bb6c036fc0107591999589e17f5a167da -Author: Andrea Boriero -Date: Tue Jun 29 15:54:46 2021 +0200 - - Fix java.sql.Date attribute assigned wrong BasicType - -commit 017db55a1ade03127bddd93fa4bb1b47705a8f2b -Author: Andrea Boriero -Date: Tue Jun 29 15:51:37 2021 +0200 - - Register AdaptedImmutableTypes - -commit d6518e0c7a5f2453b8dde5dadf5ea53300de98ae -Author: Andrea Boriero -Date: Mon Jun 28 15:38:02 2021 +0200 - - Re-enabled additional tests - -commit 88953478675373e1356183bc1f420904264c036e -Author: Andrea Boriero -Date: Mon Jun 28 15:07:11 2021 +0200 - - Fix null dicriminator unable to cast MarkerObject to ... - -commit ce752c1428a62f0846aaaf95f01a1e33b2fc76c6 -Author: Andrea Boriero -Date: Mon Jun 28 13:04:19 2021 +0200 - - Re-enabled additional tests - -commit 911173d6ebdb3d11f065d35d4e9c060d48a4f44f -Author: Andrea Boriero -Date: Fri Jun 25 18:40:11 2021 +0200 - - Fix use of proxy as entity instance in AbstractEntityInitializer - -commit fcee504c99c7692a226470df5c1b73369aa28131 -Author: Andrea Boriero -Date: Fri Jun 25 12:43:45 2021 +0200 - - Re-enable additional tests - -commit cf449a986ea9d856587076330fd865f73e16ed60 -Author: Andrea Boriero -Date: Fri Jun 25 11:15:02 2021 +0200 - - Fix issue using explicitSourceAlias as SqlAliasBase, explicit alias starting with a _ char causes failures for Oracle, Derby and Db2 databases - -commit 3de89577f8fb5034a44f157ae7bd7f4368188fbd -Author: Andrea Boriero -Date: Thu Jun 24 18:15:27 2021 +0200 - - Fix issue with SqmCorrelatedRootJoin#getNavigablePath(), SqmCorrelatedRootJoin#getReferencedPathSource() and SqmCorrelatedRootJoin#getCorrelationParent() returning null - -commit f1d6dc890a20dda445b51822868c9bfdb1e7fb01 -Author: Andrea Boriero -Date: Thu Jun 24 16:34:18 2021 +0200 - - Fix Could not locate TableGroup exception when a join predicate contain an implicit join - -commit bce2737c443fbb1c7ae55658acf682de02422442 -Author: Andrea Boriero -Date: Thu Jun 24 12:25:51 2021 +0200 - - Fix wrong creation of inner join - -commit 09266c7ae18ac5c976d80b279f68413d82ea939e -Author: Andrea Boriero -Date: Thu Jun 24 10:25:28 2021 +0200 - - Fix RIGHT OUTER attribute-joins are not supported - -commit da625e18a9abde6170eb84d95fc0154a68b9cb30 -Author: Andrea Boriero -Date: Wed Jun 23 12:00:32 2021 +0200 - - Re-enabled additional tests - -commit 92c2bbdbdfa13a22cbf30a88e100a6064510e996 -Author: Jan Schatteman -Date: Thu Jul 8 00:25:34 2021 +0200 - - Fix for CompositeIdWithGeneratorTest failures in sybase - - Signed-off-by: Jan Schatteman - -commit 00a8a6c20eab58e0899f6bd83231853bd7639d37 -Author: Jan Schatteman -Date: Wed Jul 7 14:46:03 2021 +0200 - - Correct grammar to disallow filter clause in quantified subqueries - - Signed-off-by: Jan Schatteman - -commit 78209dc5067ba06fb18b9bb859536ca10ae17a29 -Author: Jan Schatteman -Date: Fri Jun 11 23:10:53 2021 +0200 - - Add filter clause for aggregate functions in HQL - - Signed-off-by: Jan Schatteman - -commit 6447ca9b260728e283f52ef23ef37f5a5e9d8af3 -Author: Christian Beikov -Date: Wed Jun 23 14:56:57 2021 +0200 - - HHH-14693, HHH-10668 Move non-supported dialects to the hibernate-community-dialects artifact and add the SQLite dialect originally contributed by Vlad Mihalcea which was adapted for Hibernate 6. Also add HSQLDB, MySQL and Sybase ASE configurations and a CI job config - -commit 834f125c07c6c1ed487c1f42b62a2c98b037addc -Author: Sanne Grinovero -Date: Thu Jul 1 16:10:05 2021 +0100 - - HHH-14706 Improve error message on incompatible types due to mismatched classloader - -commit f168b8cff2c7fb41fc2d570ae2867f9e4b21fda0 -Author: Yanming Zhou -Date: Tue Jun 22 16:33:43 2021 +0800 - - HHH-14688 Get IdentifierGenerator from BeanContainer if not registered - -commit 16db356ba80223beecc0df166687d7ae4b12fef6 -Author: Christian Beikov -Date: Fri Jul 2 08:14:22 2021 +0200 - - HHH-14704 Fix set operations support when fetches are involved - -commit 174b23001f0fb829bc26bef9bf76e704eac27313 -Author: Steve Ebersole -Date: Thu Jul 1 21:15:55 2021 -0500 - - Fix Jakarta processing - -commit e13e0bc9d5243ed5d34c2c9e076b03adf5edb64a -Author: Christian Beikov -Date: Wed Jun 30 08:12:08 2021 +0200 - - HHH-1615 Test and fix for group by entity - -commit 044b4b53451bf60bbf7102a4ad4c64a6ca162b3f -Author: Christian Beikov -Date: Wed Jun 30 19:04:39 2021 +0200 - - Update SQL Server docker image URL as the old one does not work anymore and add exclude logic to hibernate-core-jakarta also - -commit 58517b99d13419889ee562f173912ce77eb5a586 -Author: Steve Ebersole -Date: Thu Jul 1 08:26:52 2021 -0500 - - Fix concurrency issue with Jakarta processing - -commit 2226fda3315fee2a25426539687cdc6821fe1672 -Author: Christian Beikov -Date: Wed Jun 30 18:57:20 2021 +0200 - - Update SQL Server docker image URL as the old one does not work anymore - -commit 59f033194a6d208106d307d0d88b8b4c492e7389 -Author: Steve Ebersole -Date: Mon Jun 28 15:59:35 2021 -0500 - - Improved build configuration to better leverage Gradle up-to-date handling; - Preparation for moving to Gradle 7.0 - - - Moved custom Antlr plugin to hibernate-orm-build module - - more deprecation clean ups - -commit 172ddf87006f3c544d7df215f7b4ba1462ac3989 -Author: Steve Ebersole -Date: Sat Jun 26 08:46:09 2021 -0500 - - Improved build configuration to better leverage Gradle up-to-date handling; - Preparation for moving to Gradle 7.0 - - - Improve Jakarta transformation handling (tests are also actually run now as a bonus); - - Improved CacheableHbmXmlTest to not write "ser" file to `${buildDir}/resources/test` - - Improved DatabaseService(Plugin) - - Update a number of plugins which did not handle up-to-date-ness properly - -commit a6dc84e1feb3423bd691f1439ea14ae69c1ca6c1 -Author: Steve Ebersole -Date: Thu Jun 24 10:29:47 2021 -0500 - - Work on Instantiator in preparation for composite-user-type work - -commit 69dc854d883c185a875838ebe5f48aede4a5d0ca -Author: Christian Beikov -Date: Thu Jun 24 12:34:52 2021 +0200 - - Get rid of some unnecessary classpath elements - -commit 3435189777b78acec36b27be9c1f91f7ec2f5f90 -Author: Christian Beikov -Date: Tue Jun 22 16:53:21 2021 +0200 - - Add support for parallel gradle build - -commit 033814fedcba5f42bfacd05c4802823ee5a3c474 -Author: Andrea Boriero -Date: Wed Jun 23 10:05:51 2021 +0200 - - Fix merge issues - -commit e39c77423becb9bd3c2f487a8548f74fbda1247a -Merge: 8e0864af10 c3f8e56f28 -Author: Andrea Boriero -Date: Wed Jun 23 10:05:30 2021 +0200 - - Merge remote-tracking branch 'upstream/main' into wip/6.0 - -commit 8e0864af10ab6bc39feb9c42683ac417997bbda1 -Author: Christian Beikov -Date: Tue Jun 22 13:22:20 2021 +0200 - - Introduce SqmVisitableNode#appendHqlString to support indexed collection access paths - -commit c3f8e56f28886918c2f41e9eea80f0f311ca9173 -Author: Hibernate-CI -Date: Tue Jun 22 15:43:31 2021 +0000 - - 5.5.4-SNAPSHOT - -commit ce514fe69ec2c22020f300fac6a463d804eb99a5 (tag: 5.5.3) -Author: Hibernate-CI -Date: Tue Jun 22 15:38:32 2021 +0000 - - 5.5.3.Final - -commit f1a5b2cbca159747cca517d61430241915251dbd -Author: Andrea Boriero -Date: Tue Jun 22 16:29:09 2021 +0200 - - HHH-13788 Fix default IdentifierHelper case strategy - -commit b17e17cdb63cfec3bb8360b80fccec9b4bbba579 -Author: Andrea Boriero -Date: Tue Dec 17 13:51:02 2019 +0000 - - HHH-13788 Schema update try to recreate existing tables - -commit dfdc439f662d656117bc0018ec0d2627f62935bc -Author: Andrea Boriero -Date: Tue Dec 17 13:49:40 2019 +0000 - - HHH-13788 Add test for issue - -commit 97127fa1c5af41659125b1a7f67f6fadfb65a4b2 -Author: Andrea Boriero -Date: Tue Jun 22 14:23:18 2021 +0200 - - Fix merge compilation error - -commit 916849a8af149b8239c423182b756dcf8ea74cec -Author: Sanne Grinovero -Date: Tue Jun 22 11:16:22 2021 +0100 - - HHH-14691 Small optimisation for updating Query Cache Statistics - -commit e91901946a9388368e962a0418b797271a8ba436 -Author: Sanne Grinovero -Date: Mon Jun 21 11:37:19 2021 +0100 - - HHH-14690 Avoid fully resetting StatisticsImpl just after its constructor - -commit 3f132da2685896b2baa75376790d1c26cb4ec0de -Merge: 6ca0be6d99 3ea0484122 -Author: Andrea Boriero -Date: Tue Jun 22 13:49:13 2021 +0200 - - Merge remote-tracking branch 'upstream/main' into wip/6.0 - -commit 3ea0484122aaef172a4728a1179a1c2192204117 -Author: Andrea Boriero -Date: Thu Jul 5 11:07:38 2018 +0100 - - HHH-4808 SessionImpl.initializeCollection() does not release JDBC connection (if outside of a transaction) - -commit 179c1d1da0f18ae86a84e0731974e3016f924265 -Author: Andrea Boriero -Date: Thu Jul 5 12:54:02 2018 +0100 - - HHH-4808 Add test for issue - -commit 8f4450c43349eb8f96d613fab6ec6cdac57352b5 -Author: Christian Beikov -Date: Tue Jun 22 10:55:43 2021 +0200 - - HHH-14597 Test and fix for NPE while trying to delete cascade to-one association within element collection - -commit 6ca0be6d994a893ff3a81603ec23df5ba893f970 -Merge: 7bbc4ce618 7329f444b5 -Author: Andrea Boriero -Date: Tue Jun 22 09:09:30 2021 +0200 - - Merge remote-tracking branch 'upstream/main' into wip/6.0 - -commit 7bbc4ce618af905c83e017300cde2e5d8d0e9603 -Author: Andrea Boriero -Date: Mon Jun 21 11:41:09 2021 +0200 - - Fix issue with join type for subclass tables - -commit 5c8849c82422d3771e33ab800bca1f24e963878e -Author: Andrea Boriero -Date: Fri Jun 18 11:10:23 2021 +0200 - - Fix issue with sql rendering of null discriminators - -commit 7329f444b5fd248ee671bb99f260d666c64e2d7e -Author: Karel Maesen -Date: Fri Jun 18 13:23:32 2021 +0200 - - HHH-14654 Fix for schema validation bug - -commit 3745c5fe4500dc14b6efadfbdd75317ad49b0317 -Author: nathan.xu -Date: Fri Jun 11 07:47:30 2021 -0400 - - HHH-14642 fix a misuse of IdentityHashMap - -commit bdc08af163df6bcc0dfaf6483d961ee650123ee0 -Author: Andrea Boriero -Date: Wed Jun 16 16:04:10 2021 +0200 - - HHH-11817 Add test for issue - -commit 8fc45a90044f4e6e54e1a03f1d3b074253554918 -Author: Andrea Boriero -Date: Wed Jun 16 16:03:50 2021 +0200 - - HHH-11817 Allow schema-export commands written to file to truncate in addition to current appending - -commit 8e3e119d7d693ff8c7f9b82c3806dc0f9905f729 -Author: Andrea Boriero -Date: Thu Jun 17 14:15:59 2021 +0200 - - Re-enable additional tests - -commit ee07497e855a2ba3d28fd777f58fbe2577da03f3 -Author: Christian Beikov -Date: Thu Jun 17 12:34:28 2021 +0200 - - Disable parallel build until we introduce a BuildService for the database - -commit 2527e6b56a4f8ea5dfcc149e727a322bf53a1f5f -Author: Christian Beikov -Date: Fri Jun 11 14:51:29 2021 +0200 - - * Fix issues with order by fragments for collections - * Fix quite a lot of caching and related statistics use cases - * Support selecting ToOne- and PluralAttributeMappings in LoaderSelectBuilder - * Fix multiple bag role handling in LoaderSelectBuilder - * Fix dynamic batch id entity loader problems - * Simplify lock handling and cache JdbcSelect for SingleIdLoadPlan - * Add support for, but at the same time deprecation-warn about component mappings with different structure but same Java type. See HHH-14660 - * Fix enhancement issues and implement support for property laziness - * Implement association key access for both sides of the FK - * Fix subpart access for nullable + TARGET side ToOneAttributeMapping - * Pass through fetch timing to CircularFetch to respect fetch profiles - * Respect fetch profiles for CollectionLoader and SingleIdLoadPlan - * Support group by and order by for entity and embeddable paths/joins - * Don't apply lock clause for LockMode.READ and less - * Change result type for round to argument type - * Fix inference for tuple parameter elements when comparing against embeddables - - a - -commit db6701cc93855450b5513ce6064452e2aeaab901 -Author: Christian Beikov -Date: Thu May 20 17:05:20 2021 +0200 - - Move annotations, bytecode, cache, cascade, cdi, cfg, cid, component, compositeelement, customstructures, deletetransient, dialect, dirtyness, entitymode, exceptionhandling, extendshbm, fetchprofiles, fetchstrategyhelper, flush, foreignkey, generatedkeys, hbm, hql, jpa, mapping packages. - -commit fe3b6690c11430a980e3c6e5746e6a0b1bebff75 -Author: Hibernate-CI -Date: Wed Jun 16 09:55:38 2021 -0500 - - fixes to in-line jakarta transformation tasks - - - fix path replacements (test bundles) - - drop inaccurate attempts to access javadoc/sources jar tasks and outputs for jakarta projects - they are not producing them (alternatively, and eventually will have to, we could have them produce those artifacts) - - skip jakarta modules for aggregated javadoc building - -commit 4734897601b04c14ff9688a48f367bf668e77863 -Author: Steve Ebersole -Date: Tue Jun 15 15:11:59 2021 -0500 - - Enable more tests - -commit 3172d52deb7e7924f3ecbb199866704e0a4a19af -Author: Andrea Boriero -Date: Wed Jun 16 09:57:42 2021 +0200 - - Fix Jakarta test failures - -commit 107849c3c81c8a1fd7242a1cc51104062890c0b2 -Author: Christian Beikov -Date: Wed Jun 16 08:37:14 2021 +0200 - - Fix jakarta sources transformation issues - -commit e4120234d33e01d15a767ab541d1d0e283d8e15d -Author: Steve Ebersole -Date: Tue Jun 15 13:43:47 2021 -0500 - - * HHH-14634 : Gradle Enterprise - * fixed problem in release.gradle that caused "configuration phase" to take much longer than it should - * parallelized the build - * Initial TREAT tests - * fixed bug in `hibernate-core-jakarta.gradle` related to JPA packaged test bundle handling - -commit f02ba820e59d09dfa4dc9b8f0caa323265ecc5a1 -Author: Steve Ebersole -Date: Fri Jun 11 15:11:17 2021 -0500 - - Migrating tests from o.h.event - -commit d6406624358f3a9c02ae4257ac2b5582c6ce4b93 -Author: Andrea Boriero -Date: Fri Jun 4 14:34:30 2021 +0200 - - Pass UniqueSemantic enum to SingleIdLoadPlan#load method and refactoring of ListResultConsumer#consume() method - -commit d1bc4e6a336b6c291a99d3ab5be5729e968b17c0 -Author: Andrea Boriero -Date: Thu Jun 3 14:31:09 2021 +0200 - - Use JTD to compare row results in ListResultConsumer - -commit a8cf8165ae228eb7ad1ad79287f322a503521316 -Author: Andrea Boriero -Date: Thu Jun 3 13:26:44 2021 +0200 - - Add version to logic evaluating @SkipForDialect and @RequiresDialect - -commit 39d5d344fb5b404648a4933574028ba64b53f621 -Author: Andrea Boriero -Date: Tue Jun 1 15:48:28 2021 +0200 - - Fix throw exception when more than one row with the given identifier was found and re-enabled additiona tests - -commit babefc8b9d2fbe852902c4173166be9abb3213db -Author: Andrea Boriero -Date: Mon Jun 14 08:26:07 2021 +0200 - - Fix AbstractEntityPersister#findSubpart returning the wrong ModelPart when the Entity has an attribute named id that it is not the identifier - -commit 0e6561baf44cf6300ac4ee60a799955787e8ff45 -Author: Andrea Boriero -Date: Thu Jun 10 14:43:15 2021 +0200 - - Fix AbstractEntityPersister#findSubpart returning the wrong ModelPart when the Entity has an attribute named id that it is not the identifier - -commit 055ba6da7118f434eae15509dfcedc4607c3a20e -Author: Andrea Boriero -Date: Wed Jun 9 08:18:13 2021 +0200 - - Fix many-to-many wrong table for order column - -commit 105f91e91064b46884f94dc49ac76fb2876205b1 -Merge: 5617ce056d 9630ca9a7f -Author: Andrea Boriero -Date: Tue Jun 15 11:50:01 2021 +0200 - - Merge remote-tracking branch 'upstream/main' into wip/6.0 - -commit 9630ca9a7f7272f923745d282c816d7eddb89df3 -Author: Sanne Grinovero -Date: Mon Jun 14 20:26:08 2021 +0100 - - Actually next will be 5.5.3-SNAPSHOT - -commit d345516ab8cc11d6d43b80586efadba0caa766fa -Author: Hibernate-CI -Date: Mon Jun 14 15:45:29 2021 +0000 - - 5.5.2-SNAPSHOT - -commit 1b1a6e7c1c782ef521278f89f62639c314ee9d6a (tag: 5.5.2) -Author: Hibernate-CI -Date: Mon Jun 14 15:40:24 2021 +0000 - - 5.5.2.Final - -commit 26038d1b002ed02692a37a6c6156fea243f870eb -Author: Markus Heiden -Date: Tue Jun 8 01:01:06 2021 +0200 - - HHH-14657 Use the compile instead of runtime classpath - - The runtime classpath contains the dependencies as jars that are not yet built when the plugin needs them. So use the compile classpath plus the compiled classes of the current project. - -commit 423b13b50ae7940c11807a4b8c545d16a12e8059 -Author: Markus Heiden -Date: Tue Jun 8 01:01:06 2021 +0200 - - HHH-14657 Use the compile instead of runtime classpath - - The runtime classpath contains the dependencies as jars that are not yet built when the plugin needs them. So use the compile classpath plus the compiled classes of the current project. - -commit f91fe0335276896cafcdf841f1ec9d8cbbfb1417 -Author: Steve Ebersole -Date: Fri Jun 11 11:52:01 2021 -0500 - - HHH-14679 - Deprecate ResultSetWrapper and friends - -commit e2f24c5436316fc09792fe9801151e189269af48 -Author: Sanne Grinovero -Date: Mon Jun 14 15:31:48 2021 +0100 - - HHH-14667 Maintain backwards compatibility for Hibernate Reactive - -commit 5617ce056dd1c58e54fef4154ac9350093ec0353 -Author: Steve Ebersole -Date: Fri Jun 11 14:15:31 2021 -0500 - - Migrating tests - -commit e4d61a7c62d31474fb050a1a9755b8823c990f73 -Author: Steve Ebersole -Date: Fri Jun 11 12:02:47 2021 -0500 - - HHH-14678 - Drop ResultSetWrapper and friends - -commit f618b47db43bd6339ca9bae0ff1fd485bffeaf92 -Author: Steve Ebersole -Date: Fri Jun 11 11:28:09 2021 -0500 - - HHH-14634 : Gradle Enterprise - - - re-enable `publishAlways` in addition to `publishIfAuthenticated` - -commit 2967f6b40bd93013aede6afb1a35acee9f4bb5cd -Author: Steve Ebersole -Date: Fri Jun 11 10:20:14 2021 -0500 - - HHH-14634 : Gradle Enterprise - - - temporarily move `publishAlways` to just CI runs until Gradle can clarify how to use that when users are not authenticated; I was originally told that `publishAlways` would simply skip publishing if credentials are not present, but that is clearly not the case - -commit ee55768587abc2893d26fca1915ac32e86242fa2 -Author: Sanne Grinovero -Date: Fri Jun 11 10:05:28 2021 +0100 - - HHH-14667 SequenceFilterTest only needs to be run on H2 - -commit 5b2289e883fb022beaf1c0dcb6097cd69463e399 -Author: Sanne Grinovero -Date: Thu Jun 10 12:05:32 2021 +0100 - - HHH-14667 Avoid triggering the load of sequence metadata when not required - - Also introduce SequenceMismatchStrategy#NONE, which allows to fully disable the checks - performed by SequenceMismatchStrategy on initialization; combining these two - changes, users have the option to fully skip loading the details about existing - sequences from the DB. - -commit ab8c81482c7d7d0f65a8f7e9a584dacef965bbf5 -Author: Sanne Grinovero -Date: Wed Jun 9 22:56:29 2021 +0100 - - HHH-14667 Remove also ExtractedDatabaseMetaData#getExtraKeywords() as it's unused as well - -commit 8f765eeff82f60de42a2acad7b14e1306626a166 -Author: Sanne Grinovero -Date: Wed Jun 9 15:53:01 2021 +0100 - - HHH-14667 Remove also unused: ExtractedDatabaseMetaData#getTypeInfoSet() and doesLobLocatorUpdateCopy() - -commit c10493435ef924d867d679a96607ce2bb3864767 -Author: Sanne Grinovero -Date: Wed Jun 9 15:05:19 2021 +0100 - - HHH-14667 Skip loading all keywords from the DB when keyword auto-quoting is disabled - -commit fd3585728456e17e5482802bee1ad9a053519f8c -Author: Sanne Grinovero -Date: Wed Jun 9 14:48:21 2021 +0100 - - HHH-14667 Remove some dead code - -commit f8da005f3a465799f60acb238be41d209f7e81bf -Author: Sanne Grinovero -Date: Wed Jun 9 14:40:02 2021 +0100 - - HHH-14667 Remove extraction of TypeInfo from the Database JDBC metadata as it's unused - -commit 8002b188bbb7f4c799ba1172db833827bb39c259 -Author: Andrea Boriero -Date: Thu Jun 3 11:52:18 2021 +0200 - - HHH-14649 Oracle limit handler create wrong sql query when multiple spaces are present in the query - -commit bbc2ecb4840fcdcb6e2003ab2be5faf7d33b73db -Author: Andrea Boriero -Date: Thu Jun 3 11:51:50 2021 +0200 - - HHH-14649 Add test for issue - -commit d60dc9255d7abf4736bacddd6c8ac64f9641daea -Author: Christian Beikov -Date: Wed Jun 9 18:15:05 2021 +0200 - - HHH-14660 Deprecate component mappings with different attributes for the same class - -commit 6d59fec4365798b2391e140b251850b44e6f0e65 -Merge: 5e0864729b 916bcbdef0 -Author: Andrea Boriero -Date: Thu Jun 10 09:52:24 2021 +0200 - - Merge remote-tracking branch 'upstream/main' into wip/6.0 - -commit 916bcbdef01550f6d033d7e77ebd8cffba5d2c58 -Author: Yoann Rodière -Date: Mon Jun 7 14:47:22 2021 +0200 - - HHH-14659 Fix "join fetch" on mapped-by association being ignored when using bytecode enhancement - -commit 50b8ad1f2b62b0bfe4c249ad28288271af2ff8e6 -Author: Yoann Rodière -Date: Mon Jun 7 11:10:59 2021 +0200 - - HHH-14659 Test query "join fetch" on lazy to-one associations with bytecode enhancement - -commit 0eb187fae49f3e24a1d6ebafa3913f8112b0a083 -Author: Yoann Rodière -Date: Mon Jun 7 10:40:38 2021 +0200 - - HHH-14659 Test join fetch correctly in HHH3949Test - -commit 5e0864729b050cbad17d13e96e9750411be3eb6f -Author: Christian Beikov -Date: Tue May 25 15:29:55 2021 +0200 - - Update H2 to 1.4.200. Replace LockMode in Fetch and DomainResult with the source alias to resolve lock mode during initializer creation. Introduce notion of aggregate function with an optional filter clause. Implement support for rendering locks into SQL. Move locking tests to orm package - -commit 66ae1c9557f6feb5cdb5e77edf936dec2cb980bf -Author: Christian Beikov -Date: Tue Jun 8 23:05:51 2021 +0200 - - HHH-14665 Fix schema generation test missing the default semi-colon in comments - -commit 10cba26bda99c6e0cdc988b57ef63470f2393096 -Author: Christian Beikov -Date: Tue Jun 8 17:08:59 2021 +0200 - - HHH-14665 Use semi-colon as the default statement delimiter for scripts - -commit 6155f95cf78e35196e6d6c89f338a8bedee95d81 -Author: Sanne Grinovero -Date: Sun Jun 6 20:49:21 2021 +0100 - - HHH-14661 GraalVM support should not register ANTLR parser nodes when the Parser isn't reacheable - -commit 40ed10e9fa08191ca9b252ef8499fee1693fc227 -Author: Sanne Grinovero -Date: Sun Jun 6 20:46:20 2021 +0100 - - HHH-14662 Remove unnecessary statuful lambda instances from StatisticsImpl - -commit 3443541f6c2d763a346a7d4850fcadac76cbcf70 -Author: Christian Beikov -Date: Mon Jun 7 15:20:29 2021 +0200 - - HHH-14655 Upper case the information schema sequence identifier again to fix issues with case sensitive databases - -commit 6ced2f0aca2dc02136877ade5e655b7923b8d7e3 -Merge: 97869203ba 5df5ddbe3a -Author: Andrea Boriero -Date: Mon Jun 7 12:47:53 2021 +0200 - - Merge remote-tracking branch 'upstream/main' into wip/6.0 - -commit 5df5ddbe3ad0d68a14f34f89a54f79d6d2cf51d2 -Author: Christian Beikov -Date: Fri Jun 4 13:32:23 2021 +0200 - - Remove obsolete JPA 3.0 TCK build arg - -commit 97869203ba3ebb2adf3932fe8debac74ffc41996 -Author: gavin -Date: Thu Jun 3 16:03:19 2021 +0200 - - rename things to 'Emulation' for consistency - -commit f9534ead03736dc93f5410aa736d5a7a7bac505e -Author: nathan.xu -Date: Wed Jun 2 22:06:17 2021 -0400 - - HHH-14642 finish ScrollableResultsImpl - -commit d828bfb0867fc86057acde809b4730f6610db17a -Author: nathan.xu -Date: Wed Jun 2 17:14:23 2021 -0400 - - HHH-14641 replace 'http://' reference with 'https://' - -commit 5579a38d4d9de5e702a762bb7c7bb15d98936d23 -Author: Sanne Grinovero -Date: Thu Jun 3 10:14:35 2021 +0100 - - HHH-14650 AbstractRowReader: remove more redundant checks - -commit 84e7c5f63ba97823a95ddb8c0553e6ee1c3196be -Author: Sanne Grinovero -Date: Thu Jun 3 10:12:26 2021 +0100 - - HHH-14650 AbstractRowReader: remove unnecessary nullchecks - -commit fb69172a4b0f42741b3b48b73dc01c2f1bcbd95c -Author: Sanne Grinovero -Date: Thu Jun 3 10:07:19 2021 +0100 - - HHH-14650 AbstractRowReader: no need to pre-compute the entityInitializerByEntityReference cache in advance - -commit c22393d57b1368414b35265f881619bcdf81726f -Author: Sanne Grinovero -Date: Wed Jun 2 17:07:18 2021 +0100 - - HHH-14650 Optimise AbstractRowReader for iterations on entity initializers - -commit df48d19bbc370f89b5aa0915640b9bc6c3e77a43 -Author: Sanne Grinovero -Date: Wed Jun 2 16:50:03 2021 +0100 - - HHH-14647 Make ResourceRegistryStandardImpl#unassociatedResultSets lazily initialized - -commit c490e86fccdd357c5ddc4182ea5e4e8691fa5c95 -Author: Christian Beikov -Date: Wed Jun 2 19:24:10 2021 +0200 - - Fix issues with JPA 3.0 TCK run with alternative base image - -commit 2dc07c2ffe59228b6e76a373ebcfff73a6b8ebfb -Author: Jan Schatteman -Date: Tue Jun 1 22:52:21 2021 +0200 - - HHH-14503 - Migrate tests from jpa/test to orm/test/jpa - - Signed-off-by: Jan Schatteman - -commit 6c3afbed950f7f0d8c28251038c886bf5f121092 -Author: Sanne Grinovero -Date: Wed Jun 2 15:44:15 2021 +0100 - - HHH-14646 Updating the migration guide for 5.5 - -commit 828afd348d2f3c2b9753bef686b19c98e4f37deb -Author: Christian Beikov -Date: Wed Jun 2 12:12:16 2021 +0200 - - Parameterize Jenkins TCK pipelines and upload Jakarta JPA TCK results - -commit bf48b81422b1913c9802517803b7348217135a1e -Author: Hibernate-CI -Date: Tue Jun 1 15:02:43 2021 +0000 - - 5.5.1-SNAPSHOT - -commit 7a584223f81c61e872bafedebf3706f731fc2afe (tag: 5.5.0) -Author: Hibernate-CI -Date: Tue Jun 1 14:56:34 2021 +0000 - - 5.5.0.Final - -commit fab2503981205a4bc9b381ab81fc11ddfb4dce11 -Author: Christian Beikov -Date: Tue Jun 1 16:33:02 2021 +0200 - - Update Jakarta XML Binding API to 3.0.1 - -commit 422b80b80d5d87c1c70a00f5c83609a9c4eaca1a -Author: Andrea Boriero -Date: Thu May 20 16:18:07 2021 +0200 - - HHH-14624 Oracle from version 12 started supporting the syntax for pagination - -commit 2952b60cc33660c676efa7e55c7811e3431aa21b -Author: Andrea Boriero -Date: Thu May 20 16:17:19 2021 +0200 - - HHH-14624 add test - -commit fa261190ecee6ad4e094fb4ae29523ef8f02a9d0 -Author: Gavin King -Date: Thu Sep 17 14:10:38 2020 +0200 - - HHH-14240 Stop generating fragments of uppercase SQL - - Hibernate generates lowercase SQL. - - (Note that I already fixed all this in H6, but not in H5.) - -commit d11abccefedfb58a7e92d5153ca0a6fb8071859d -Merge: d413bdf2e9 19c774831c -Author: Andrea Boriero -Date: Mon May 31 16:35:10 2021 +0200 - - Merge remote-tracking branch 'upstream/main' into wip/6.0_merge_8 - -commit d413bdf2e9b4b6fda6e96cc21a6312fdd39bf691 -Author: Andrea Boriero -Date: Mon May 31 15:57:06 2021 +0200 - - Fix errors after merge with main - -commit 451568f3221fa0e8e53d4a7a1494954ae6dc04c4 -Merge: 2c6e000537 07eca3883d -Author: Andrea Boriero -Date: Mon May 31 14:55:18 2021 +0200 - - Merge remote-tracking branch 'upstream/main' into wip/6.0_merge_7 - -commit 19c774831cb5929024683cd1fa6e27318b48c120 -Author: Nathan Xu -Date: Thu May 27 12:48:12 2021 -0400 - - HHH-14139 BasicBinder Trace Logging Causes Duplicated Message - -commit 2c6e000537fa8c606eaf803889e7790c00fca09e -Merge: 020319b4fb 88f50a1943 -Author: Andrea Boriero -Date: Mon May 31 13:18:38 2021 +0200 - - Merge branch 'wip/6.0_merge_6' into wip/6.0 - -commit 88f50a194300bd22134e587b4f44e72888f51426 -Author: Andrea Boriero -Date: Mon May 31 13:02:16 2021 +0200 - - Fix jakarta tests - -commit 020319b4fbd0e84f5c21d86f555db8c0feea7246 -Author: Andrea Boriero -Date: Thu May 27 11:06:21 2021 +0200 - - Re-enable additional tests - -commit f47a44e1cf0b626a4c57197ac4dbc413cccac90c -Author: Andrea Boriero -Date: Tue May 25 17:46:28 2021 +0200 - - Fix eager batch collection not initialized - -commit 21c607c929337dfd9f457b461c371d273021deec -Author: Andrea Boriero -Date: Tue May 25 16:16:17 2021 +0200 - - Fix CollectionLoaderBatchKey parameters binding error - -commit 629b318731be65116ac172869e11487d09e18dec -Author: Andrea Boriero -Date: Thu May 20 09:26:32 2021 +0200 - - Fix SmqBagJoin, SqmSetJoin and SqmListJoin throwing NotYetImplementedFor6Exception - -commit cbeedd1c329d1d2b989aa48b479250453b00b118 -Author: Steve Ebersole -Date: Wed May 26 12:36:59 2021 -0500 - - HHH-14634 : Gradle Enterprise - - - added JDK version as tag - - added job-name (for CI) as tag - -commit 07eca3883d13e4f5f898de15c8506c0fd2eecf1c -Author: Yoann Rodière -Date: Tue May 25 12:46:19 2021 +0200 - - HHH-14635 Upgrade to log4j 2 - -commit 0c74a9263c154515eb97fe4df4dcc1f965901892 -Author: Yoann Rodière -Date: Tue May 25 12:12:49 2021 +0200 - - HHH-14635 Update to latest JUnit - -commit 1238e5261d93424b774d112274bba7cd9165d67d -Author: Steve Ebersole -Date: Tue May 25 16:33:02 2021 -0500 - - HHH-14634 : Gradle Enterprise - - - removed older "build scan recipes" plugin - - adjusted CI handling based on feedback - -commit d7d74d087591360eaf893e18224d50300144e726 -Author: Steve Ebersole -Date: Tue May 25 16:11:31 2021 -0500 - - HHH-14634 : Gradle Enterprise - - - Re-added setting rootProject name - -commit 8c9330a8ffb5049f4a89967f07331442c7754743 -Author: Christian Beikov -Date: Tue May 25 18:11:29 2021 +0200 - - Fix jakarta tests - -commit f90a5f930b9ab70bb41c62ddc62c4253c762a420 -Author: nathan.xu -Date: Fri May 14 22:40:52 2021 -0400 - - HHH-14607 prefer FetchOptions over FetchStrategy - -commit c631f3924d393aa19627d13794bdb1efa9cf1005 -Author: Andrea Boriero -Date: Tue May 25 09:19:38 2021 +0200 - - Fix hibernate-core-jakarta test failure - -commit cea044ec698291b3f69b3298498fac5beafe72d0 -Author: Vlad Mihalcea -Date: Mon May 24 11:30:59 2021 +0300 - - HHH-14632 - Call statistics.queryPlanCacheHit and statistics.queryPlanCacheMiss for FilterQueryPlan and NativeSQLQueryPlan - -commit b2bdcf9778ee22649f58de5eb09d81bc5e46c162 -Author: Steve Ebersole -Date: Mon May 24 15:44:21 2021 -0500 - - HHH-14634 : Gradle Enterprise - - - Allow for passing `hibernatePublishUsername`, `hibernatePublishPassword`, ``hibernatePluginPortalUsername` and hibernatePluginPortalPassword` as system-properties (-D) as well as property-properties (-P). Jenkins needs to specify them as system-properties - -commit ffae5474a6dae495c95ca653d950c19052aa1b4c -Merge: dfa2d915e1 7570f39d10 -Author: Andrea Boriero -Date: Mon May 24 20:41:03 2021 +0200 - - Merge remote-tracking branch 'upstream/main' into wip/6.0_merge_6 - -commit 63c10e8ec09b650a30c119196c8ecaca45c6309d -Author: Steve Ebersole -Date: Mon May 24 12:25:53 2021 -0500 - - HHH-14634 : Gradle Enterprise - - - extracted config into `gradle-enterprise.gradle` to help move config to other branches/projects - -commit 4880eab48466c2d10849b331e991af4bef8bf3eb -Author: Steve Ebersole -Date: Mon May 24 11:49:11 2021 -0500 - - HHH-14634 : Gradle Enterprise - -commit 80801d27bbfe665d5e728f58cadd223fd5ea5f7d -Author: Steve Ebersole -Date: Sun May 23 22:17:42 2021 -0500 - - Improved Gradle Plugin Portal auth handling - -commit dfa2d915e10b3d204f071c053ad2824b3510b66d -Merge: 466c9b5f38 cd97e59d21 -Author: Andrea Boriero -Date: Mon May 24 16:07:43 2021 +0200 - - Merge branch 'main_2' into wip/6.0_merge_5 - -commit 466c9b5f381bf38f610c8bb89b89e2226091963f -Merge: 2e875f9b8a c096b463ee -Author: Andrea Boriero -Date: Mon May 24 16:00:11 2021 +0200 - - Merge branch 'main_2' into wip/6.0_merge_5 - -commit 7570f39d10db832f443db6f0b8b87a10cd6bfec1 -Author: Hibernate-CI -Date: Mon May 24 11:31:12 2021 +0000 - - 5.5.0-SNAPSHOT - -commit ad57a1dde26e6e683a941e50206bd8d746ed0e8c (tag: 5.5.0.CR1) -Author: Hibernate-CI -Date: Mon May 24 11:24:50 2021 +0000 - - 5.5.0.CR1 - -commit fc3accfbd1b8596a440837ba7b7c29a875968e68 -Author: Christoph Dreis -Date: Fri Apr 23 16:43:04 2021 +0200 - - HHH-14574 Avoid NPEs from LoadContexts.cleanup(ResultSet) - -commit 26e858c78b303cbb2a0c5539d8a25f879cd3c1c7 -Author: Andrea Boriero -Date: Sat May 22 09:12:40 2021 +0200 - - HHH-14616 Change VERSION_COLUMN_ALIAS from v to version_ - -commit 6bb1900495b25aa2d14faa98c2d00b0b24d1f37e -Author: Gail Badner -Date: Wed May 19 17:08:08 2021 -0700 - - HHH-14616 : Add test case with default hibernate.globally_quoted_identifiers (=false) and version column quoted - -commit e76a60cbfc0d556e16301140ba8dbd525a17f813 -Author: Andrea Boriero -Date: Tue May 18 10:14:22 2021 +0200 - - HHH-14616 Oprimistic Lock throws org.hibernate.exception.SQLGrammarException: could not retrieve version - -commit 75bcb6bc0c77dd5742e007eeda4009631060a19f -Author: Andrea Boriero -Date: Tue May 18 10:13:49 2021 +0200 - - HHH-14616 Add test for issue - -commit a57c0e34ff99dc77d4b372e225fdd65d1373b82a -Author: Christian Beikov -Date: Thu May 20 14:27:01 2021 +0200 - - HHH-14618 Allow passing multiple script source files separated by comma - -commit bf19f98c2d59fb60cf4043cab322dfd68a9e5101 -Author: Christian Beikov -Date: Wed May 19 15:50:24 2021 +0200 - - HHH-14619 Test and fix ClassCastException because collection of uninitialized proxy is dirty checked - -commit 6dc3b4a7263ffce501544499fe4c443b3f871228 -Author: gavin -Date: Wed May 19 11:17:02 2021 +0200 - - make logFlushResults() protected for the benefit of HR - -commit e6688f8ebc83b5562225a1969d2967f28ddf5a0d -Author: Sanne Grinovero -Date: Wed May 19 21:00:28 2021 +0100 - - HHH-14622 Improved iteration of PreLoadEventListener - -commit ccc5eb13054af130f9132fcf1c7808901fa9e2c9 -Author: Yoann Rodière -Date: Thu May 20 08:46:36 2021 +0200 - - HHH-14620 Remove duplicate assertions in LazyCollectionLoadingTest - -commit 12cb577f9f7febf0cfcd709289495aa7be8c799a -Author: Yoann Rodière -Date: Wed May 19 16:10:03 2021 +0200 - - HHH-14620 Test incorrect initialization of a collection with extended bytecode enhancement - -commit b9270e44b186dd0f2eb9821e1c766e01249d4bd5 -Author: Yoann Rodière -Date: Wed May 19 16:25:35 2021 +0200 - - HHH-14620 Do not initialize collections just to take a snapshot of their size - - As far as I can tell this is safe enough for dirty tracking: - - * The collection tracker will return a size of -1 for that collection - * Which is exactly the behavior we currently get after - $$_hibernane_clearDirtyCollectionNames is called if a collection has - been "retrieved" (getter called) but was not initialized. - * This will mainly prevent some optimizations because we will no longer - be able to tell whether a collection is "dirty" or not. - - I think we should be able to restore those optimizations: for - PersistentCollection instances, we would store the "initial" size - inside the collection itself upon initialization, - and we would compare THAT size to the current size in implementations - of $$_hibernate_areCollectionFieldsDirty (see - org.hibernate.bytecode.enhance.internal.bytebuddy.CodeTemplates). - - Alternatively we could store the CollectionTracker inside the - PersistentCollection so that the collection can update the tracker - upon initialization. - - However, that's outside the scope of this bug, that would require - significant testing, and that may cause conflicts with ORM 6, so I won't - do it here. - -commit 2e875f9b8a83ac090f673d374f0f1ae113870c7e -Author: nathan.xu -Date: Tue May 18 19:57:03 2021 -0400 - - HHH-14617 remove QueryLiteralRendering and LiteralHandlingMode - -commit b51fb9fe030e3abfb8a9ec667b70c6551d836fb0 -Author: Steve Ebersole -Date: Tue May 18 16:03:34 2021 -0500 - - Fixed problems with - - - javadoc generation - - SourceForge distribution bundles - -commit eb6c68cdc608ba90cd9deeb654a4e3dccde03ccc -Author: Sanne Grinovero -Date: Tue May 18 22:05:17 2021 +0100 - - HHH-14621 Introduce new methods on EventListenerGroup which allow Hibernate Reactive to fire events more efficiently - -commit 9cca31153c61e8bbf318faea737a78708ea72f54 -Author: Steve Ebersole -Date: Tue May 18 15:52:50 2021 -0500 - - Post-steps for release : `6.0.0.Alpha8` - -commit 0bda34b9afd24ea7b60df41ca16dbc2076fdfab1 (tag: 6.0.0.Alpha8) -Author: Steve Ebersole -Date: Tue May 18 15:52:50 2021 -0500 - - Pre-steps for release : `6.0.0.Alpha8` - -commit 2e1ebfc4dae403e74fccf285c7bbb3b3c607c6b9 -Author: Steve Ebersole -Date: Tue May 18 15:50:10 2021 -0500 - - prepare for 6.0.0.Alpha8 - -commit 5ae9e9fb7e6e82c42cb073491f702086f94ec798 -Author: Steve Ebersole -Date: Tue May 18 14:58:16 2021 -0500 - - prepare for 6.0.0.Alpha8 - -commit 8518c04862b5d6b03214e86a8d9d4f70c5aa733f -Author: Steve Ebersole -Date: Tue May 18 14:55:00 2021 -0500 - - prepare for 6.0.0.Alpha8 - -commit 2fcaf0848ab588b3836a647b69c059daa4336ece -Author: Steve Ebersole -Date: Tue May 18 13:11:03 2021 -0500 - - 6.0.0.Alpha8 - -commit 715e87ada445f8cdb6abe8202741ebe1285a0f23 -Author: Steve Ebersole -Date: Tue May 18 13:06:57 2021 -0500 - - prepare for 6.0.0.Alpha8 - -commit db502bf1b0ac2512ad5962fe0e65e03261974ecb -Author: Steve Ebersole -Date: Fri May 14 17:31:28 2021 -0500 - - prepare for 6.0.0.Alpha8 - -commit 531d0f923c97a21787b0cce4f483d957814cc3d0 -Author: Andrea Boriero -Date: Tue May 18 15:24:50 2021 +0200 - - Fix joined sublcass hql wrong join type for associations - -commit b52dfbab7eedc14b7c145bcd9920b41386cc6804 -Author: Andrea Boriero -Date: Thu May 13 20:24:08 2021 +0200 - - Collection Intializer fix creation of persistence set instance for the wrong subclass - -commit 9e343ac0d7266baef43c6c99a201ff2397588c48 -Author: Andrea Boriero -Date: Thu May 13 13:25:41 2021 +0200 - - Re-enable additional tests and fix hql queries not detecting circularity - -commit 92c70ecb088d33c0934284321d2803ab1ac46d4a -Author: nathan.xu -Date: Fri May 14 17:19:01 2021 -0400 - - HHH-14605 add BLOB, CLOB and NCLOB to JdbcTypeDescriptor's type category method - -commit 8b9b5e7e68893dc9c84120c8295d7afad8371290 -Author: Sanne Grinovero -Date: Sun May 16 14:55:57 2021 +0100 - - HHH-14610 Upgrade to Byte Buddy 1.10.22 - -commit c349551fc36029c411c9d629a9d7006198d1b302 -Author: Steve Ebersole -Date: Fri May 14 16:47:30 2021 -0500 - - fixed CI job task - -commit 5bb128000f66f33ddb4b8f2bbde37aecf756e74e -Author: Steve Ebersole -Date: Fri May 14 15:23:41 2021 -0500 - - fixed release.gradle - -commit 703a121c006d5a46210c277b969de0c9c3e9c129 -Author: Steve Ebersole -Date: Fri May 14 15:05:10 2021 -0500 - - HHH-12416 : Drop `hibernate-ehcache` - -commit af3031a3d528823803e1528fec79dbaf74884c9d -Author: Steve Ebersole -Date: Fri May 14 15:03:07 2021 -0500 - - HHH-14518 : drop `hibernate-osgi` module - -commit c7e37dc1d7b1fb21a3404f0b9276ab34f48cf4df -Author: Steve Ebersole -Date: Fri May 14 14:59:59 2021 -0500 - - HHH-14513 : Move publishing release and snapshot artifacts to Sonatype OSSRH - -commit d53216306f8cc20f543cb74d81381ab00fdb51de -Author: nathan.xu -Date: Fri May 7 22:22:02 2021 -0400 - - HHH-14600 verify UUID - -commit 0f683ff25dcf6cccd66e8c105255835b1f64d732 -Author: Nathan Xu -Date: Wed Sep 23 11:04:20 2020 -0400 - - HHH-14601 fix the typo of `extracter` - -commit 26ccd0c36ddf03993dd27681a23dabd3c1c7454c -Author: Steve Ebersole -Date: Fri May 14 05:42:56 2021 -0500 - - HHH-11995 - Drop hibernate-entitymanager artifact - -commit bb047a9d9e1d86244858bc71c2d1242283751709 -Author: Steve Ebersole -Date: Thu May 13 13:11:38 2021 -0500 - - HHH-14598 - Drop `hibernate-infinispan` - -commit c17396521c5760b3db1517fd7f4267b770bc9c8b -Author: Steve Ebersole -Date: Thu May 13 12:43:59 2021 -0500 - - mariadb nationalization support - -commit 2bc9c52c4b291e3722037a7f15745ef3c333c50b -Author: Steve Ebersole -Date: Thu May 13 12:43:03 2021 -0500 - - HHH-11994 : drop `hibernate-java8` module - -commit 71515af5ccb37a06eea445af73e8ee3d509434f1 -Author: Steve Ebersole -Date: Sat May 8 15:42:43 2021 -0500 - - HHH-14589 - Make sure documentation examples regarding basic-types work and update the section - - - re-enable the basic-type tests in the `documentation` module - - fix basic-type resolution in various cases from tests in both `hibernate-core` and `documentation` - - updated the basic_types.adoc user-guide section + moved much of the "legacy" discussion to an appendix - - fixed missing impls of the optional contract `org.hibernate.type.AdjustableBasicType` - - improved handling of `NationalizationSupport` offered by a Dialect - - NOTE : - - changes to `ColumnTransformerTest` are related to "composite basics" not being supported, not problems with `ColumnTransformer`. - - final failure in `org.hibernate.userguide.mapping.basic` is `SubselectTest#testRefreshLifecycle` which actually fails because refresh is not working properly - -commit b30a68f5be8aeef7e8b1f8110fabfe08b4caf0b3 -Author: Andrea Boriero -Date: Thu May 13 09:49:14 2021 +0200 - - HHH-14596 WhereAnnotatedOneToManySizeTest fails on HANA database - -commit 40851fc50da7edac397175dfc41a6d3a97adeb28 -Author: Nathan Xu -Date: Wed Jan 13 18:07:48 2021 -0500 - - HHH-14406 fix Architecture svg image in user guide - -commit 43539f0399636cf90b9f35d6c5efd807f37440f6 -Author: Hibernate-CI -Date: Wed May 12 16:03:47 2021 +0000 - - 5.5.0-SNAPSHOT - -commit 0dbffcc0685d83153e5ee33e3ba6eaa57cf24ead (tag: 5.5.0.Beta1) -Author: Hibernate-CI -Date: Wed May 12 15:56:40 2021 +0000 - - 5.5.0.Beta1 - -commit 987dbbba2f50efc4dad7f28144496ffe5323261b -Author: Jan Schatteman -Date: Wed May 5 23:45:30 2021 +0200 - - Fix in one of the PersistenceXmlParser.parse() methods used in tests - - Signed-off-by: Jan Schatteman - -commit f7ab5f315dcdbe60310a347982671f031e6d88c8 -Author: Andrea Boriero -Date: Wed May 12 17:27:14 2021 +0200 - - HHH-14541 Only mark the session factory as closed *after* SessionFactoryObserver#sessionFactoryClosing was called - -commit eb4e397a048ca6013ac02c09c1ce4a834a65ad8a -Author: Yoann Rodière -Date: Fri Apr 30 14:42:05 2021 +0200 - - HHH-14541 Only mark the session factory as closed *after* SessionFactoryObserver#sessionFactoryClosing was called - -commit 7f152c36f7c70a1970a7d7d443076cc4a0a308ee -Author: Yoann Rodière -Date: Fri Apr 30 14:32:41 2021 +0200 - - HHH-14541 Test that the session factory is still open in SessionFactoryObserver#sessionFactoryClosing - -commit e60e3736a7259b6a69b42d5ddee946f0df2ee0a9 -Author: gavin -Date: Fri Mar 19 07:44:11 2021 +0100 - - cleaner approach to work around Oracle setNull(BOOLEAN) bug - - - introduce doBindNull() in BasicBinder - - use WrapperOptions and FastSessionServices - - use getPreferredSqlTypeCodeForBoolean() - -commit b36b8e4d1c617c9b49be9be9450df2f60cbe1d30 -Author: Christian Beikov -Date: Wed May 12 14:11:53 2021 +0200 - - Enable publishing for hibernate-testing-jakarta - -commit d0febfd0427e2179cee03a6b9d8fe9321493d199 -Author: Fabio Massimo Ercoli -Date: Tue May 11 09:42:19 2021 +0200 - - HHH-14585 Test more size() cases - - In particular projections using a size function - -commit a106ce29dc7135357028454b6aba94459cc4bc3c -Author: Fabio Massimo Ercoli -Date: Tue May 11 09:06:56 2021 +0200 - - HHH-14585 Handle filter fragment on CollectionSizeNode - -commit 15d9eb4112019389d16e2f560d9d0b2202d71ae8 -Author: Fabio Massimo Ercoli -Date: Tue May 11 09:05:28 2021 +0200 - - HHH-14585 Skip test for some dialects - -commit 51529f5f204a8b32f1196e521299feb7bc7052d1 -Author: mrizzi -Date: Fri May 7 17:50:09 2021 +0200 - - HHH-14585 size() HQL function discards '@Where' clause - -commit 0ecd66fd466478210796cc156be0edd5eaaef39c -Author: Andrea Boriero -Date: Fri May 7 12:48:06 2021 +0200 - - Fix use EmbeddedIdentifier instance as Entity - -commit 4e9b8c0c344f23c1b38d1f26fb495cd8c3bd184b -Author: Christian Beikov -Date: Mon May 10 16:45:40 2021 +0200 - - Introduce ForeignKeyDescriptor.Side wrapper around ModelPart of the FK sides to discriminate the role of the side better - -commit 3be99c1c73d24df2c1e26bd672177f425463d714 -Author: Christian Beikov -Date: Fri May 7 17:32:50 2021 +0200 - - Introduce enum for describing KEY and TARGET of FK and use/expose that to describe the FK direction of to-one associations - -commit 0c79d1d644600b5d82614dc21e59e2930103025f -Author: Christian Beikov -Date: Fri May 7 12:16:02 2021 +0200 - - Fix service registry injection through connection provider delegate - -commit a8f00b00aab67cfac886c7212dd94cb88eb0e14a -Author: Christian Beikov -Date: Fri May 7 09:50:35 2021 +0200 - - Make use of narayana Jakarta artifacts - -commit a864e253392484e452ad2026ba5b775ea81affd9 -Author: Christian Beikov -Date: Fri May 7 12:46:38 2021 +0200 - - Fix wrong key model of FK for inverse FK side - -commit 0750c6784e6d92b8900b18d942d3faf7a4ba90cb -Author: Yoann Rodière -Date: Fri May 7 08:37:02 2021 +0200 - - Only apply --add-opens to compiler JVM options when using JDK9+ - -commit 867dd52ab3a535421f35b653852eb678cfd0491b -Author: Andrea Boriero -Date: Fri May 7 09:59:08 2021 +0200 - - Re-enabled OneToOneFormulaTest - -commit 05ff370488568be8a7adb897d678cd8cce3aeb6e -Author: Andrea Boriero -Date: Fri May 7 09:57:56 2021 +0200 - - Re-enabled OneToOneFormulaTest - -commit e122ac33dc81d51643566566377139e501e9c718 -Author: Christian Beikov -Date: Thu May 6 16:54:47 2021 +0200 - - Fix foreign key direction issues - -commit 0157af79f7be4c9b19b849a0d47c6c45f4f80a06 -Author: Andrea Boriero -Date: Thu May 6 12:33:15 2021 +0200 - - Fix OneToOneFormulaTest#testOneToOneFormula() - -commit d6a6c29bd481ebfbcac0ba3abefff7ebca178407 -Author: Andrea Boriero -Date: Thu Apr 22 14:24:46 2021 +0200 - - Re-enabled additional tests - -commit a7ed354af9477160f78129e2c5874cdc8167f41d -Author: Christian Beikov -Date: Thu May 6 07:28:39 2021 +0200 - - Cleanup the circular handling of fetch building of embeddable FKs. Use the target navigable path for target FK domain results - -commit 1a24c9315539071aabf419ec1d6f4da14b48efa1 -Author: Christian Beikov -Date: Wed May 5 12:11:45 2021 +0200 - - Move tests from packages actionqueue, annotations, batch, boot, bytecode, id, resource, schemafilter, schematools, schemaupdate, schemavalidation, serialization, service, tool, unidir, util - -commit 71f666f0b6b2dd999377ced61b7b6e863aa79f10 -Author: Christian Beikov -Date: Wed May 5 12:00:43 2021 +0200 - - Use Property#getPropertyAccessStrategy which internally delegates to BuiltInPropertyAccessStrategies to handle enhanced cases - -commit 8e26756ccecc457efb63fd719b153e272ed23218 -Author: Christian Beikov -Date: Wed May 5 11:59:28 2021 +0200 - - Handle basic value type bindings before the copy identifier component second pass like in Hibernate 5 to avoid issues with missing types - -commit 9bba88b10e6982a64ff8eb8dbd9a981b90361b68 -Author: Christian Beikov -Date: Wed May 5 11:58:04 2021 +0200 - - 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 c79e9effe95f21ccc0f7cbb6a72ec43cc6a5821a -Author: Christian Beikov -Date: Wed May 5 11:55:49 2021 +0200 - - 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 225429a4cff4ff9904995ea3ff2b8f485a3bac63 -Author: Christian Beikov -Date: Thu May 6 07:16:32 2021 +0200 - - Fix publishing related issues in jakarta artifacts - -commit 129484557b3e92f2a59db6b41db107e2c78e6f41 -Author: Christian Beikov -Date: Wed May 5 15:47:50 2021 +0200 - - Re-include the temporary jakarta testing modules - -commit 181ac6e0ff3ac3fe6308dc44b59903ffb0d4d73f -Author: Christian Beikov -Date: Thu Apr 29 16:00:32 2021 +0200 - - 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 - -commit c87a50ca0f0fa08605649823b612abf77346c130 -Author: Steve Ebersole -Date: Tue May 4 09:15:19 2021 -0500 - - Support for type coercion for values passed as ids and as query parameter bindings - - - fixed compilation errors when using JDK 8 - -commit fa8571c706a1e10c96fed7f20ec8989ea9556887 -Author: Steve Ebersole -Date: Tue May 4 07:42:06 2021 -0500 - - Support for type coercion for values passed as ids and as query parameter bindings - - - widening coercions - - valid (no over/under flow) narrowing coercions - - JpaCompliance setting - -commit eb9bb2d82fa7d287b11dc7030439efc66211953c -Author: Steve Ebersole -Date: Fri Apr 30 13:59:20 2021 -0500 - - Support for type coercion for values passed as ids and as query parameter bindings - - - widening coercions - - valid (no over/under flow) narrowing coercions - - JpaCompliance setting - -commit d95806b5164d4dd1301b986bc9d40eb31f92a1e0 -Author: Steve Ebersole -Date: Thu Apr 29 13:02:26 2021 -0500 - - Support for type coercion for values passed as ids and as query parameter bindings - - - widening coercions - - valid (no over/under flow) narrowing coercions - -commit 27662f91a998cfd5a1366723261cb0a52854088c -Author: Christian Beikov -Date: Mon May 3 17:27:02 2021 +0200 - - Move most of the sql package to orm.test, remove unnecessary JdbcValuesMappingProducer implementations and make it clear that ResultSetMapping is required for native queries. Fix quoting and some hbm issues - -commit fef3e5313294ab68be9de812be156dc4c9feefe5 -Author: Christian Beikov -Date: Thu Apr 29 09:03:16 2021 +0200 - - Move where package to orm.test and further improve result set mapping support - -commit 72f4a2f61017f1b45812874031ef7debff34fe9e -Author: Yoann Rodière -Date: Mon May 3 18:13:16 2021 +0200 - - HHH-12445 Remove unused constants related to "null"/"not-null" discriminator values - -commit 662f86abe1c79c5e3fe9da86ee9d25cebd4beb61 -Author: Yoann Rodière -Date: Mon May 3 18:12:13 2021 +0200 - - HHH-12445 Test "null"/"not-null" discriminator values - -commit 1a2510df1604b9e8be10f543e2ea8f78f51768f9 -Author: Yoann Rodière -Date: Mon May 3 18:11:29 2021 +0200 - - HHH-12445 Fix ORM not detecting "null"/"not null" discriminator values correctly for joined inheritance - -commit 7144af5990ca4a11abbafeff26a1ad957ad08d71 -Author: Yoann Rodière -Date: Mon May 3 17:50:38 2021 +0200 - - HHH-12445 Auto-detect when discriminator columns are nullable - -commit 8936034d2943a94904026e39b19bf9faaaee134a -Author: Andrea Boriero -Date: Mon May 3 18:12:54 2021 +0200 - - HHH-14503 - Migration of tests from jpa/test to orm/test/jpa - -commit 28d7f4801986f9778552db6a1fae2ee36c4bd9f3 -Author: Andrea Boriero -Date: Mon May 3 14:28:40 2021 +0200 - - HHH-14503 - Migration of tests from jpa/test to orm/test/jpa - -commit 4a59e2d002e7f8b07c0bf75998e76f10140bd98a -Author: Jan Schatteman -Date: Tue Apr 27 19:17:52 2021 +0200 - - HHH-14503 - Migration of tests from jpa/test to orm/test/jpa - - Signed-off-by: Jan Schatteman - -commit 9bbad43e7526ecf983ce53747df78d31197c89f9 -Author: Andrea Boriero -Date: Mon May 3 17:25:18 2021 +0200 - - Fix PluraAttributeMapping wrong DelayedCollectionFetch creation - -commit 41c71bfed7d8eb74bd0574ed7bd2552d055dcf46 -Author: Emmanuel Duchastenier -Date: Tue Mar 23 17:37:35 2021 +0100 - - HHH-13779 (5.4) - Foreign key schema migrator should be case-insensitive - - This avoids re-creating existing foreign keys with a different name, - after migrating from Hibernate 4 to Hibernate 5 (as implicit naming - convention has changed). - Actually, some RDBMS allow it (PostgreSQL, MySQL, MS SQL Server, ...) - and duplicate the same key, whereas others (Oracle, ...) do not - allow it and Schema update fails. - - This fix ignores the case of the table and column name when checking - if a equivalent Foreign Key already exists (whatever its name) - - Closes https://hibernate.atlassian.net/browse/HHH-13779 - - (cherry picked from commit 0b819863f2cee41c7067d7e3656356f0b1221ef1) - -commit 830423422d357bfe374bae54ed6db39c3fb0daf1 -Author: Hibernate-CI -Date: Fri Apr 30 12:30:04 2021 +0000 - - 5.5.0-SNAPSHOT - -commit 996debdc5410992fdfbbce5cf57492f4db69a367 (tag: 5.5.0.Alpha1) -Author: Hibernate-CI -Date: Fri Apr 30 12:24:18 2021 +0000 - - 5.5.0.Alpha1 - -commit 8dabefd11153b80bad79dbe10ca874003647e24a -Author: Andrea Boriero -Date: Thu Apr 22 17:14:22 2021 +0200 - - HHH-14573 Remove useless call to EnhancementAsProxyLazinessInterceptor#isInitialized() - -commit c29b2d27ee66b0da2af2a640b5c2179c6454a983 -Author: Christian Beikov -Date: Fri Apr 23 12:07:20 2021 +0200 - - HHH-14577 Add Jenkinsfiles for running TCKs - -commit ff9e9eebc9992c7bc9128e9bf33d4b51b2bee7a4 -Author: Christian Beikov -Date: Thu Apr 22 18:15:45 2021 +0200 - - HHH-13946 Create Jakarta artifacts for hibernate-core, hibernate-envers, hibernate-jpamodelgen and hibernate-testing - -commit eb8b8620d7eee974b37ee421eb8044f4e818c5ff -Author: Christian Beikov -Date: Tue Apr 20 13:27:22 2021 +0200 - - HHH-14274 Support for jakarta prefixed String properties for integrations - -commit 14b35bb3b6b6e66b9aa52da4439afebee2b7475a -Author: Christian Beikov -Date: Tue Apr 20 13:11:26 2021 +0200 - - HHH-14273 Support for jakarta.persistence prefixed String properties - -commit cd97e59d2174578eeb8be7f16b630f5945d51a13 -Author: Andrea Boriero -Date: Thu Apr 29 20:17:45 2021 +0200 - - HHH-14513 Move publishing release artifacts from BinTray - -commit 9bcf10fb3fc20b7ce566754c488b444b12617d78 -Author: Andrea Boriero -Date: Thu Apr 29 15:50:25 2021 +0200 - - HHH-14513 Move publishing release artifacts from BinTray - -commit 93489525076a57d5952814081501702174751d79 -Author: Steve Ebersole -Date: Tue Apr 27 11:03:10 2021 -0500 - - support for selecting of joined plural attributes - -commit 19fbf18908860d82bab50cd018190a01be92d019 -Author: Steve Ebersole -Date: Tue Apr 20 07:33:14 2021 -0500 - - minor renaming and `#toString` fixups - -commit c096b463eef9e2447e9b68fcfd7354d6debe2bf2 -Author: Christian Beikov -Date: Thu Apr 29 13:43:31 2021 +0200 - - Emulate null ordering for CockroachDB - -commit 127ee26f826d3ab02dbe19cba0d3df59eb3d520f -Author: Andrea Boriero -Date: Thu Apr 29 11:05:55 2021 +0200 - - HHH-14513 Move publishing release artifacts from BinTray - -commit 33b0087f2a219859399e0a05a0c318dd784deb23 -Author: Christian Beikov -Date: Thu Apr 29 12:16:05 2021 +0200 - - Emulate null ordering for CockroachDB - -commit 0a4cd8e800beb9623cec660fbdb63fab2f26324e -Author: Sanne Grinovero -Date: Wed Apr 28 10:24:20 2021 +0100 - - HHH-14575 Adapt BasicProxyFactoryImpl to be more native-image friendly - -commit 9872fd9f0f85c7410cb36e2b82742f71dd2e0dd9 -Author: Andrea Boriero -Date: Tue Apr 27 15:50:04 2021 +0200 - - HHH-14503 - Migration of tests from jpa/test to orm/test/jpa - -commit 4b184fa0f11d6288a75d0954d164de41a2fbaff1 -Author: Jan Schatteman -Date: Tue Apr 13 20:45:48 2021 +0200 - - HHH-14503 - Migration of tests from jpa/test to orm/test/jpa - - Signed-off-by: Jan Schatteman - -commit 1023ee02b9649209a80549b5a851596572d4f467 -Author: Yoann Rodière -Date: Thu Apr 22 15:56:45 2021 +0200 - - HHH-14571 Always report identifiers as initialized when using enhanced proxies - -commit 6bc8421972c67492ef93947e54621b7d1755ecf5 -Author: Yoann Rodière -Date: Thu Apr 22 15:50:48 2021 +0200 - - HHH-14571 Test that the identifier is always reported as initialized by Hibernate.isPropertyInitialized when using enhanced proxies - -commit b27b414511410d0f03be5097e2d047d50f932eee -Author: Andrea Boriero -Date: Thu Apr 22 10:25:50 2021 +0200 - - Fix EmbeddedForeignKeyDescriptor creation when o.h.mapping.Value has no columns, Re-enabled additional tests - -commit 12f1c7917e5a9ad188b802217afb679787c0f007 -Author: Christian Beikov -Date: Mon Mar 15 16:23:09 2021 +0100 - - HHH-14475 Don't render subquery for collection functions - -commit 96980606fdcb3d196c43e91220672bf28289c0d1 -Author: Burkhard Graves -Date: Fri Mar 12 18:39:03 2021 +0100 - - HHH-14475 - select indices from ternary relation is broken since 5.4.13 (at least in mariadb) - -commit 179327cd403942ab1256d93467f2de56788750e1 -Author: Gavin King -Date: Tue Aug 25 13:54:07 2020 +0200 - - [HHH-14031] on H2 1.4.200 and above use localtime/localtimestamp - - As suggested by @famod we need to use localtime instead - or current_time because of changes in H2. - - In particular the JDBC driver now refuses to convert - TIME/TIMESTAMP WITH TIME ZONE to plain TIME/TIMESTAMP. - -commit 15e49692e9d181e229bcec89fc8a8524f9233ae4 -Author: Andrea Boriero -Date: Fri Apr 16 11:27:19 2021 +0200 - - Fix wrong creation of new instances for non aggregated id with no IdClass - -commit 90808729461b858189a8c18e690ed9410efd719b -Author: Christian Beikov -Date: Tue Apr 20 11:32:37 2021 +0200 - - Infer parameter bind type for null parameter values instead of using a default - -commit 8d981a82bb4321f1cf8d13e7744566a95205abd5 -Merge: 4330d7345b c48606a5aa -Author: Andrea Boriero -Date: Tue Apr 20 09:46:56 2021 +0200 - - Merge branch 'wip/6.0_merge_1' into wip/6.0_merge_3 - -commit c48606a5aa5f5d992291ee2ec9f2e3880963642e -Merge: 607234e7bf 8389b1a7a2 -Author: Andrea Boriero -Date: Tue Apr 20 09:45:47 2021 +0200 - - Merge remote-tracking branch 'upstream/main' into wip/6.0_merge_1 - -commit 4330d7345bc65d40b328a6e5b7e95499f1d52437 -Author: Christian Beikov -Date: Tue Apr 20 08:42:16 2021 +0200 - - Checkstyle fix - -commit 607234e7bfcd78d9a5b11eb60afbf2560d76252b -Author: Steve Ebersole -Date: Mon Apr 19 16:44:25 2021 -0500 - - re-enable tests - re-organize some tests - o.h.test.hql.ParameterTest -> LegacyParameterTests - bug with binding ordinal parameter lists - created "standard domain model" for Hibernate's legacy Animal model - -commit cebb9d7649a1952c4993f1f14ead369a43bd8d19 -Author: Steve Ebersole -Date: Mon Apr 19 14:34:48 2021 -0500 - - re-enable tests - re-organize some tests - o.h.test.hql.EntityJoinTest - fixed RIGHT JOIN handling - -commit 8389b1a7a2aaba0f57c677b77bd4dbb07a22c75c -Author: Yoann Rodière -Date: Mon Apr 19 16:50:35 2021 +0200 - - HHH-14567 Do not reuse query plans after session filters changed - -commit 3bac846de210fe01e66cded2768d4ff214f2e657 -Author: Yoann Rodière -Date: Mon Apr 19 16:40:14 2021 +0200 - - HHH-14567 Test enabling filters after query creation but before query execution - -commit b0abe9f37e100d6ab225a86fd37dbc530e0c4589 -Author: Yoann Rodière -Date: Fri Apr 16 15:43:03 2021 +0200 - - HHH-14563 Remove the DOM4J dependency from hibernate-enhance-maven-plugin - - As far as I can tell, this was only necessary as a transitive dependency - of Hibernate ORM. - -commit d7e85a3c3cbbdf82db21741466acb52a12c36b84 -Author: Yoann Rodière -Date: Fri Apr 16 15:38:55 2021 +0200 - - HHH-14563 Clarify that hibernate-spatial only needs dom4j for tests - - For org.hibernate.spatial.testing.TestDataReader, to be precise. - -commit 4264bc55ac96d41d7baed796edc2e48fdad05162 -Author: Yoann Rodière -Date: Fri Apr 16 15:38:16 2021 +0200 - - HHH-14563 Remove the DOM4J dependency from hibernate-core - -commit 87a3e0a5d825e9bfeb36b9db32ac73719564be82 -Author: Yoann Rodière -Date: Fri Apr 16 15:29:55 2021 +0200 - - HHH-14563 Remove a few obsolete references to DOM4J entity-mode - - This mode was removed literally a decade ago. - -commit b076216e841d00470281e198bef1fccc35be34a9 -Author: Yoann Rodière -Date: Fri Apr 16 14:27:27 2021 +0200 - - HHH-14563 Remove XmlMappingOptions - - We don't need that anymore: XML mapping is either enabled or disabled, - there are no other options. So a boolean will do. - -commit 6f5f6b32c3a158633309c187b7172dab0a744767 -Author: Yoann Rodière -Date: Fri Apr 16 13:55:00 2021 +0200 - - HHH-14563 Remove DOM4J-based XML mapping - - Use JAXB-based XML mapping everywhere. - -commit 194e53a0fb2b90a14e34e8e3a825f671218a55cc -Author: Yoann Rodière -Date: Fri Apr 16 13:44:46 2021 +0200 - - HHH-14563 Remove legacy tests for DOM4J-based XML mapping - -commit 4f7bb75ec7c7006836ce95c99e195b44c6ef0e62 -Author: Yoann Rodière -Date: Mon Apr 19 10:06:29 2021 +0200 - - HHH-14529 Fix access type being ignored when defined at the entity level in orm.xml - - That's a bug I introduced when I migrated code from dom4j to jaxb. - -commit 5b830f3f5edbb9295fcec4dc8c5a51232f3feb2b -Author: Yoann Rodière -Date: Mon Apr 19 09:49:12 2021 +0200 - - HHH-14529 Fix invalid order of elements in orm.xml files used for tests - - Surprisingly, the XSD does mandate a specific order for some elements, - including "entity", "embeddable" and the children of "attributes". - - It turns out we were allowing a wrong order with the dom4j - implementation, but we no longer do with the jaxb implementation. - -commit 6723ed4626db0fa1b04aac66abd4894e018d11e9 -Author: Yoann Rodière -Date: Mon Apr 19 09:47:00 2021 +0200 - - HHH-14529 Fix incorrect attribute name for @NamedEntityGraph in JPAXMLOverriddenAnnotationReader - -commit 6f75d96a99f2c17edbace5eaedbd95340099dac6 -Author: Andrea Boriero -Date: Mon Apr 12 18:03:35 2021 +0200 - - HHH-14549 Collection with default field initializer will always be empty - -commit 7620e0e3959714dad4e9534051a2db0cdd3b4085 -Author: Andrea Boriero -Date: Mon Apr 12 17:14:57 2021 +0200 - - HHH-14549 Add test for issue - -commit 107aab03ebb7e4b00c34cdb6d226ce2dc9bb8b37 -Author: Jan Schatteman -Date: Fri Apr 16 18:00:36 2021 +0200 - - Added test for non-select criteria queries - - Signed-off-by: Jan Schatteman - -commit 9cea757979ebf6011b0c1778c52a0aa0fed4a3e1 -Author: Christian Beikov -Date: Wed Apr 14 19:08:40 2021 +0200 - - Move unionsubclass tests and implement better union subclass support - -commit 9e66c777495dbf2f0324faebfb7d0951864d8089 -Author: Jan Schatteman -Date: Thu Apr 15 22:54:49 2021 +0200 - - Correction to the QuerySqmImpl constructor used for criteria queries - - Signed-off-by: Jan Schatteman - -commit 4f6019d52413adffb8415922a0a9d1ed7715c775 -Author: Christian Beikov -Date: Fri Apr 16 10:49:05 2021 +0200 - - Cleanup case when handling and implement parameter handling for case result arms - -commit badc99705ad0adba9327d52f9a47613b7147199a -Merge: df9d285f2c 2aa2bee255 -Author: Andrea Boriero -Date: Fri Apr 16 13:19:16 2021 +0200 - - Merge remote-tracking branch 'upstream/main' into wip/6.0_merge - -commit df9d285f2cb0ccfe3dc963b752652917a119a9c6 -Author: Christian Beikov -Date: Tue Apr 13 09:30:44 2021 +0200 - - Implement support for avoiding joins when accessing FK keys - -commit 2aa2bee255f443ea05508968d58e9acf19d51c8b -Author: Karel Maesen -Date: Thu Apr 15 20:02:48 2021 +0200 - - HHH-11490 Fix for UUID mapping conflict - - * HHH-11490 Fix for UUID mapping conflict - - * HHH-11490 Custom ValueBinder implementation - -commit c74e5ef5952e5f4e0c1135fbf67d69f8fb114e48 -Author: Steve Ebersole -Date: Thu Apr 15 12:26:13 2021 -0500 - - re-enable tests - re-organize some tests - continuing with o.h.test.hql - improve cast-target handling - -commit b31f2c02d7561cbfd495599f96f62e73716f2acb -Author: Steve Ebersole -Date: Thu Apr 15 10:53:54 2021 -0500 - - re-enable tests - re-organize some tests - CastNullSelectExpressionTest (not-implemented-yet) - -commit 4917d7c6bd5d4f7a8fe0f279fffc6a1d5fa5c896 -Author: Steve Ebersole -Date: Fri Apr 9 17:34:50 2021 -0500 - - re-enable tests - re-organize some tests - continuing with o.h.test.hql - improve cast-target handling - - https://github.com/hibernate/hibernate-orm/discussions/3889 - -commit e0bbb02c99ecac6324f621dc542fcbf1f29802b5 -Author: Steve Ebersole -Date: Thu Apr 15 08:52:07 2021 -0500 - - re-enable tests - re-organize some tests - case expression and nested expression type inference - preliminary support for "type precedence" - -commit c2f59beb648e86408ec91601b579388307281564 -Author: Steve Ebersole -Date: Thu Apr 15 08:23:37 2021 -0500 - - re-enable tests - re-organize some tests - case expression and nested expression type inference - preliminary support for "type precedence" - -commit ac4f4ff4ad3c260c5ec996ba668a7760c8c429bf -Author: Yoann Rodière -Date: Tue Mar 30 16:20:03 2021 +0200 - - HHH-14529 Implement the (opt-in) orm.xml handling using JAXB - -commit 10aee2a9fa2b652ed42ff209f9abaf6226a28d9f -Author: Yoann Rodière -Date: Fri Mar 26 16:59:09 2021 +0100 - - HHH-14529 Add a common interface for Jaxb representations of associations - -commit 437af3b4da6ff00ea3cb798a2c4533ecaa4d7b4c -Author: Yoann Rodière -Date: Fri Mar 26 15:47:03 2021 +0100 - - HHH-14529 Add a common interface for JaxbEntity, JaxbMappedSuperclass and JaxbEntityListener - -commit b4dd2e272f4c57610ef274ecf646aea6a8f051d0 -Author: Yoann Rodière -Date: Fri Mar 26 13:32:13 2021 +0100 - - HHH-14529 Add a few missing methods to the JAXB representation of ManagedType - -commit efe5424d3502c19546b7372e30fef598535e93a0 -Author: Yoann Rodière -Date: Fri Mar 26 13:22:09 2021 +0100 - - HHH-14529 Add a few missing enum mappings for orm.xml - -commit bbc25cf28bdcc0c1b765395961345dd2ac6f89c7 -Author: Yoann Rodière -Date: Fri Mar 26 13:05:57 2021 +0100 - - HHH-14529 Add common interface for JaxbEntity and JaxbMappedSuperclass - -commit 8ab3a2f7e925d267fe607d3990d7f0e6223ba5a5 -Author: Yoann Rodière -Date: Fri Mar 26 11:58:35 2021 +0100 - - HHH-14529 Configuration and wiring to prefer JAXB over DOM4J for orm.xml handling - -commit e8cd9f891752c48f18ae65b435b7afc9a2164419 -Author: Yoann Rodière -Date: Fri Mar 26 11:40:03 2021 +0100 - - HHH-14529 Clean up constructors in JPAXMLOverriddenMetadataProvider and related - -commit ef6bb2679bc386a8eaa01ef415381476343cf370 -Author: Yoann Rodière -Date: Fri Mar 26 10:36:51 2021 +0100 - - HHH-14529 Remove an unused orm.xml file from tests - -commit 72910366801831e7ccaea216318a79dd5b3bf204 -Author: Yoann Rodière -Date: Fri Mar 26 08:59:56 2021 +0100 - - HHH-14529 Copy orm.xml handling code to prepare for the new JAXB-based implementation - - We will adapt the code in a later commit; I'm only doing the copy in - this commit in order to keep the review manageable. - -commit 55ef4d47f2aa595734fca8632477ff104b002b84 -Author: Yoann Rodière -Date: Fri Mar 26 08:26:44 2021 +0100 - - HHH-14529 Remove commented-out code related to mapping parsing using dom4j - -commit f92275f6c230d89c7bcc0c91a675b5b228a24b34 -Author: Yoann Rodière -Date: Wed Mar 24 17:38:30 2021 +0100 - - HHH-14529 Clarify that most fields are final in JPAOverriddenAnnotationReader - -commit 2907c95cbd92f382a83252723b944cfdbcdf25b2 -Author: Yoann Rodière -Date: Wed Mar 24 15:40:12 2021 +0100 - - HHH-14529 Introduce JAXB bindings for JPA's orm.xml - - Adapted from Steve's work on the unified JPA/ORM XML mapping. See: - https://github.com/sebersole/hibernate-orm/commit/4ff3795e60ef33bc893d4174b6c998027e64be10#diff-b407928c3aa7ee1f231e0119ff70345caa5f6a83ed6348128c5159afbe3c6df2 - https://github.com/sebersole/hibernate-orm/compare/jandex-binding - - Co-authored-by: Steve Ebersole - -commit 252fb65f95f8984eea6b44dc268cf57e00a68eb3 -Author: Yoann Rodière -Date: Wed Mar 24 15:28:09 2021 +0100 - - HHH-14529 Remove an unused xjb file - -commit 18f23ee7015096a5a1d03288f4bcab2873c6f727 -Author: Yoann Rodière -Date: Wed Mar 31 14:37:03 2021 +0200 - - HHH-14529 Fix invalid namespace URIs in MappingXsdSupport - - Probably copy/pasted from ConfigXsdSupport, and we forgot to add the - "/orm" suffix. - -commit fcc63d9ab0d4e2206d1d1d92ca2b24f1e38e5f3c -Author: Yoann Rodière -Date: Wed Mar 31 16:51:42 2021 +0200 - - HHH-14529 Stop using two separate BootstrapServiceRegistries for the same SessionFactory in BaseCoreFunctionalTestCase - -commit ebb30aa178a36af567ddd8bf4e0a6481b44ec82f -Author: Yoann Rodière -Date: Mon Mar 22 16:36:46 2021 +0100 - - HHH-14530 Allow adding pre-parsed XML mappings to MetadataSources - - Signed-off-by: Yoann Rodière - -commit 3958ee23607892aaab69d735706481c02b99cf50 -Author: Steve Ebersole -Date: Wed Apr 14 15:58:03 2021 -0500 - - re-enable tests - re-organize some tests - work on `org.hibernate.test.hql.size` - improved key/target handling for fk-descriptor - -commit 571af7bc9ee6b926abf70e219d862ad48dcc25e0 -Author: Yoann Rodière -Date: Tue Apr 13 14:32:14 2021 +0200 - - HHH-14557 Test JDBC resources are released on each rollback - -commit e03beca97f9d117f7d651b66f5241322f7769e41 -Author: Yoann Rodière -Date: Tue Apr 13 14:09:43 2021 +0200 - - HHH-14557 Test JDBC resources are released on each commit - - Not just on session closing. - -commit 3825a671a70fc67e0773019c0c4f2f80278a24a6 -Author: Yoann Rodière -Date: Tue Apr 13 14:24:10 2021 +0200 - - HHH-14557 Always release JDBC connection and resources on rollback - -commit c4445fbf5cb83843620655aec69d41913e4e67f3 -Author: Christian Beikov -Date: Tue Mar 23 16:07:26 2021 +0100 - - Work on named-native query support - -commit ae69a1aeb4a96c46ead23daf27e2a8da8a58dfc7 -Author: Andrea Boriero -Date: Wed Apr 7 16:05:25 2021 +0200 - - Fix MariaDB, DB2 and Derby column type for text type attributes - -commit 6f42929b551c7ee57652343a505e66076102250c -Author: Andrea Boriero -Date: Tue Apr 6 18:19:43 2021 +0200 - - Move tests from org.hibernate.test.immutable to org.hibernate.orm.test.immutable - -commit 951a7611b33a16d849282f758d9eac70efec7218 -Author: Andrea Boriero -Date: Tue Apr 6 17:56:30 2021 +0200 - - JPA Criteria do not load eagerly JOIN Fecth collections as Hibernate Criteria did - -commit dc21d565d39c012ce6977975bc6898b2d93166ff -Author: Andrea Boriero -Date: Tue Apr 6 17:14:55 2021 +0200 - - JPA Criteria do not load eagerly JOIN Fecth collections as Hibernate Criteria did - -commit f6f1cb06d4de292042e845a170313f0ae610ea09 -Author: Andrea Boriero -Date: Tue Apr 6 15:18:30 2021 +0200 - - Fix issue with EmbeddableMappingType creation - -commit 7fc259351575e7e2a61b8ef3c256717813432a6f -Author: Andrea Boriero -Date: Mon Mar 22 09:47:23 2021 +0100 - - AbstractImmediateCollectionInitializer fix NPE - -commit 9c27e411841c70a04f9279a90ba339d08457d21b -Author: Andrea Boriero -Date: Fri Apr 9 11:10:36 2021 +0200 - - Remove o.h.testing.junit5 package - -commit 4f2b0778d324c4ecaa4301898cd090720ea173a2 -Author: Steve Ebersole -Date: Fri Apr 9 16:02:42 2021 -0500 - - re-enable tests - re-organize some tests - continuing with o.h.test.hql - improve parameter handling by tracking mapping-model types resolved for them in SQM->SQL translation - improve support for ANY mapping use in queries - improve support for comparisons involving SqlTuple - improve support for binding composite Query param values - improve support for plural-attribute refs in SQM - improve support for to-one attribute refs in SQM (including lazily generating the TableGroupJoin when used as selection) - -commit b176814b44260bb086cd32b93a3693c4eff06311 -Author: Andrea Boriero -Date: Wed Apr 7 19:25:07 2021 +0200 - - Re-enable envers test - -commit c1fcb6cb92ff8f9cc9aa98c37d54cf721f87fd79 -Author: Andrea Boriero -Date: Thu Apr 8 17:27:59 2021 +0200 - - Rollback Transaction when an AssertionError occurrs - -commit 6bd7a4d97272cd1853b82a2e9991f132393e0ca1 -Author: Andrea Boriero -Date: Fri Mar 26 15:17:19 2021 +0100 - - HHH-14503 - Migration of tests from jpa/test to orm/test/jpa - -commit a7f242af033b4b7027ab34ddab0f7e9055d69294 -Author: Andrea Boriero -Date: Fri Mar 26 11:10:37 2021 +0100 - - HHH-14503 - Migration of tests from jpa/test to orm/test/jpa - -commit e2225d881460d79b5aed9b6eee7c8d922857f55a -Author: Jan Schatteman -Date: Fri Mar 19 19:00:18 2021 +0100 - - HHH-14503 - Migration of tests from jpa/test to orm/test/jpa - - Signed-off-by: Jan Schatteman - -commit 3d90dbfbae92320d20d1d1db9583a24db259c749 -Author: Steve Ebersole -Date: Thu Apr 8 08:08:36 2021 -0500 - - re-enable tests - re-organize some tests - continuing with o.h.test.hql - improve parameter handling by tracking mapping-model types resolved for them in SQM->SQL translation - -commit 06b5eb43c6a4d08f4a5028b4656ed4867751f2d7 -Author: Christian Beikov -Date: Mon Mar 15 10:26:28 2021 +0100 - - HHH-11692 Introduce DISTINCT predicate in HQL and implement emulations - -commit e67d10ee6c6666f3281decb9da6d7ffaab514f59 -Merge: c85ec5a7e4 e76241a309 -Author: Andrea Boriero -Date: Wed Apr 7 09:19:21 2021 +0200 - - Merge remote-tracking branch 'upstream/main' into wip/6.0 - -commit c85ec5a7e43494160023dc4ce3d6f3e875856107 -Author: Steve Ebersole -Date: Tue Apr 6 14:31:25 2021 -0500 - - re-enable tests - re-organize some tests - continuing with o.h.test.hql - order-by - -commit e76241a3091078713dd4b57de085f5fadce5e0db -Author: Karel Maesen -Date: Wed Mar 31 21:30:35 2021 +0200 - - HHH-14523 Fix for dirty-checking bug - -commit b166e684e1e5a7c8062d63e938a2a2deb0e9729b -Author: Christian Beikov -Date: Tue Apr 6 14:24:13 2021 +0200 - - Skip certain LockTests for Oracle on GH Actions which don't work there - -commit e8a5506eb53084f1c4b7622bc8eb94bdfa9b8005 -Merge: c285f604f3 298b1f87b7 -Author: Andrea Boriero -Date: Tue Apr 6 10:17:37 2021 +0200 - - Merge remote-tracking branch 'upstream/main' into wip/6.0 - -commit 298b1f87b7c2a476e3aa44df55dc829f0062714c -Author: sajad -Date: Sun Apr 4 16:19:42 2021 +0430 - - HHH-14545 Fix typo "Generator" -> "GeneratorType" - -commit c285f604f3e102acefd2471f8268842442f6ef20 -Author: Christian Beikov -Date: Thu Apr 1 18:00:09 2021 +0200 - - Implement table group rendering for real table groups and get rid of canInnerJoin flags due to that - -commit 159135ea89dd41e57cbb5a8e9db4e4ec263aea9d -Author: Steve Ebersole -Date: Fri Apr 2 07:30:08 2021 -0500 - - re-enable tests - re-organize some tests - continuing with o.h.test.hql - order-by - add Expression#unwrap to help account for SqlSelectionExpression - -commit 51074eb9a083460e8ac9c026135e03ea5497277d -Author: Steve Ebersole -Date: Thu Apr 1 11:07:28 2021 -0500 - - re-enable tests - re-organize some tests - continuing with o.h.test.hql - fixed bug in JPA model building with dynamic entities - added NavigablePath#getUnaliasedLocalName to aid in resolving ModelParts as part of SQM->SQL - -commit f1ede3df4f14ddee092ef0eeac7cc4d7268f366f -Author: Christian Beikov -Date: Wed Mar 31 13:31:46 2021 +0200 - - Fix type resolution issues and add missing JTDs. Fix SQL trim parsing and some newly added tests - -commit e22dc55adb1830d9b059135c2303658cd52dbe6d -Author: Christian Beikov -Date: Tue Mar 23 16:13:46 2021 +0100 - - Various fixes - - * Resolve return type for SUM according to JPA spec - * Specify invariant return types for SQRT and MOD as required by the JPA spec - * Fix JPA tuple element access support - * Fix join management for JPA related methods - * Handle optional escape character for like predicate - * Implement type inference for result arms of case expressions - * Implement min/max element/index functions as sub-query - * Implement min/max function support - * Implement emptiness, exists and member of predicate for JPA Criteria - * Implement size function as sub-query - * Implement group by entity alias by using FK key - -commit 46a16c605a71b26f5d68b5075b411b3424caad8b -Author: Christian Beikov -Date: Tue Mar 23 16:07:26 2021 +0100 - - Add support for DML with versioned entities - -commit af891c09970002e57cef43ac18375fe1b6cd79ac -Author: Steve Ebersole -Date: Thu Apr 1 06:54:57 2021 -0500 - - re-enable tests - re-organize some tests - clean-up and tests related to fks - -commit 1a9079006c6a492ed6ad4bb957de09e9fc740737 -Author: Steve Ebersole -Date: Wed Mar 31 11:21:51 2021 -0500 - - Rename SelectionMapping(s) to SelectableMapping(s) and related changes - -commit c7c963075b40f95039181b4e6deb5483beeb7f4d -Author: Steve Ebersole -Date: Wed Mar 31 09:04:33 2021 -0500 - - re-enable tests - re-organize some tests - support for `KEY(mapReference)` in SQM - -commit ad84aaf0bcb161b272731c82742018ad3445742b -Author: Gail Badner -Date: Mon Mar 29 14:58:37 2021 -0700 - - HHH-14537 : Updated test as requested; added tests that lazy associations with non-existing entity is unaffected. - -commit 3c1e16e06ce7232fbe69bf1a3322d3f251a8bfbb -Author: Gail Badner -Date: Sun Mar 28 15:13:00 2021 -0700 - - HHH-14537 EntityNotFoundException thrown when non-existing association with @NotFound(IGNORE) mapped has proxy in PersistenceContext - -commit 9cb9137fb8a7189a8041c714ade0214ebaf6a0b8 -Author: Gail Badner -Date: Sun Mar 28 15:11:40 2021 -0700 - - HHH-14537 : Added test for issue - -commit a692061ae117f96609e818b5af49a084db860c15 -Author: Steve Ebersole -Date: Tue Mar 30 08:47:16 2021 -0500 - - re-enable tests - re-organize some tests - fixed edge case for implicit basic type resolution - -commit fcd7a6f356f137e18fead42d0b8e61e05f2cdb74 -Author: Steve Ebersole -Date: Mon Mar 29 12:23:37 2021 -0500 - - re-enable tests - re-organize some tests - fixed bad merge - -commit c9b598389f7021b1ee27dcba50163a1932899ce6 -Author: Steve Ebersole -Date: Mon Mar 29 11:44:49 2021 -0500 - - HHH-14524 : Rename SqlType(X) as JdbcType(X) - - fixed some inadvertent doc changes (thanks Christian) - -commit 7fcde66d61b255d8ece4a5cac0a1dc6b09808edc -Author: Steve Ebersole -Date: Tue Mar 23 15:41:58 2021 -0500 - - HHH-14524 : Rename SqlType(X) as JdbcType(X) - -commit a02835bddef704cdc167c5a2b09ed9173b21b83e -Author: Steve Ebersole -Date: Mon Mar 29 10:58:16 2021 -0500 - - re-enable tests - re-organize some tests - added `@LoggingInspections` - added `@MessageKeyWatcher` - account for various "odd" explicit Type mappings - fix column read/write transformations - -commit e4f1461e1769a8407682647fe8e42f388161c295 -Author: Gavin King -Date: Wed Feb 24 16:13:45 2021 +0100 - - move the code for generating check constraints to Dialect - -commit e4111a5453506a5ca29162113b5537043292e2d7 -Author: Steve Ebersole -Date: Fri Mar 26 12:39:35 2021 -0500 - - re-enable tests - re-organize some tests - added `@LoggingInspections` - added `@MessageKeyWatcher` - -commit 3c72f6fe1239509a608213f6d086bcdd3ad4dd39 -Author: Gavin King -Date: Fri Mar 26 01:15:44 2021 +0100 - - cleanup lots of warnings, especially generics-related - -commit d193a9409aa1d395526c050fd9f0ad708ccbaae8 -Author: Gavin King -Date: Thu Feb 25 14:44:26 2021 +0100 - - simply remove @Tuplizer completely - -commit 20e855acf1c6c3ac09d9a322b7ea144a1bfae16c -Author: Gavin King -Date: Thu Feb 25 13:40:42 2021 +0100 - - use wildcard instead of raw type in annotation members - -commit aeee127e59de28592383f0099fc080f279755858 -Author: Gavin King -Date: Thu Feb 25 13:38:05 2021 +0100 - - deprecate @Tuplizer since EntityTuplizer is deprecated - - and add a constraint to the class type - -commit 4e22929c3c704aebccbb76151b505dce792d56a3 -Author: Gavin King -Date: Thu Feb 25 13:04:35 2021 +0100 - - remove deprecated FlushModeType - - that was already removed from FlushMode - -commit bbf4619fcd3e5f778cd85a4e932ba0c39fe6674f -Author: Gavin King -Date: Thu Feb 25 12:02:55 2021 +0100 - - remove deprecated Sort annotation - -commit d0afd6359eb74590940e64546a1c3562afe7fdd9 -Author: Gavin King -Date: Thu Feb 25 11:53:53 2021 +0100 - - remove deprecated and unused members of QueryHints - -commit 9dcbe4c2d1e98f05a54edd7247ccc38c6516b467 -Author: Gavin King -Date: Thu Feb 25 11:51:11 2021 +0100 - - get rid of useless members of @Tuplizer annotation - - Get rid of both the deprecated way and the unimplemented (!) way - of doing something that was never useful to begin with. - -commit 3b3487a74eace3f0a1d3db31132870eb5d108b9a -Author: Gavin King -Date: Thu Feb 25 11:22:43 2021 +0100 - - remove deprecated @Entity annotation - -commit 50363dcc2c0c67da971176181d6accfeb556a81c -Author: Gavin King -Date: Thu Feb 25 11:04:17 2021 +0100 - - remove deprecated CascadeType.EVICT - -commit c89319f3e9b417c704b4c493cb787ea98e5d803e -Author: Gavin King -Date: Thu Feb 25 10:57:51 2021 +0100 - - remove AccessType annotation - -commit 4b56842c7f71f024f583df827489f8768d8ef146 -Author: Gavin King -Date: Tue Mar 2 23:57:43 2021 +0100 - - make @AttributeAccessor annotation typesafe - -commit ef69465f48ee88c1c3574450db30039b1627329e -Author: Gavin King -Date: Wed Mar 24 14:42:04 2021 +0100 - - move several new types out of the root package - - The namespace org.hibernate is already much too cluttered and - we should try hard to not make it worse in H6. - - Furthermore, some of these things look to be of more interest - to developers of Hibernate than to users. - - Now, I'm not sure that org.hibernate.query is absolutely the - best place either, but it's at least better. - -commit af84daa416a8ca8a7df3b46da4d7a0cb17ad5b6e -Author: gavin -Date: Wed Mar 24 15:02:43 2021 +0100 - - remove some deprecated code - - - OptimisticLockException - - MappingNotFoundException - - BasicQueryContract - - these types were already deprecated in 5. - -commit 9d6306cac276ba637a02105aa2a0971009a201b0 -Author: Andrea Boriero -Date: Thu Mar 25 17:09:16 2021 +0100 - - re-enabled AggressiveReleaseTest tests - -commit cee56a5c421c6a7b8c0e4706f6c99f126b09867a -Author: Christian Beikov -Date: Thu Mar 25 12:52:38 2021 +0100 - - Fix tests for PostgreSQL - -commit 9c175d0de24e1f84fbf9f4f6a81df9e82355afe5 -Author: Christian Beikov -Date: Thu Mar 25 11:57:29 2021 +0100 - - Fix issues in PackagedEntityManagerTest - -commit 9612c838ed5ee56a6bea792029dd5c7ef4f8c4d4 -Author: Christian Beikov -Date: Thu Mar 25 09:22:59 2021 +0100 - - Fix test suite hanging for PostgreSQL and MariaDB - -commit 2b06123635dd723d9e3b38c6c22cae901d12055c -Author: Christian Beikov -Date: Wed Mar 24 19:21:13 2021 +0100 - - Try dropping local tables in same connection - -commit fd470d13879eb4ac792443fe7fad6b2d25c4cdb4 -Author: Steve Ebersole -Date: Wed Mar 24 16:10:43 2021 -0500 - - re-enable tests - re-organize some tests - -commit 523113d2caebb90dba3a137bfe3cbc9015bb047f -Author: Steve Ebersole -Date: Wed Mar 24 15:33:30 2021 -0500 - - re-enable tests - re-organize some tests - - fixed EnumType mapping from hbm.xml - various fixes in HQL, Criteria and parameter handling related to enum values - -commit 1114da8b8f7499bec340450ef0f2a35768220670 -Merge: edcd7cfdc4 2c1aedd176 -Author: Andrea Boriero -Date: Wed Mar 24 09:45:58 2021 +0100 - - Merge remote-tracking branch 'upstream/main' into wip/6.0 - -commit 2c1aedd176e81221ff3e07f047a0798059fc1ffc -Author: Guillaume Smet -Date: Tue Jul 31 14:50:20 2018 +0200 - - HHH-12867 Add test case - -commit edcd7cfdc4f167e237aee26110da51d75568ba9b -Author: Steve Ebersole -Date: Tue Mar 23 14:53:34 2021 -0500 - - re-enable tests - re-organize some tests - fixed more missing `@Entity#name` - -commit e04a9bff0dc24d80b6510e62a7ecfb78fed6fb44 -Author: Steve Ebersole -Date: Tue Mar 23 13:13:12 2021 -0500 - - re-enable tests - re-organize some tests - -commit 1caebf7cc60ffde80c60c480e12fc81e31692993 -Author: Steve Ebersole -Date: Mon Mar 22 17:28:28 2021 -0500 - - re-enable tests - re-organize some tests - -commit 1f028095cf2fc99d02df8e400963bd02ba0852f1 -Author: Steve Ebersole -Date: Mon Mar 22 15:40:25 2021 -0500 - - re-enable tests - remove org.hibernate.type.descriptor.java.JavaTypeDescriptorRegistry - re-organize some tests - -commit e9dd160d7f7254cd519c06cf59b8409c5a7b4ddb -Author: Karel Maesen -Date: Wed Mar 17 21:53:53 2021 +0100 - - HHH-14090 Add MariaDB103SpatialDialect - -commit e76da92b04537d5c91571dff5a20b03042fd0718 -Author: Mark Rotteveel -Date: Mon Mar 8 14:27:11 2021 +0100 - - HHH-14484 Improve support for Firebird 4 - - Also includes: - - Some general Firebird improvements - - Tweak tests to run (or be skipped) against Firebird - - Fix to BooleanDecoder - - Add statistical/linear regression function definitions in CommonFunctionFactory - - Added the relevant functions to other dialects where I could verify they apply - - Fix for unions with parenthesized selects - - Add casts for parameters in functions - -commit 0864c6e71129a1313802bf7dd26293e921562c76 -Author: Andrea Boriero -Date: Mon Mar 22 17:46:04 2021 +0100 - - Fix test failures - -commit 619a123c8df4cfb8ed15791bf27f6925f87e7113 -Author: Andrea Boriero -Date: Mon Mar 22 14:22:15 2021 +0100 - - Fix DriverManagerRegistrationTest failure - -commit c3df793dbeb0edfb2135dae144c0e29f6f2f26cd -Author: Andrea Boriero -Date: Mon Mar 22 12:38:00 2021 +0100 - - HHH-14509 : Git master -> main branch renaming - -commit 96d103215c6490713509b56131b6114eb3685ebd -Merge: 6d49d1c49f 725faa258f -Author: Andrea Boriero -Date: Mon Mar 22 12:26:31 2021 +0100 - - Merge remote-tracking branch 'upstream/main' into wip/6.0 - -commit 6d49d1c49fac9ddfaf0c89c7f0f765692735454f -Author: Steve Ebersole -Date: Fri Mar 19 16:24:59 2021 -0500 - - re-enable tests - -commit cc105596b4faf642bad20ad8319e8809cef6c99c -Author: Steve Ebersole -Date: Fri Mar 19 15:51:45 2021 -0500 - - re-enable tests - -commit 12fb58f6b9df588bcf9ff5b465a23da002cb8481 -Author: Steve Ebersole -Date: Fri Mar 19 15:25:08 2021 -0500 - - re-enable tests - -commit 2589671fa1c303fa86116a8ce363f92225c75f5b -Author: Steve Ebersole -Date: Fri Mar 19 13:56:57 2021 -0500 - - re-enable tests - -commit 725faa258fe01429c5a2f2da5996323daed6b5e2 -Author: Steve Ebersole -Date: Fri Mar 19 10:59:03 2021 -0500 - - HHH-14509 : Git master -> main branch renaming - -commit 6a0d848f98fdcade6f2817eedb0fc569418cd6d0 -Author: Steve Ebersole -Date: Thu Mar 18 16:28:10 2021 -0500 - - 6.0.0.Alpha7 release, manual style - -commit 7346cf2f8c16ef4b50f0022a12b6c92d42f72f85 (tag: 6.0.0.Alpha7) -Author: Steve Ebersole -Date: Thu Mar 18 16:25:59 2021 -0500 - - 6.0.0.Alpha7 release, manual style - -commit 19c02f756dbfdd70c73091d0adcfa1e5c8b1d09c -Author: Steve Ebersole -Date: Thu Mar 18 16:00:32 2021 -0500 - - temporarily remove `project-template` module as it causes problems with ci-release (specifically some issue with uploading to BinTray) - -commit 124959fa599c37718e0794e1a53b6b581df4a731 -Author: Steve Ebersole -Date: Thu Mar 18 15:50:22 2021 -0500 - - temporarily remove `project-template` module as it causes problems with ci-release (specifically some issue with uploading to BinTray) - -commit e29f616d77951655f3e04fcb06c5e842a3482a12 -Author: Christian Beikov -Date: Thu Mar 18 18:44:31 2021 +0100 - - Add Oracle specific SqlTypeDescriptor for Boolean that binds with type BIT for null boolean - -commit 5b0b822717f0beb3c35d1492e20e2c3330484a2d -Author: Christian Beikov -Date: Thu Mar 18 11:16:28 2021 +0100 - - Move tests to orm/test and fix query cache stats, native query variable substitution and named query support as loader - -commit 3e32e15c0a9e996e6ca093150f940b4f393f31cc -Author: Andrea Boriero -Date: Thu Mar 18 18:17:08 2021 +0100 - - Avoid new join sqm path creation when it already exists - -commit 4144c4af4c77391a62b1f98a4ce9d7dc9a2e5fd4 -Author: Andrea Boriero -Date: Thu Mar 18 15:06:22 2021 +0100 - - Fix Criteria NPE for named parameters when paramClass is a Collection - -commit 0a1527186b57be13aa81393ca1ef7193b938facc -Author: Steve Ebersole -Date: Thu Mar 18 08:58:20 2021 -0500 - - Removed `@ExtendWith( DialectFilterExtension.class )` from `@SessionFactory` - -commit b4bf58188c578927a238a791973975d23a92bfd9 -Author: Gautham Kumar -Date: Wed Mar 17 18:25:56 2021 +0530 - - HHH-14449 : ResultStream closing is not properly handled - -commit 86c024a24547ccc89283b773a41027f4f06fdc6e -Author: Andrea Boriero -Date: Thu Mar 18 09:42:29 2021 +0100 - - Fix Cannot resolve path with EmbeddedId hql queries not using aliases - -commit 5324db9f259c51b20b7467585000d17e097e8c7b -Author: Karel Maesen -Date: Wed Mar 17 20:03:13 2021 +0100 - - Docker_db improvements - - - enable experimental settings for cockroachdb - - reduce shmni setting for Hana - -commit 31b1627baabae9554e372a8c324220f2ad56d142 -Author: Steve Ebersole -Date: Fri Mar 12 13:25:17 2021 -0600 - - HHH-14506 - IdentifierGenerator changes - - - HHH-14491 - Apply default allocation/increment size for @GeneratedValue(AUTO) - - HHH-14492 - Prefer sequence-per-entity (hierarchy) by default - - HHH-14497 - Drop `hibernate.id.new_generator_mappings` & `hibernate.model.generator_name_as_sequence_name` - - enabled existing tests and convert to JUnit5 - -commit 8eb3354ed9ba7f16fb45dace0b4079b8d49542c5 -Author: Karel Maesen -Date: Wed Mar 17 20:29:13 2021 +0100 - - HHH-14037 Add PostgisPG10Dialect - -commit d963acf443ab5ec4a7e113fd2b10f70781a765a4 -Author: Joseph B. Ottinger -Date: Wed Mar 17 09:09:27 2021 -0400 - - HHH-14508 : Fixing invalid conversion specifier - -commit aba49ced1f8115c4458716ab300f74a3f6101633 -Author: Karel Maesen -Date: Tue Mar 16 23:18:08 2021 +0100 - - HHH-14454 Add SpatialDialect for CockroachDB - -commit 7695f03bf991105109e39e516d804964c571bead -Author: Jan Schatteman -Date: Wed Mar 10 22:36:17 2021 +0100 - - HHH-14503 - Migration of tests from jpa/test to orm/test/jpa - - Signed-off-by: Jan Schatteman - -commit 3f2afe6b409e5d2bf64ca71dbddc20a741f31791 -Author: Christian Beikov -Date: Tue Mar 16 17:28:51 2021 +0100 - - Move tests from cfg, dialect, id/enhanced, jdbc to orm/test and fix SQL Server 2005 limit handler issue, as well as sqm function return type resolver issue - -commit 222e3fb69709afd643dc9b528304c9b644dd56e2 -Author: Andrea Boriero -Date: Tue Mar 16 13:49:03 2021 +0100 - - Fix wrong order in SQL TableGroupJoin rendering - -commit 6c3d0d86dc07a6cfdbdbf25aed312c8bd7fb4992 -Merge: d28b719c2c 2c39bc0ac6 -Author: Andrea Boriero -Date: Tue Mar 16 10:43:42 2021 +0100 - - Merge remote-tracking branch 'upstream/master' into wip/6.0 - -commit 2c39bc0ac620ac642360a8ec205a5d15612bec87 -Author: Sanne Grinovero -Date: Mon Mar 15 16:42:21 2021 +0000 - - HHH-14502 Iterations and memory retention improvements for processing of PropertyContainer metadata - -commit 9f22dafe1784d5dc258d0ec587ff26e05d0e0f90 -Author: Andrea Boriero -Date: Thu Mar 11 20:52:35 2021 +0100 - - HHH-14499 Explicitly listing mapped classes which are @MappedSuperClass might break narrowing down of generics - -commit 394d6ab2d4c207c3a259e11aa423bf2563bf86ba -Author: Andrea Boriero -Date: Thu Mar 11 20:53:55 2021 +0100 - - HHH-14499 Add test for issue - -commit 1e3207dbe96fd8c6e3256c34ef4bae1892fb20b5 -Author: Yoann Rodière -Date: Mon Mar 15 15:41:13 2021 +0100 - - Move Hibernate Github Bot configuration to the right directory - - Signed-off-by: Yoann Rodière - -commit c9c5a4172e587c2d12b6012d4ddb016f15c87b57 -Author: Yoann Rodière -Date: Mon Mar 15 15:35:37 2021 +0100 - - Add Hibernate Github Bot configuration - - Signed-off-by: Yoann Rodière - -commit d28b719c2ccbb60f2515b6fbcec4d8b43d1bffc6 -Merge: 5dfbaf58ef b6ba93c786 -Author: Andrea Boriero -Date: Mon Mar 15 10:46:40 2021 +0100 - - Merge remote-tracking branch 'upstream/master' into wip/6.0 - -commit b6ba93c786e569ad4b318244b446b68525779517 -Author: Christian Beikov -Date: Fri Mar 12 12:51:38 2021 +0100 - - Increase maximum open cursors - -commit 44d78d9b854d3f1562a806d831db5342949a9bcd -Author: randymay -Date: Fri Nov 3 16:22:22 2017 -0400 - - HHH-12076 Fix index out of bounds exception and allow table group joins for collection joins as well - -commit 7f814107a88da0b138fdf8ad55c815d00a16275d -Author: Sanne Grinovero -Date: Wed Mar 11 16:42:12 2020 +0000 - - HHH-14494 Upgrade the PostgreSQL JDBC driver used for testing to v. 42.2.19 - -commit fe1e098ba18ab0bbc64f833e58a3a42a18ec4226 -Author: Sanne Grinovero -Date: Mon Mar 8 14:11:32 2021 +0000 - - HHH-14485 Upgrade integration tests to use Oracle JDBC driver version 21.1 - -commit 5dfbaf58efd4879bf0d5d36fd523a8162baa25dd -Author: Chris Cranford -Date: Thu Mar 11 15:33:14 2021 -0500 - - Lookup RevisionTypeType rather than re-create CustomType instances - -commit fd73a1af85ae2a7dd3e8b3c53f2fc25b1f7779ac -Author: Chris Cranford -Date: Thu Mar 11 15:04:27 2021 -0500 - - Use dialect default precision for additional types - -commit 79a0c325e915b71eb49bd53e192fce799222e56e -Author: Chris Cranford -Date: Thu Mar 11 14:58:32 2021 -0500 - - Move null check into lambda for DelayedCollectionInitializer - -commit c2569bde4c16d7d2e11039c3890bd61453cabf4e -Author: Chris Cranford -Date: Thu Mar 11 14:56:03 2021 -0500 - - Pass sorted collection comparator as ctor argument - -commit 5cf052775bfb2542f0729356d18d05148e905543 -Author: Chris Cranford -Date: Wed Mar 10 18:32:55 2021 -0500 - - Remove UnsupportedOperationException in ctor - -commit 44719e9bb22cae8847f0720b66477d24337948ff -Author: Chris Cranford -Date: Tue Mar 9 18:38:20 2021 -0500 - - Avoid NPE when resolving collection key for delayed collections - -commit 71f633a8f7970ca357c8518846774f948ea525e6 -Author: Chris Cranford -Date: Tue Mar 9 18:33:43 2021 -0500 - - Set comparator on Persistent SortedSet and SortedMap collection instances - -commit 4292d118ad8ab4d5be42aacedadcd4d95749cab7 -Author: Chris Cranford -Date: Tue Mar 9 18:07:56 2021 -0500 - - Enforce dialect's default timestamp precision - -commit 2cf8131f6e989d98bf33f34a35b0bdd431160378 -Author: Chris Cranford -Date: Tue Mar 9 17:18:06 2021 -0500 - - Fix JdbcParameterBinding with RevisionType enum - -commit 87a40f6c2f9155172ba87972db2676114a685e75 -Author: Chris Cranford -Date: Tue Mar 9 14:00:54 2021 -0500 - - Set strategySelector before reflectionOptimizer is resolved - -commit 06d2a0c23ec95ab6078d81abc674886a47fbf98e -Author: Christian Beikov -Date: Wed Mar 10 19:37:23 2021 +0100 - - Use FK descriptor instead of target entity identifier - -commit 52684bba265199696eca48f62cbfcd32212d1bc7 -Author: Christian Beikov -Date: Thu Mar 11 16:48:15 2021 +0100 - - Fix concurrency issue in QueryCacheTest - -commit d1445efd828b67c299981d78306bf299fa3ca142 -Author: Christian Beikov -Date: Thu Mar 11 12:58:03 2021 +0100 - - HHH-9663 Implement support for orphan removal of assocations within embeddables - -commit 8101e3e47d65497dd30e2d7a9338ae5375c5b279 -Author: Jaanus Hansen -Date: Tue Apr 10 00:57:47 2018 +0300 - - HHH-9663 added failing test case for Embeddable orphanRemoval - -commit c58227241f0b89461618bbb5246952a3a1d1c5c9 -Merge: 682678fbe5 9952c09843 -Author: Andrea Boriero -Date: Thu Mar 11 10:52:24 2021 +0100 - - Merge remote-tracking branch 'upstream/master' into wip/6.0 - -commit 9952c0984354a45e293213ae3257071dd5eca3fd -Author: Steve Ebersole -Date: Wed Mar 10 16:23:42 2021 -0600 - - HHH-14491 - Apply default allocation/increment size for @GeneratedValue(AUTO) - HHH-14492 - Prefer sequence-per-entity (hierarchy) for @GeneratedValue(AUTO) by default - - - added test as @FailureExpected to track this into 6.0 - -commit 682678fbe5f4cbd8baa6228c6cd273f07f1dd40f -Author: Christian Beikov -Date: Wed Mar 10 15:24:34 2021 +0100 - - Introduce FunctionExpression in SQL AST and remove shallowness handling in sqm to sql converter - -commit 793462568841f805c20d4a1678f1dc1c6899551b -Author: Andrea Boriero -Date: Wed Mar 10 15:58:21 2021 +0100 - - Fix derby test failure - -commit 60c4fbe0993e2f40211d056430ff152bb43ccec1 -Author: Andrea Boriero -Date: Wed Mar 10 14:39:34 2021 +0100 - - SemanticQueryBuilder#visitPathExpression() cannot cast DomainPathPart to SqmExpression - -commit 15b52460f3ade96860815e06286f5835340b97bd -Author: Andrea Boriero -Date: Wed Mar 10 14:36:38 2021 +0100 - - BaseSqmToSqlAstConverter#consumeEntityJoin() postpone tableGroupJoin.applyPredicate after consuming implicit joins - -commit 1905e8bba32c0198bdf4b5002e2bb7561504789d -Author: Andrea Boriero -Date: Mon Mar 8 19:10:26 2021 +0100 - - HHH-14482 Do not discard prior implicit join by key - -commit a02212742848fd275e62c6f86b14f74319a3cb25 -Author: Chris Cranford -Date: Sat Mar 6 16:40:32 2021 -0500 - - HHH-14482 Do not discard prior implicit join by key - -commit f2b79eef67df511e0cd4f3d41b642adcd4f7b0f7 -Author: Andrea Boriero -Date: Wed Mar 10 10:45:37 2021 +0100 - - Fix issue with Column#getSqlType() for Columns which Type is an EntityType not referring to a PK - -commit 2fb1cdcae158bd47afce60aad55aefc04b179d3e -Author: Jan Schatteman -Date: Wed Feb 17 23:44:09 2021 +0100 - - Migrate more tests from jpa/test to orm/test/jpa - - Signed-off-by: Jan Schatteman - -commit 56d90a0aa967ff4ca9feb21db0a7f0c5f66cc0df -Author: Christian Beikov -Date: Mon Mar 8 16:19:17 2021 +0100 - - Implement non-select native query support and fix parameter binding ordering issues for select native queries - -commit ce4144787558a230730081fe2776ad3ae80e5bac -Author: Christian Beikov -Date: Tue Mar 2 17:29:56 2021 +0100 - - Migrate java type descriptor tests and fix JdbcTimestampTypeDescriptor - -commit a3d2f1937e07c5547de71117ea90db1157384d88 -Author: Christian Beikov -Date: Mon Mar 8 16:21:12 2021 +0100 - - Implement support for delayed collections with FKs based on non-primary keys - -commit 350fd81cf5540ea6ae105c1e8fea7e6e1d09462d -Author: Christian Beikov -Date: Mon Mar 8 16:22:20 2021 +0100 - - Switch from java.lang.Class to java.lang.reflect.Type in the metamodel to support parameterized types - -commit 4a1a084def508dc10e9dc5bcf9512d73e4b64bdf -Author: Christian Beikov -Date: Mon Mar 8 15:20:02 2021 +0100 - - Fix StaticMetadataTest - -commit 69564cd7c8c20e5ef57bc02664cbe16fc2308213 -Author: Steve Ebersole -Date: Fri Mar 5 14:42:21 2021 -0600 - - HHH-14478 : Allow DialectResolvers to be discovered by ServiceLoader - -commit 47f7ca7ff57c5b55bd1fe12ebd999e2d32b0f3aa -Author: Andrea Boriero -Date: Mon Mar 8 11:54:42 2021 +0100 - - Clean up BasicValue - -commit b225beb3cc67e6bc0c2c0989a686f6f12a4836e9 -Author: Christian Beikov -Date: Mon Mar 8 11:43:20 2021 +0100 - - Fix processing state issues with insert-select statements - -commit ee529896474b9a00da537dcdcfa402d674e30e94 -Author: Christian Beikov -Date: Mon Mar 8 10:15:32 2021 +0100 - - Don't build session factory and entity manager eagerly and stop enforcing id class implements Serializable - -commit f7d421b6ff7940f15ff6cca46bf4612cb075e250 -Author: Andrea Boriero -Date: Mon Mar 8 09:28:53 2021 +0100 - - Fix NPE with DelayedCollectionInitializer - -commit 711fb53505677972764f0af3c8efab8db3bf7225 -Author: Chris Cranford -Date: Sun Mar 7 15:11:52 2021 -0500 - - Resolve JavaTypeDescriptor, if not explicitly specified, for StandardRowReader - -commit 9591bbb1851785f6df9231fe57c5856e906aef4a -Author: Chris Cranford -Date: Sun Mar 7 16:54:53 2021 -0500 - - Fix NPE with DelayedCollectionInitializer - - Since the collectionInstance has not been resolved when asked to resolve the - collection key, provided an overridden method to not register the resolution - listener to avoid the NPE. - -commit 79d2569618cccedd7d1b16671a9a0518a2966128 -Author: Chris Cranford -Date: Sun Mar 7 14:11:42 2021 -0500 - - Don't add superfluous "and" when there is no discriminator filter - -commit 21cca2bbc2ce13d0fd8655907be0f76c199917a5 -Author: Steve Ebersole -Date: Fri Mar 5 14:12:25 2021 -0600 - - hibernate-testing cleanup - -commit a514460bb9b686d1e4e9aad86acd5eb86ca15bcb (origin/master) -Author: Christian Beikov -Date: Fri Mar 5 12:28:45 2021 +0100 - - HHH-9182 Cleanup grammar ambiguity issues - -commit 2ee5ed0e52dc66932026f216503560391273f7e7 -Author: Steve Ebersole -Date: Fri Mar 5 07:28:18 2021 -0600 - - hibernate-testing cleanup - -commit 6250942e7f11db93249071f19e631998534ad574 -Merge: cb603a337b 17c5fab50e -Author: Andrea Boriero -Date: Fri Mar 5 11:18:14 2021 +0100 - - Merge remote-tracking branch 'upstream/master' into wip/6.0 - -commit cb603a337bb432ace1a545a0623f548d66b4d1ff -Author: Andrea Boriero -Date: Thu Mar 4 16:14:17 2021 +0100 - - Removed use of EntityPersister#getEntityTuplizer() - -commit ddf434df7e1156dd59133552d07270516c000d65 -Author: Steve Ebersole -Date: Thu Feb 25 15:14:59 2021 -0600 - - HHH-14469 - Support schema-tooling on sub-sets of the relational model known to Hibernate - - - @BootstrapServiceRegistry - - Support for filtering at schema-tooling level - -commit 7b7597f40e4d25e05be69a21c3624636832d45ca -Author: Gavin King -Date: Thu Mar 4 13:51:05 2021 +0100 - - modernize Interceptor + Lifecycle interfaces - -commit b3aa7d079402cd6ad02af3f67e03d8aebba714f1 -Author: Gavin King -Date: Wed Mar 3 14:35:17 2021 +0100 - - remove Serializable id from the Tuplizer stuff - -commit d4aa6436306fd2f29c14969fadeee9d17b5c5a71 -Author: Gavin King -Date: Mon Mar 1 18:26:42 2021 +0100 - - type ids as Object instead of Serializable - -commit 17c5fab50e9a1c90a96a01498b8c95b1646194cc -Author: Vlad Mihalcea -Date: Fri Feb 21 10:11:12 2020 +0200 - - HHH-12338 - Incorrect metamodel for basic collections - -commit abfa2de1d475a573651723a72a291d4dbe1e97dc -Author: Christian Beikov -Date: Thu Mar 4 12:16:57 2021 +0100 - - Try cast instead of inlining - -commit abbbd2d3fb71335290a6cfa8088775fb259bfe28 -Author: Christian Beikov -Date: Wed Feb 24 15:24:34 2021 +0100 - - Merge AbstractSqlAstWalker into AbstractSqlAstTranslator - -commit 1ea675d58dd94200fa7aef1ba456642cf92fbe5c -Author: Christian Beikov -Date: Wed Feb 24 14:24:21 2021 +0100 - - Apply requested changes - -commit 003fddccb52cd325686c8f7470944d542254b219 -Author: Christian Beikov -Date: Tue Feb 23 20:01:06 2021 +0100 - - Implement support for special parameter rendering through functions to support using certain Derby functions with parameters - -commit fb079d077cf34e206084d796d7c53e5e606a6436 -Author: Yoann Rodière -Date: Wed Feb 24 14:18:26 2021 +0100 - - HHH-14439 Test executing the same query with subselects a second time with different list parameters - - Signed-off-by: Yoann Rodière - -commit 81071a4594d4347279222632bdc76a1ded44bebe -Author: Yoann Rodière -Date: Wed Feb 24 15:24:14 2021 +0100 - - HHH-14439 Clean up expanded list parameters before re-executing a query - - Signed-off-by: Yoann Rodière - -commit ed3bbf15e476b064b6a55a80ac0c1570a4287bf0 -Author: Vlad Mihalcea -Date: Mon Nov 12 13:35:21 2018 +0200 - - HHH-13077 - Optimize query plan call count - -commit 2d5d6061c50be3d7b0c87281651029a69d0178d3 -Author: johnniang -Date: Wed Mar 3 10:58:48 2021 +0800 - - HHH-14473 add test case - -commit f03dd44107c7c0cf287022d6b02c06690715570f -Author: johnniang -Date: Tue Mar 2 18:40:40 2021 +0800 - - HHH-14473 Resolve managed class name with class loader as well - -commit f7c85fad4ae650d7ec98bf3c71f4c319b1d19c66 -Author: Sanne Grinovero -Date: Wed Mar 3 10:44:29 2021 +0000 - - HHH-14477 Log warnings about the use of Javassist as BytecodeProvider being deprecated - -commit b6dc77280f478ff54a29315a342fc5d147cb6311 -Author: Gavin King -Date: Wed Mar 3 08:07:48 2021 +0100 - - remove two unnecessary calls to deprecated getEntityTuplizer() - -commit 44f4f93a294eea75635c3ebfac473db146029291 -Author: Christian Beikov -Date: Mon Mar 1 18:34:09 2021 +0100 - - HHH-9182 Test and fix HQL rules to allow more expression types in aggregate functions - -commit 34a361058de2f4ae3ae0f6ec8d662537b63d2bfd -Author: Gail Badner -Date: Tue Mar 2 14:09:16 2021 -0800 - - HHH-14390 HHH-14466 : StackOverflowError loading inverse side of associations owned by associated entity ID - - Improved code comments as recommended by Steve Ebersole. - -commit cb18fdb4f7ddbe6ed6bf2db7c9399173d6318a9d -Author: Gail Badner -Date: Wed Feb 24 17:43:43 2021 -0800 - - HHH-14390 : StackOverflowError with @Fetch(FetchMode.SELECT) mapped for entity with an ID that is a bidirectional one-to-one eager association - - Move fix into FetchStyleLoadPlanBuildingAssociationVisitationStrategy - -commit 2bacaabc378472bd5a4a7341bcb77a50332249ae -Author: Gail Badner -Date: Tue Feb 23 18:23:07 2021 -0800 - - HHH-14466 : StackOverflowError loading an entity with eager one-to-many if bidirectional and many-to-one side is the ID - -commit bd84bb69bdc86f0fa0293f9eb95dc970a64a55fa -Author: Andrea Boriero -Date: Tue Mar 2 17:05:59 2021 +0100 - - Fix MetadataTest failures, the behaviour introduced by HHH-4702 has been reverted, SingularAttribute#getBindableJavaType() and SingularAttribute#getType().getJavaType() return Integer.class also for int attributes - -commit 59735d2329f4e0c1c829634cd9e561e35212ab88 -Author: Christian Beikov -Date: Mon Mar 1 09:53:43 2021 +0100 - - HHH-14471 Fix concurrency issue due to builder sharing in DynamicBatchingEntityLoader - -commit 1714c022e271c7faf64b7993de9d06ad457ec4c2 -Author: Christian Beikov -Date: Tue Mar 2 11:36:54 2021 +0100 - - HHH-11076 Log a warning if uninitialized collection unsets session when filters are enabled - -commit eb639a2d95cc5d8c5c86f35afe407da6a5dc296a -Author: Sanne Grinovero -Date: Tue Mar 2 13:25:59 2021 +0000 - - HHH-14474 Method AbstractEntityPersister#getAppropriateUniqueKeyLoader also need to change in protected - -commit 17bffb08a5587ea5da3152e28887d2da5e3ad032 -Author: Sanne Grinovero -Date: Mon Mar 1 20:08:42 2021 +0000 - - HHH-14474 Style and formatting improvements - -commit 4fad616d4bfe144349cabe055229dc54e53f3c08 -Author: Gavin King -Date: Sun Feb 14 01:42:49 2021 +0100 - - HHH-14474 Refactor internal visibility to allow Hibernate Reactive to implement non-primary key associations - - see https://github.com/hibernate/hibernate-reactive/issues/565 - -commit 6868c68278b1b93d0ac56fc8d57d1b31bee295fe -Author: Sanne Grinovero -Date: Mon Mar 1 16:13:02 2021 +0000 - - HHH-14443 Formatting and style fixes - -commit de3f3c1d74f43692e7bf50f7cf967406db1535ab -Author: Francois van Delft -Date: Mon Feb 8 12:17:38 2021 +0100 - - HHH-14443 Add hashcode to ObjectTypeCacheEntry, so query cache can do a successfull lookup for queryies with AnyTypes - -commit 70f8498fd6edb9a1279ae322d3ea2ba9ed5fb049 -Merge: 682cbc7d87 a90aaa48b4 -Author: Andrea Boriero -Date: Mon Mar 1 12:02:58 2021 +0100 - - Merge remote-tracking branch 'upstream/master' into wip/6.0 - -commit a90aaa48b40dffe223c7daf5b167884d605ac1b7 -Author: gbadner -Date: Thu Feb 25 08:55:45 2021 -0800 - - HHH-14467 Avoid false positives when detecting *ToOne associations that are part of the identifier - - Co-authored-by: Yoann Rodière - -commit 021b2741ab6ec43c03c71990bf52140c3240c0dc -Author: Gail Badner -Date: Wed Feb 24 20:11:48 2021 -0800 - - HHH-14467 Simplify detection of *ToOne associations that are part of the entity identifier - -commit b6b83536e61d5cea0496f6913f47d99de5e40e1b -Author: Yoann Rodière -Date: Wed Feb 24 11:57:24 2021 +0100 - - HHH-14467 Test referencing an entity whose ID is derived - - Signed-off-by: Yoann Rodière - -commit 9b991310b52612c5e1ec8c6c92e4caad55b45d92 -Author: Yoann Rodière -Date: Tue Feb 23 18:27:37 2021 +0100 - - HHH-14467 Fix relative ordering of second pass for associations and derived IDs - - Always execute second pass for associations referencing an entity with - derived ID after the second pass for that entity's derived ID. - - Signed-off-by: Yoann Rodière - -commit 682cbc7d8745b2fb60e32a9c60376fa617ee9e3d -Author: Christian Beikov -Date: Thu Feb 25 14:58:24 2021 +0100 - - Simplify type resolving and ignore a test for Oracle - -commit d4ffbea54f7840856b718db90da10bd6d9905a1e -Author: Christian Beikov -Date: Tue Feb 23 11:27:47 2021 +0100 - - Introduce callback in dialect to resolve the SqlTypeDescriptor from the Jdbc type code, precision and scale - -commit e5c239c7c844533f99a4b86374edaf01fff16674 -Author: Steve Ebersole -Date: Wed Feb 24 14:25:19 2021 -0600 - - natural-id caching - - - on top of Christian's PR #3735 which fixes a problem with pulling entity snapshots from the database which effects natural-id handling and caused test failures here (b4 #3735) - -commit 37b03ecc056d5ca2d461a34f7a288ce9639e8a15 -Author: Christian Beikov -Date: Thu Feb 25 10:47:14 2021 +0100 - - Properly handle parameters and null literals as plain select items - -commit 5b5254fbd642e6e6ad3f7df9a72c8737447e94d5 -Author: Christian Beikov -Date: Mon Feb 15 17:59:47 2021 +0100 - - Fix issues with inverse FK creation and related natural id issues - -commit 0fafae4624cb5bf304b0e388898e950f08c5edb0 -Merge: 0f92f53884 496e5995b2 -Author: Andrea Boriero -Date: Thu Feb 25 10:15:33 2021 +0100 - - Merge remote-tracking branch 'upstream/master' into wip/6.0 - -commit 0f92f5388412883f29f3eabe2d51fdafc5405156 -Author: Christian Beikov -Date: Wed Feb 24 13:59:08 2021 +0100 - - Remove BIT column type registrations from dialects - -commit 9ce2fa9cb46c7698e7b3928df743f0413e8a9e8d -Author: Christian Beikov -Date: Wed Feb 24 10:30:06 2021 +0100 - - Fix check constraint generation - -commit 0fd5fe7d5e84a4fec40a0f098f915059a23af39f -Author: Christian Beikov -Date: Tue Feb 23 20:23:15 2021 +0100 - - Treat PREFERRED_BOOLEAN_JDBC_TYPE_CODE value BIT like BOOLEAN and only consider the value in CastFunction - -commit fc3c20f6692223adfee9f57d2a3f022f584d6895 -Author: Gavin King -Date: Sat Jan 23 13:23:03 2021 +0100 - - remove BitTypeDescriptor - -commit 005c4cea639ac91631d04df2c30533e1b8319d27 -Merge: 7bf5117a02 e61eff2913 -Author: Andrea Boriero -Date: Wed Feb 24 15:02:45 2021 +0100 - - Merge remote-tracking branch 'upstream/master' into wip/6.0 - -commit 496e5995b2c07853953d05540a8368ec18ac7c02 -Author: Gavin King -Date: Tue Feb 23 23:10:41 2021 +0100 - - deprecate old code for fetching id by natural id - -commit 3a24c700fc57cd0427077be4c5c537004cd8ddb6 -Author: Gavin King -Date: Tue Feb 23 22:57:10 2021 +0100 - - cache the @NaturalId loaders - - and clean up some of the other loader caching code - -commit e0ee9f5b0af6c0d09cae602307e3172f10ec11bd -Author: Gavin King -Date: Tue Feb 23 19:12:59 2021 +0100 - - make it easy for Hibernate Reactive to reuse the @NaturalId stuff - -commit e368ac5babec6bec77aa33793fcc212e059e94c1 -Author: Gavin King -Date: Tue Feb 23 18:35:54 2021 +0100 - - more efficient loading by multiple @NaturalIds - -commit 725083b7677d2e773823f89f060ac96a17fcc91a -Author: Gavin King -Date: Tue Feb 23 15:05:29 2021 +0100 - - more efficient loading by @NaturalId - - For entities with a single @NaturalId property only. - Uses a unique key EntityLoader instead of two selects. - -commit 7bf5117a020650c16137e6634eeb352ccd89725c -Author: Christian Beikov -Date: Tue Nov 24 19:15:25 2020 +0100 - - Work on column alias resolving - -commit e61eff291320f83af6552eec7cf3a7bb7ddd9f59 -Author: Sanne Grinovero -Date: Tue Feb 23 13:24:31 2021 +0000 - - HHH-14463 Upgrade to ByteBuddy 1.10.21: OOB support for JDK17 - -commit e38df7ed593af7dc124d10c30eea5389c76af124 -Author: Gavin King -Date: Tue Feb 23 10:26:55 2021 +0100 - - HHH-14464 Expose useful things to enable cleanup of HR code - - - expose useful static-y methods in AbstractEntityPersister - - add methods to OptimisticLockStyle to reduce verbosity - - add a useful method to ValueGeneration - -commit 578edbfd9f60917d407d4f03a306c528282c7b78 -Author: Gavin King -Date: Tue Feb 23 00:47:04 2021 +0100 - - HHH-14464 Make two methods of AbstractEntityPersister protected - - for the benefit of Hibernate Reeactive - -commit 6643e9f4bc2a448fb55d73deedd473011e781977 -Author: Christian Beikov -Date: Mon Feb 22 16:00:54 2021 +0100 - - Use java.lang.reflect.Type instead of java.lang.Class for JavaTypeDescriptor#getJavaType to support parameterized types - -commit 6b66feb0ac6b14eefeadebee06951de273c8d450 -Author: Christian Beikov -Date: Thu Feb 18 17:58:17 2021 +0100 - - HHH-14452 Support set operations in JPA Criteria API - -commit 222837df9563a480d74fc09ad8077ae1a1ebc7b4 -Author: Gavin King -Date: Mon Feb 22 17:55:50 2021 +0100 - - properly genericize CollectionSemantics hierarchy - -commit c44570757d0b5ee977af3bbaab4d29aa0e0f7acb -Author: Jan Schatteman -Date: Tue Feb 9 22:10:45 2021 +0100 - - Migrated more tests from jpa/tests to orm/test/jpa - - Signed-off-by: Jan Schatteman - -commit db54fe44dba33389c73ea42bc10c938e0649a028 -Author: Steve Ebersole -Date: Wed Feb 10 13:44:38 2021 -0600 - - HHH-13658 : Make LazyToOne optional - HHH-13134 : JOIN FETCH does not work properly with enhanced entities - -commit e6315749220a088470a22590534d8a64efd56a67 -Author: Gavin King -Date: Sat Feb 20 16:23:56 2021 +0100 - - genericize PersistentCollection hierarchy - -commit 40947297e47474c1f8529473b961f23a4477b1e4 -Merge: 406974089b 91a68c6746 -Author: Andrea Boriero -Date: Thu Feb 18 08:29:28 2021 +0100 - - Merge remote-tracking branch 'upstream/master' into wip/6.0 - -commit 91a68c6746deb060745c24d3f9c11af29c6dae29 -Author: Christian Beikov -Date: Tue Feb 16 15:11:43 2021 +0100 - - HHH-14460 Validate setter exists for persistent property also with mixed access strategy - -commit 406974089b62acc9f866f424c370103a92aa481b -Author: Jan Schatteman -Date: Tue Feb 16 18:02:55 2021 +0100 - - Spelling correction in @Jpa - - Signed-off-by: Jan Schatteman - -commit 0b951ef803bc697c7f89a9ec187cb26cff904f32 -Author: Yoann Rodière -Date: Mon Feb 15 11:08:12 2021 +0100 - - Fix ulimit when starting Oracle Express - - See - https://stackoverflow.com/questions/62574379/su-permission-denied-despite-being-root-in-oracle-container - - Signed-off-by: Yoann Rodière - -commit b15e7506cc5a1ad840f2d6e30cf639ffd647464b -Author: Jan Schatteman -Date: Tue Feb 2 18:34:40 2021 +0100 - - Enable adding non-String setting values to the @Jpa integrationSettings - - Signed-off-by: Jan Schatteman - -commit dc884e077bfc70dfe97213fe9ef58c07d66cccd6 -Author: Christian Beikov -Date: Fri Feb 12 17:04:42 2021 +0100 - - HHH-14456 Add DialectResolutionInfo#unwrap to be able to detect Cockroach in dialect resultion. Cleanup dialect resolution code. - -commit 130733af17214c5e2611fe869a7267428c2eab75 -Author: Gavin King -Date: Fri Feb 12 16:04:48 2021 +0100 - - Maria supports 'alter table if exists ...' - -commit 35643c468a7a1b0102ad13116adb47e14671c0ff -Merge: 9f096e89ec 42ca47dc4e -Author: Christian Beikov -Date: Fri Feb 12 15:49:53 2021 +0100 - - Merge remote-tracking branch 'upstream/master' into wip/6.0 - -commit 42ca47dc4e24ca7e417526a66f25fd88cc4627e9 -Author: Karel Maesen -Date: Fri Feb 12 15:37:15 2021 +0100 - - HHH-14446 Fix a tag for Postgis docker image - -commit 9d211ed6816afd61e3f2820de41a00a41bc063c2 -Author: Karel Maesen -Date: Fri Feb 12 15:24:47 2021 +0100 - - HHH-14446 Switching to the postgis provided docker - -commit 6cead49fec02761cb616fe8ea20134b90115f8b5 -Author: Karel Maesen -Date: Fri Feb 12 15:14:16 2021 +0100 - - HHH-14446 Add PostgresqlDatabaseCleaner checks - - Since the PostgreSQL JDBC driver is also used for CockroachDB, we need to test explicitly if the database is indeed PostgreSQL. - -commit 0d140cc30c15c2e044b96597f816fa5138520102 -Author: Karel Maesen -Date: Fri Feb 12 15:11:44 2021 +0100 - - HHH-14446 Add CockroachDB docker setup - -commit 6d97df670771a98e42988788a5d964695ac28948 -Author: Karel Maesen -Date: Thu Feb 11 20:13:09 2021 +0100 - - HHH-14446 Add spatial integration test profiles for DB2 and HANA - -commit da8cd19968a7f09e823d6f9d1698e834f6e3b3c2 -Author: Karel Maesen -Date: Thu Feb 11 17:49:28 2021 +0100 - - HHH-14446 Add spatial integration test profiles for oracle and ms sqlserver - -commit a4676415848abce27ba4524e40a0058e718b5bbc -Author: Karel Maesen -Date: Thu Feb 11 17:40:16 2021 +0100 - - HHH-14446 Fix PostgreSQL create extension syntax - -commit 031f12a1ec96ffaa46c9358c720a8dd7e3aa5bc7 -Author: Karel Maesen -Date: Mon Feb 8 23:33:03 2021 +0100 - - HHH-14446 Add integration test profiles for mysql and postgis - -commit 9f096e89ec6c5438d23e15dd5f4bd844ade4f922 -Author: Christian Beikov -Date: Wed Feb 10 13:03:26 2021 +0100 - - Repurpose DefaultSizeStrategy to SizeStrategy for resolving final size. Fix boolean encoding/decoding issues. Remove duplicate order bys. Fix set operation nesting. Fix lots of tests for SQLServer, MariaDB, Derby and Oracle - -commit 7e2747516ab98a268626009b70c66262e8a284fa -Author: Gail Badner -Date: Thu Feb 11 16:04:41 2021 -0800 - - HHH-14389 : Add test case that throw IllegalArgumentException using EntityManager#find by ID when ID is a one-to-one association - -commit 27fbacf7d2849ee0707cc04b3ed7a6327fa046eb -Author: Karel Maesen -Date: Thu Feb 11 21:33:55 2021 +0100 - - HHH-14453 Fix Hana integration test - -commit 8a01b4dab447ce788ba203b6a75f9a0908d3f9f3 -Author: Gail Badner -Date: Wed Feb 10 15:41:54 2021 -0800 - - HHH-14390 : StackOverflowError with @Fetch(FetchMode.SELECT) mapped for entity with an ID that is a bidirectional one-to-one eager association - -commit 611796c0fc413b27f240d83c49925414b1b71fc5 -Author: Steve Ebersole -Date: Wed Feb 10 13:11:35 2021 -0600 - - HHH-14450 - Drop ability to disable "enhanced proxies" - -commit 019f934344fceb43f115e7af67e028654e77d013 -Author: Jan Schatteman -Date: Wed Feb 3 19:33:38 2021 +0100 - - Migrating tests from jpa/tests/emops to orm/test/jpa/emops - - Signed-off-by: Jan Schatteman - -commit 4931c7e69fd18dd85c92d3734f2088d6f7e26299 -Merge: 3eee006002 15caff9cbc -Author: Christian Beikov -Date: Wed Feb 10 12:00:37 2021 +0100 - - Merge remote-tracking branch 'upstream/master' into wip/6.0 - -commit 3eee0060023bf8763270a2c1049da9845e961311 -Merge: de1524df68 b1951f5c26 -Author: Christian Beikov -Date: Wed Feb 10 11:31:53 2021 +0100 - - Merge remote-tracking branch 'upstream/wip/6.0' into wip/6.0 - -commit de1524df6853f1a5e67d12c2832dfa675d9cc36e -Merge: f48dd846f8 b3ab4c2299 -Author: Christian Beikov -Date: Wed Feb 3 17:36:09 2021 +0100 - - Merge remote-tracking branch 'upstream/master' into wip/6.0 - -commit 15caff9cbccc1397e5f7da83abb08c03d0e439db -Author: Christian Beikov -Date: Tue Feb 9 13:03:18 2021 +0100 - - Fix PostgreSQL cleanup wrt extensions, fix Oracle cleanup wrt sys objects, always drop id tables in tests, fix global temp table tests, add on commit delete rows for hana dialects - -commit 2eaa0f8c67871802bd83d361ed26bc00c2f893c1 -Author: Sanne Grinovero -Date: Tue Feb 9 12:26:08 2021 +0000 - - HHH-14447 Remove unneccessary type check - -commit 81a9b87ec19112c89970a85382ba93de4968ac66 -Author: Sanne Grinovero -Date: Mon Jan 25 21:25:39 2021 +0000 - - HHH-14447 Add missing EventGroupListeners into FastSessionService and take advantage of them - -commit 14e181806fd4e4b30704256490fc25f13d0d0637 -Author: Yoann Rodière -Date: Mon Feb 8 13:31:02 2021 +0100 - - HHH-14444 Encapsulate ID generation in GenerationState for PooledLoThreadLocalOptimizer - - This is just a cosmetic change, it doesn't change the behavior at all. - - Signed-off-by: Yoann Rodière - -commit 511dda7deed08a2eb304674dd524485c6e14cbbd -Author: Yoann Rodière -Date: Mon Feb 8 13:27:54 2021 +0100 - - HHH-14444 Avoid synchronization for multi-tenant generation in PooledLoThreadLocalOptimizer - - Signed-off-by: Yoann Rodière - -commit 5c155f3f8db035c626bae877a045712caad2d28c -Author: Yoann Rodière -Date: Mon Feb 8 13:23:58 2021 +0100 - - HHH-14444 Avoid synchronization for single-tenant generation in PooledLoThreadLocalOptimizer - - Signed-off-by: Yoann Rodière - -commit 04a40f839798886351ce7212c741c9832abd4738 -Author: Yoann Rodière -Date: Fri Feb 5 17:23:48 2021 +0100 - - HHH-14444 Test concurrent usage of ID generator optimizers - - Signed-off-by: Yoann Rodière - -commit a094e17d2a0a06c4f08f56fa2a5c0bf6c91f66ce -Author: Andrea Boriero -Date: Mon Feb 8 16:26:09 2021 +0100 - - HHH-14445 Javassist skip EntityWithMutableAttributesTest, LoadAndUpdateEntitiesWithCollectionsTest, SimpleDynamicUpdateTest, SimpleDynamicUpdateTest - -commit 650a703e1c1b0c42cff41ddaf82303673e8c0ce9 -Author: Karel Maesen -Date: Sat Feb 6 15:56:55 2021 +0100 - - HHH-14442 Fix checkstyle errors - -commit f0a81898dc02a32a305f83836090b970234f4873 -Author: Karel Maesen -Date: Wed Feb 3 22:16:17 2021 +0100 - - HHH-14442 Upgrade geolatte-geom to 1.6.1 - -commit b1951f5c26ac70f560503f3064786110b49651da -Author: Andrea Boriero -Date: Fri Feb 5 00:24:19 2021 +0100 - - Migrate tests from org.hibernate.jpa.test to org.hibernate.orm.test.jpa (#5) - -commit 470af287958e7b6f0459b2ec64908177cfdfcb0c -Author: Jan Schatteman -Date: Wed Jan 27 22:42:26 2021 +0100 - - Migrate tests from org.hibernate.jpa.test to org.hibernate.orm.test.jpa (2) - - Signed-off-by: Jan Schatteman - -commit cfc7b972501bf26713098abbbc36265a9b1ed46d -Author: Andrea Boriero -Date: Fri Jan 29 14:25:46 2021 +0100 - - HHH-14424 When enhanced as a proxy is enabled with dirty checking, on flush uninitialized entities containing collections are updated and all the fields are set to null - -commit 26a46b2010b73ba2f5101db197f56d4f13010f9a -Author: Andrea Boriero -Date: Fri Jan 29 11:42:57 2021 +0100 - - HHH-14424 Add test for issue - -commit 0ecb05614f57b39bef829763facc5ecfe1b4c7ae -Author: Gavin King -Date: Tue Aug 25 10:39:57 2020 +0200 - - use localtime/localtimestamp on HSQL and Postgres - - Since we don't need the TIME ZONE for our current_time - and current_timestamp functions, these are cleaner - mappings to SQL for these functions. - -commit fbba9ed4a8cd33d1c2079a71fc27048954891473 -Author: Gavin King -Date: Tue Aug 25 10:24:16 2020 +0200 - - Javadoc for the current date/time/timestamp functions - - Explain the difference between these various functions, and - how to correctly map them to SQL. - -commit 9d33bc39fb187bbfa666b6224b53007b425629cf -Author: Gavin King -Date: Mon Aug 24 23:53:03 2020 +0200 - - prefer localtime, localtimestamp on H2 1.4.200 - - As suggested by @famod we need to use localtime instead - or current_time because of changes in H2. - - See https://github.com/hibernate/hibernate-orm/pull/3412 - -commit 2cf9ec856ce3946a04749416b1b7f1fb72b862d4 -Author: Nathan Xu -Date: Fri Jan 15 14:26:25 2021 -0500 - - HHH-14384 Fix QueryProducer.createNativeQuery documentation - -commit ab5d350805eef846eee4ce9573d0b01e29215278 -Author: Gavin King -Date: Thu Aug 27 21:21:18 2020 +0200 - - generate sensibly-lengthed columns for UUIDs - - Previously, Hibernate generated column definitions of - type 255 for BINARY/CHAR columns that will have UUIDs - stored in them. It should be: - - - length 16 for BINARY - - length 36 for CHAR - -commit 377ca5c0733ec22fdf4998be04441849502dcf0d -Author: Gavin King -Date: Fri Sep 4 08:02:49 2020 +0200 - - use proper bullet list in Dialect javadoc - - This is Javadoc, not a comment, so I should have - formatted it properly when I originally wrote this. - -commit d5b0c167c890e49890339cc4597f3581d469d3f0 -Author: Gavin King -Date: Tue Aug 25 12:50:39 2020 +0200 - - on H2 after 2.0 don't need column type workaround - - Apparently H2 correctly reports column types via JDBC metadata - since 2.0, so this workaround is unnecessary. - - Also add a default mapping for DECIMAL in superclass, just for - completeness. - - cc @famod - -commit 34cb6d50d991430dd42894d97e3613fdaff08de0 -Author: Gavin King -Date: Tue Aug 25 12:42:55 2020 +0200 - - on H2 prior to 2.0 map NUMERIC to DECIMAL - - This is helpful the schema update tool. - - This workaround was lost during my work on Dialects. - -commit 0aff8627dfc938e0c2c281c1ec917642ac73e4ac -Author: Christian Beikov -Date: Thu Feb 4 09:16:55 2021 +0100 - - Fix wrong host for matrix_pgsql - -commit 47807c25f1aeba41bf11857b95bc443757bd7320 -Author: Christian Beikov -Date: Thu Feb 4 00:07:31 2021 +0100 - - Don't use prepared statement cache for PostgreSQL in matrix test - -commit b3ab4c22997f01bbffb379887e8b001e217252b0 -Author: Christian Beikov -Date: Wed Feb 3 14:08:45 2021 +0100 - - Fix newly added tests for derby - -commit 1983123d72d2f063685cc8543595b4f595032cb4 -Author: Christian Beikov -Date: Wed Feb 3 11:23:17 2021 +0100 - - Use a shared connection provider for most tests to reduce test time significantly - -commit 709ac039d1e5d12372237951cadfcf4bc2feb590 -Author: Christian Beikov -Date: Wed Feb 3 11:22:17 2021 +0100 - - Drop TypeConfigurationRegistry which was leaking session factories that had a bootstrap error - - As far as I can tell, the purpose of TypeConfigurationRegistry was only for serialization, but since the TypeConfiguration UUID is always random, this won't work anyway. - -commit ffe45ccdd6fd0fdde1f685fe4075a7a3f2295c01 -Author: Christian Beikov -Date: Wed Feb 3 11:19:46 2021 +0100 - - Register transaction coordinator as observer when session is waiting for auto close but coordinator is not shared - -commit 9f460e1c303ba974f38327a35e88545729aedc30 -Author: Christian Beikov -Date: Wed Feb 3 11:18:36 2021 +0100 - - HHH-14432 Implement cleanup for EntityManagerFactoryBuilderImpl to close connections on bootstrap errors - -commit 21c89240d068f279b7511384d7a3b71a52347fe5 -Author: Christian Beikov -Date: Wed Feb 3 11:16:56 2021 +0100 - - HHH-14435 Improve table information extraction (especially for Oracle with enableSynonyms) - Previously Oracle with enableSynonyms ran into a timeout on CI because the JDBC driver issues a rather expensive query. The new implementation issues a dummy query and uses the result set metadata as suggested in various online articles about schema introspection - -commit 62d727d44ed881cce47fe5881fda65a0d0d3bce1 -Author: Christian Beikov -Date: Wed Feb 3 11:11:37 2021 +0100 - - Fix connection leak in connection provider used for JTA tests - -commit a8cddb93e8d0d814df72a14a6acdf6983b53044d -Author: Christian Beikov -Date: Wed Feb 3 11:10:31 2021 +0100 - - HHH-14434 Fix autocommit reset for connection used in DdlTransactionIsolatorNonJtaImpl - -commit 9135f69c91522d7594c846807b9563dd6db16543 -Author: Christian Beikov -Date: Wed Feb 3 11:07:02 2021 +0100 - - HHH-14433 Add possibility to drop local temporary tables to enable connection pooling in tests - -commit 08d9fe1a3b37fc054b77336530511c7331cf075e -Author: Christian Beikov -Date: Wed Feb 3 11:02:38 2021 +0100 - - Add cleaners for clearing a schema the first time before running a test - -commit d767d46d05a9a1f754dca6be870bbf9f17bdb553 -Author: Christian Beikov -Date: Wed Feb 3 10:55:07 2021 +0100 - - Fix most tests to work on all DBs and fix a bunch of connection leaks - -commit 5d9f6936ff88ac560b418a59cd33eedffb7a8fe2 -Author: Christian Beikov -Date: Wed Feb 3 15:15:01 2021 +0100 - - HHH-14351 Fix order by type discriminator rendering issue - -commit d2036cb11a28712c139050164639685e12ba59e2 -Author: Christian Beikov -Date: Wed Feb 3 15:14:36 2021 +0100 - - HHH-14351 Test showing that order by type discriminator desc fails - -commit 52785ce0ed82115671aef7cff83e42db31c05142 -Author: Christian Beikov -Date: Wed Feb 3 13:33:57 2021 +0100 - - HHH-14408 Defer property type access until integrators ran - -commit 6fcb83c90d69a30ca31c86f69dee3f7077d080ff -Author: Christian Beikov -Date: Wed Feb 3 13:32:59 2021 +0100 - - HHH-14408 Test that user type provided by integrator is properly registered - -commit d213d675ce83293a26d3b9fec8e18e4c7f7002d8 -Author: Andrea Boriero -Date: Wed Feb 3 10:11:53 2021 +0100 - - HHH-13658 fix failing test on Oracle - -commit f48dd846f896976030ebf1555d8100da9e78435b -Author: Andrea Boriero -Date: Tue Feb 2 12:00:15 2021 +0100 - - fix checkstyle erroe - -commit e86160480511b9b47d8189953f9ba7204f30065e -Merge: acb8b69be2 22f858c68b -Author: Andrea Boriero -Date: Tue Feb 2 11:34:47 2021 +0100 - - Merge remote-tracking branch 'upstream/master' into wip/6.0 - -commit 22f858c68bd8b4cb2ad10e74114a5e0f3c02da78 -Author: Sanne Grinovero -Date: Mon Feb 1 22:10:24 2021 +0000 - - HHH-14428 Could avoid allocating an org.hibernate.internal.SessionFactoryImpl when no options are set - -commit 15d418c332b211da5fde9c2d3a8234f6c209d9b2 -Author: Sanne Grinovero -Date: Mon Feb 1 21:31:36 2021 +0000 - - HHH-14386 Fails to boot if provided CurrentTenantIdentifierResolver is unable to operate during bootstrap - -commit 0e75b4f3b596260fd6bc4cbb9fe6658f0c4d3d3e -Author: Gail Badner -Date: Tue Dec 22 16:48:46 2020 -0800 - - HHH-13944 : Added "join fetch" and one-to-many test cases - -commit 20008b19bc5bdc5dc2bedd14c96b425266b250c9 -Author: Andrea Boriero -Date: Wed Dec 2 15:07:18 2020 +0100 - - HHH-13944 HQL/JPQL size() does not work (anymore) with nested expression - -commit c99904a60601e6c92dadf1db22d4f61a1be409da -Author: Andrea Boriero -Date: Wed Dec 2 12:17:24 2020 +0100 - - HHH-13944 Add test for issue - -commit 16027319e8b70b9ff1521abe734d264623ec426b -Author: Joseph B. Ottinger -Date: Sun Jan 24 08:34:56 2021 -0500 - - Updating refs to current IDEA and Eclipse integration docs - -commit acb8b69be2091358dcc23dcd286309d044e6f178 -Author: Joseph B. Ottinger -Date: Sun Jan 24 08:34:56 2021 -0500 - - Updating refs to current IDEA and Eclipse integration docs - -commit 19d46d2fed022d16a5d2de707984d9141010ab16 -Author: Alexander Iskuskov -Date: Tue Jan 26 15:12:19 2021 +0300 - - HHH-14421 Fix javadoc for Query.stream() method - -commit 6371835dce853b4b3f4e56c8f1475e613ab05580 -Author: Steve Ebersole -Date: Mon Feb 1 08:38:20 2021 -0600 - - More natural-id work - - - preliminary work for natural-id caching support - - re-worked the previous NaturalIdHelper, NaturalIdXRefDelegate, etc - - minor fixes/improvements to previous commit - -commit 5881b88173d5d8727f8e4aec064751107f430da4 -Author: Sanne Grinovero -Date: Thu Jan 28 12:16:57 2021 +0000 - - HHH-14418 Revert to previous semantics: EventListenerGroup#clear() to also get rid of the default DuplicationStrategy - -commit 70baa0b65938d04cf509475489b942b19f43c1f4 -Author: Steve Ebersole -Date: Thu Jan 28 11:53:30 2021 -0600 - - More natural-id work - - - preliminary work for natural-id caching support - - re-worked the previous NaturalIdHelper, NaturalIdXRefDelegate, etc - - minor fixes/improvements to previous commit - -commit 270fba830ad07466cf4817dcaf924cbc80ec0d87 -Author: Andrea Boriero -Date: Wed Jan 27 18:40:13 2021 +0100 - - Fix checkstyle errors - -commit 0659c9f4ce7dc8a3c9d96ef34d87c5633c16d896 -Author: Andrea Boriero -Date: Wed Jan 27 18:23:22 2021 +0100 - - HHH-14409 : Fix issue with Proxies - -commit 9849ea5a1faae00ae94fc46450676c545013c63a -Author: Steve Ebersole -Date: Wed Jan 27 10:17:40 2021 -0600 - - - HHH-14409 : Internal format of natural-id values - - org.hibernate.loader.access - - `ModelPart.breakDownJdbcValues` - - build/keep natural-id loaders per entity (inheritance) - - changes to NotImplementedYetExtension - - tests - -commit 7e34535cfeec7489d76ec7fc7c22efa00ad437f8 -Author: Andrea Boriero -Date: Wed Jan 27 11:51:58 2021 +0100 - - Fix initializer post load call timing - -commit e9e81eeda359a5115d78cadc6a7056fea826d472 -Author: Andrea Boriero -Date: Tue Jan 26 17:24:31 2021 +0100 - - Applied changes based on review suggestions - -commit 84523cd0d994f0577a5da2b0c74418863e0411b0 -Author: Andrea Boriero -Date: Tue Jan 26 15:24:54 2021 +0100 - - fix issue with EmbeddableFKDescriptor - -commit e97aa8191684efb49b25e8fa29ef1b1185e21a4e -Author: Andrea Boriero -Date: Mon Jan 11 14:10:36 2021 +0100 - - Fix EntitiyInitialization returning a Proxy, NPE for InferredBasicValueResolution, Fix issue issue with loading by Unique key, Fix FkDescriptor for Embeddable - -commit e1aa2d941f01cbd7c3df7e0b1672774fc2a7ecac -Author: Christian Beikov -Date: Mon Jan 25 22:23:19 2021 +0100 - - Allow implicit casting of types if implied and actual type are both numeric and change floor/ceil to return argument type - -commit 6fa09dd4db4b54190491f067ec388e1205155a8f -Author: Sanne Grinovero -Date: Mon Jan 25 22:09:59 2021 +0000 - - HHH-14418 Reduce memory retention of each EventListenerGroup - -commit 5d768af9836126b07cc1fddffa47cee2c32a376d -Author: Jan Schatteman -Date: Mon Jan 25 23:25:56 2021 +0100 - - Some more adjustments for commit f9937f6 - - Signed-off-by: Jan Schatteman - -commit 24b79133f28774ae5983f1fc74b0024d85484360 -Author: Andrea Boriero -Date: Mon Jan 25 19:37:23 2021 +0100 - - Created a ClassLoadingIsolaterExtension to remove the need of @Rule in tests using ClassLoadingIsolater - -commit e0e44433a99630982b5f4e92c538dc52a188ff75 -Author: Andrea Boriero -Date: Mon Jan 25 15:07:53 2021 +0100 - - Fix some issues with tests migration - -commit 491cbabc6c8efbb3c091ed2b64e1548341f50155 -Author: Andrea Boriero -Date: Mon Jan 25 13:28:06 2021 +0100 - - Added Junit5 extention to use LoggerInspection without @Rule annotation - -commit ac18db61b70dd22d93e328b2cc3d2421faec80dc -Author: Andrea Boriero -Date: Mon Jan 25 10:54:17 2021 +0100 - - Fix checkstyle error - -commit d714fd047af8946d2e0554c0fb7eab13f1fe9059 -Author: Jan Schatteman -Date: Fri Jan 22 23:33:53 2021 +0100 - - Switch tests over to @Jpa from @DomainModel where possible and some other minor changes - - Signed-off-by: Jan Schatteman - -commit a5d60b3b7ed884ccb5e6b6781a2187508570f8af -Author: Andrea Boriero -Date: Fri Jan 22 13:46:45 2021 +0100 - - Add @BaseUnitTest annotation and minor changes - -commit f9937f66be9e7a5dbbe88c9bb69a5201d6139766 -Author: Jan Schatteman -Date: Wed Dec 2 15:03:27 2020 +0100 - - Migrate tests from org.hibernate.jpa.test to org.hibernate.orm.test.jpa - - Signed-off-by: Jan Schatteman - -commit e3a36974a88101e7182ed38b8be9e11818d74dc7 -Merge: b761cfddd3 e820e4cdfb -Author: Andrea Boriero -Date: Mon Jan 25 10:23:11 2021 +0100 - - Merge remote-tracking branch 'upstream/master' into wip/6.0 - -commit e820e4cdfbbdcee1de7ca220b6843bc33fb3dd68 -Author: Sanne Grinovero -Date: Sun Jan 24 15:05:48 2021 +0000 - - HHH-14415 Upgrade to Jandex 2.2.3.Final - -commit b761cfddd37dd5cc19b9eabd277e38af4bf28ba9 -Merge: 90f18b3137 4c9c2a809a -Author: Andrea Boriero -Date: Wed Jan 20 17:48:43 2021 +0100 - - Merge remote-tracking branch 'upstream/master' into wip/6.0 - -commit 4c9c2a809ac6b3a3b54cd4a3cbedc53695ab9287 -Author: Yoann Rodière -Date: Wed Jan 20 08:44:28 2021 +0100 - - HHH-14404 Remove check for concurrent execution of LogicalConnectionManagedImpl#releaseConnection - - It's unlikely to ever happen, and even if it happened, the resulting - exception would probably be rather clear about the fact that the problem - is related to concurrent execution (ConcurrentModificationException - thrown by a Map of resources, for example). - - See - https://github.com/hibernate/hibernate-orm/pull/3693#discussion_r560393293 - - Signed-off-by: Yoann Rodière - -commit 8210bc220b42774f311bd8fe7fb5d28936ab9fcf -Author: Yoann Rodière -Date: Thu Jan 14 11:25:46 2021 +0100 - - HHH-14404 Test setting the connection handling mode through SessionBuilder - - Signed-off-by: Yoann Rodière - -commit d0b44c48ef6926f59a265222040fafaedfca42a0 -Author: Yoann Rodière -Date: Thu Jan 14 11:12:42 2021 +0100 - - HHH-14404 Take into account the connectionHandlingMode passed through SessionBuilder - - Signed-off-by: Yoann Rodière - -commit d726dcb394e69eec02af2c8c3ac3ebc6679dc19c -Author: Yoann Rodière -Date: Thu Jan 14 13:36:51 2021 +0100 - - HHH-14326 Test JDBC resources are released before closing the connection - - Signed-off-by: Yoann Rodière - -commit e5c830da19cbfa57c5a23b2d884244f280d586e0 -Author: Yoann Rodière -Date: Thu Jan 14 10:36:15 2021 +0100 - - HHH-14326 Always close the connection even if releasing JDBC resources fails - - Signed-off-by: Yoann Rodière - -commit 74433cdec33655fad911563a8439cee40853c2b5 -Author: Yoann Rodière -Date: Thu Jan 14 10:34:51 2021 +0100 - - HHH-14326 Release JDBC resources before closing the connection - - Signed-off-by: Yoann Rodière - -commit 1e5d64cf7944c6a4262c5a9408c6c9442ff585a2 -Author: Nathan Xu -Date: Thu Jan 14 22:43:56 2021 -0500 - - HHH-14407 NPE in Column.getSqlTypeCode(Mapping mapping) for column 'hib_sess_id' when using PersistentTableBulkIdStrategy - -commit 90f18b31376b09a2295b31996335dd1d0df46060 -Merge: 3ecc2550df ef36b4faa2 -Author: Andrea Boriero -Date: Thu Jan 14 17:38:24 2021 +0100 - - Merge branch master into wip/6.0 - -commit ef36b4faa290216e53a9908e7fd50ae1f53b8c29 -Author: Andrea Boriero -Date: Thu Jan 14 17:36:49 2021 +0100 - - Move new InstrumentedProxyLazyToOneTest and InstrumentedLazyToOneTest to org.hibernate.test package, bytecode not yet working properly - -commit 3e6e5a4e8f36cc1199ffdbd77796e529f7317d85 -Author: Andrea Boriero -Date: Thu Jan 14 16:11:01 2021 +0100 - - Added FailureExpected to InstrumentedProxyLazyToOneTest - -commit 3ecc2550df3cd11eaf0c5ed166a270db83053cbf -Author: Steve Ebersole -Date: Thu Jan 14 08:51:59 2021 -0600 - - HHH-14409 : Internal format of natural-id values - - At the moment, internally the value of a natural-id is always kept as an array. For simple natural-ids that means creating an unnecessary array to wrap the simple value. Change this to allow Object to allow for these simple values - -commit 6d124a7c6d797bd18e5cea5efffa16d37d00825e -Merge: 0196911c8d 602926bf9b -Author: Andrea Boriero -Date: Thu Jan 14 11:34:06 2021 +0100 - - Merge remote-tracking branch 'upstream/master' into wip/6.0 - -commit 0196911c8d218a0d169035b7615c80a3b0c116b0 -Author: Christian Beikov -Date: Wed Jan 13 18:19:35 2021 +0100 - - Throw ParsingException on tokenization or parsing error for HQL instead of just logging to console and fix test issues - -commit 602926bf9bd4eafa54771d22846eb02946cccd91 -Author: Gail Badner -Date: Wed Jan 13 16:13:54 2021 -0800 - - HHH-13658 : Remove @LazyToOne(NO_PROXY) from classes used with bytecode-proxies enabled. FetchGraphTest#testRandomAccess failed so it was marked @FailureExpected. - -commit 0c974991f7a75f45b2f881539f34eac890d6a191 -Author: Steve Ebersole -Date: Wed Jan 13 12:03:00 2021 -0600 - - HHH-13658 : make NO_PROXY unnecessary - - - Better handle `FetchModeType#LAZY` for to-one associations based on whether bytecode-enhancement-as-proxy is enabled. Minimize the cases a user is likely to need to use `@LazyToOne` - - See also EAP7-1402 - -commit e5c40e3af7baf5b6e328ada50fc24ac51796db8f -Author: Steve Ebersole -Date: Wed Jan 13 11:38:24 2021 -0600 - - more changes for id type as Object instead of Serializable - -commit 4efffca23bb7d3f9046a949f20a3de93ab60951c -Author: Christian Beikov -Date: Thu Dec 17 18:16:09 2020 +0100 - - Add support for FETCH clause, CTEs and set operations - -commit f54072df4edd7ae27fce1c2103bd978e99e3e622 -Author: Steve Ebersole -Date: Wed Jan 13 10:06:43 2021 -0600 - - HHH-14398 : AttributeMapping order - - - Also, marked 3 `org.hibernate.orm.test.sql.exec.onetoone.bidirectional.EntityWithBidirectionalOneToOneTest` tests as expected failures due to https://hibernate.atlassian.net/browse/HHH-14403 - -commit d5a6774cd2edb30fefc237d7046ed0249b0d1375 -Author: Nathan Xu -Date: Thu Aug 6 21:19:30 2020 -0400 - - reuse ArrayHelper's empty array constant to avoid object creation - -commit 949ba3b083a3a057403cbc1e53d5418f116e390d -Author: Nathan Xu -Date: Tue Jan 12 22:22:43 2021 -0500 - - HHH-14400 improve CONTRIBUTING.md - -commit 633d0f08d6039c662437be6c83f9eaef3dbcab71 -Author: Yanming Zhou -Date: Mon Sep 28 10:31:49 2020 +0800 - - HHH-14229 Fix unexpected foreign key creation - - before this commit, foreign key is created even ConstraintMode.NO_CONSTRAINT present on the @ManyToOne side - -commit b40d1251e385a5fdb018f9583a83c472d6da4e8f -Author: Gail Badner -Date: Tue Jan 5 19:47:14 2021 -0800 - - HHH-14390 : Added test cases - -commit 30fcb05795d5cea50a8c0807970f4dd41350e844 -Author: Gail Badner -Date: Tue Jan 5 12:32:29 2021 -0800 - - HHH-14389 : Added test case. OneToOneWithDerivedIdentityTest#testFindById reproduces the bug and is annotated with @FailureExpected - -commit 016625eb5d0bc1a64980c7d45320cb2a7e574dba -Author: Sanne Grinovero -Date: Tue Dec 22 16:23:10 2020 +0000 - - HHH-14385 Allow specifying a target JVM version for compatibility of generated proxies via ByteBuddy - -commit 2e835c47cdc813283d4d03e18607f3fb13e5cce8 -Author: Jan Schatteman -Date: Thu Dec 17 21:34:52 2020 +0100 - - New Test annotation @NotImplementedYet - - Signed-off-by: Jan Schatteman - -commit 9c69ddc8f1d548b68a61f79cfc17ad72bef7f5da -Author: Christian Beikov -Date: Sat Dec 19 14:34:46 2020 +0100 - - HHH-14380 - Only reorder destination from elements from the same from clause - -commit 34bacba59e9c68c158431205b699939cf1fa54a1 -Author: Jan-Willem Gmelig Meyling -Date: Sat Dec 19 13:19:46 2020 +0100 - - HHH-14380 Test case from https://github.com/Blazebit/blaze-persistence/pull/1237 for subquery in on-clause - -commit 996555105601a9ffef148c8f6a8310d9ab093bc9 -Author: Jan Schatteman -Date: Sat Dec 19 18:47:44 2020 +0100 - - Remove left-over references to @ServiceRegistry.Setting (follow-up on commit 'Fix compilation errors' - 9770b49) - - Signed-off-by: Jan Schatteman - -commit 4de187078583274495a6211d7b0c1c03ae4fe04a -Author: Christian Beikov -Date: Thu Dec 10 11:56:13 2020 +0100 - - HHH-14318 Introduce column mapping abstract to support formulas easily - -commit cb7c65e49d358927f53dd688159806a8c44aa649 -Author: Christian Beikov -Date: Mon Nov 9 17:44:01 2020 +0100 - - Use new parent PostgreSQLDialect for @RequiresDialect rather than subclass - -commit cc14c785b99611fea79c034aa0c9ce199c3bba9e -Author: jiangHZ -Date: Sat Apr 18 01:01:55 2020 +0800 - - HHH-13913 An SQL Dialect for PostgreSQL 10 and later. Adds support for Partition table. - -commit 92bca8f4f182fd722bb0cd3674fc1167aa9bbc6a -Author: Sanne Grinovero -Date: Mon Dec 14 16:25:11 2020 +0000 - - HHH-14356 Have Hibernate Envers produce a user friendly bootstrap exception if xml_mapping_enabled=false - -commit c9ade2affe36065f016551c19d81e962742e75eb -Author: Yanming Zhou -Date: Thu Dec 3 10:44:12 2020 +0800 - - HHH-14356 Avoid NPE when booting with xml_mapping_enabled=false - - Introduced by HHH-14334 - when use Envers with hibernate.xml_mapping_enabled=false - see https://github.com/hibernate/hibernate-orm/commit/34151a9660f92dfd5128c1336fa9d27b8ca7f6e7#r44735539 - -commit 33ac4174c731334fb46bd3c797ebb6d47abdb959 -Author: Erin Schnabel -Date: Tue Nov 17 17:39:43 2020 -0500 - - HHH-14337 Micrometer support - -commit 552ff9b4af7f1a2ceb6e4e65603b12380a27af7e -Author: Yoann Rodière -Date: Mon Dec 14 14:39:24 2020 +0100 - - HHH-14371 Open java.base/java.lang to the unnamed module in Proxool tests - - Signed-off-by: Yoann Rodière - -commit 1acb6fea52f78d4c4c4613c868a5b88a6b6a3784 -Author: Yoann Rodière -Date: Mon Dec 14 14:11:00 2020 +0100 - - HHH-14371 Add --add-opens options required for Gradle plugin tests - - Signed-off-by: Yoann Rodière - -commit 6396cd17a26c233e29e1df6decb659f832f404c9 -Author: Yoann Rodière -Date: Mon Dec 14 12:17:59 2020 +0100 - - HHH-14371 Open java.base/java.lang to the unnamed module in javassist tests - - Signed-off-by: Yoann Rodière - -commit 7f518cddb34534e2844a238da1237b1c431ebefe -Author: Yoann Rodière -Date: Mon Dec 14 12:35:55 2020 +0100 - - HHH-14371 Move tests specific to Javassist to the appropriate source set - - Otherwise they won't be executed with the appropriate JVM args. - - Signed-off-by: Yoann Rodière - -commit 8e3bf43a18d80ad7b14c09b2476d9d328169edf9 -Author: Yoann Rodière -Date: Mon Dec 14 11:53:52 2020 +0100 - - HHH-14371 Open java.base/java.security and java/base/java.lang to the unnamed module in tests - - Weld needs this, in CDI tests. - - Signed-off-by: Yoann Rodière - -commit 27c5980a208a53aad5d3bde45d35ca2a568ce3b3 -Author: Yoann Rodière -Date: Mon Dec 14 11:51:07 2020 +0100 - - HHH-14371 Open java.base/java.nio.charset to the unnamed module in tests - - NamingHelper test needs access to Charset.defaultCharset. - - Signed-off-by: Yoann Rodière - -commit f6a9338f973e935ad6438cb0d5dfc495e692d065 -Author: Yoann Rodière -Date: Mon Dec 14 12:10:10 2020 +0100 - - HHH-14371 Correctly set JVM args in the JVM running tests - - Turns out getJvmArgs() returns a copy, so modifying that copy won't - change the JVM args. - - Signed-off-by: Yoann Rodière - -commit 2659e75271d6ab0a0ef885d13dbc5426e573615b -Author: Yoann Rodière -Date: Mon Dec 14 13:14:05 2020 +0100 - - HHH-14372 Upgrade to Weld 3.1.5.Final in tests - - Signed-off-by: Yoann Rodière - -commit 6c128598b02376018c23d5ff3bbe5c3cdeb73b12 -Author: Yoann Rodière -Date: Mon Dec 14 10:19:37 2020 +0100 - - HHH-14370 Add --add-opens options required for Gradle - - In order to work around illegal accesses in Gradle. - - Signed-off-by: Yoann Rodière - -commit f468666b6da3de9d9edde45dbdf17adfd12d1176 -Author: Andrea Boriero -Date: Fri Dec 11 17:16:29 2020 +0100 - - HHH-14360 Fix failure on Oracle db - -commit 9770b49c4b557eaec05cb639ead10a29a210fcd9 -Author: Andrea Boriero -Date: Fri Dec 11 10:30:18 2020 +0100 - - Fix compilation errors - -commit 33358df72be1e52d5fa99c7e0b05a74d38ee2992 -Author: Steve Ebersole -Date: Tue Dec 8 10:35:18 2020 -0600 - - New testing `@Jpa` annotation - -commit d8109704893eec902a4eeaf6b835fa30a0e9a2fb -Author: Andrea Boriero -Date: Fri Dec 11 09:56:16 2020 +0100 - - Remove duplicated code from ConcreteSqmSelectQueryPlan - -commit 820b815b35d73e2c699d5b87cc92e2a4cc835588 -Author: Andrea Boriero -Date: Thu Dec 10 14:34:14 2020 +0100 - - BaseSqmToSqlAstConverter#consumeAttributeJoin() code clean up - -commit 6d2e80d43aad0a7534ebc1755c0af4750e3375b9 -Author: Andrea Boriero -Date: Thu Dec 10 13:25:54 2020 +0100 - - Fix EmbeddedId lazy collection initializer - -commit c10b4e0f2f2f16d81e3e509775049a17773cf53a -Author: Andrea Boriero -Date: Wed Dec 9 17:47:55 2020 +0100 - - Fix issue with fetch deep and hql join fetch recognition - -commit 7d74f1c7279b4485924bbf24fb7be6bc46084b61 -Author: Andrea Boriero -Date: Tue Dec 8 14:40:18 2020 +0100 - - Fix issue with emneddable id initialization - -commit c915168cf1326854e4c88819de59fd90aac7f27e -Author: Christian Beikov -Date: Wed Dec 9 11:46:43 2020 +0100 - - HHH-14360 Test a fix for NPE due to non-existing previous state in bytecode enhanced dirty attribute resolving - -commit d32fb746d629fff4876960990ebe5519a2634f8e -Author: Andrea Boriero -Date: Tue Dec 8 10:55:23 2020 +0100 - - Fix SqlAstTranslator affected tablenames includes synch tables - -commit 9a6465a72f795160ae860176c352b6c9c1530fee -Author: Andrea Boriero -Date: Tue Dec 8 09:47:40 2020 +0100 - - Check if auto flush is required for hql queries - -commit dbec10aff15918e4a34257d34e416e3f6e29d914 -Author: Andrea Boriero -Date: Tue Dec 8 16:04:07 2020 +0100 - - HHH-14364 UpdateDetachedTest#testUpdateDetachedWithAttachedPersistentSet failing when run on OracleDB - -commit bdc3a5cdc70392ebbb461d1d12899b29da0e09d6 -Author: Andrea Boriero -Date: Tue Dec 8 15:45:37 2020 +0100 - - HHH-14363 MutableTypeEnhancementTestCase failing when run on Oracle DB - -commit f54105cc51fd8237f61bee595af169b8265613c7 -Author: Andrea Boriero -Date: Thu Nov 26 17:30:34 2020 +0100 - - Fix issue with fetch for hql query - -commit c4673e5a5c0b7ff0c168995e87f333d272d7b44c -Author: Christian Beikov -Date: Tue Dec 8 11:25:07 2020 +0100 - - Fix a few more test issues and handle group by summarization rendering strategies as well as group by literal rendering strategies - -commit a57f93b14a16f8b15a069129c6d708e0db6d59f9 -Author: Christian Beikov -Date: Fri Dec 4 15:35:25 2020 +0100 - - Use processing stack during parsing to access query spec, fix lots of db2 issues - -commit 604cef2cb68cbf7504df7e697ae8ab3c8e0ca45f -Author: Christian Beikov -Date: Tue Dec 1 18:32:26 2020 +0100 - - Move persistence context access in EntitySelectFetchInitializer to fix PostgreSQL issues - -commit 7f1a60c4c639bf15d739edba41dad9a6f1716b67 -Author: Christian Beikov -Date: Tue Dec 1 16:11:46 2020 +0100 - - Fix some more tests and fix auto flushing for select queries - -commit 650342c0935439470ab160ef182534fc3302c79c -Author: Christian Beikov -Date: Tue Dec 1 12:07:41 2020 +0100 - - Move out the temporary session cleanup into a dedicated method called after translation - -commit fa5d2d9e08543cdecdeb7f83e4120770ee9e1f01 -Author: Christian Beikov -Date: Tue Dec 1 11:58:09 2020 +0100 - - Use WrapperOptions for JdbcLiteralFormatter instead of SessionImplementor - -commit 817bf95a9af082981bacbceadff81e17b7d04af0 -Author: Christian Beikov -Date: Mon Nov 30 14:53:56 2020 +0100 - - Fixes according to review comments - -commit 3b730ac376df5f51462b1070d3e08f4200adb05d -Author: Christian Beikov -Date: Fri Nov 27 18:11:23 2020 +0100 - - Fix a few more tests, simplify collation handling, HQL parsing support for tuples, revert wrong dialect changes, alias support for group by and order by, implement index optimized tuple comparison emulation - -commit d9446e7c77f3be637314ac679942498e31ae150e -Author: Christian Beikov -Date: Thu Nov 19 15:50:16 2020 +0100 - - Fix a few test issues, implement tuple emulation, group by support and support configuring criteria value handling mode - -commit b9e7cc3c930d9f05c8bb414fd1757960d66168bb -Merge: a239e343b3 cf9d4ec3b3 -Author: Andrea Boriero -Date: Tue Dec 1 13:20:14 2020 +0100 - - Merge remote-tracking branch 'upstream/master' into wip/6.0 - -commit cf9d4ec3b3d00265809fd40082f4602e1994d82d -Author: Andrea Boriero -Date: Wed Oct 14 12:53:05 2020 +0100 - - HHH-14242 Fix issue for Dialects supporting row value constructor Syntax but not in the SET clause - -commit e7bcc03ede5f5266fa4111c90498e86a6f4b8779 -Author: Andrea Boriero -Date: Mon Oct 12 15:07:29 2020 +0100 - - HHH-14251 Fix issue for Dialects not supporting row value constructor Syntax - -commit 93766500972825e992e5437b687adaf6d3988e1c -Author: Andrea Boriero -Date: Mon Oct 12 13:28:47 2020 +0100 - - HHH-14251 Invalid SQL for @Embedded UPDATE - -commit 900da12419e05d8770a4ff691e3a2324914f44f0 -Author: Andrea Boriero -Date: Mon Oct 12 13:27:59 2020 +0100 - - HHH-14251 Add test for issue - -commit 53a5c7fa97e0c813e257e9ba381c06fa09d7b668 -Author: nicklas.wallgren -Date: Thu Nov 26 13:35:52 2020 +0100 - - HHH-14350 MariaDB103Dialect requires the lock wait timeout to be expressed in seconds - -commit 3de7fb653ec3ad4cef2f8bd53a4aaf877255c413 -Author: Michael Edgar -Date: Mon Nov 23 19:08:15 2020 -0500 - - HHH-14346 Check declaredPluralAttributes for null before access - -commit 8ded205b5f132f256e51d69260fe56f53b5aeec4 -Author: Christian Beikov -Date: Mon Nov 23 13:46:30 2020 +0100 - - HHH-14343 Fix quoting of column names when globally quoted identifiers is active - -commit 3434293a7e2caeb0e13b30f05ba38bb3db32664f -Author: info@kawoolutions.com -Date: Sun Nov 22 20:16:45 2020 +0100 - - Test case for HHH-14343 - -commit e2dbf52abed6e07ea21de865b49f7bfaa7f161da -Author: Christian Beikov -Date: Thu Nov 26 15:11:33 2020 +0100 - - Restore collectionsInDefaultFetchGroupEnabled usage in LazyAttributesMetadata - -commit b08fbdaa6e8f0362e3c7384dc85a9aa4e51120d2 -Author: Christian Beikov -Date: Wed Nov 25 15:06:02 2020 +0100 - - HHH-14348 Special handling in bytecode enhancement for lazy PersistentCollection fields - -commit a239e343b35b13890bbe93dc4fbd1c28aee24827 -Author: Christian Beikov -Date: Thu Nov 26 16:19:08 2020 +0100 - - Fix permissions and typo - -commit e468aeb7860222f1bcaaf8bd2114d5402852edf6 -Author: Christian Beikov -Date: Thu Nov 19 15:50:16 2020 +0100 - - HHH-14336 Enable tests across databases in Github Actions - -commit 36d9ec4040348fb00f69723882308c5de730a5ab -Author: Christian Beikov -Date: Thu Nov 26 16:19:08 2020 +0100 - - Fix permissions and typo - -commit 234bfab1acbcecf315722ad38f81cc664be2013c -Author: Christian Beikov -Date: Thu Nov 19 15:50:16 2020 +0100 - - HHH-14336 Enable tests across databases in Github Actions - -commit 1a9bd7d4b360b01344faeeef14e8fdff3e6a4400 -Author: Andrea Boriero -Date: Wed Nov 25 17:05:01 2020 +0100 - - Re-enabled additional test and fix issue with native queries not flushing session - -commit e3947b3b1cc43f8a4e58e34424cc19d6c927aefc -Author: Andrea Boriero -Date: Wed Nov 25 15:15:34 2020 +0100 - - Re-enabled additional tests and fix issues with IdClass - -commit 52ba3d9c5a7a943e08a00771fbea754489f79145 -Author: Andrea Boriero -Date: Tue Nov 24 16:12:43 2020 +0100 - - Fix issue with StandardPojoEntityRepresentationStrategy - -commit a3f946ad6e2a636a6221050ec182193fa3600f73 -Author: Andrea Boriero -Date: Tue Nov 24 13:00:56 2020 +0100 - - Re-enabled additional tests - -commit 204b01768d641e0fa00877bd8e8bf4fc5ea9866b -Author: Andrea Boriero -Date: Tue Nov 24 13:01:39 2020 +0100 - - Fix issue with gradle build with java 11 - -commit bb4c4d07674f593f554c37795422a76cbc19b3c0 -Merge: ddb0be61d5 c3eaa7cf30 -Author: Andrea Boriero -Date: Tue Nov 24 12:33:51 2020 +0100 - - Merge remote-tracking branch 'upstream/master' into wip/6.0 - -commit ddb0be61d590d6e10a986c06500f3d39a8ce8d2d -Author: Andrea Boriero -Date: Fri Nov 20 17:44:46 2020 +0100 - - Re-enabled more tests and fix issues with in predicate, sqmMultiTableMutationStrategy creation and other minor issues - -commit c3eaa7cf303f986039425cbd9bd99b0f89423ac8 -Author: Christian Beikov -Date: Mon Nov 23 14:44:51 2020 +0100 - - HHH-13945 Fix issues on PostgreSQL - -commit e3a9ee61f2fb749e9e470971d7d53b3f9ecc73bb -Author: Luke Chen -Date: Thu Nov 19 18:00:40 2020 +0800 - - HHH-13945: add debug log during exception thrown - -commit 2404ff56abe4b85008b18d65e3097fb2d6e7de9d -Author: Luke Chen -Date: Tue Nov 17 14:48:24 2020 +0800 - - HHH-13945: catch PersistenceException during envers unproxy the field value, and fallback to using proxy entity - -commit 2228bd238e4ed52bf8bc2c239c5c691b0b26aa96 -Author: Luke Chen -Date: Wed Nov 4 17:33:03 2020 +0800 - - HHH-13945: fallback to call map if exception thrown - -commit a975fbf5d40dce7b8c4778d3cc2baa1b2872fe87 -Author: Christian Beikov -Date: Tue Nov 10 15:48:34 2020 +0100 - - HHH-14319 Create new collection rather than clearing original which is backing PersistentCollection entry of session - -commit 966d07c2d1ed18f0cfe15ef635e7df470dfe0581 -Author: Christian Beikov -Date: Tue Nov 10 15:47:07 2020 +0100 - - HHH-14319 Test case showing CollectionType.replaceElements wrongly clears backing collection - -commit 97b67603acf968038c04fe719886a913fec3ee40 -Author: Yanming Zhou -Date: Wed Nov 18 09:53:13 2020 +0800 - - HHH-14334 Make dom4j jaxb-api optional as possible - - dependency dom4j and jaxb-api is optional if xml mapping disabled - continuation of HHH-13204 - -commit 095eef2dcbcab9d748d4166c4cf6da6d567b79d4 -Author: Christian Beikov -Date: Thu Nov 19 11:18:34 2020 +0100 - - HHH-14335 Remember the resolved type in SimpleValue#getType instead of resolving multiple times - -commit eafebd016f7f429e0e19cab434386b1e4d50eb11 -Author: Andrea Boriero -Date: Thu Nov 19 15:32:19 2020 +0100 - - Re-enabled additional tests and added support for non aggregated fk - -commit 1361b5108ce7dd21612430996cab8680428aa172 -Author: Andrea Boriero -Date: Wed Nov 18 12:55:18 2020 +0100 - - Re-enabled additional tests and fixed IdClass issues - -commit 693139c515f87ca4572fecf2c9ad93fc40ffc14b -Merge: 6012557916 93b8095ef6 -Author: Andrea Boriero -Date: Wed Nov 18 11:44:44 2020 +0100 - - Merge remote-tracking branch 'upstream/master' into wip/6.0 - -commit 93b8095ef616cadd23d7a65f1579fd66a33ed0b2 -Author: Sanne Grinovero -Date: Tue Nov 17 17:21:48 2020 +0000 - - HHH-14333 Pessimistic Lock causes FOR UPDATE on outer join statements - -commit 601255791679908c0c9cf56ff0463594227b956c -Merge: 52984ce6ba 4aa7b84a86 -Author: Andrea Boriero -Date: Tue Nov 17 19:35:39 2020 +0100 - - Merge remote-tracking branch 'upstream/master' into wip/6.0 - -commit 4aa7b84a86a1e220848cd0dcca4253da82ccbd79 -Author: Sanne Grinovero -Date: Tue Nov 17 15:55:58 2020 +0000 - - HHH-14332 Make it easier for Quarkus SPI to avoid loading XML related resources - -commit 52984ce6ba0e39d77f7375c5e04668d5d4b1b7b3 -Author: Andrea Boriero -Date: Wed Sep 23 16:07:03 2020 +0100 - - @IdClass basic implementation - -commit ca59fef1014a7f421acfaeed59e0f1f0efed763f -Author: Andrea Boriero -Date: Tue Nov 17 18:42:17 2020 +0100 - - Fix after merge - -commit aff9bb4609e92e88977f6824abafba101dc598ea -Merge: dc5894db42 6b55f8ea09 -Author: Andrea Boriero -Date: Tue Nov 17 18:41:39 2020 +0100 - - Merge remote-tracking branch 'upstream/master' into wip/6.0 - -commit dc5894db428b3135e14cde55533108dbf24891a1 -Merge: 78938d0786 be70d49df9 -Author: Andrea Boriero -Date: Tue Nov 17 18:25:33 2020 +0100 - - Merge remote-tracking branch 'upstream/master' into wip/6.0 - -commit 6b55f8ea0973e9584caef4c40fcda106fd4d5835 -Author: Sanne Grinovero -Date: Tue Nov 17 14:46:31 2020 +0000 - - HHH-14329 Amend existing DirtyTrackingTest - -commit 78938d0786d8e1bf360c1e082b2ca94676b7e639 -Merge: 1927d1aa33 b296459851 -Author: Andrea Boriero -Date: Tue Nov 17 15:12:28 2020 +0100 - - Merge branch 'master' into wip/6.0 - -commit e891a0296cc26fded4c07cf30148e62566e42d24 -Author: Christian Beikov -Date: Fri Nov 13 16:10:00 2020 +0100 - - HHH-14329 consider mutable types always as potentially dirty when using DirtinessTracker - -commit 1927d1aa337d4243205e56dc252cb690d5232eb4 -Merge: be654c37b5 d6564cb0b5 -Author: Andrea Boriero -Date: Tue Nov 17 12:40:43 2020 +0100 - - Merge branch 'master' into wip/6.0 - -commit b15974732bb3e6bd96ae3eb4f32dc9bfaf1d36d3 -Author: Christian Beikov -Date: Fri Nov 13 16:07:36 2020 +0100 - - HHH-14329 test case showing that DirtinessTracker usage for enhanced entities doesn't respect mutable types - -commit be70d49df9c1ad5e72507cc9ed770bab689f4a50 -Author: Steve Ebersole -Date: Mon Nov 16 10:34:43 2020 -0600 - - HHH-14325 - Add Query hint for specifying "query spaces" for native queries - -commit 37a8d22155e6efd7b82ce58665b07091fe8e3624 -Author: Steve Ebersole -Date: Thu Nov 12 15:19:55 2020 -0600 - - HHH-14325 - Add Query hint for specifying "query spaces" for native queries - -commit f9cce5a76742262cc2fadd9d978d06628338d783 -Author: Sanne Grinovero -Date: Mon Nov 16 12:07:42 2020 +0000 - - HHH-14276 Amend style and formatting - -commit d1ee641e54f9323d87674b546f230cbfbbfe9cdb -Author: Christian Beikov -Date: Thu Nov 12 17:52:53 2020 +0100 - - HHH-14276 Avoid quoting column name for looking up references during composite identifier second pass - -commit 04ade27f077643fe1029027caca71bace64005c8 -Author: info@kawoolutions.com -Date: Wed Oct 21 22:51:15 2020 +0200 - - HHH-14276 test case for strange AnnotationException: MapsId in IdClass context - -commit ed3feeacad589f4015b966a59f0cf3d28af6ce4f -Author: Christian Beikov -Date: Tue Nov 10 16:56:11 2020 +0100 - - HHH-14310 Document hibernate.query.in_clause_parameter_padding and some other missing config properties - -commit 8e8844d485086c41392747230ff60a81f2cf18ba -Author: Christian Beikov -Date: Wed Nov 11 19:18:59 2020 +0100 - - HHH-14322 Fix HBM many-to-one property ref support - -commit 0617c99e26b4850e4fa918fa39cf764dc18c10e9 -Author: Yoann Rodière -Date: Thu Nov 12 09:53:46 2020 +0100 - - HHH-14324 Add .gradletasknamecache to .gitignore - - Signed-off-by: Yoann Rodière - -commit dd9c687b9171ec6afe371d532665b03dba5e386e -Author: Yoann Rodière -Date: Thu Nov 12 09:55:51 2020 +0100 - - HHH-14324 Remove .gradletasknamecache from repository - - Signed-off-by: Yoann Rodière - -commit 3d28893d9a562ac419092e74b240e24be6488385 -Author: Andrea Boriero -Date: Thu Oct 15 11:26:54 2020 +0100 - - HHH-14257 An Entity A with a map collection having as index an Embeddable with a an association to the Entity A fails with a NPE - -commit 64aa8ae60a4567477e369b4cf015a0fe179d0ba1 -Author: Andrea Boriero -Date: Thu Oct 15 09:58:14 2020 +0100 - - HHH-14257 Add test for issue - -commit 59fede7acaaa1579b561407aefa582311f7ebe78 -Author: Andrea Boriero -Date: Tue Sep 29 20:56:30 2020 +0100 - - HHH-14225 CVE-2020-25638 Potential for SQL injection on use_sql_comments logging enabled - -commit b296459851789fa233a181777dafa0cf0134b4ff -Author: Steve Ebersole -Date: Wed Nov 11 10:40:59 2020 -0600 - - HHH-14312 - entity graph is ignored for 'padded' and 'dynamic' batch style entity loader - - - Adjusted multi-loading to use LoadPlans (and apply entity-graphs) as well. - - All of the loaders/builder in `org.hibernate.loader.entity` are now no longer used, superseded by `org.hibernate.loader.entity.plan`. Removed no longer needed code. - - Adjusted multi-load tests that relied on the actual generated SQL *String* - they now explicitly count the number of parameters and use that for assertions - -commit be654c37b52a98afbea86204057184124877cd1a -Author: Steve Ebersole -Date: Fri Nov 6 11:09:46 2020 -0600 - - HHH-14313 - NaturalId support - -commit d4233ce6a849c8ae6a9ff6b680d8aaff56a9941b -Author: Steve Ebersole -Date: Thu Nov 5 10:41:48 2020 -0600 - - fixed issue with project-template module wrt version - -commit 0b2fb4e28b76c7cc78f3748d66b3713d5eac107a -Author: Steve Ebersole -Date: Wed Nov 11 07:55:41 2020 -0600 - - HHH-14312 - entity graph is ignored for 'padded' and 'dynamic' batch style entity loader - - - completed fix for HHH-11970 - -commit 13fb23d44e02e8b9251e608392a97aa961f6a2f3 -Author: Steve Ebersole -Date: Tue Nov 10 08:36:01 2020 -0600 - - HHH-14312 - entity graph is ignored for 'padded' and 'dynamic' batch style entity loader - -commit c874618d303a32dc3417ea523ba429375bb4c1fc -Author: Nathan Xu -Date: Fri Nov 6 09:48:23 2020 -0500 - - HHH-14312 fix issue entity graph is ignored for 'padded' batch style entity loader - -commit d6564cb0b53692d2d42d520b32eed0086be7b9a4 -Author: Christian Beikov -Date: Tue Nov 10 16:27:29 2020 +0100 - - HHH-14158 Update Javassist to 3.27.0-GA - -commit e67874e6ec9d6ac302dd2441b06c91c884933981 -Author: Andrea Boriero -Date: Thu Oct 29 10:19:32 2020 +0000 - - HHH-13310 getParameterValue() not working for collections - -commit 2d7aaa198b05de824267df98808e8e58c2c68922 -Author: Andrea Boriero -Date: Thu Oct 29 10:16:35 2020 +0000 - - HHH-13310 Add test for issue - -commit 2be511e61516853424c44ce46567b256b7ccc692 -Author: Yoann Rodière -Date: Tue Nov 10 11:10:03 2020 +0100 - - HHH-14315 Upgrade Travis build to OpenJDK 11.0.9 - - For some reason the gradle build gets stuck at task - :hibernate-core:compileTestJava when using OpenJDK 11.0.3. - I can't reproduce the problem with 11.0.9, though, so it's probably a - bug in OpenJDK 11.0.3. - - Signed-off-by: Yoann Rodière - -commit 85b84ef6bdf5b3665e598ee02c89142cc0f8b56c -Author: Yoann Rodière -Date: Mon Nov 9 12:09:02 2020 +0100 - - HHH-14315 Force JVM options when using toolchains - - Apparently Gradle won't just use the same options as in its own JVM. - - Signed-off-by: Yoann Rodière - -commit 9616e24c8047d55cb5d2211770fce0cfcd6477d4 -Author: Yoann Rodière -Date: Mon Nov 9 10:13:34 2020 +0100 - - HHH-14315 Add optional support for toolchains to the Gradle build - - Signed-off-by: Yoann Rodière - -commit 5d36fd2c260f7810a9f33eaadd086eb1a5d0ef40 -Author: Yoann Rodière -Date: Mon Nov 9 09:12:46 2020 +0100 - - HHH-14315 Upgrade to Gradle 6.7 - - Signed-off-by: Yoann Rodière - -commit 555299abf16afd744ac3543a18b296cb1b175075 -Author: Christian Beikov -Date: Mon Sep 14 17:44:14 2020 +0200 - - HHH-14214 Remove unnecessary rule for token type SQL_NODE - -commit 5410e6350b35347acefcf99ae59c1b9d9be4f7cb -Author: Guillaume Smet -Date: Mon Nov 9 15:16:03 2020 +0100 - - HHH-14317 Avoid closing datasource in AgroalConnectionProvider if datasource is not initialized - -commit a393cbd7f53884175de575e27ecaeeb1249f5811 -Author: Guillaume Smet -Date: Mon Nov 9 15:15:37 2020 +0100 - - HHH-14316 Avoid accessing state in DriverManagerConnectionProviderImpl if null - -commit bbeb7ecff1711b9e0d73013a3dfc10019e6b9ef4 -Author: Christian Beikov -Date: Mon Nov 9 13:32:41 2020 +0100 - - Fix issues with query splitting - -commit 0e780f11025857913657628832c857d146c14872 -Author: Christian Beikov -Date: Fri Aug 21 19:38:04 2020 +0200 - - HHH-10282 Short-hand enum syntax support for HQL - -commit 4f4b42c5df1510da4d65f1a85f5ea13ba39d3d6b -Author: Steve Ebersole -Date: Wed Nov 4 14:37:34 2020 -0600 - - renamed `NamedQueryRepository` to ``NamedObjectRepository` - -commit b0b478c2743d7fd8f8043083399aaba552fd97df -Author: Steve Ebersole -Date: Wed Nov 4 11:56:26 2020 -0600 - - removed `#currentRowJdbcValues` as it duplicates `#jdbcValues#getCurrentRowValuesArray()` - -commit abeb6373c754ba8e29eaef2ed80960f358b3dcb9 -Author: Steve Ebersole -Date: Wed Nov 4 10:53:26 2020 -0600 - - Query#scroll support - - + HHH-14308: Add generic type parameter to ScrollableResults - -commit 1c6e2b4efb571d99037135ec6e242966db1919a9 -Author: David Ellingsworth -Date: Tue Nov 3 16:50:10 2020 -0500 - - HHH-14216 Add new lines to the end of new files. - -commit 24035d7f2cf211e3ed72602064a316f8b730933c -Author: David Ellingsworth -Date: Tue Oct 13 17:02:29 2020 -0400 - - HHH-14216 Implement isDirty for OneToOneType and always check if it is dirty or not. - -commit ef5c944c868e8742d7057dff7db9f5f54b614e38 -Author: David Ellingsworth -Date: Fri Oct 9 14:14:25 2020 -0400 - - HHH-14216 Fix the assemble/disassemble methods of the OneToOneType. - -commit aec21d21f8483e34c9c4ba7586cc97f1cf940eb3 -Author: David Ellingsworth -Date: Thu Oct 15 17:54:27 2020 -0400 - - HHH-14216 Add one-to-one second level cache tests. - -commit f45a88cb07270b94b0ef9d7c47f4172f407951da -Author: Steve Ebersole -Date: Tue Nov 3 15:12:38 2020 -0600 - - Fixed Javadoc for `BulkOperationCleanupAction.affectedEntity` - - - plus minor cleanups - -commit 1b7017ff71370c197a872869877b70f641cf9b61 -Merge: 8dd04eda9f 67fd24ecff -Author: Andrea Boriero -Date: Mon Nov 2 15:46:54 2020 +0000 - - Merge remote-tracking branch 'upstream/master' into wip/6.0 - -commit 8dd04eda9f8ae7264744b0049ca80d20221eabef -Author: Sanne Grinovero -Date: Fri Oct 30 20:27:32 2020 +0000 - - HHH-14303 Upgrade to JBoss Loging 3.4.1.Final - -commit 3b4f10d4f8fbb97408a277b34d5a8f31b059d268 -Author: Sanne Grinovero -Date: Fri Oct 30 20:27:13 2020 +0000 - - HHH-14302 Upgrade to Agroal 1.9 - -commit 92ea8ad022142bf7e7a12dec3c907656397b27ea -Author: Sanne Grinovero -Date: Fri Oct 30 20:25:29 2020 +0000 - - HHH-14301 Upgrade to Byte Buddy 1.10.17 - -commit 08faa14d5c496014db542ee512bf8089818167f3 -Author: Sanne Grinovero -Date: Fri Oct 30 20:21:56 2020 +0000 - - HHH-14300 Update to Hibernate Validator 6.1.6.Final - -commit 9ef1ab87c13508d93315a97a4fdc64014ce9be56 -Author: Sanne Grinovero -Date: Fri Oct 30 16:53:18 2020 +0000 - - HHH-14299 Upgrade to Hibernate Commons Annotations 5.1.2.Final - -commit 67fd24ecff9f9a9a2e848805c04590b4b4ee2b3e -Author: Sanne Grinovero -Date: Sun Nov 1 22:38:55 2020 +0000 - - Make new EntityLoader buildling methods in AbstractEntityPersister protected for Hibernate Reactive - -commit e6ac4d487695a70d2d17bfa5fd6a6743c3d90ccc -Author: Sanne Grinovero -Date: Sun Nov 1 21:18:17 2020 +0000 - - HHH-14305 Memory optimisations for ReaderCollector implementations - -commit da700f619bae433810c6fbbdad06205e77036645 -Author: Sanne Grinovero -Date: Sun Nov 1 21:53:35 2020 +0000 - - HHH-14305 Memory optimisations for EntityMetamodel - -commit 345b503f21f4f1f7e809598d63f01ce30f1ca749 -Author: Sanne Grinovero -Date: Thu Oct 29 17:47:52 2020 +0000 - - HHH-14305 Memory optimisations for NamedQueryRepository - -commit ad5bec0a54123843f5313fa75a4debbe7a167081 -Author: Sanne Grinovero -Date: Thu Oct 29 17:35:17 2020 +0000 - - HHH-14305 Memory optimisations for AbstractEntityPersister#uniqueKeyLoaders - -commit 9f54dae5d29912fa555fdcc51e7c457e3bad07f5 -Author: Sanne Grinovero -Date: Thu Oct 29 16:50:06 2020 +0000 - - HHH-14305 Memory optimisation for AbstractPropertyMapping#duplicateIncompatiblePaths - -commit 35c58e987726e31192f466f46f1ac6b0d6d54227 -Author: Sanne Grinovero -Date: Thu Oct 29 16:41:20 2020 +0000 - - HHH-14305 Memory optimisations for AbstractManagedType#declaredPluralAttributes - -commit 2dde4c171017725ae8c14b81b6df7b859d1d90fa -Author: Sanne Grinovero -Date: Thu Oct 29 16:16:05 2020 +0000 - - HHH-14305 Memory optimisation for AbstractEntityPersister#affectingFetchProfileNames - -commit 169a01857cadf3812387b5cffcd158d4c40cc57e -Author: Sanne Grinovero -Date: Thu Oct 29 16:06:15 2020 +0000 - - HHH-14305 Reduce memory consumption of AbstractEntityPersister#attributeDefinitions - -commit e9278288a7e17aa62c58820cfc8a899f4a406b17 -Author: Sanne Grinovero -Date: Thu Oct 29 10:09:17 2020 +0000 - - HHH-14305 Reduce retained memory consumption of SingleTableEntityPersister - -commit 820fe56aa46d5367122c7cca35a13608da63cee2 -Author: Sanne Grinovero -Date: Thu Oct 29 09:36:53 2020 +0000 - - HHH-14305 Memory savings in SingleTableEntityPersister - -commit 0dedcd05dbcacb9b109fbb3a7cc413183c609333 -Author: Sanne Grinovero -Date: Wed Oct 28 21:05:11 2020 +0000 - - HHH-14305 Avoid referring to an empty ArrayList for AbstractEntityPersister#lobProperties - -commit fb34b720bc4611382a0e8506071965160156ecdf -Author: Sanne Grinovero -Date: Sun Nov 1 21:31:48 2020 +0000 - - HHH-14305 Introduce new method in CollectionsHelper to reduce size of long lived collections - -commit 250db69e8e47e51cdf511359e82f06570c321d86 -Author: Sanne Grinovero -Date: Sun Nov 1 20:43:11 2020 +0000 - - HHH-14305 Remove unused logger - -commit 81d526e4db283a92fd3c6adaa5c7efd9c877999d -Author: Sanne Grinovero -Date: Wed Oct 21 14:28:26 2020 +0100 - - HHH-14271 Lazy initialization of UniqueEntityLoader for most LockMode types - -commit c60765a528bfd450eb2cbd4d0454107bcc9236a2 -Author: Sanne Grinovero -Date: Wed Oct 28 21:31:54 2020 +0000 - - HHH-14304 Replacing eager initialization of LockingStrategy within AbstractEntityPersister - - And introducing a new ad-hoc collection LazyIndexedMap, useful to - lazily initialize elements which can be indexed by int, such - as the ordinal of enums. - -commit 2dd82d553f339dcd002cefa660a56604e18a03ce -Author: Sanne Grinovero -Date: Fri Oct 30 20:27:32 2020 +0000 - - HHH-14303 Upgrade to JBoss Loging 3.4.1.Final - -commit ce9cd57340b670a385467c6b1a6fa7708194af0c -Author: Sanne Grinovero -Date: Fri Oct 30 20:27:13 2020 +0000 - - HHH-14302 Upgrade to Agroal 1.9 - -commit 1baa95edf5dc42be78f3816bfeb00d99b2d8bff3 -Author: Sanne Grinovero -Date: Fri Oct 30 20:25:29 2020 +0000 - - HHH-14301 Upgrade to Byte Buddy 1.10.17 - -commit f286c4912cc7053954f0f181b47e335a0f5f8162 -Author: Sanne Grinovero -Date: Fri Oct 30 20:21:56 2020 +0000 - - HHH-14300 Update to Hibernate Validator 6.1.6.Final - -commit 1dcd357ee379e68d4f2dd94780253d6603bcf9a1 -Author: Steve Ebersole -Date: Fri Oct 30 14:38:22 2020 -0500 - - Various fixes from Search integration testing - - - support for "in( parameter list )" syntax from Criteria - -commit 9391768d5a0217416d429974395af7719f05757e -Author: Sanne Grinovero -Date: Fri Oct 30 16:53:18 2020 +0000 - - HHH-14299 Upgrade to Hibernate Commons Annotations 5.1.2.Final - -commit 4402843d1c4e14bae8f6dfe81f563422d5571606 -Author: Steve Ebersole -Date: Fri Oct 30 12:04:52 2020 -0500 - - Various fixes from Search integration testing - - - do not cache Criteria query plans (added Trello card to revisit) - - support for StatelessSession in JUnit 5 extensions (SessionFactoryScope) - -commit 23f64fc675f16557f97ca7a179522a1bd473b1ca -Author: Steve Ebersole -Date: Fri Oct 30 08:31:11 2020 -0500 - - Various fixes from Search integration testing - - - support for mutable converted (AttributeConverter) values - - bug in EntityType#toLoggableString - -commit 875b40f4162b52bad7bd771ed2412300e9475a6a -Author: Andrea Boriero -Date: Fri Oct 30 10:22:35 2020 +0000 - - Fix compilation error after merging - -commit a5bb92f0d5d873ba1abac061263d3a48a471fd15 -Merge: 29848c49db b24a3cbf2d -Author: Andrea Boriero -Date: Fri Oct 30 10:21:28 2020 +0000 - - Merge remote-tracking branch 'upstream/master' into wip/6.0 - -commit b24a3cbf2d6387a74ade4fc04021b9bfe6869c91 -Author: Christian Beikov -Date: Mon Oct 26 19:29:38 2020 +0100 - - HHH-14279 Fix join ordering issue that happens for entity key joins when using a WITH/ON clause - -commit 4ffb768a7a9b99c8ccbbdb1c3beb879798cbd487 -Author: Laurent Almeras -Date: Fri Oct 23 14:07:07 2020 +0200 - - HHH-14279 Testcase showing key join order is messed up - -commit 29848c49dba8551d9a76e3c6eac3375a8059a88b -Author: Steve Ebersole -Date: Thu Oct 15 17:20:30 2020 -0500 - - ORM + Gradle - - HHH-14285 - project template - HHH-14286 - Gradle plugin - -commit 6b58d5405787540ed984b61384374cb7c7d5c82e -Author: Sanne Grinovero -Date: Thu Oct 22 22:07:56 2020 +0100 - - HHH-14293 Reset the ReflectionManager state after SessionFactory is initialized - -commit f3396805d417d4bdbd6c6c3aed4b70a5bdb7abd8 -Author: Sanne Grinovero -Date: Tue Oct 27 12:50:12 2020 +0000 - - HHH-14293 JPAMetadataProvider needs to be able to reset its internal caches - -commit 67a2ed17cafa3f0808e96813ac72f5eb7651328c -Author: Sanne Grinovero -Date: Tue Oct 27 22:03:39 2020 +0000 - - HHH-14292 Avoid defensive copy for keywords set in NormalizingIdentifierHelperImpl - -commit 18b3def7415f0586cfeb8d70c7431bf163d7ab49 -Author: Steve Ebersole -Date: Wed Oct 28 10:00:30 2020 -0500 - - HHH-14291 - Minor changes for NativeQuery and BulkOperationCleanupAction - -commit 4d8c89920a2a9d0d13c6192fb74d88963e3d3c3e -Merge: 9cf4edfbee 0544dba5bb -Author: Andrea Boriero -Date: Tue Oct 27 14:24:37 2020 +0000 - - Merge remote-tracking branch 'upstream/master' into wip/6.0 - -commit 0544dba5bb5ea05f9ecdb3750df2869567fad165 -Author: Sanne Grinovero -Date: Mon Oct 26 11:54:07 2020 +0000 - - HHH-14284 Update Oracle JDBC driver: one more case of the old driver being mentioned - -commit 503c48cbc73b86201c202599bb3884861aa35130 -Author: Sanne Grinovero -Date: Wed Oct 21 23:34:45 2020 +0100 - - HHH-14290 Remove capability of loading classes by name from HCANN - -commit a0e4ab72ec0f50ab3f9761a79f497f230186edfa -Author: Sanne Grinovero -Date: Thu Oct 8 11:06:50 2020 +0100 - - HHH-14290 Adjust HCANNHelper to benefit from HCANN-99 - -commit 75646309a7d0aa6d57aed45bfe3a9af5625a1c94 -Author: Sanne Grinovero -Date: Tue Oct 27 06:19:06 2020 +0000 - - HHH-14290 Upgrade to Hibernate Commons Annotations 5.1.1.Final - -commit 9fe61e1a22e59b7a14cbbe0273ac86672ceee4a0 -Author: Sanne Grinovero -Date: Mon Oct 26 17:12:35 2020 +0000 - - HHH-14284 Introduce settings to make it easier to test with a local Oracle instance run via docker - -commit 2ef94511122ef6d6bec19becc2e6628de4b045f3 -Author: Sanne Grinovero -Date: Mon Oct 26 11:54:07 2020 +0000 - - HHH-14284 Update Oracle JDBC driver configuration to test with version 19.8.0.0 - -commit abf42f4db09779f3a2148b122b1a8a1877957540 -Author: Sanne Grinovero -Date: Mon Oct 26 17:12:57 2020 +0000 - - HHH-14289 Detection of JDBC support for RefCursors was returning false even for Oracle JDBC drivers supporting it - -commit 37a77e695d72b6c6c8fd84b542b8b66b575abd05 -Author: Sanne Grinovero -Date: Sun Oct 25 21:57:55 2020 +0000 - - HHH-14283 Review tuning of JVM parameters for the build - -commit 9cf4edfbee8feaa53e77d7c7a76f0d339f282d9a -Merge: 31c035b4e8 5bc23aa964 -Author: Andrea Boriero -Date: Mon Oct 26 08:14:01 2020 +0000 - - Merge remote-tracking branch 'upstream/master' into wip/6.0 - -commit 5bc23aa9641051f19c4424b7cdd503ed0d92214a -Author: Sanne Grinovero -Date: Sun Oct 25 21:23:05 2020 +0000 - - HHH-10715 The GeometryFactory field in Spatial's EnvelopeAdapter needs synchronization - -commit ad6584ff102def418ba636b6ced5d39482919a8a -Author: Sanne Grinovero -Date: Sun Oct 25 20:56:55 2020 +0000 - - HHH-10715 Deleting more dead code - -commit 5b6f3ff3b875e6f0015a89729482af6138da281d -Author: Sanne Grinovero -Date: Sat Oct 10 22:01:11 2020 +0100 - - HHH-10715 Remove unused logger instance - -commit 8f1873121e6e97b56d2932a5c8a417e7889e3cd9 -Author: Sanne Grinovero -Date: Sat Oct 10 21:55:51 2020 +0100 - - HHH-10715 Use the more efficient iterators - -commit e3edcdbe55eb08bae13371ee672e2c7b198524b1 -Author: Sanne Grinovero -Date: Sat Oct 10 21:51:42 2020 +0100 - - HHH-10715 More static and final keywords missing - -commit a7629c43827b61ece554a16f49c80522cceffbb2 -Author: Sanne Grinovero -Date: Sat Oct 10 21:51:26 2020 +0100 - - HHH-10715 Missing null check after File.listFiles - -commit b518df7da4372893cbe25060e06c861972a4e147 -Author: Sanne Grinovero -Date: Sat Oct 10 21:50:59 2020 +0100 - - HHH-10715 Unreleased statement in IdTableHelper - -commit 96209e0ff623ee2b1a014325f363d58862f7ae4c -Author: Sanne Grinovero -Date: Sat Oct 10 21:25:55 2020 +0100 - - HHH-10715 A couple of missing final keywords - -commit b13a116a6e062948ed74919de764605e2c7bffab -Author: Sanne Grinovero -Date: Sat Oct 10 21:25:35 2020 +0100 - - HHH-10715 Dead code eliminated - -commit 55cb66780d44690798b7ca5bcf3f6c9e78dd607e -Author: Sanne Grinovero -Date: Sat Oct 10 21:10:48 2020 +0100 - - HHH-10715 Make static constant collections immutable in metamodel-generator - -commit 1de234ea93f4ac92cd16e98d6de3d4d67d72bb24 -Author: Sanne Grinovero -Date: Sat Oct 10 21:03:49 2020 +0100 - - HHH-10715 Unclear excepion handling - -commit b8ddc70ff1e49ec92fcd2847ef0b5724ad87c5f6 -Author: Sanne Grinovero -Date: Sat Oct 10 21:03:24 2020 +0100 - - HHH-10715 Dodgy comparison with Boolean instance - -commit 111e551dcd47081dcc4c7a00126a927c9af3a8ec -Author: Sanne Grinovero -Date: Sat Oct 10 21:03:10 2020 +0100 - - HHH-10715 Dead code elimination - -commit ba0bf0d6198c91c13b84767a2533f0ee3b6631d6 -Author: Sanne Grinovero -Date: Sat Oct 10 20:23:00 2020 +0100 - - HHH-10715 Make IdentifierProperty immutable - -commit 7870329b77e4e6b6a7d0e5ea26ad4a9fea61f2dc -Author: Sanne Grinovero -Date: Sun Oct 25 21:20:19 2020 +0000 - - HHH-14282 StandardRefCursorSupport can rely on having JDK8 as baseline today - -commit 761a55b31d844e8d6f1ab8bd41ce776da4ae95c2 -Author: tscz -Date: Thu Oct 15 15:48:16 2020 +0200 - - HHH-14260: Fix dead and obsolete links in user guide - -commit 31c035b4e87b7040295d55b5996e5673b3b67f51 -Author: Andrea Boriero -Date: Fri Oct 23 10:32:05 2020 +0100 - - HHH-14278 No longer use the AssertionFailure and StringHelper implementations from HCANN - -commit 4e22c5cabc00958b031c126fef7fb86be13e894d -Merge: 27c06efd66 3bf9f6a5c6 -Author: Andrea Boriero -Date: Fri Oct 23 10:31:29 2020 +0100 - - Merge remote-tracking branch 'upstream/master' into wip/6.0 - -commit 3bf9f6a5c62a9ef237696a05f5ddd770fb6a66a9 -Author: Steve Ebersole -Date: Thu Oct 22 14:56:07 2020 -0500 - - Design docs - mapping model - -commit 5091203426be2fa8c2c348a9954171f8829c9733 -Author: Sanne Grinovero -Date: Thu Oct 22 16:03:03 2020 +0100 - - HHH-14278 No longer use the AssertionFailure and StringHelper implementations from HCANN - -commit c81401cd67493818609a93093d434e81f707a23d -Author: Jan Schatteman -Date: Thu Oct 22 16:22:00 2020 +0200 - - HHH-14275 Broken link to Infinispan User Guide in Hibernate 5.3 User Guide - - Signed-off-by: Jan Schatteman - -commit 27c06efd66f040cd98aed464b36f06263c209042 -Merge: 731cbbc739 dbd13e1389 -Author: Andrea Boriero -Date: Thu Oct 22 10:57:39 2020 +0100 - - Merge remote-tracking branch 'upstream/master' into wip/6.0 - -commit fa5078a915645a15e00c7ac9760a899b25496641 -Author: Andrea Boriero -Date: Wed Oct 21 14:45:34 2020 +0100 - - HHH-14245 ClassCastException for Criteria Collection size selection - -commit 98168bd0663193238c45c077b8f2d869c42de3e1 -Author: Andrea Boriero -Date: Wed Oct 21 14:41:04 2020 +0100 - - HHH-14245 Add test for issue - -commit dbd13e13893eed134659ebbb1c5cf8adb8216001 -Author: Scott Marlow -Date: Fri Oct 2 11:01:47 2020 -0400 - - HHH-14196 Add parsing of persistence.xml/orm.xml documents in the EE 9 namespace - - Signed-off-by: Scott Marlow - -commit 97d101b742abd7c05705aa7c238f66dc061a994e -Author: Sanne Grinovero -Date: Tue Oct 20 12:12:13 2020 +0100 - - HHH-14269 Confusing method names unableToObjectConnectionMetadata and unableToObjectConnectionToQueryMetadata - -commit d9ec18fad707b06172f4bb6355bc331165148f58 -Author: Daniel Wu -Date: Tue Oct 20 09:23:52 2020 +0800 - - HHH-14268 Include stacktrace at WARN level in case of an error occurs when getting the connection metadata - -commit f17c0f7a03046a0b654b89af3256f2b9ba35907f -Author: Nathan Xu -Date: Mon Oct 19 09:08:57 2020 -0400 - - HHH-14234 fix CI building error on non-H2 dialect - -commit 731cbbc739e0057b61f0a61e72b82218150e7267 -Merge: 776a0402f6 f8fb0b0069 -Author: Andrea Boriero -Date: Mon Oct 19 15:06:49 2020 +0100 - - Merge remote-tracking branch 'upstream/master' into wip/6.0 - -commit f8fb0b0069502ee6215ded61ba82cbbe07f9e3e8 -Author: Nathan Xu -Date: Sun Oct 18 22:18:58 2020 -0400 - - HHH-14234 fix CI building error on HANA dialect - -commit 5b8bae5cc7cc14598fc630ab6bbd953addc56f2d -Author: Nathan Xu -Date: Tue Sep 29 17:28:35 2020 -0400 - - HHH-14234 fix issue denormalized table should not inherit indexes from parent table - -commit 962884a8dd3c807096043198cb3c8551140611d2 -Author: Nathan Xu -Date: Sat Oct 17 23:13:23 2020 -0400 - - HHH-14264 fix bug that entity graph cannot be applied to child entity class - -commit 88acc9511b2e1c1cee7def27ba8dc717a8c321f8 -Author: Yanming Zhou -Date: Fri Oct 9 11:26:01 2020 +0800 - - HHH-14253 support ConstraintMode.PROVIDER_DEFAULT - - Provide an option to skip foreign key creation for ConstraintMode.PROVIDER_DEFAULT - -commit 776a0402f626a104cf73e724db4c1fd48cda43d1 -Merge: 5c51ed46e8 8d4de09255 -Author: Andrea Boriero -Date: Mon Oct 12 09:15:56 2020 +0100 - - Merge remote-tracking branch 'upstream/master' into wip/6.0 - -commit 5c51ed46e8e985ab5e928a606b26955d1ab68c9f -Author: Nathan Xu -Date: Fri Oct 9 09:49:26 2020 -0400 - - correct error in StandardOrderedMapSemantics due to generics checking - -commit 8d4de09255552af6ba8bc2748fa1baa3dc3159f4 -Author: Jan Schatteman -Date: Mon Oct 5 21:33:46 2020 +0200 - - HHH-14241 Support ImplicitNamingStrategyComponentPathImpl with IdClass - - Signed-off-by: Jan Schatteman - -commit 03416a8cdd7d66951bc20f718d07b20faf546123 -Author: Fabio Massimo Ercoli -Date: Wed Sep 30 17:19:07 2020 +0200 - - HHH-14241 Test ImplicitNamingStrategyComponentPathImpl with IdClass - -commit b89658628e337d6d14660548f3fdd32b54265f75 -Merge: 93cd8aaf4e 3a88b1c6b2 -Author: Andrea Boriero -Date: Thu Oct 8 09:11:07 2020 +0100 - - Merge remote-tracking branch 'upstream/master' into wip/6.0 - -commit 3a88b1c6b2d2ede977643de4b4841152a09b6e41 -Author: Nathan Xu -Date: Mon Oct 5 22:04:30 2020 -0400 - - HHH-14248 Other minor improvements to ActionQueue - -commit c3e43ecd117dc9ec5471201c8c79bcfed3ca026a -Author: Nathan Xu -Date: Tue Oct 6 10:28:58 2020 -0400 - - HHH-14248 Refactor latestBatches from InsertActionSorter's field to temporary variable in its sort method - -commit 112d2153713f78472f9354cb2e3fe4c89b9171bc -Author: Andrea Boriero -Date: Tue Oct 6 16:46:53 2020 +0100 - - HHH-14249 MultiLineImport fails when script contains blank spaces or tabs at the end of the last sql statement - -commit 425ee2d3d5e599d3e3b50aca79e3b05cbc4078ad -Author: Andrea Boriero -Date: Tue Oct 6 16:42:23 2020 +0100 - - HHH-14249 Add test for issue - -commit 93cd8aaf4ea5633a761eff7c558fad72278df514 -Merge: 72b548b912 05f47ce80b -Author: Andrea Boriero -Date: Tue Oct 6 17:36:13 2020 +0100 - - Merge remote-tracking branch 'upstream/master' into wip/6.0 - -commit 05f47ce80bfb656ee19c78db1258f670725a0ce5 -Author: Nathan Xu -Date: Mon Oct 5 16:13:21 2020 -0400 - - HHH-14227 fix testing failure on Oracle - -commit d045797aa7307247d0f964198206de55d063e3fa -Author: Nathan Xu -Date: Mon Oct 5 11:00:15 2020 +0100 - - HHH-14227 Add some more tests to cover order of batched insert executions - -commit 9de5e3e0056d44e624a0b2428a2e207ce09e2949 -Author: Nathan Xu -Date: Mon Oct 5 10:58:33 2020 +0100 - - HHH-14227 Some additional typos and message improvements - -commit de6736ba3217c3965121f43ee4fdffab5afc7c1f -Author: Nathan Xu -Date: Mon Oct 5 10:57:58 2020 +0100 - - HHH-14227 Insert statements are not ordered with entities that use inheritance and reference a subclass - -commit 5eedda9a467fef44d924f64203023b2345b8415f -Author: Andrea Boriero -Date: Fri Oct 2 09:42:36 2020 +0100 - - HHH-14247 Fix automatic releease script, changelog.txt contains wrong Jira release url - -commit 72b548b912134abe1097b72df02bf7f8a5cb0b45 -Author: Andrea Boriero -Date: Thu Aug 27 14:34:35 2020 +0100 - - MutationExecutor Add call to autoFlushIfRequired - -commit fc6f5154076ed261e11b44e044df79704163a916 -Author: Andrea Boriero -Date: Mon Aug 24 15:41:12 2020 +0100 - - EntityValuedPathInterpretation fix TableGroup resolution for implicit join e.g or - -commit 0bd2c32f764336ad4b8e6f268942585719270e40 -Merge: fb22400bf7 e5a8282012 -Author: Andrea Boriero -Date: Fri Oct 2 12:39:41 2020 +0100 - - Merge remote-tracking branch 'upstream/master' into wip/6.0 - -commit e5a8282012a1bee8271ce4e8f880fb4cc028aeb2 -Author: Sanne Grinovero -Date: Wed Sep 30 18:39:30 2020 +0100 - - HHH-13895 Upgrade the PostgreSQL JDBC driver used for testing to v. 42.2.16 - -commit 733ece81f4091233a720373aff816ae1d7c505c5 -Author: Nathan Xu -Date: Sat Sep 26 09:15:40 2020 -0400 - - HHH-14231 Fix ClassCastException in ScrollableResultsImpl for primitive array value - -commit 77cf9d510895b2952cee88872fb09f1e08c0b069 -Author: Dmitry Gusev -Date: Thu Sep 17 08:09:50 2020 +0100 - - HHH-14242 Micro optimisations of ActionQueue: redundant branch evaluation - -commit 71ef49d6b1b6404b2fc207ea15c7d04d23201fec -Author: Sanne Grinovero -Date: Wed Sep 30 17:10:42 2020 +0100 - - Revert "HHH-14240 Stop generating fragments of SQL as uppercase" - - This reverts commit 9ac29ab4dc5845d020d55900d96a99d9127d5968. - - See also https://github.com/hibernate/hibernate-orm/pull/3555#issuecomment-701472270 - -commit 225e29d2b23104db8baf6d5dddfd8faa3a5dea29 -Author: Sanne Grinovero -Date: Wed Sep 30 16:57:37 2020 +0100 - - HHH-14217 Minor optimisations in the highlighting formatter implementation - -commit 916513a7ebcc2159c42603e477aa693e38d66a86 -Author: Sanne Grinovero -Date: Wed Sep 30 16:51:27 2020 +0100 - - HHH-14217 Code style - -commit cf995a15717caafe65a8aa60f3750e23fbe72a69 -Author: Gavin King -Date: Tue Sep 15 23:11:02 2020 +0200 - - HHH-14217 Add syntax highlighting to the logged SQL - - Using ANSI escape codes - - Must be explicitly enabled using hibernate.highlight_sql - -commit 9ac29ab4dc5845d020d55900d96a99d9127d5968 -Author: Gavin King -Date: Thu Sep 17 14:10:38 2020 +0200 - - HHH-14240 Stop generating fragments of SQL as uppercase - -commit 7f6479541df7cc2e785b20bc668d92cf6278fec7 -Author: Gavin King -Date: Thu Sep 3 11:40:41 2020 +0200 - - HHH-14203 DB2 requires the restrict keyword to drop the schema - - The 'restrict' keyword is required on DB2. - -commit bc39df281205ad3154645441e652a06c06adbff1 -Author: Gavin King -Date: Fri Sep 18 16:07:33 2020 +0200 - - HHH-14238 Option to include collection fields in the default fetch group - - There is no good reason to lazily-instantiate a collection - wrapper, since that operation never requires access to the - database. - - See discussion here: - - https://github.com/hibernate/hibernate-reactive/issues/374 - -commit fb22400bf7f105957e216d61291f93027552fc49 -Author: Andrea Boriero -Date: Wed Sep 30 08:06:45 2020 +0100 - - Fix compilation error after merge - -commit 6d349bac5b9544f98254aedb6a84e584b8964b01 -Merge: eafd26236f 57004cdee7 -Author: Andrea Boriero -Date: Wed Sep 30 07:37:55 2020 +0100 - - Merge remote-tracking branch 'upstream/master' into wip/6.0 - -commit 57004cdee7203ee3eefcb960c8833d84e8ba96f4 -Author: Andrea Boriero -Date: Tue Sep 29 08:31:48 2020 +0100 - - HHH-14220 Fix failure with Oracle - -commit a64f193faeb042bc8fa475723bd656fe716c740a -Author: Andrea Boriero -Date: Mon Sep 28 17:54:31 2020 +0100 - - HHH-14220 Skip test when bytecode provider is Javassist - -commit f2a742e3c4bcbd467be4228e56ad000bf2453537 -Author: Sanne Grinovero -Date: Mon Sep 28 14:41:07 2020 +0100 - - HHH-14236 Improve efficiency of ForeignKeyKey - -commit a6eaed2db670b3922074e769c87243a9d93cc383 -Author: Andrea Boriero -Date: Fri Sep 18 16:29:54 2020 +0100 - - HHH-14220 EnhancementException failure with MappedSuperclass with a un-mapped collection - -commit 5b8f5aa7569b6ed3ce862ea8c1cef75e5f789966 -Author: Andrea Boriero -Date: Fri Sep 18 16:29:35 2020 +0100 - - HHH-14220 Add test for issue - -commit ad80d0bb41f94e4b5ddb7059662af12d21e8efc1 -Author: Jan-Willem Gmelig Meyling -Date: Mon Sep 28 12:16:53 2020 +0200 - - HHH-14223 - Consider formulaTemplates in ID mapping for formula dereference - -commit ac34d7216111be446e681a1540c91a427c0c15f9 -Author: kubo -Date: Sat Sep 26 17:26:09 2020 +0200 - - HHH-14223 - nullpointer exception on @JoinFormula with implicit join - -commit eafd26236f52c40a7e578a78ae66607e693ff2ab -Author: seregamorph -Date: Mon Sep 28 09:51:15 2020 +0300 - - HHH-13884 Order.reverse() contract - -commit 23fdfa4d6a651acdaae99de6a1f07adf8547bde1 -Author: Yanming Zhou -Date: Fri Sep 25 11:58:17 2020 +0800 - - HHH-14230 Fix generics to avoid ClassCastException - -commit 9934baf90ec9859c7ab4c59633c5881f8067d53c -Author: seregamorph -Date: Fri Feb 28 16:21:27 2020 +0300 - - HHH-13884 Order.reverse() contract - -commit 6d67efa339520516623d0184bc3b8f269dec7048 -Author: Christian Beikov -Date: Tue Sep 22 15:52:40 2020 +0200 - - HHH-14212 Rename trigger entity to avoid keyword collision on Oracle - -commit 140fbb45d61821e2d46e87962398b9ff6b28b533 -Merge: 59f902fa40 99a4edfac0 -Author: Andrea Boriero -Date: Tue Sep 22 11:43:55 2020 +0100 - - Merge remote-tracking branch 'upstream/master' into wip/6.0 - -commit 99a4edfac0ed31f2cfedfd7cbfb5e5a32edf114f -Author: Nathan Xu -Date: Sun Sep 13 09:43:17 2020 -0400 - - HHH-14212 fix Fetch Graph by simply returning false in TwoPhaseLoad#getOverridingEager() when Fetch Graph is being enforced - -commit 39b42c0a6ab720ae8dbb95535fa5dd28946d0a86 -Author: Nathan Xu -Date: Sun Sep 13 09:34:59 2020 -0400 - - HHH-14212 revert back HHH-8776 (retaining testing case) - -commit 7cfdd0609d3dd77f1e55e9dfaf0826f9becfd843 -Author: Nathan Xu -Date: Sun Sep 13 09:24:19 2020 -0400 - - HHH-14212 revert back HHH-14097 (retaining testing case) - -commit 4c5f94f917bad9f83009ade145a2b80aae6fc09f -Author: Nathan Xu -Date: Sun Sep 13 09:19:54 2020 -0400 - - HHH-14212 revert back HHH-14124 (retaining testing case) - -commit 59f902fa40e75c78f8a8643e8981ef703f210a9c -Author: Andrea Boriero -Date: Mon Sep 14 07:11:28 2020 +0100 - - Re-enabled additional tests and fixed inheritance issues - -commit 6fb52c4fcdb4860cb374a5dd6ab1dc099047dbc3 -Author: Yanming Zhou -Date: Fri Sep 18 10:59:28 2020 +0800 - - HHH-14219 Fix duplicated rows of sequence table - - if generator is shared by multiple entities - -commit f136dabe181dcaf72ce33ac96b4d7c503fe60185 -Author: Nathan Xu -Date: Wed Sep 16 22:58:50 2020 -0400 - - HHH-14218 fix some typos in code comments - -commit 7ef5336fecd41d47a67cd27d271f0e65a4d70b4d -Author: Christian Beikov -Date: Mon Sep 14 14:34:33 2020 +0200 - - HHH-14201 Fix test issues of NaturalIdDereferenceTest - -commit 20e5a5659b25b0eaf2bee780ac7e4f61f0f8bc14 -Author: Christian Beikov -Date: Mon Sep 14 12:35:33 2020 +0200 - - HHH-14148 Fix ANTLR grammar non-determinism - -commit 886083ab77f6ac41711c053b5bca097868c9b7c3 -Author: Nathan Xu -Date: Wed Sep 2 15:06:27 2020 -0400 - - HHH-14201 fix HQL JOIN order issue - -commit cf9425924811088ef07a4a9add5da221f86d35f1 -Author: Nathan Xu -Date: Mon Aug 31 05:58:42 2020 -0400 - - HHH-14148 fix issue mapping order SQL fragment could produce incorrect SQL - -commit f91ed82757ec722072f6fb747c4cb6a6a23a4426 -Author: Nathan Xu -Date: Sun Sep 13 12:42:16 2020 -0400 - - HHH-14213 fix query numeric literal (integer representation) parsing exception message - -commit c7dd682257a3a8cad27035803fc32d78ba5fc88a -Author: Gavin King -Date: Fri Sep 11 22:11:49 2020 +0200 - - Add test for HHH-14210 - -commit 64338f2bf19f1c1220ccb9e348ce6dae56ca8df6 -Author: Gavin King -Date: Fri Sep 11 21:59:33 2020 +0200 - - Add support for shared locks to DB2Dialect - - For HHH-14210 - -commit dc0cabad5d382668e68ee2c96be03899465d4e4f -Author: Gavin King -Date: Fri Sep 11 21:17:28 2020 +0200 - - Fix incorrect Javadoc on Dialect.forUpdateOfColumns() - - Related to HHH-14210 - -commit 852786d984d84c3a49b271698022d3b5ad7cc6ad -Author: Gavin King -Date: Fri Sep 11 21:15:17 2020 +0200 - - Ingres and RDMS don't actually support FOR UPDATE - - At least not in SELECT statements. They do support it - in DECLARE CURSOR, which is perhaps where the confusion - arose? - - Related to HHH-14210 - -commit 12a31ef4389e9f63ace766b4f349dcab99f01599 -Author: Gavin King -Date: Tue Sep 8 12:25:31 2020 +0200 - - DB2 support 'skip locked data' on DB2 - - For HHH-14210 - -commit ae07a8b79175eef1ceea1f22b223104943a4cff5 -Author: Gavin King -Date: Tue Sep 8 12:24:42 2020 +0200 - - clean up @SuppressWarnings annotation on Dialect - -commit f203bda5dbab294be4cfd8a1aa8dd64f450eab16 -Author: Gavin King -Date: Wed Sep 2 22:18:42 2020 +0200 - - HHH-14204 Schema validator should be more forgiving of column type mismatches - -commit 3846001907fa1286071a69cb465bbff4bf6111b1 -Author: Nathan Xu -Date: Fri Aug 28 16:42:40 2020 -0400 - - HHH-14206 Auto-apply converter not applied to primitives - -commit 1cf99c748a19bb23ceba9ff640df742fa29ba620 -Author: Falko Modler -Date: Mon Aug 24 17:42:27 2020 +0200 - - HHH-14031 Update h2 to 1.4.197 - - Notes: - - h2 1.4.197+ does not support ns precision by default anymore - - h2 DateTimeUtils.resetCalendar() is required for many tests to avoid failures due to h2 internal caching - -commit 97ea1d853d3e7c76c3aa6c985b38c1d63cbca437 -Author: Nathan Xu -Date: Mon Sep 7 18:47:09 2020 -0400 - - HHH-14208 simplify example naming strategy code in user guide - -commit 4499abd9a911ca38cfbd4f1638d19592467e9b77 -Author: Yanming Zhou -Date: Thu Sep 3 15:35:50 2020 +0800 - - Replace StringBuffer with StringBuilder - - avoid unnecessary synchronization - -commit b155b12f4355ea288e5c320260b43356ea1f8e15 -Author: Nathan Xu -Date: Wed Aug 26 20:34:38 2020 -0400 - - port HHH-3328 - -commit 4eb391344315fb31e1740f0aac92b51ced229435 -Author: Gavin King -Date: Mon Sep 7 16:45:29 2020 +0200 - - clean code for lock SQL in Dialects - - This code was very convoluted and difficult to follow, - and, I believe, buggy on both MariaDB and Oracle. There - were also inconsistencies surrounding database versions. - - Also it did not support the 'WAIT n' syntax on MariaDB. - -commit 8b938610cf141a39a109d6e9b705f73a699df20d -Merge: 8fe4b40ef8 7f6ead80cc -Author: Andrea Boriero -Date: Tue Sep 8 08:19:13 2020 +0100 - - Merge remote-tracking branch 'upstream/master' into wip/6.0_merge - -commit 7f6ead80cce62c6b0b4ab264808a96064ea90cc8 -Author: Andrea Boriero -Date: Mon Sep 7 14:18:42 2020 +0100 - - HHH-14197 Fix MariaDB failing test - -commit 6cc63d9289e87fb7e8478489855d22a59fa936d9 -Author: Andrea Boriero -Date: Mon Sep 7 09:30:53 2020 +0100 - - HHH-14113 Fix oracle test failure - -commit 8fe4b40ef8b85d8901feddba071a76adea14f920 -Author: Andrea Boriero -Date: Thu Sep 3 14:31:52 2020 +0100 - - Fix joined subclass wrong table for id and version columns - -commit 37a60ea8bb30fe3c9729a816196e3ef5fabe67e5 -Author: Nathan Xu -Date: Thu Sep 3 10:26:54 2020 -0400 - - HHH-14197 Criteria API doubly-nested subquery generates invalid SQL - missing subquery root - -commit 17d365ecf8965044227dc401f13fec86e3117e02 -Author: Jan-Willem Gmelig Meyling -Date: Sat Jun 27 20:14:22 2020 +0200 - - HHH-14198 - Expose CompositeUserTypes through JPA Metamodel - - Composite User Types work like regular Composite Types (like Embeddable) in HQL. However, because they cannot be represented in the JPA metamodel, libraries like [GraphQL for JPA](https://github.com/jcrygier/graphql-jpa) or [Blaze-Persistence](https://persistence.blazebit.com/) cannot fully utilize them. In order to make the composite property names available to these libraries, it would be nice to optionally expose these attributes as embedded attributes. This pull request aims to make that change and makes it configurable through a custom setting. - - Composite User Types are a common solution for mapping composite interfaces. A common example is for example `Money` from the Java Money API (JSR-354), for which composite user types are implemented in [Jadira](http://jadira.sourceforge.net/usertype-userguide.html). - - I know Composite User Types are currently not consiered in Hibernate 6.x. See also [this](https://hibernate.zulipchat.com/#narrow/stream/132094-hibernate-orm-dev/topic/CompositeUserType) Zulip thread. I am not sure if Hibernate 6.x will even have multi column types, which I presume would be a requirement to even introduce Composite User types back at some point. Usually Embeddables are a much easier, suitable mechanism for composite user types. But Embeddables are not always a viable alternative, because Embeddables require the type to be subclassed (as an interface cannot be mapped, and the type may not solely comprise fields that can be mapped to a simple basic type). To deal with this exact problem, `MonetaryAmounts` are still mapped as composite user type. There also have been suggestions to the JPA Spec to consider `AttributeConverters` for Embeddables for pracitcally the same purpose (which I think is going to be a mess of an implementation). See: https://github.com/eclipse-ee4j/jpa-api/issues/105 - - Anyways, regardless of whether this gets integrated in 5.x, I don't expect it to be integrated in 6.x unless we also reintroduce Composite User Types. I am willing to contribute Composite User Types for 6.x if people see benefit in it and think it can be done in the first place. - -commit 6365204c488eb2db1dbe52261a59a726e0fb425c -Author: Nathan Xu -Date: Fri Aug 28 16:42:40 2020 -0400 - - HHH-13058 fix issue left join root cannot be replaced by correlated parent in subquery - -commit afd6818e5570e1ac25603faeb785baff41c6bd20 -Author: Moritz Becker -Date: Wed Jan 16 08:55:33 2019 +0100 - - HHH-13201 - mark local origin variable as final - -commit d97db034b4ef8a998e47d782527ce38e88ddb36f -Author: Moritz Becker -Date: Tue Jan 15 06:48:12 2019 +0100 - - HHH-13201 - reformat test - -commit 19af434b2124ef430bb762604d08868641b9f28d -Author: Moritz Becker -Date: Sat Jan 12 19:19:30 2019 +0100 - - HHH-13201 - do not set empty text on collection join parent without queryable collection - -commit ea24abd75739db0546b2d4b190cfb650466eff4a -Author: Sanne Grinovero -Date: Wed Sep 2 12:16:41 2020 +0100 - - HHH-9422 Metamodel Generator should close streams opened to persistence.xml and referenced mapping files - -commit 162bc7d9dd671d6fc3c596a2ec29c469c1acb7b3 -Author: Nathan Xu -Date: Wed Jul 22 18:52:00 2020 -0400 - - HHH-14113 Entity Graph attribute resolution not based on selected entity - -commit e8b6bbbef43a65215fea9b788f050626bf4aa668 -Author: Andrea Boriero -Date: Tue Sep 1 10:48:37 2020 +0100 - - HHH-14178 Fix Hana test failures - -commit efa7e66c73069c6651d2cf906033fa0643ac4005 -Author: Andrea Boriero -Date: Tue Sep 1 10:48:37 2020 +0100 - - HHH-14178 Fix oracle test failures - -commit f07c26339bd0b176bb48888dd7af3800a811aa9b -Author: Andrea Boriero -Date: Tue Sep 1 10:31:22 2020 +0100 - - HHH-14199 fix the error when running 'setDataBase' gradle task - -commit f1ac2f8c09c241680be68036f32de45ed6aa4612 -Merge: b1ba79105d ca1692b86f -Author: Andrea Boriero -Date: Tue Sep 1 09:45:08 2020 +0100 - - Merge branch 'wip/6.0' of https://github.com/hibernate/hibernate-orm into wip/6.0 - -commit b1ba79105d27491c458983dd53cc1037c967f690 -Merge: 076a0aa25a 517a0b9639 -Author: Andrea Boriero -Date: Tue Sep 1 09:44:22 2020 +0100 - - Merge remote-tracking branch 'upstream/master' into wip/6.0 - -commit 517a0b963977b5044b82593f519cd77154c0ed03 -Author: Nathan Xu -Date: Fri Aug 28 12:57:17 2020 -0400 - - HHH-14199 fix the error when running 'setDataBase' gradle task - -commit ca1692b86f0ea2b788fd2414e12f4a2e3f6326f9 -Author: Steve Ebersole -Date: Mon Aug 31 18:31:51 2020 -0500 - - tests for JPQL - tests for JPA operations - -commit 90be61210c189dc7799f81a7a3a4dbea57280174 -Author: Nathan Xu -Date: Tue Aug 25 10:16:12 2020 -0400 - - HHH-11877 wrap CompoundPredicate's expression list - -commit e1ff70519a6e8941c3e580dd423892b62ef19810 -Author: Nathan Xu -Date: Sun Aug 23 22:40:22 2020 -0400 - - HHH-14178 Fix the issue collections visiting could be skipped (e.g., versioned entity) in AbstractSaveEventListener - -commit 41161f9fa9e1d760995c462c78cbd19ef8e7b082 -Author: Nathan Xu -Date: Fri Aug 28 13:35:46 2020 -0400 - - HHH-13908 fix the issue MySQL's 'time' function issue in Criteria - -commit 076a0aa25a75571dd78a840cb9588035f3e65864 -Author: Andrea Boriero -Date: Fri Aug 28 13:11:22 2020 +0100 - - fix compilation errors after merging master - -commit 638a3e234b447da340d730d445e89662cba101da -Merge: 3d46fabeb5 5b9ec29ecb -Author: Andrea Boriero -Date: Fri Aug 28 12:42:29 2020 +0100 - - Merge remote-tracking branch 'upstream/master' into wip/6.0 - -commit 3d46fabeb58d63ae2264955ad4eff73c2fab31b4 -Author: Steve Ebersole -Date: Thu Aug 27 17:37:28 2020 -0500 - - HHH-14191 - ANY mapping support - - - `@ManyToAny` - - embeddable sub-attribute - -commit 97a88ebbcf7a9afcd8bff5fef9f5702c7f37eefa -Author: Steve Ebersole -Date: Thu Aug 27 12:32:10 2020 -0500 - - HHH-14191 - ANY mapping support - -commit 5b9ec29ecb689c7fddaeec42afeb72398aeb9a0a -Author: Gavin King -Date: Thu Aug 27 01:03:38 2020 +0200 - - HHH-14153 refactoring after HHH-14153 - - - avoid use package-scoped instance felds - - remove copy/pasted code - - Note: I don't hate package-scoped final fields, but I - know other folks tend to. So let's go with template - methods instead. - -commit 5daf440a6cd8e0ed115f33d0594cc19c88ccfa04 -Author: Gavin King -Date: Mon Aug 24 16:47:09 2020 +0200 - - HHH-14153 Make buildAppropriateStatementExecutor() protected - - Hibernate Reactive might ultimately need to override - this method, though it doesn't right now. - - Relates to HHH-14153. - -commit 51730713222a088a960de3296b5053880b0bb0b9 -Author: Gavin King -Date: Mon Aug 24 16:40:03 2020 +0200 - - HHH-14153 add test - - By NathanQingyangXu - - See https://github.com/hibernate/hibernate-orm/pull/3508 - -commit 423697026de10ed24c8d425b661425072926bfa0 -Author: Gavin King -Date: Sun Aug 23 13:54:44 2020 +0200 - - HHH-14153 further optimization for single-table HQL update - - This extends the optimization for single-table HQL bulk - updates to the case where the where clause touches multiple - tables and we can use a subselect to collect the ids that - we need to update. - -commit 264e71a916ff27a97bfefea144a20895f7fc75e7 -Author: Gavin King -Date: Sun Aug 23 12:26:57 2020 +0200 - - HHH-14153 clean up BasicExecutor and friends - - introduces InsertExecutor and UpdateExecutor since we're - going to be introducing specific optimizations relating - to single-table updates - - relates to HHH-14153 - -commit d1119d320a96695341d102480648752a7208525b -Author: Gavin King -Date: Sun Aug 23 10:33:56 2020 +0200 - - HHH-14153 optimize away temp table for single-table HQL update - - When a HQL bulk update query only touches a single table, - use BasicExecutor instead of MultiTableUpdateExecutor. - - This is an alternate implementation to the one proposed by - @NathanQingyangXu in #3508 and loosely based on that work. - -commit 59d40c3bf5bc998f54d89fd6007173e0aa961067 -Author: Sanne Grinovero -Date: Wed Aug 26 22:19:44 2020 +0100 - - HHH-14193 MultipleLinesSqlCommandExtractor should tolerate empty input scripts - -commit 995f1bd0172788bc77d1afba7306d184f2427086 -Author: Steve Ebersole -Date: Tue Aug 25 19:38:44 2020 -0500 - - HHH-14186 - @ColumnTransformer support - -commit b9fcc63d843ccb3da9015991240316685f612fa5 -Author: Steve Ebersole -Date: Wed Aug 26 08:42:46 2020 -0500 - - HHH-14152 sql-script.g fix for antlr non deterministic warning - - - Added "system"-style SqlScriptLogging - - Added rule trace logging through SqlScriptLogging - -commit fe4a94d90c2892161024b05d08d9ec977a15190e -Author: Andrea Boriero -Date: Wed Aug 26 10:14:17 2020 +0100 - - HHH-14152 sql-script.g fix for antlr non deterministic warning - -commit eb246ba0b0ce612c70b1fe757f5a4a8c419e2d56 -Author: Gavin King -Date: Mon Aug 24 23:44:14 2020 +0200 - - HHH-14192 H2 compatibility: explicitly specify precision/scale for @Column in test - -commit 28787bc0131969bbf10b55c2a837ab17245cb9fc -Author: Sanne Grinovero -Date: Wed Aug 26 12:46:12 2020 +0100 - - HHH-14190 Method StringHelper#moveAndToBeginning could benefit from using the improved helper too - -commit 03a1bb5ac8bf90628784e4d9dbf4d7ea7148e48d -Author: Sanne Grinovero -Date: Wed Aug 26 12:43:30 2020 +0100 - - HHH-14190 Improve efficiency of StringHelper#isBlank - -commit 9c6805fdd36ba96b2ca6dc3dd9d4b82f08d29e04 -Author: Gavin King -Date: Wed Aug 26 11:10:31 2020 +0200 - - HHH-14190 Rename isEmptyOrWhitespace() to isBlank() - - and use it in more places - -commit beabfecb3ee93c0e4a4fac9fdbc5d16d42a6c03e -Author: Andrea Boriero -Date: Tue Aug 25 16:35:11 2020 +0100 - - HHH-14187 Lazy loading fails if an entity appears twice in the object graph when enhancement as proxy is enabled - -commit dbca6a2291eaf14ef6e2f725c1be6b5a029545d3 -Author: Andrea Boriero -Date: Tue Aug 25 13:09:07 2020 +0100 - - HHH-14187 Add test for issue - -commit 57a3b0b456ca35889f382479cad81ea327cb2d81 -Author: Steve Ebersole -Date: Tue Aug 25 20:17:35 2020 -0500 - - design doc work - -commit f5ba3c22a0eb81e34de03014ea74c39e1cd04c4c -Merge: 2d9fcf6db5 9ded66b90f -Author: Andrea Boriero -Date: Tue Aug 25 09:13:28 2020 +0100 - - Merge remote-tracking branch 'upstream/master' into wip/6.0 - -commit 2d9fcf6db58182826751d6d3f271fe1a408448ac -Merge: 062a462b0c 6fe9d347c5 -Author: Andrea Boriero -Date: Tue Aug 25 08:39:45 2020 +0100 - - Merge branch 'wip/6.0' into wip/6.0_merge_51 - -commit 062a462b0c809a68b6e39bee881c71d12ed10b3d -Merge: ff1fc10454 f9abbaf29d -Author: Andrea Boriero -Date: Tue Aug 25 08:38:06 2020 +0100 - - Merge remote-tracking branch 'upstream/master' into wip/6.0_merge_51 - -commit 6fe9d347c5e2a34569e9b2edffefd3c32655f5f8 -Author: Gavin King -Date: Mon Aug 24 14:41:13 2020 +0200 - - fix an obvious bug in LocalTimeJavaDescriptor - -commit 9ded66b90f94135aff332969f8c49e3a403712c7 -Author: Gavin King -Date: Sun Aug 23 09:32:06 2020 +0200 - - HHH-14181 Fix bug where HQL update/delete query resulted in same table being updated twice - - for HQL bulk update/delete against union-subclass mapping - - also clean up iterator usage in that section of code - -commit e3063f48589e10b01693e4b94d367b43cac9de73 -Author: Falko Modler -Date: Sun Aug 23 19:02:00 2020 +0200 - - HHH-14179 fix MultiLineImportExtractorTest on Windows - -commit bb5a47086d9d3e616941415830afe722a73a2bc8 -Author: Gavin King -Date: Mon Aug 24 14:43:40 2020 +0200 - - HHH-14183 LocalTimeJavaDescriptor attempts casting to LocalDate - -commit b2b4d7a3f678f3fb8fdbf30ce24e9f834d1d2552 -Author: Steve Ebersole -Date: Fri Aug 21 09:26:46 2020 -0500 - - Updated release process documentation - -commit ff1fc1045416a6d812f244377d10f7879b38284b -Author: Andrea Boriero -Date: Fri Aug 21 07:58:24 2020 +0100 - - Fix issue with collection @OrderBy - -commit f9abbaf29dd814d3936bfd72774821ca6c2b9c33 -Author: Vishavjeet Thakur -Date: Sat Jul 11 17:55:48 2020 +0530 - - Update basic-enums-Enumerated-ordinal-persistence-example.sql - - as stated in https://docs.jboss.org/hibernate/orm/5.2/userguide/html_single/Hibernate_User_Guide.html - after example 18 that - 0 - For the LAND_LINE enum - 1 - For the MOBILE enum - hence it should be 1 - -commit 153817f426aae6f71aa9299c542162746effe57e -Author: Jezza -Date: Fri Aug 14 10:58:01 2020 +0200 - - HHH-14175 StatefulPersistenceContext#getLoadedCollectionOwnerOrNull could NPE on missing CollectionEntry - - Avoids NPE, as the collection entry could not exist. - -commit 5dfa67bd6f6cfc17631d9479fbee41c751a6985b -Author: Andrea Boriero -Date: Thu Aug 20 18:07:04 2020 +0100 - - Re-enable additional tests - -commit 5f2f225cc7257c1b2b3ecb5ef3c8dcaa0dbf4c65 -Author: Hibernate-CI -Date: Thu Aug 20 20:37:57 2020 +0000 - - 6.0.0-SNAPSHOT - -commit 329685bc0947964f32460cd70ba9cebb3105a109 (tag: 6.0.0.Alpha6) -Author: Hibernate-CI -Date: Thu Aug 20 20:27:58 2020 +0000 - - 6.0.0.Alpha6 - -commit fb087dfd725fcb6e2a2f03b4183cf283fc85fe61 -Author: Steve Ebersole -Date: Thu Aug 20 14:01:04 2020 -0500 - - HHH-13828 - Remove EntityPersister's extension of `InFlightEntityMappingType` which is considered an "internal" contract - -commit 92aa612f4ebbc89f470af957ac5eb479ae864e7c -Author: Andrea Boriero -Date: Thu Aug 20 14:59:28 2020 +0100 - - Fix PluralAttributMappingImpl issue when both index and element of a Map are Entity types - -commit 5ecf45020ff5f7d269425abf7d25823ca4776f62 -Author: Gavin King -Date: Thu Aug 20 16:06:37 2020 +0200 - - expose some private fields via getters for Hibernate Reactive - - needed for https://github.com/hibernate/hibernate-reactive/issues/237 - -commit fe74ad42702cb38abbf366a22d131d5784258529 -Author: Guillaume Smet -Date: Thu Aug 20 15:18:56 2020 +0200 - - HHH-14160 Use a runtime used class for testing Bean Validation presence - -commit 4e868f0372940904b547ef9cd0e50f6637594e4c -Author: Nathan Xu -Date: Thu Aug 20 09:22:23 2020 -0400 - - HHH-14159 update 'hibernate.cache.query_cache_factory' config - -commit c778ccb3da36a448831749ce13eadaadc7ed8331 -Author: Nathan Xu -Date: Wed Aug 19 18:42:25 2020 -0400 - - HHH-14154 Incorrect SQL generated from Criteria API when concat() and function() methods are used together - -commit 82de2b0a3f5814634ed6bb7213b54cc3b411b477 -Author: Andrea Boriero -Date: Thu Aug 20 08:55:12 2020 +0100 - - Re-enabled additional tests - -commit 4806398eccd515e741199eb51bfec36c927eb52a -Author: Andrea Boriero -Date: Thu Aug 13 09:34:47 2020 +0100 - - EmbeddedIdentifierMappingImpl implements SingleAttributeIdentifierMapping - -commit 638d1b2d4681ca36bbbe31a5f88fb24efbec54cd -Author: Andrea Boriero -Date: Wed Aug 19 13:53:01 2020 +0100 - - Implemented CollectionElementLoaderByIndex - -commit 2cd869c73bc9b21a0f67f2fe55c063a7ffa203b3 -Author: Andrea Boriero -Date: Tue Aug 18 15:05:03 2020 +0100 - - Fix NPE with empty PersistentList - -commit 520cb95fa6ba661ba3205b34c1eca5f5ccbd6186 -Author: Andrea Boriero -Date: Tue Aug 18 09:20:04 2020 +0100 - - Fix runtime model build error - -commit 38753afab6f8e8955036b9c42a87b24de8e7213c -Author: Andrea Boriero -Date: Fri Aug 7 08:22:03 2020 +0100 - - Embedded collection member of and Embeddable parameter binding - -commit 7e87deb3492d13c2a28b9d4e652cb17d6d4953d8 -Author: Andrea Boriero -Date: Thu Aug 6 12:59:42 2020 +0100 - - Fix @manyToMany member of query - -commit bd3775b1149988a35bf80243d58cda0812f89bab -Author: Andrea Boriero -Date: Thu Aug 6 10:31:33 2020 +0100 - - PluralAttributeMapping, add associate primary table join only when necessary - -commit bdc1130f00a378603a0263d8f2102774b5bf072c -Author: Andrea Boriero -Date: Wed Aug 5 14:04:04 2020 +0100 - - Add @ManyToMany member of test - -commit 34a5274b3fac4344092c54354e169cca76823161 -Author: Andrea Boriero -Date: Wed Aug 5 14:11:04 2020 +0100 - - Fix issue with DatabaseSnapshotExecutor not returning the correct array - -commit 45328a574bac14bc6b290d6a1a9e37044a90f7c6 -Author: Andrea Boriero -Date: Tue Aug 4 07:06:05 2020 +0100 - - Implement member of predicate for OneToMany association and Entity parameter binding - -commit 5ac6ab2751bee3d06de5d2332f06c7e75cbf79ab -Author: Andrea Boriero -Date: Wed Jul 29 15:31:16 2020 +0100 - - Implement member of predicate for collection element - -commit 59415fc190cc9f57f5eb4cd3e9c9b977fd91ce0d -Author: Steve Ebersole -Date: Wed Aug 19 09:12:44 2020 -0500 - - ResultSet mapping - - - Completed handling for hbm.xml resultset mappings - -commit 2ab372027ec10e1189f299d6e673ca1a7bf62a51 -Author: Nathan Xu -Date: Tue Aug 18 11:26:32 2020 -0400 - - HHH-14153 reserve end-of-line chars in MultiLineImportExtractor - -commit 203738bbf56ee0cfb241dea2a2dec36a3e47a73d -Author: Christian Beikov -Date: Tue Aug 18 16:12:45 2020 +0200 - - Update the maven-repo-auth gradle plugin - -commit e1b821c6fb10e5ffe2ffcaad9209952d34d18969 -Author: Christian Beikov -Date: Tue Aug 18 11:38:20 2020 +0200 - - HHH-14156 - handle all H2 versions properly regarding tuple in subquery syntax - -commit be64851feee5c9dd2f013e31954cc6c309b4568c -Author: Nathan Xu -Date: Mon Aug 17 10:06:30 2020 -0400 - - HHH-14156 IN subquery predicate with entity aliases produces wrong SQL "too few columns in subquery" - -commit f8008f74b27c8eae3d192fa82c4dc6427b0bf68c -Author: Andrea Boriero -Date: Tue Aug 18 09:39:11 2020 +0100 - - Fix EntityResultTests compilation error - -commit 00d9c12f057bd4157d7f25e77c7aad13490897fd -Author: Nathan Xu -Date: Thu Aug 13 14:20:49 2020 -0400 - - HHH-3326 fix temp table collation issue for SQLServer dialect - -commit 626031f31c69dd183e4696b32bdbf686ca74886b -Author: Steve Ebersole -Date: Fri Aug 14 15:38:07 2020 -0500 - - ResultSet mapping - - - Implemented support for embeddable (composite) fetch paths - -commit 2050e366fee3b9c30e9e4d6c40209d97152392bb -Author: Steve Ebersole -Date: Thu Aug 13 14:38:43 2020 -0500 - - ResultSet mapping - - - Tests for value conversions - `@Enumerated`, `AttributeConverter`, `@Temporal`. It worked already - -commit 996e6b3b1f987656669d5dd86d984c8a8dea318e -Author: Steve Ebersole -Date: Wed Aug 12 23:56:45 2020 -0500 - - ResultSet mapping - - - Tests for discriminator inheritance. It worked already - -commit b7eed1842c6c27e4c9b542ecaf0b870353ed5c7d -Author: Steve Ebersole -Date: Wed Aug 12 16:17:51 2020 -0500 - - ResultSet mapping - - - Support for implicit and mixed attribute mappings for `@EntityResult` - -commit fe3f27a73392518d63fcbc59fd7dab123f034962 -Author: Sanne Grinovero -Date: Wed Aug 12 11:21:30 2020 +0200 - - HHH-14149 Improve efficiency of LazyAttributesMetadata#getLazyAttributeNames - -commit b744d7891cd67aba2f553992f31d3537bd74ef0d -Merge: 4768db9c5e fb6bb820f1 -Author: Andrea Boriero -Date: Wed Aug 12 10:21:46 2020 +0100 - - Merge remote-tracking branch 'upstream/master' into wip/6.0_merge_50 - -commit 4768db9c5e58ae4a19b1855fcad3166de64c8bae -Author: Andrea Boriero -Date: Wed Aug 12 09:48:21 2020 +0100 - - Fix errors after merge with master - -commit de3359537f5908fc05978ec236ac531e1c639fb0 -Merge: 4ad246536f f270f688e6 -Author: Andrea Boriero -Date: Wed Aug 12 09:42:28 2020 +0100 - - Merge remote-tracking branch 'upstream/master' into wip/6.0_merge_49 - -commit fb6bb820f1feed72f1bbdf497729ef3d1a28ba48 -Author: Sanne Grinovero -Date: Wed Aug 12 10:21:21 2020 +0200 - - HHH-14150 Upgrade to Byteman 4.0.13 - -commit cd7823a549d4b1ad1b26a9eb5a603726ae0df744 -Author: Jay Paulsen -Date: Wed May 1 17:08:16 2019 -0500 - - HHH-13380 Test for the issue - -commit 1d5189820295422163f2a08411d2b0571aeec933 -Author: Sanne Grinovero -Date: Tue Aug 11 20:11:10 2020 +0200 - - HHH-13380 Bytecode enhanced entities might throw LazyInitializationException from custom equals/hashcode implementations - - Apparently we trigger the need to invoke equals/hashcode methods on managed entities just before the Session is attached to the BytecodeLazyAttributeInterceptor - -commit 4ad246536ff6f9e6f5e47e63e67c4ed323410557 -Author: Steve Ebersole -Date: Mon Aug 10 13:43:01 2020 -0500 - - ResultSet mapping - - - Basic working support for `@EntityResult` - -commit f270f688e6b44c16d215e51c8126a04b4b2932b1 -Author: Falko Modler -Date: Wed May 27 18:22:54 2020 +0200 - - HHH-14144 Explicitly set localization assumptions for the build and testsuite - -commit 509db7cc795bb444389c318c2c408cf428a109e5 -Author: Andrea Boriero -Date: Mon Aug 10 11:47:17 2020 +0100 - - HHH-14126 Add CockroachDB to DefaultDialectSelector and update documentation to mention the new dialect - -commit e8f310a65973638a509f1ce0fef1c6bb1440b31e -Author: Oliver Breidenbach -Date: Fri Jul 17 12:17:17 2020 +0200 - - HHH-14109 Use 'in expression count limit' if calculated count is greather than 'in expression count limit' - -commit 84b3167f260f4d40e474d1a40aa41951c365bf04 -Author: Nathan Xu -Date: Fri Jul 31 19:14:55 2020 -0400 - - HHH-14133 fix obvious example code error for 'second level cache' in user guide - -commit a2295903450088a7c09dd0945007ab9d1445365f -Author: Andrea Boriero -Date: Mon Aug 3 10:20:49 2020 +0100 - - HHH-14129 Bidirectional relationship with @NotNull fails to save - -commit 358f71370038b7c7cfb61d84a8e83e85ec29c222 -Author: Andrea Boriero -Date: Mon Aug 3 08:33:04 2020 +0100 - - HHH-14129 Add test for issue - -commit 212ba0fb33088949770fc59ca1bb954383dcde92 -Author: Sanne Grinovero -Date: Mon Aug 10 11:22:47 2020 +0200 - - HHH-14143 Detect illegal concurrent usage of LogicalConnectionManagedImpl - -commit 5ec07faffddb9f2265e0dd04298ce42d9e1c1445 -Author: Gavin King -Date: Fri Aug 7 19:36:20 2020 +0200 - - HHH-14142 Make constructor of StatelessSessionImpl public - - needed by Hibernate Reactive, see: - - https://github.com/hibernate/hibernate-reactive/pull/310 - https://hibernate.atlassian.net/browse/HHH-14142 - -commit b1e8f64bda3e2280fc76d03e91412a981290108b -Author: Steve Ebersole -Date: Fri Aug 7 16:40:57 2020 -0500 - - ResultSet mapping - - Split handling of result / fetch builders created from: - complete:: Cases where we completely know the builder graph up-front - dynamic:: Cases where the builder graph is generated at runtime - -commit 283c3fefb55e690c9bdce2b1d3ba421c49c7b859 -Merge: bcf995f84f 6da11f4c2a -Author: Andrea Boriero -Date: Fri Aug 7 11:23:44 2020 +0100 - - Merge remote-tracking branch 'upstream/master' into wip/6.0 - -commit 6da11f4c2a3081ef99fe6bbad2feb99364405d59 -Author: Sanne Grinovero -Date: Thu Aug 6 17:46:01 2020 +0200 - - HHH-14137 Some more string check performnance optimisations - -commit 5d4e7d09277ba59337590c64d7dad97c90488434 -Author: Sanne Grinovero -Date: Wed Aug 5 16:24:49 2020 +0200 - - HHH-13974 Test efficiency improvements - -commit d19bb536ef57097c03662e1f1bea67cd3a3d5054 -Author: Michael Spahn -Date: Thu Apr 23 16:27:26 2020 +0200 - - HHH-13974 FlushMode set through SessionBuilder was never applied - -commit 0ee25a416d99c72110f23ad1efa41da83e760932 -Author: Ihar Sadounikau -Date: Mon Aug 3 19:47:28 2020 +0200 - - HHH-14137 Empty String check performance improvements - -commit bcf995f84fa657395e5368ace03b4e81e924ca31 -Author: Steve Ebersole -Date: Thu Jul 30 14:18:57 2020 -0500 - - ResultSet mapping - - - support for dynamic instantiations of scalar values. This is all JPA defines support for wrt `@ConstructorResult` - - support for mixed result mappings, including dynamic instantiations which JPA says is not legal. We support this in HQL also - -commit 8db97094082e7d20303408e3d9ecb6a0ab02ca1d -Author: Andrea Boriero -Date: Tue Jul 28 18:32:34 2020 +0100 - - Fix @ElementCollection + @OrderBy with Inheritance - -commit b9612247f5eeaaff8bfc3fb8d92466e35d89b9b0 -Author: Andrea Boriero -Date: Fri Jul 24 16:08:39 2020 +0100 - - Fix PluralAttributeMapping#findSubpart for elementDescriptor instanceof EmbeddedCollectionPart - -commit b26b397d5956c3ca8f548efb6f12645118918eca -Author: Andrea Boriero -Date: Fri Jul 24 15:37:42 2020 +0100 - - Implemented @Parent - -commit d3978a0871178067cdde9bb9b234307ea259da1a -Author: Andrea Boriero -Date: Thu Jul 23 10:14:22 2020 +0100 - - Fix various issues with @ElementCollection - -commit d246a4b4602c4b79446d227eb572858732af5d75 -Author: Andrea Boriero -Date: Thu Jul 30 18:40:38 2020 +0100 - - fix issue with not compiling tests - -commit 798f327f680b144eae6e530286d10c4c3759e65f -Author: Andrea Boriero -Date: Thu Jul 30 18:32:38 2020 +0100 - - Revert "fix issue with not compiling tests" - - This reverts commit fc914ea647e92fe1e82d74f4ee5d566c4b29f3dd. - -commit 842c4f18c91d2ada179c153ecd12e318e59ae78f -Author: Andrea Boriero -Date: Tue Jul 21 13:37:59 2020 +0100 - - Throw MultipleBagFetchException when trying to fetch multiple bags - -commit fc914ea647e92fe1e82d74f4ee5d566c4b29f3dd -Author: Andrea Boriero -Date: Thu Jul 30 17:48:07 2020 +0100 - - fix issue with not compiling tests - -commit 1a6b01a2a81ecb253542e4d72533c1a5c5d75545 -Author: Andrea Boriero -Date: Wed Jul 22 14:37:14 2020 +0100 - - Add version to @SkipDialect and @RequiresDialect and re-enabled additional tests - -commit 61cd51a4c8bc7ea712481e5c86b54f60b9fafd08 -Author: Nathan Xu -Date: Mon Jul 20 20:12:04 2020 -0400 - - get rid of javassist - -commit 26339598a54ea737f9050f5b612abd9f48078e1f -Author: Andrea Boriero -Date: Fri Jul 17 10:23:44 2020 +0100 - - Resolved issue with DependandValue resolution - -commit cb2a2bbd58ef394d9f086e5193b864cd6469a47c -Author: Andrea Boriero -Date: Fri Jul 17 10:36:17 2020 +0100 - - Re-enabled additional tests - -commit 76089ae151529184696c05ec6ed752d623771f79 -Author: Nathan Xu -Date: Fri Jul 3 11:25:35 2020 -0400 - - enrich CollectionHelper and make more use of it in existing code - -commit 5b22f3f9d4c44311b2163c946af7ca18939c3239 -Author: Nathan Xu -Date: Thu Jul 2 08:00:17 2020 -0400 - - fix 'final' entity class creating ProxyFactory issue - -commit 40575125f18fddae7da90e916b06b36efd1a23f5 -Author: Nathan Xu -Date: Sat Apr 25 16:32:15 2020 -0400 - - implement @Formula - -commit 9323d426f15279645dd37876810236ffd70fbce0 -Author: Yoann Rodière -Date: Wed Jul 29 11:38:51 2020 +0200 - - HHH-14124 Test that the FETCH entitygraph semantic overrides EAGER associations to LAZY for all results - -commit 1d965227c44b20597fc19d6ca6aa690753bf7324 -Author: Yoann Rodière -Date: Wed Jul 29 11:38:05 2020 +0200 - - HHH-14124 Test that the FETCH entitygraph semantic overrides EAGER associations to LAZY - -commit 6f6874b8cfcfe2632f8be987d8dc5c7e79265bc4 -Author: Yoann Rodière -Date: Wed Jul 29 13:23:52 2020 +0200 - - HHH-14124 Avoid too many list allocations when hydrating query results - - I suspect the original goal of having a single list of hydrated objects - for all rows was to avoid instantiating one list per row, but we did - just that in the fix in the last commit. - - This introduces a hack to signal that we're starting to process a new - row while still keeping a flat, single-list structure: we inserting - null elements in the list of hydrated objects. - - This is admittedly very ugly, but it's the only solution I can come up - with if we want to keep the number of memory allocations similar to what - we used to have. And hopefully this code will disappear in ORM 6.0. - -commit bc26c564a4087ba4dbfda15b591a0f6d6d7727f3 -Author: Yoann Rodière -Date: Wed Jul 29 13:13:06 2020 +0200 - - HHH-14124 Work around side-effects of TwoPhaseLoad.initializeEntity - -commit e10992e4fc5268a3b5cb12dc8a4f3bc2e293efb3 -Author: Steve Ebersole -Date: Wed Jul 29 12:47:06 2020 -0500 - - oops - -commit dc85c75bce52d0744bd71b63b9d79bae80b4219c -Author: Steve Ebersole -Date: Wed Jul 29 12:32:11 2020 -0500 - - Named Query javadoc - -commit 704896614d15617c235e2ec3b7c092e4026d2cb6 -Author: Steve Ebersole -Date: Wed Jul 29 11:58:27 2020 -0500 - - Support for JPA `SqlResultSetMapping`, both in terms of: - - - creating memento instances for each mapping and storing into repository for runtime access - - applying to native-queries - - Only support for column results is implemented atm since only scalar results are implemented for native-query - -commit bbe3a6b0ad8f9d0d946dfabe85245951678edc0f -Author: Steve Ebersole -Date: Tue Jul 28 14:09:54 2020 -0500 - - NativeQuery support - - - parameter handling - -commit 5f7c139f7eec86726f9a8dee94ff3e4c9dbe7d12 -Author: Steve Ebersole -Date: Tue Jul 28 11:26:25 2020 -0500 - - NativeQuery support - - - `NativeQuery#addAttributeResult` - -commit 671250afa6b6884980aa9c987771c847d125ccb4 -Author: Steve Ebersole -Date: Mon Jul 27 16:58:10 2020 -0500 - - NativeQuery support - - - javadoc - -commit 2f8f04747b5a4555836d5b7e53da204c2fdaf022 -Author: Steve Ebersole -Date: Mon Jul 27 16:44:22 2020 -0500 - - NativeQuery support - - - support for `#addScalar(Class,AttributeConverter)` - - support for `#addScalar(Class,Class)` - - fixed problem with mapping of converted enums - -commit 3b210c493ffc64ec865a7ce0f31d4547e7e73f42 -Author: Steve Ebersole -Date: Thu Jul 23 16:07:36 2020 -0500 - - NativeQuery support - - - support for `#addScalar(Class)` - -commit 20273b81ee623d74d4c3d8efed2e7f2ab2f79c4e -Author: Oliver Saggau -Date: Sun Jun 14 15:12:20 2020 +0200 - - HHH-14071 Add test cases for issue - -commit f8fe50ad09032728c7475dc668f01fded167b1ee -Author: Oliver Saggau -Date: Sun Jun 14 15:14:07 2020 +0200 - - HHH-14071 Fix binding for FetchProfile for OneToOne(mappedBy=...) associations - -commit e60299c440babb070aa4f8f424c6d1623970cd68 -Author: Andrea Boriero -Date: Sat Jul 25 15:31:52 2020 +0100 - - HHH-13724 Fix failing tests - -commit 7dba4c2a618b1e0e960a204d590a8207aa5267e4 -Author: Andrea Boriero -Date: Sat Jul 25 06:51:39 2020 +0100 - - HHH-13724 Add matrix configuration - -commit 0b1072a8a40dcf3c2758b0c9b889230554e616cd -Author: Andrea Boriero -Date: Sat Jul 11 16:04:01 2020 +0100 - - HHH-13724 CriteriaLiteralWithSingleQuoteTest#testLiteralProjectionAndGroupBy add @SkipForDialect for CockroachDB Dialect - -commit 4655bdbe1251e426242c3a5d077d7a204e8bb8aa -Author: Rafi Shamim -Date: Mon Nov 11 14:29:30 2019 -0500 - - HHH-13724 Add CockroachDB dialects and configs for testing - -commit 4df79861089a5b3c49833268df1e8c92ac6803ad -Author: Andrea Boriero -Date: Mon Jul 27 11:05:36 2020 +0100 - - HHH-13410 - Fix Oracle failing test - -commit 636ef89fcf24b43c53629746efe9809f3d843f14 -Author: Nathan Xu -Date: Sat Jul 25 13:33:33 2020 -0400 - - HHH-14116 Exception when fetch joining a non-collection when selecting non-query-root - -commit 3e07791683d95db0952fcc16f60632f5fbcada46 -Author: Gail Badner -Date: Tue Jul 21 17:30:42 2020 -0700 - - HHH-14112 : Invalid Pagination COUNT query generated with @Inheritance(strategy = InheritanceType.JOINED) - -commit 20ad230f6d106a954dd4b00ae3e5f45ca90c5fd0 -Author: Andrea Boriero -Date: Fri Jul 24 07:51:00 2020 +0100 - - Fix compilation error after merge - -commit 476ffb4299520e0b3969946cdc1bbc04e46e968c -Merge: 3c7650ba65 fb40f8edc0 -Author: Andrea Boriero -Date: Fri Jul 24 07:17:21 2020 +0100 - - Merge remote-tracking branch 'upstream/master' into wip/6.0_merge_48 - -commit 3c7650ba65c2530f5fa5fbc8db4d0804defef568 -Author: Andrea Boriero -Date: Fri Jul 24 06:58:10 2020 +0100 - - Fixed compilation error - -commit 5dded5de7c6359ee94e12d4154650d0fb89a8116 -Author: Steve Ebersole -Date: Thu Jul 23 12:26:01 2020 -0500 - - NativeQuery support - - - initial working support - simple scalar queries - -commit fb40f8edc04edf9e47b7d95aa3b0a77d03dda57d -Author: Gail Badner -Date: Tue Jul 21 17:30:42 2020 -0700 - - HHH-14103 : Add test cases showing that an entity's transient attribute can be overridden to be persistent in entity subclasses - -commit ff7aa5328f64619b8e2f565a6a3f46a2c56ff8c5 -Author: Gittenburg -Date: Sun May 24 12:35:03 2020 +0200 - - HHH-14041 - H2Dialect: fix referential integrity constraint constraint name extraction - -commit bfef0df089f364e838119bf99eaa8f3973812518 -Author: gajendra.jatav -Date: Mon Jul 20 13:05:44 2020 +0530 - - HHH-13410 Adding test case - -commit faf39280430381a1bc73410c807c5c6bddf6198e -Author: gajendra.jatav -Date: Sat Jul 18 16:03:04 2020 +0530 - - HHH-13410 Option "order_inserts = true" causes FK Violation when inserting with a Unidirectional Relations between 4 Entities - -commit 61ed4bf88db9eebc4de9aac5ef923ad7cb693054 -Author: Colm O hEigeartaigh -Date: Tue Jul 7 12:01:06 2020 +0100 - - HHH-14100 - Update c3p0 to 0.9.5.5 - -commit f1243a328505d2d83ef1516a8edc8041e6e0c5d3 -Author: katiforis -Date: Thu Jul 9 09:19:11 2020 +0300 - - HHH-14093 Make StatefulPersistenceContext#registerInsertedKey and StatefulPersistenceContext#wasInsertedDuringTransaction use HashSet instead of ArrayList - -commit 677a65a8cf1bcc3199a43285f626f8b6930c194a -Author: Sanne Grinovero -Date: Mon Jul 20 23:16:33 2020 +0200 - - HHH-13926 Test for the issue - -commit c8fabbb2b05e6bba36c5ce0df3f60ade78ba47af -Author: Sanne Grinovero -Date: Tue Jul 21 10:35:33 2020 +0200 - - HHH-13926 Remove no longer used parameters - -commit 3a2283335ea79bea2af71e06e0aa21164e921f7f -Author: Sanne Grinovero -Date: Thu Jul 9 15:07:05 2020 +0100 - - HHH-13926 Propagate the original SQL to the Expectation so it can be logged - -commit 6c787d27bd7d6298a5c45e42f14202e92ffb799b -Author: Sanne Grinovero -Date: Thu Jul 9 14:43:47 2020 +0100 - - HHH-13926 Extract JdbcObserver lookup from the batching loop - -commit 25fc3e2dce419e0343cb71f186975768fe9c8691 -Author: Andrea Boriero -Date: Mon Jul 20 15:49:25 2020 +0100 - - Inhetirance : Fix stack overflow for Queryable#findSubPart and wrong value for Lockable#getRootTableName() - -commit ba830d5ad5d79ed0f824f88b7cefec0e4196125d -Author: Andrea Boriero -Date: Mon Jul 20 11:05:50 2020 +0100 - - Fix merge compilation error - -commit 4550c70d15348f9ac56d0a3621f087e2cb0c0038 -Merge: 3fde31a61d 066c1d4ab7 -Author: Andrea Boriero -Date: Mon Jul 20 10:50:17 2020 +0100 - - Merge remote-tracking branch 'upstream/master' into wip/6.0_merge_47 - -commit 3fde31a61d55462c56dcdc29607eb18439d33c77 -Author: Andrea Boriero -Date: Mon Jul 20 10:03:10 2020 +0100 - - Minor fixes - -commit 17dacc3592266666bfd6461e915c8e5f72eaf0b1 -Author: Andrea Boriero -Date: Fri Jul 17 14:22:51 2020 +0100 - - Add Discriminator FilterPredicate to TableGroupJoin predicate - -commit 8c494a6f7fc7bc225e91dcef853bbfee37bdbc61 -Author: Andrea Boriero -Date: Fri Jul 17 08:42:37 2020 +0100 - - Re-enabled additional tests - -commit 3ba826e1c85f968b01ba0a68911a097eb4e3faab -Author: Andrea Boriero -Date: Thu Jul 16 17:42:06 2020 +0100 - - Fix select child of joinsubclass inheritance - -commit b06be7ff6d47735594c39295e5030f3e4a975048 -Author: Andrea Boriero -Date: Sun Jul 12 13:05:18 2020 +0100 - - Re-enabled additional tests - -commit 01b24089c28f997b0be4e85bd7030ab0086110ab -Author: Andrea Boriero -Date: Thu Jul 9 18:21:06 2020 +0100 - - Fix UnionSublcass polymorphic associations - -commit 5b82cd59d7f3771619b915a7e5f58e7890b91e04 -Author: Andrea Boriero -Date: Mon Jul 6 10:23:32 2020 +0100 - - Re-enabled additional test - -commit 99d4cdece6a0c263d505804f9640393270dbbe00 -Author: Andrea Boriero -Date: Fri Jul 3 16:44:26 2020 +0100 - - Re-enabled additional test - -commit 7470138e0f3e4d4466a8378b625f37ef4e1ee0bc -Author: Andrea Boriero -Date: Thu Jul 2 17:58:36 2020 +0100 - - Re-enabled additional Inheritance related tests and fixed issues with initializer for subclasses - -commit 923a7d8d07c7db48db13beaa211bfcb3dabe94d4 -Author: Andrea Boriero -Date: Thu Jul 2 17:00:10 2020 +0100 - - Fix wrong determination of Subclass EntityPersister - -commit d389354f040f86dc2dcbfea7b730f100f0e88e20 -Author: Andrea Boriero -Date: Thu Jul 2 13:15:00 2020 +0100 - - Re-enabled additional tests - -commit 55960167bcd35778e6f50f5ce894d03495f549fb -Author: Andrea Boriero -Date: Thu Jul 2 10:04:03 2020 +0100 - - Fix issue with query use subclass attribute in join - -commit bfd15ec0e8b416bd553cbf5df0b8ca0007761f26 -Author: Andrea Boriero -Date: Wed Jul 1 19:04:14 2020 +0100 - - Re-enabled additional test - -commit 61e141cabfb9265e14d24c33196366a95fced962 -Author: Andrea Boriero -Date: Wed Jul 1 17:02:13 2020 +0100 - - Fix issue with join subclass and JoinTable resolution - -commit 310abfcd953f7178019baa9033e2355f97965ebc -Author: Andrea Boriero -Date: Mon Jun 29 13:36:44 2020 +0100 - - Re-enabled additional tests - -commit 3d4cd3f7b3331415f30da523ca9fe60adc1fc77c -Author: Nathan Xu -Date: Sun Jun 28 14:24:12 2020 -0400 - - port entity graph legacy testing cases - -commit 066c1d4ab715c427f2ca1df5b912d00c0a9080ca -Author: Yoann Rodière -Date: Fri Jul 17 13:07:29 2020 +0200 - - HHH-14111 Upgrade to forbiddenapis 3.0.1 - -commit 12127b2272250bef0d24d5ba22654d829efaced1 -Author: Yoann Rodière -Date: Fri Jul 17 13:04:56 2020 +0200 - - HHH-14111 Ensure Groovy compilation tasks target the same JDK version as the rest of the project - -commit 5cd40ef96dfae73454769ff7f3330bf79c95beea -Author: Yoann Rodière -Date: Fri Jul 17 12:57:35 2020 +0200 - - HHH-14111 Upgrade to biz.aQute.bnd (OSGi plugin) 5.1.1 - -commit 86578a169887721bbd2ebd6e92b329926fbdae42 -Author: Yoann Rodière -Date: Fri Jul 17 12:50:36 2020 +0200 - - HHH-14111 Upgrade to Gradle 6.5.1 - -commit 9322273f399361d290c3b788dae3ca0b783f56e9 -Author: Andrea Boriero -Date: Mon Jul 20 09:16:09 2020 +0100 - - Fix issue with ParameterMetadataImpl when positionalQueryParameters is null - -commit b6ed4b6629574553150cd8ae194635fd62ef75d5 -Author: Andrea Boriero -Date: Mon Jul 20 09:15:29 2020 +0100 - - Fix issue with BinaryArithmeticExpression type resolution - -commit 3e3db6d352883293a1cbcaeb342bb63493309cc2 -Author: Andrea Boriero -Date: Mon Jul 20 09:08:05 2020 +0100 - - Fix SessionImpl#buildLockOptions causing NPE - -commit 06c78087ff66f6d2f24408169da5510f2e88a549 -Author: Gail Badner -Date: Mon Jul 13 13:59:35 2020 -0700 - - HHH-12268 : LazyInitializationException thrown from lazy collection when batch fetching enabled and owning entity refreshed with lock - -commit f5d710b97de41e0d89d807f756bae3cce72abd1c -Author: Gail Badner -Date: Mon Jul 13 13:58:48 2020 -0700 - - HHH-12268 : Added test case - -commit 673d3600b874a6a4ed7fbf88602b40976f8dfdc0 -Author: Andrea Boriero -Date: Wed Jul 15 17:42:41 2020 +0100 - - HHH-14108 PADDED and DYNAMIC Batch loading strategies not compatible with the Enhanced Proxy feature - -commit 538689bcd493baa10ba0230e1ad76570985e5e35 -Author: Andrea Boriero -Date: Wed Jul 15 13:34:53 2020 +0100 - - HHH-14108 Add test for issue - -commit 295eb870a3d4d424a8d8973fc8279d4883c12f76 -Author: Andrea Boriero -Date: Tue Jul 14 21:03:02 2020 +0100 - - HHH-13214 Delete re-firing SQL from previous calls - -commit 3fcd4a00a2f75ea8ce95839c3951459e5b9108dd -Author: Andrea Boriero -Date: Mon Jul 6 15:02:54 2020 +0100 - - HHH-13214 Delete re-firing SQL from previous calls - -commit b2ab0b7c718853fde631cd75a110351c11c2b8d3 -Author: lining <2016220101025@std.uestc.edu.cn> -Date: Fri Apr 17 03:39:31 2020 +0800 - - HHH-13214 Delete re-firing SQL from previous calls - -commit 3159c8ff78f5020911dfea4e3c16b45b629e2f60 -Author: Jens Borrmann -Date: Tue Jul 14 11:10:02 2020 +0200 - - HHH-14106 - Return entry from `#parentsByChild` in `StateFulPersistenceContext#getParentsByChild` - -commit 007f609210fa4bdf0ec7ec45a0f782ba9f12759e -Author: Xavier Dury -Date: Mon Apr 6 09:17:34 2020 +0200 - - HHH-13931 MissingFormatArgumentException in JpaCompliantLifecycleStrategy.BeanImpl - -commit 5952c0abc3357a7346c4d12e4b13e1103926a89e -Author: Nathan Xu -Date: Sat Jul 4 07:20:56 2020 -0400 - - HHH-14097 fix bug that redundant SQLs might be issued for 'FETCH' entity graph - -commit 9ba18b8c5d1a55b6637dda5e6b3e7e5d605f14d2 -Merge: 843813cd5a 629f847b7c -Author: Andrea Boriero -Date: Tue Jul 7 15:43:17 2020 +0100 - - Merge remote-tracking branch 'upstream/master' into wip/6.0_merge_46 - -commit 629f847b7ceeb1874a81436ea3548c6a2e0aee71 -Author: Sanne Grinovero -Date: Fri Jul 3 13:04:15 2020 +0100 - - HHH-14096 Transform the XMLHelper copy for Envers into a private internal utility - -commit 694b5ecaadb4f09df765a201b99ae3e382358e7c -Author: Sanne Grinovero -Date: Fri Jul 3 13:01:18 2020 +0100 - - HHH-14096 Adapt the Hibernate Envers module to use its private copy of XMLHelper - -commit 1683bbe900c3bc5b03036850b7abf58deaa50179 -Author: Sanne Grinovero -Date: Fri Jul 3 12:49:52 2020 +0100 - - HHH-14096 Moving the XMLHelper from ORM core into testsuite helpers - -commit 92da3842c8cccf9c495a6188ad650d7e9b9d5450 -Author: Sanne Grinovero -Date: Fri Jul 3 09:07:52 2020 +0100 - - HHH-14096 Remove unused import for deprecated type XmlDocument and dom4j - -commit d1b44560ed5bf1b183fa6244368deeb704fccc2c -Author: yuanhang zheng -Date: Thu Jun 11 17:00:18 2020 +0800 - - HHH-14059 Cannot use full qualified enum name which has two uppercase alphabet prefix - -commit d17f19d36496e69a7599fe78ae4eb492df768aa8 -Author: Emmanuel Duchastenier -Date: Thu Jul 2 11:12:42 2020 +0200 - - HHH-14098 Query plan cache query-level statistics Documentation, used getQueryPlanCacheMissCount instead of getPlanCompilationTotalMicroseconds - -commit 4b3171c7e1749ba8385cf0b6f974044ee271eba8 -Author: Lefteris Katiforis -Date: Sun May 17 10:51:54 2020 +0300 - - HHH-14021 - Add Java Type byte to JDBC Type TINYINT mapping as described in specification in TABLE B-2. - -commit 843813cd5a74c4d1a3c9e2f19fbc66e350ce7929 -Author: Andrea Boriero -Date: Thu Jul 2 11:11:07 2020 +0100 - - Re-enabled more tests - -commit 468989a0f3bfdc6f59c926d75f780c997ba2a655 -Author: Andrea Boriero -Date: Mon Jun 29 16:43:24 2020 +0100 - - ToOneAttibuteMapping, Do not consider the referencedPropertyName for the bidirectionalAttributeName determination - -commit 3c7a208b962ea0badb635869a6f2e69ba2b46e12 -Author: Andrea Boriero -Date: Thu Jun 25 15:28:25 2020 +0100 - - Removed unnecessary visitedNavigablePath from LoaderSelectBuilder and added bidirectionalPropertyName for circularity detection - -commit 6aefe00c1ead690b54d6ac9e5e2d24f936eea923 -Author: Andrea Boriero -Date: Thu Jun 25 16:40:20 2020 +0100 - - EagerCollectionFetch generates collection and index fetches twice - -commit dca850f5add24892722b6fd471076990911c7f3d -Author: Andrea Boriero -Date: Wed Jun 24 16:37:23 2020 +0100 - - Re-enabled additional tests - -commit d85bf402e3023f9b75bc4b2b1b9fde6b03326659 -Author: Andrea Boriero -Date: Wed Jun 24 16:17:45 2020 +0100 - - Re-enabled additional tests - -commit b84d41a66cad4773055e974649506bc8e9eeeee6 -Author: Andrea Boriero -Date: Wed Jun 24 15:00:00 2020 +0100 - - Re-enabled additional tests - -commit 3ad68d3f8850fbfbaf989c39ecda55a5c624986f -Author: Andrea Boriero -Date: Tue Jun 23 17:00:05 2020 +0100 - - Fix issue with circularity detection - -commit dfb3511923f008a49c9ceaa51b190b9f711d8835 -Author: Andrea Boriero -Date: Thu Jun 18 19:31:52 2020 +0100 - - Re-enabled additional tests - -commit 23ffe42b6c011d910e0b2d21a79da59e4606809b -Author: Andrea Boriero -Date: Thu Jun 18 16:43:19 2020 +0100 - - Fix joined subclass discriminator column determination - -commit 7fd6e4fbea4f069225c852078c51acf1bd633677 -Author: Andrea Boriero -Date: Wed Jun 17 18:29:19 2020 +0100 - - Fix issue with fetch a ManyToOne with join table using inner join - -commit cdc0e3f81769a313b75627b40fed6f5a90cc3a44 -Author: Andrea Boriero -Date: Wed Jun 17 18:28:13 2020 +0100 - - Re-enabled additional tests - -commit 79e52038971cd9e2eee44734a4d6dc51e650860a -Author: Andrea Boriero -Date: Wed Jun 17 16:45:17 2020 +0100 - - Re-enabled additional tests - -commit 567b6cc076c937cd87781c1e59a0d807f0e932b2 -Author: Andrea Boriero -Date: Wed Jun 17 11:26:18 2020 +0100 - - Re-enabled additional tests - -commit 2d0aad36b8087968ef0cf345aaa5de55cb16f47c -Author: Andrea Boriero -Date: Tue Jun 16 20:26:25 2020 +0100 - - Fix PluralAttribute manyToMany FK target part determination - -commit 47eee7cfe47c41d03ef8d388d809653e4c200a0a -Author: Andrea Boriero -Date: Thu Jun 18 17:09:44 2020 +0100 - - Re-enabled additional tests - -commit ead64b3ec98966ee7db2f33a3433d12fd2dc4d7c -Author: Andrea Boriero -Date: Tue Jun 16 09:06:29 2020 +0100 - - Add AssociationKey for bidirectionality detection - -commit 511d4d55cd67db07f8f268174eb601fe986cbed4 -Author: Andrea Boriero -Date: Thu May 28 15:04:13 2020 +0100 - - Add more tests - -commit 2bf36075a42e1fcb50a36f3f79c7e4275949e6ab -Author: Andrea Boriero -Date: Fri Jun 26 09:43:32 2020 +0100 - - Re-enabled additional tests and fixed issues with joined subclass inheritance with discriminator - -commit d0f891fca5b0f0c369cccafb5fb6b6b924d2aa7a -Author: Andrea Boriero -Date: Fri Jun 26 05:45:08 2020 +0100 - - Fix determine join type for subclasses - -commit 9d749a6608281ccb2515a04c888ece7c1e364273 -Author: Andrea Boriero -Date: Fri Jun 26 05:37:34 2020 +0100 - - Re-enabled additional tests - -commit b9c3dd1cf627b368fa3b09dd8e251693b5cf2d16 -Author: Andrea Boriero -Date: Wed Jun 24 15:38:13 2020 +0100 - - Fix issue with column Size determination - -commit 8bd63116d07260b616b25b4bddf68e2ae5bee14e -Author: Andrea Boriero -Date: Fri Jun 19 18:06:05 2020 +0100 - - HHH-14077 PostgreSQL, skip testLiteralProjectionAndGroupBy (PostgreSQL does not support literals in group by statement) - -commit eebf01fbf3c2550ee70cdc9c1b02b52e330c8c36 -Author: Andrea Boriero -Date: Fri Jun 19 12:38:32 2020 +0100 - - HHH-14077 CVE-2019-14900 SQL injection issue using JPA Criteria API - -commit d9a33bf405810b257cfd240c862ca0ab21a976b3 -Author: Andrea Boriero -Date: Fri Jun 19 12:33:25 2020 +0100 - - HHH-14077 Add test for issue - -commit 2250b7f84ffea11b109203f4543cb79a88a11e89 -Author: Nathan Xu -Date: Tue May 5 16:11:06 2020 -0400 - - implement 'NULLS (FIRST | LAST)' in HQL - -commit bbac6ed5717dc792c7154d84c135d5aeec7d2e6a -Author: Nathan Xu -Date: Thu May 7 15:39:05 2020 -0400 - - add a 'reverse' property (default to false) to RequiresDialectFeature annotation - -commit fc2051af715c1f416009d1051ba717263d08652e -Author: Steve Ebersole -Date: Fri May 29 15:14:31 2020 -0500 - - remove potential duplicated class loading in JpaMetamodelImpl - -commit fdc2112b1973f6ff820a0896bea1a0afb477886a -Author: Nathan Xu -Date: Sun Apr 26 20:30:16 2020 -0400 - - implement @RowId - -commit 4c856725f804677b724d26b270785d947c60cb69 -Author: Nathan Xu -Date: Tue Mar 17 18:01:06 2020 -0400 - - fix some logging performance issues - -commit 233b8daffba122c03a0c7bc0dfc1c7e25ad76804 -Author: Nathan Xu -Date: Thu Jun 11 00:13:44 2020 -0400 - - import entity graph parsing test cases - -commit 06605956f963132d7b4fc71449f2f0c9e9fcecb9 -Author: Nathan Xu -Date: Wed Apr 29 15:35:43 2020 -0400 - - enable legacy filter testing cases - -commit 604b594226355dc789586c40f1eee241aca259b5 -Author: Andrea Boriero -Date: Mon Jun 22 17:14:47 2020 +0100 - - HHH-14083 add task release must run after addVersionCommit task - -commit 34930bf0f0260e7a2d21eeacb05c11ee62e6db72 -Author: Andrea Boriero -Date: Mon Jun 22 16:44:15 2020 +0100 - - HHH-14083 add ciRelease dependency to bintray upload - -commit 766ed3f2bf6af5a302f6c51ceb00c50cfde8a896 -Author: Andrea Boriero -Date: Mon Jun 22 14:47:58 2020 +0100 - - HHH-14083 Fix issue with git command - -commit 4668466fd7e4f17f7be77631872a306141822ea9 -Author: Andrea Boriero -Date: Mon Jun 22 10:31:36 2020 +0100 - - Add changeLogFile task - -commit 1fcef3a63281acde06b7065a4c4d2526afc5d03c -Author: Yoann Rodière -Date: Thu Jun 4 08:07:01 2020 +0200 - - Enable automatic Maven Central sync when calling task bintrayPublish - - Copied from https://github.com/hibernate/hibernate-reactive/pull/246 - - Note you need to call the bintrayPublish task after calling - bintrayUpload, otherwise it won't work. - - So you will need to use something like this: - - ./gradlew bintrayUpload bintrayPublish -P PERSONAL_BINTRAY_USER=... -P PERSONAL_BINTRAY_API_KEY=... -P SONATYPE_OSSRH_USER=... -P SONATYPE_OSSRH_PASSWORD=... - -commit 1ad029c6d982e09a8d635b43b7fc6b4d68f4880f -Author: Yoann Rodière -Date: Wed Jun 3 11:08:04 2020 +0200 - - Push to github atomically and only if the release succeeds - -commit 02abce69fa0edf844f00e5d4fc20dacbe579be6d -Author: Yoann Rodière -Date: Wed Jun 3 10:52:16 2020 +0200 - - Add more precondition checks to release tasks - -commit 70721d80a7b7157d7a79a083089572491c67db9a -Author: Yoann Rodière -Date: Wed Jun 3 11:48:45 2020 +0200 - - Move the update to version.properties to a release task - - This is necessary if we want to check that the working tree is empty as - part of the release process (see next commit). - -commit 7dbd813996594c406cb4fd93a259bf3db661056d -Author: Yoann Rodière -Date: Wed Jun 3 10:19:12 2020 +0200 - - Use a less verbose syntax for git commands - -commit 5232df9686e8f1c6685d6709f5744deb85aa866f -Author: Yoann Rodière -Date: Wed Jun 3 10:16:19 2020 +0200 - - Fix incorrect message for the second commit during release - -commit 8363df3495189885638731cc84331fec4b199b9a -Author: Yoann Rodière -Date: Wed Jun 3 09:44:04 2020 +0200 - - Fix error detection in executeGitCommand - - 1. proc.consumeProcessErrorStream does not work correctly: it creates a - thread to asynchronously copy the content of the stream to the string - buffer, and does not provide any way to know when it's done. As a - result, sometimes the buffer is correctly filled in after - consumeProcessErrorStream returns, sometimes it's not. - 2. Checking stderr to know if there was an error is not a good idea: a - process can run just fine and give output on stderr (logs, - basically), and a process can fail without giving any output on - stderr. Checking the status code is more reliable. - -commit cfeee5059ba5bc29033d68119c0b552a37905ac2 -Author: Andrea Boriero -Date: Wed Apr 15 13:20:29 2020 +0100 - - Add gradle task to automate the CI release - -commit c44150d0d6e9fc352e78e12e1adac736081ee2aa -Author: Falko Modler -Date: Sun May 17 18:21:08 2020 +0200 - - HHH-14023 H2Dialect: adjust NUMERIC, DECIMAL & VARBINARY for 1.4.201+ - -commit b44b20ba113c17b6e5158c70226871a1a0a64845 -Author: Falko Modler -Date: Sun May 17 15:26:14 2020 +0200 - - HHH-14023 H2Dialect: SequenceInformationExtractorLegacyImpl for 1.4.201+ - -commit 467203e8c4e5f2467e7066aae5144eb8b59de449 -Author: Gail Badner -Date: Wed Jun 17 16:09:47 2020 -0700 - - HHH-14075 : Changes to loaders and TwoPhaseLoad to allow "internal" loading to be reused by hibernate-reactive - -commit 9756b0fba8c01f1edd26c058a853600b61afcdd3 -Author: Andrea Boriero -Date: Fri Jun 19 17:52:20 2020 +0100 - - HHH-14077 PostgreSQL, skip testLiteralProjectionAndGroupBy (PostgreSQL does not support literals in group by statement) - -commit bb9233472b76896af6a83df3b26ea0ccef7c16a1 -Author: Andrea Boriero -Date: Fri Jun 19 14:27:43 2020 +0100 - - HHH-14081 CompositeIdFkGeneratedValueIdentityTest and CompositeIdFkGeneratedValueTest failures on Oracle db - -commit 3f3c1ab50604ab9ba99e25d2016fb85f3ba9dcd4 -Author: Gail Badner -Date: Thu Jun 18 12:13:22 2020 -0700 - - HHH-14077 : CVE-2019-14900 SQL injection issue using JPA Criteria API - -commit c1771040c72de277a552d1340d61879ddb1d3f6a -Author: Gail Badner -Date: Thu Jun 18 11:49:09 2020 -0700 - - HHH-14077 : Added test case - -commit cfc1de9de6a2941903bff21538be33a6d02a53f9 -Merge: bf575ef065 180656e9f3 -Author: Andrea Boriero -Date: Tue Jun 16 08:23:55 2020 +0100 - - Merge remote-tracking branch 'upstream/master' into wip/6.0_merge_44 - -commit 180656e9f37f49cbdf55bdbdd667439e73fe4d5f -Author: Martin Vietz -Date: Sat Dec 14 01:28:49 2019 +0100 - - HHH-14064 - Fix documentation for schema-generation - -commit 5963dc7fe85aefaa280f9de46e7623b47003fe42 -Author: Réda Housni Alaoui -Date: Fri Apr 24 16:46:20 2020 +0200 - - HHH-13980 NullPointerException on AbstractEntityGraphVisitationStrategy.startingCollectionIndex - -commit bf575ef0657c3eeb6b84bcbec9180e65d125745c -Author: Steve Ebersole -Date: Fri May 29 15:14:31 2020 -0500 - - Prefer `FetchOptions` over `FetchStrategy` - -commit d3f6f469800a7bf5f36d2e07b5a5b3c5c89dbf99 -Author: Steve Ebersole -Date: Fri May 29 14:33:52 2020 -0500 - - renamed `SingularAssociationAttributeMapping` to `ToOneAttributeMapping` - -commit b06c341d8a82e888775ba7afa9f12f5f0abed55e -Merge: 26f6c9271a 6df82bb6a6 -Author: Andrea Boriero -Date: Fri May 29 15:01:19 2020 +0100 - - Merge remote-tracking branch 'upstream/master' into wip/6.0_merge_43 - -commit 26f6c9271a444cc9e0c3a144311ed42c1baca5c5 -Author: Steve Ebersole -Date: Thu May 28 15:56:20 2020 -0500 - - Added Initializer de-duplication handling - -commit 6df82bb6a66ed1d9356dda11856f8da9e8d5e4a1 -Author: Gail Badner -Date: Tue May 26 21:58:24 2020 -0700 - - HHH-14044 : Extract code from Loader into protected methods - -commit b9703e33d4abe9fbe7c34b1a25791dde9b947d5a -Author: Hannes Rosenögger <123haynes@gmail.com> -Date: Tue May 19 15:20:38 2020 +0200 - - HHH-14022 Revert HHH-13322 Fix Oracle dialect's introduced in 5.4.13 that is causing issues with sequence increment determination - -commit 0804de87b42e7a1a7284da8914b9c8ffcad5dd09 -Author: Jason Pyeron -Date: Sat Apr 25 10:53:05 2020 -0400 - - HHH-10956 reduced runtime complexity, added Component.getProperty(int) - - Component.getProperty(String) was looping and comparing, but we already now the position of the property - -commit 2db3ce26436dd6a735f89e9e133c0aecb3ecd3dd -Author: Andrea Boriero -Date: Fri Apr 24 11:06:07 2020 +0100 - - HHH-10956 an exception has to thrown when the composite key is an association and its value is null - -commit 114e16f64fd85afb91a5f724cd872741663651a3 -Author: Andrea Boriero -Date: Fri Apr 24 11:03:56 2020 +0100 - - HHH-10956 Add additional test - -commit cfcd2ac40fd0b83cfa9980cec1fbef882ba1b432 -Author: Andrea Boriero -Date: Fri Apr 24 09:47:31 2020 +0100 - - HHH-10956 Moved tests using GenerationType#IDENTITY into another class annotated with @RequiresDialectFeature(DialectChecks.SupportsIdentityColumns.class) - -commit 42b38b60cf31c43cae3aa95227749f5d87327a74 -Author: Jason Pyeron -Date: Wed Apr 22 20:16:44 2020 -0400 - - HHH-10956 put one line if in {} - -commit e37a8da5686e5967ed6016f959a9cf82a8443e12 -Author: Jason Pyeron -Date: Wed Apr 22 19:13:06 2020 -0400 - - HHH-10956 added more complext tests with self referential FK - - * known issue: HHH-13971, test marked as @Ignore - * added some output debugging to help developers review CI/CD logs - * 8 tests, 1 ignored, 0.745s duration - -commit e42fe94f65dba059cf7c2386c1d59db2dadb570f -Author: Jason Pyeron -Date: Wed Apr 22 18:15:11 2020 -0400 - - HHH-10956 fixed failed insertion with IdClass with partial identifier generation - - * regression introduced by HHH-4848 - * AbstractEntityTuplizer lines 179 and 311 formatting issues, preserved - * bug HHH-9662 blocks testing of Identity insertion - -commit da2b24b5989f06e6f441423fc3ce0ca531ae9ca8 -Author: Jason Pyeron -Date: Wed Apr 22 18:06:21 2020 -0400 - - HHH-10956 created test cases IdClass with partial identifier generatiod, all marked @FailureExpected - -commit 58fe82e7306913025229a70fb87bbfa818b27189 -Author: Andrea Boriero -Date: Fri May 29 07:42:39 2020 +0100 - - Revert "HHH-14022 Oracle-Dialect does not find Sequences outside User-Schema" - - This reverts commit ca0ae9bfad7865dfcb5ec25ec686331516cbc624. - -commit ca0ae9bfad7865dfcb5ec25ec686331516cbc624 -Author: varun.shrivastava -Date: Thu May 21 02:44:10 2020 +0200 - - HHH-14022 Oracle-Dialect does not find Sequences outside User-Schema - -commit c013ae12b75ee9d05da3230725d89b8ff3f98a9c -Author: Sanne Grinovero -Date: Wed May 27 18:22:54 2020 +0100 - - HHH-14047 Expose some methods of EntityManagerFactoryBuilderImpl to extensions - -commit 76e305ba758a035db57b34d6aff97d44767f4365 -Author: Sanne Grinovero -Date: Tue May 26 20:05:36 2020 +0100 - - HHH-14047 Allow customization of the StandardServiceRegistryBuilder by extending the EntityManagerFactoryBuilderImpl - -commit d7373a86bb2441566b92f5ce25ede13731b49aa6 -Author: Sanne Grinovero -Date: Wed May 27 22:13:10 2020 +0100 - - HHH-14046 Allow customizing the type of SessionFactory by changing the initial ServiceInitiator list - -commit 2baa5fccdcc7a4e13eecb19799c05e7474cddc69 -Author: Andrea Boriero -Date: Mon Apr 20 17:16:26 2020 +0100 - - HHH-13959 Add nullability and uniqueness for @OneToOne with @JoinTable - -commit 038b3ce4873f2025b5eb901fa2d525a2d6be9be5 -Author: Andrea Boriero -Date: Mon Apr 20 11:17:33 2020 +0100 - - HHH-13959 Add test for issue - -commit 1d2d67677f42ae963e5da36dbf90f833f910ffe9 -Author: gavinking -Date: Wed May 27 20:33:00 2020 +0200 - - HHH-14049 AbstractEntityPersister make three private methods protected for use in Hibernate Reactive - -commit b5edf6cabe221578fdfb92e59dbdf6a276f77fb5 -Author: gavinking -Date: Wed May 27 20:04:37 2020 +0200 - - HHH-14048 Expose lazy property fetching to Hibernate reactive - -commit 4074c39264091f2bb7b8ffd0b5ae01fd53016a3a -Author: Steve Ebersole -Date: Wed May 27 10:22:49 2020 -0500 - - system loggers - -commit 4d725e916c25bce5f05e3c6c5c57100f0a2cd629 -Author: Steve Ebersole -Date: Wed May 27 10:22:34 2020 -0500 - - minor - -commit 17152bfbba27c23c97cae763accf1430f0fce6ea -Author: gavinking -Date: Sun May 24 18:33:19 2020 +0200 - - expose a private field to Hibernate Reactive - - needed to support Criteria queries - -commit cc8aaab9add0a8a9f9078f908b1d69777f567df4 -Author: Andrea Boriero -Date: Thu May 21 12:58:47 2020 +0100 - - Fix multilineextractor erorr message when statements have no terminal chars - -commit 88c653f6e3b8c718ac299b00dcc1475a5b2b2b08 -Author: Andrea Boriero -Date: Thu May 21 11:50:14 2020 +0100 - - Clean up after merge - -commit 34fbba8815f55dcc8632db83f8842847ed33e2c4 -Merge: 57ebf48b45 50a5da07c1 -Author: Andrea Boriero -Date: Thu May 21 11:24:24 2020 +0100 - - Merge remote-tracking branch 'upstream/master' into wip/6.0_merge_42 - -commit 57ebf48b456e308dcdedbd7b19af55240a354a9a -Merge: ee740d82fd e1b1207d30 -Author: Andrea Boriero -Date: Thu May 21 10:57:03 2020 +0100 - - Merge branch 'master' into wip/6.0_merge_41 - -commit 50a5da07c1e6cb1da630b01c67bce9f7fe49dd8e -Author: Steve Ebersole -Date: Wed May 20 07:13:41 2020 -0500 - - HHH-14033 - SQL script parsing problem with multi-line comments - - - Better handling of multi-line comments - - Restructured some internal classes to consolidate packages - - Added "system"-style SchemaToolingLogging - - This commit: - - - removed some temporary logging - - better comments in parsers - -commit 7dfb0fdf24fb4a1f757be14ce5806b5a81f20ab8 -Author: Steve Ebersole -Date: Wed May 20 07:02:20 2020 -0500 - - HHH-14033 - SQL script parsing problem with multi-line comments - - - Better handling of multi-line comments - - Restructured some internal classes to consolidate packages - - Added "system"-style SchemaToolingLogging - - This commit: - - - unifies handling of Antlr `-traceParser` across parsers - - adds comment crediting to Terrance Parr for the BLOCK_COMMENT lexer rule in the sql-script grammar - -commit b658e903d71e34a5be5690a33e6faa21b1db628b -Author: Steve Ebersole -Date: Tue May 19 12:25:06 2020 -0500 - - HHH-14033 - SQL script parsing problem with multi-line comments - - - Better handling of multi-line comments - - Restructured some internal classes to consolidate packages - - Added "system"-style SchemaToolingLogging - -commit e1b1207d3027df871273cf46719eddd04dbeda0c -Author: Falko Modler -Date: Sun May 17 16:55:08 2020 +0200 - - HHH-14030 Gradle: user.language=en to avoid errors on German Win10 - -commit 084f7139494a36049eff02519bee92f4fbe79fcb -Author: Andrea Boriero -Date: Mon May 18 18:41:51 2020 +0100 - - HHH-13179 Fix license header - -commit e28d77ac33e5e604bcfe45a7e0f077e32a4c23b5 -Author: Davide D'Alto -Date: Mon May 18 15:08:45 2020 +0100 - - Revert "HHH-13997 Use functions for the creation of ActionQueue and PersistenceContext" - - This reverts commit 00acb1f21363dfa33ef19ae06c07e48abdca40fb. - -commit 00acb1f21363dfa33ef19ae06c07e48abdca40fb -Author: Davide D'Alto -Date: Fri May 15 10:47:49 2020 +0100 - - HHH-13997 Use functions for the creation of ActionQueue and PersistenceContext - -commit 9cd2236fd3a90b96d39118bbbc2eb390dc6a6068 -Author: Davide D'Alto -Date: Wed Apr 15 14:50:44 2020 +0100 - - HHH-13997 : Add methods to SessionImpl and StatefulPersistenceContext; make Loader method protected - - * Change visibility for Loader#registerNonExists - * Methods for creating PersistenceContext and ActionQueue - * Add StatefulPersistenceContext#initializeNonLazyCollections(Consumer initializeAction) - -commit 2d7022ececc74e4cbae9a8c1979c3c5a1386e0bc -Author: Sanne Grinovero -Date: Mon May 18 13:53:38 2020 +0100 - - HHH-14029 Generally improve handling of all post-load events - -commit b08ae4cd149ae6a404b5d4de3a136f2a898f4d82 -Author: Sanne Grinovero -Date: Wed May 13 17:12:33 2020 +0100 - - HHH-14029 Improve 2LC post-load event invocations - -commit 02c3cc9e2e39d3428641102b2dcae8c340e90a67 -Author: Lars Karlström -Date: Wed Feb 19 14:45:24 2020 +0100 - - HHH-13179 Fixed code formatting issue - -commit 4413433ace98ff44dfb036d99f2b5a0147c993e8 -Author: Lars Karlström -Date: Mon Feb 17 14:21:00 2020 +0100 - - HHH-13179 Subclass 2nd level caching now works for XML mappings - -commit 88a712bab771698c93feaa62fa91a9f7a1be576e -Author: Davide D'Alto -Date: Mon May 18 12:51:37 2020 +0100 - - HHH-14024 Fix NativeSQLQueryPlanEqualsTest compilation error - -commit 92b559abda4a0899a2e7cebfd7589037a992d4aa -Author: gavinking -Date: Mon May 18 11:26:18 2020 +0200 - - HHH-14024 add QueryPlanCreator functional interface - - simplifies customization of HQLQueryPlan instantiation - -commit 4a7f9ec0d67b83fb0c66092527c0a56f1c45caf4 -Author: Davide D'Alto -Date: Sat May 16 19:30:01 2020 +0100 - - HHH-14026 Change scope to protected for SessionImple#verifyImmutableEntityUpdate - -commit 9fd9c0533d2e7e655072a0ddb0d2859e712c1042 -Author: Davide D'Alto -Date: Sat May 16 19:29:23 2020 +0100 - - HHH-14025 Add method to return the query statements for update queries - -commit 42acc81067fe27822bf99b90cb1ee702ad4ebb59 -Author: Davide D'Alto -Date: Thu May 14 14:34:45 2020 +0100 - - HHH-14028 Change scope of various private methods to protected - - So that Hibernate Reactive can reuse them. - -commit 0633559f9fcdb32c318df200093c042b4e081251 -Author: Davide D'Alto -Date: Thu May 14 10:32:40 2020 +0100 - - HHH-14024 Allow the creation of a different QueryPlanCache - -commit d914c8aabc7cecd311d468e2a4fa3508850d8ab8 -Author: Davide D'Alto -Date: Thu May 14 10:32:07 2020 +0100 - - HHH-14027 Allow the creation of a different QueryLoader - -commit 59680441181cf0810a8758b278502c23a68011ec -Author: Davide D'Alto -Date: Thu May 14 10:31:04 2020 +0100 - - HHH-14024 Allow the creation of a different QueryPlan - -commit ee740d82fd1345faa7f0ec9eb64977ec3f4a1cc4 -Author: Andrea Boriero -Date: Thu May 14 10:14:43 2020 +0100 - - Fix compilation error after merging master - -commit 257e479e929cf40476f6b8b8bec0a53dff853b04 -Merge: ab71b369b6 e23dad19ca -Author: Andrea Boriero -Date: Thu May 14 10:00:59 2020 +0100 - - Merge remote-tracking branch 'upstream/master' into wip/6.0_merge_39 - -commit e23dad19ca77e9a3dbb2b84f6314ccadb3512b41 -Author: Sanne Grinovero -Date: Wed May 13 22:29:41 2020 +0100 - - HHH-14019 Adding some comments to the new SPI - -commit 137c524a149bfe78247acfb750312fd6d2c98dbe -Author: gavinking -Date: Wed May 13 20:57:28 2020 +0200 - - HHH-14019 Allow customizing the Database target in the Schema Management tool - - Add an API allowing Hibernate Reactive to plug in to schema export: - we've decided that HR should not use JDBC for schema export - -commit cb4909a5e1223f1bf95765eef9fd71ae93b65fa5 -Author: Sanne Grinovero -Date: Wed May 13 16:35:54 2020 +0100 - - HHH-14004 Attempt to load from 2LC when initializing an Enhanced Proxy - -commit 947dda618e341f42e03fc2385eaf83d24980e082 -Author: Sanne Grinovero -Date: Wed May 6 16:28:20 2020 +0100 - - HHH-14004 Test for Cacheable Enhanced Proxies - -commit 09105b8dee4f81d5a3832aaea923275500e0757f -Author: Daniel Shuy -Date: Thu May 14 02:58:44 2020 +0800 - - HHH-13975 Geolatte-geom support for SpatialPredicates - - * Rename SpatialPredicates to JTSSpatialPredicates - - * Add GeolatteSpatialPredicates - - * Fix Checkstyle violations - - * Add deprecation notice - -commit ab71b369b672d296bb37d54820da668c1a640829 -Author: Steve Ebersole -Date: Tue May 12 21:09:36 2020 -0500 - - Removed no-longer relevant code comment - -commit fa6acf4e504c9f77667559d767a6c4d95abdc6f9 -Author: Nathan Xu -Date: Tue May 12 18:53:24 2020 -0400 - - fix an obvious bug in SqmSelectClause - -commit 0e1713a3a0a53aa220fd9715069f1401fd8ba327 -Author: Andrea Boriero -Date: Fri May 8 12:57:21 2020 +0100 - - HHH-13936 Add additional test - -commit fa4ead1baaabfe536bbde7014bb4a15edc7c35d9 -Author: Jonathan Bregler -Date: Fri Apr 17 14:56:22 2020 +0200 - - HHH-13996: Update documentation for HANA Cloud - -commit 1a28fd419e91b8a9b2c6d29ea34f409aceaf754b -Author: Yoann Rodière -Date: Mon May 11 14:09:40 2020 +0200 - - HHH-14006 Test extended bytecode enhancement for mapped superclasses and entity superclasses - -commit 5c5b3476141f6b4e1a1d877873963d12c2e55bb1 -Author: Yoann Rodière -Date: Mon May 11 14:26:12 2020 +0200 - - HHH-14006 Take inherited fields into account in extended bytecode enhancement - -commit f6ebcc5f809feb4d83efdf9286cb82b124bc401f -Author: Yoann Rodière -Date: Mon May 11 13:40:57 2020 +0200 - - HHH-14006 Support inherited fields in EnhancerTestUtils#getFieldByReflection - -commit 03d34ae84c59139a817bf7da65a6acb9cf87393d -Author: Sanne Grinovero -Date: Mon May 11 17:10:23 2020 +0100 - - HHH-14012 Upgrade to Hibernate Validator 6.1.5.Final - -commit bc12eee6612fc838961ca662804fd21b69deb720 -Author: Sanne Grinovero -Date: Mon May 11 18:00:20 2020 +0100 - - Revert "HHH-13950 Update to Bean Validation 3 preview: Hibernate Validator 7.0.0.Alpha1" - - This reverts commit b9a24f458c6e9c5331b2362f58eb36e5c244de5e. - -commit 6dd7d09ba04505c1767ed63e42eaf27f985308dc -Author: Sanne Grinovero -Date: Mon May 11 18:00:07 2020 +0100 - - Revert "HHH-13950 Apply the mass replace script to switch to Jakarta Validation API" - - This reverts commit 60abc8aa764929920478888d1d6b08b95df3846a. - -commit 585ca8e2bf772543476e2d89a76782ed8aa21ea6 -Author: michiel.hendriks -Date: Tue Apr 7 12:12:54 2020 +0200 - - HHH-13936 Call pulseTransactionCoordinator before checking for transaction in flush() - -commit 5c11778032f31aad8e75e5b262d6ef75543781ef -Author: Nathan Xu -Date: Sun May 10 17:46:41 2020 -0400 - - replace 'AtomicInteger' with 'MutableInteger' in single thread scenario - -commit 72bf70f013d66a4ad924735ad7a4caf1024f5264 -Author: Andrea Boriero -Date: Tue Apr 28 15:43:33 2020 +0100 - - Fix issue with Column size detection causing errors during schema generation - -commit 4e6011d093289cab97987d4d30e7abb45b811306 -Author: Andrea Boriero -Date: Thu May 7 13:33:50 2020 +0100 - - Fix EntityInitializer double registration - -commit 35a4c42347050472b171c7d7c068a92c062fa268 -Author: Andrea Boriero -Date: Tue May 5 10:58:42 2020 +0100 - - Fix merge compilation errors - -commit 5d572cc8764aad48f3f5f477639d1e856c72317b -Merge: e38a4de536 2c12ca401d -Author: Andrea Boriero -Date: Tue May 5 09:21:34 2020 +0100 - - Merge remote-tracking branch 'upstream/master' into wip/6.0_merge_37 - -commit e38a4de536f3d72b1f725b55f5b928227eb84127 -Author: Steve Ebersole -Date: Fri May 1 11:29:44 2020 -0500 - - Verified and fixed BasicValue resolutions based on type-defs and UserTypes - -commit 2c12ca401dcc55b296522a54135169c6e5fe57e4 -Author: Sanne Grinovero -Date: Wed Apr 29 18:16:06 2020 +0100 - - HHH-13995 Remove dead code from StandardBasicTypes - -commit 922ec04422ea7af2c40740549dd94a2a56e6f238 -Author: Sanne Grinovero -Date: Sat Apr 25 21:35:45 2020 +0100 - - HHH-13994 Bootstrap analysis: avoid initializing unused JtaPlatform classes - -commit 49405effceec9cebb02812815dce62d3a4651b64 -Author: Sanne Grinovero -Date: Fri Apr 24 22:21:01 2020 +0100 - - HHH-13993 Bootstrap analysis: avoid initializing many Dialect classes - -commit 41093ae66ce6d2cbdd23cbda46aa90772e8efef1 -Author: Steve Ebersole -Date: Thu Apr 30 09:13:37 2020 -0500 - - * Added JpaCompliance for @OrderBy handling - * Added `NonTransientException` checked during MappingModelCreationProcess "post init callback" handling to indicate non-recoverable errors - * Redesigned `MappingModelCreationProcess#executePostInitCallbacks` to account for `NonTransientException` - -commit 41cd5ab35946811608356695390d8d1a9db74a02 -Author: Sanne Grinovero -Date: Thu Apr 30 14:31:00 2020 +0100 - - HHH-13976 Some javadoc clarifications and code style adjustments - -commit 4d0bd0f080ffe80e759736eb84fb408613e3de71 -Author: barreiro -Date: Mon Feb 10 23:39:11 2020 +0000 - - HHH-13976 Introduce BEFORE_TRANSACTION_COMPLETION release mode - -commit d180cb63d2507cf7701dea5ab1b0850378a999b9 -Author: Steve Ebersole -Date: Thu Apr 30 07:11:00 2020 -0500 - - Added release-process.adoc - -commit 438f6c950cc4d29ea24e442090f15b6ee2f61c75 -Author: Sanne Grinovero -Date: Thu Apr 30 12:05:56 2020 +0100 - - HHH-13992 Upgrade to ByteBuddy 1.10.10 - -commit 0bfef60c25d54a9fa7a10f8957a2589cfa6b681b -Author: Steve Ebersole -Date: Wed Apr 29 14:50:43 2020 -0500 - - tests for `@AssociationOverride` - -commit 4755e199646ec3890105a902526a384d1de7ff66 -Author: Steve Ebersole -Date: Wed Apr 29 13:19:45 2020 -0500 - - * Verified / implemented query-result cache support - improved fetch test checks - -commit 1f1f5f118b1ef3444fd1ca603788aaf7a6c5cf75 -Author: Steve Ebersole -Date: Wed Apr 29 13:12:24 2020 -0500 - - * Verified named "result mapping" support - e.g. JPA's `@SqlResultMapping`; gets stored correctly, but can't test it getting applied correctly until after native-query support is implemented - * Verified / implemented query-result cache support - -commit 250160d923090637f1483e7d02421e3a11f9a4a0 -Author: Andrea Boriero -Date: Wed Apr 29 11:12:35 2020 +0100 - - HHH-13986 Fix test failure on MariaDB - -commit ac4af03ea366eb618add29343a41a86762644079 -Author: Andrea Boriero -Date: Wed Apr 29 08:11:22 2020 +0100 - - Fix checkstyle error - -commit 9297522a2c70b035cd53cb1e9d05b947ebf3d873 -Author: Andrea Boriero -Date: Wed Apr 29 08:05:09 2020 +0100 - - Fix envers compilation error - -commit 859ffb608a3ba4cc24b8344874e03faeff148ef4 -Author: Andrea Boriero -Date: Tue Apr 28 15:16:09 2020 +0100 - - HHH-13986 SequenceHiLoGeneratorNoIncrementTest is not testing the right Optimiser - -commit 75bfc096efb44c8f4c7b6c8f6d19f117b64e04f8 -Author: Steve Ebersole -Date: Tue Apr 28 11:23:24 2020 -0500 - - Verified `@NamedQuery` support - -commit 933788789d15968ec5a2ffba160079d44e9d21f9 -Author: Steve Ebersole -Date: Tue Apr 28 10:50:09 2020 -0500 - - * enable additional HBM tests - * fixed minor bug - * re-organized tests related to mapping assertions - -commit 1aab2219ce3a4035537d41fb48907ce4255a34c5 -Author: Steve Ebersole -Date: Tue Apr 28 10:48:21 2020 -0500 - - * enable additional HBM tests - * fixed minor bug - * re-organized tests related to mapping assertions - -commit 96f4a350e0a253d9f6996412825a719ae4d411ba -Author: Steve Ebersole -Date: Mon Apr 27 15:21:09 2020 -0500 - - * HBM mappings - * dynamic models - * initial non-aggregated cid support - -commit ae4e6ef729d10cacae5aae53050c64c229e1f1b5 -Author: Sanne Grinovero -Date: Fri Apr 24 22:27:00 2020 +0100 - - HHH-13981 Upgrade to Jandex 2.1.3.Final - -commit 593eeb0d9f7cd9f465d33b7b78531d487b786642 -Author: Steve Ebersole -Date: Fri Apr 24 15:00:11 2020 -0500 - - Alpha5 - -commit cd4c38cbe053131c7b005999b078afc05b70c0e3 (tag: 6.0.0.Alpha5) -Author: Steve Ebersole -Date: Fri Apr 24 13:38:01 2020 -0500 - - Alpha5 - -commit 9ef62f1fb89484a3f067a6de01c22dbd5cf38a37 -Author: Nathan Xu -Date: Wed Apr 22 15:41:09 2020 -0400 - - implement @where and @whereJoinTable - -commit f919358e0cfb619a49b57fc8f15ee6a189217020 -Author: Nathan Xu -Date: Thu Apr 23 21:52:16 2020 -0400 - - make use of Collections.addAll() for better performance - -commit 72f8c079e9ffa8e2e30c1f7afa5b998042ba1302 -Author: Andrea Boriero -Date: Fri Apr 24 13:27:11 2020 +0100 - - Revert "HHH-13950 Update to Bean Validation 3 preview: Hibernate Validator 7.0.0.Alpha1" - - This reverts commit b9a24f458c6e9c5331b2362f58eb36e5c244de5e. - -commit 3bc33221f008a01fcaac3c36505657d38e516ced -Author: Andrea Boriero -Date: Fri Apr 24 13:26:37 2020 +0100 - - Revert "HHH-13950 Apply the mass replace script to switch to Jakarta Validation API" - - This reverts commit 60abc8aa764929920478888d1d6b08b95df3846a. - -commit 035c0a37e6c2862ffece8cec39d276f54565bc96 -Author: Sanne Grinovero -Date: Thu Apr 23 21:36:06 2020 +0100 - - HHH-13977 Upgrade to Agroal 1.8 - -commit 68e8ad641ad33f41eb6821cca53a35947899d687 -Author: Sanne Grinovero -Date: Thu Apr 23 11:48:32 2020 +0100 - - HHH-13972 Disable the ForbiddenAPI classloader cache - -commit 01d3485970f86dcc5b0277fd94ecd55b88cd3a71 -Author: gavinking -Date: Wed Apr 22 15:02:04 2020 +0200 - - Add rollup() and cube() for group by clause - - This syntax is supported on at least DB2, Oracle, SQL Server, and - Postgres. It's not supported on MySQL. - -commit 43936ed1aae4e1168ecaa488e491c362ddba68da -Author: Sanne Grinovero -Date: Wed Apr 22 20:40:21 2020 +0100 - - HHH-13968 Version mismatch in forbiddenapis version - -commit 08bf2bb906680df2daef95664688a1c56d76de17 -Author: Steve Ebersole -Date: Fri Apr 17 18:32:19 2020 -0500 - - HHH-13890 : Add support for custom EventType and listeners - EventEngine - -commit 5b614ab454224c7e850ac9c47e5eaea80e210868 -Author: Andrea Boriero -Date: Wed Apr 22 15:48:09 2020 +0100 - - Update to antlr 4.8-1 - -commit 9ec19e3c652481aed7eafe909e43b1547f3ed7d0 -Merge: 5d9c25c318 cecaeb92b3 -Author: Andrea Boriero -Date: Wed Apr 22 15:15:10 2020 +0100 - - Merge remote-tracking branch 'upstream/master' into wip/6.0_merge_36 - -commit 5d9c25c318d79ae847b249bf27c2174965f7a0e8 -Author: Steve Ebersole -Date: Tue Apr 21 18:58:47 2020 -0500 - - `@JavaTypeRegistration` and `@SqlTypeRegistration` support - -commit 581d30ee1752466ec2fb626ae4afbd0b447e67f9 -Author: Steve Ebersole -Date: Tue Apr 21 17:47:19 2020 -0500 - - finish hibernate-orm-modules removal on 6.0 - -commit 686a5196806953d65a0cb16c27a88e09faeb8d7c -Author: Nathan Xu -Date: Tue Apr 14 15:50:04 2020 -0400 - - implement @Filter for HQL/Criteria - -commit cecaeb92b3d0c70d6326671692b0b38aa60e0d34 -Author: Sanne Grinovero -Date: Tue Apr 21 22:53:50 2020 +0100 - - HHH-13963 Remove the JipiJapa fork - -commit 709e7d49b7d858b6fb80addfff268c9c2c847bdb -Author: Steve Ebersole -Date: Tue Apr 21 16:50:04 2020 -0500 - - minor fix-up - -commit afff2d0cfe01dc40e735a7161a4be5ab9564e3e2 -Author: Steve Ebersole -Date: Tue Apr 21 16:42:08 2020 -0500 - - minor fix-up - -commit 8d026b05d27540b0ef13b5b43fe48ec1888b1757 -Author: Andrea Boriero -Date: Tue Apr 14 17:49:03 2020 +0100 - - Fix extra query executed for Embedded fk when embeddable has a lazy ToOne association - -commit 99778fd9a1006044081f7399045bf9936d309e3a -Author: Andrea Boriero -Date: Wed Apr 8 13:47:41 2020 +0100 - - Composite Foreign Key for EmbeddedId removed unnecessary join for Embeddable with ManyToOne - -commit e5a2b582fe45b221250d8213351cfd840bb1eb1b -Author: Andrea Boriero -Date: Fri Apr 3 13:38:47 2020 +0100 - - Removed ForeignKeyDescriptor direction attribute - -commit 7f4c25095e2efbbe76ae6327dee4455a80bbc133 -Author: Andrea Boriero -Date: Thu Mar 12 14:27:06 2020 +0000 - - Implement Composite Foreign Key for EmbeddedId - -commit 903bb292e7d223dccca4ce587c626dceefe3219e -Author: Gail Badner -Date: Thu Apr 9 14:09:15 2020 -0700 - - HHH-13916 : Add a unique Session "token" - -commit 7bca059f94f7a3c0fd562d253854bbf9aac580f0 -Author: Nathan Xu -Date: Mon Apr 20 17:46:10 2020 -0400 - - replace '\n' with platform specific char in both SqmTreePrinter and SqlTreePrinter - -commit 23719ff481367d265bd54b22bc09e1bbf5401245 -Author: Nathan Xu -Date: Sun Mar 22 23:15:48 2020 -0400 - - implement readonly loader feature - -commit ced4f5e602f421f2e77448a885dbc2c3d4d389ff -Author: Steve Ebersole -Date: Wed Apr 15 08:03:21 2020 -0500 - - Various changes around how basic values are handled in terms of mapping consumption for annotations and how value conversions happen - - * Split BasicType "resolution" into 2 - one used for reading (mapping model) versus one used from writing (legacy persister model) - * @SqlTypeCode, @SqlType, @SqlTypeRegistration - * @JavaType, @JavaTypeRegistration - * @Mutability - * jdbc_mappings.adoc section for DomainModel chapter - - [*] At the moment, neither @SqlTypeRegistration nor @JavaTypeRegistration support has been implemented - [*] Still need to make sure @Mutability is propogated properly in all the cases - [*] jdbc_mappings.adoc still needs a lot of attention - -commit 6e07062b207cbf4ab0f1aecad6b8482ff2f8ff4b -Author: Panagiotis Sotiropoulos -Date: Mon Apr 20 15:18:02 2020 +0200 - - HHH-13960 One more checkstyle fix - -commit 55e54795c3726edf640b5823894276f3c379b317 -Author: Panagiotis Sotiropoulos -Date: Mon Apr 20 15:18:02 2020 +0200 - - HHH-13960 Add SAXReader sec features to match the defaults - -commit 52a101291dab622afa823119232f63976751b64e -Author: Nathan Xu -Date: Thu Mar 26 02:58:02 2020 -0400 - - fix a RE sloppiness in IndexQueryHintHandler - -commit 5e53f2130ef7f9b71ae36421c5de444316f33945 -Author: gavinking -Date: Sat Feb 1 18:59:58 2020 +0100 - - Also fix spelling error in method name - - Caught by @NathanQingyangXu - -commit d3d92f9a9554c27f54b030ff3c78f9214af689ba -Author: gavinking -Date: Sat Feb 1 14:16:44 2020 +0100 - - Use lambda syntax to instantiate SQLExceptionConversionDelegates - - Especially remove the amazingly verbose CacheSQLExceptionConversionDelegate - -commit 5fc35980fd285609841e78907372bf5a6ad33308 -Author: gavinking -Date: Sat Feb 1 13:56:57 2020 +0100 - - Clean up ViolatedConstraintNameExtract-o-rs - - - Fix the spelling error in the name of this hierarchy - - Use delegation to an anonymous function instead of overriding in - TemplateViolatedConstraintNameExtractor - -commit 56873732b78af072a2507cf33b7c7059f6920388 -Author: Andrea Boriero -Date: Mon Apr 20 14:10:07 2020 +0100 - - Fix errors after merge - -commit 88d65adafb99cc381c91e85e94bf3b7266d8871a -Merge: 0a5ae91c08 60abc8aa76 -Author: Andrea Boriero -Date: Mon Apr 20 13:44:39 2020 +0100 - - Merge remote-tracking branch 'upstream/master' into wip/6.0_merge_35 - -commit 0a5ae91c0895230257078851f75865103d0d860d -Author: Andrea Boriero -Date: Mon Apr 20 12:37:33 2020 +0100 - - fix errors after merge - -commit a0b4566264ad595321224a7a0dbf7efebc67b5d8 -Merge: 32e4a16623 3f2a4947a7 -Author: Andrea Boriero -Date: Mon Apr 20 12:17:22 2020 +0100 - - Merge remote-tracking branch 'upstream/master' into wip/6.0_merge_34 - -commit 60abc8aa764929920478888d1d6b08b95df3846a -Author: Sanne Grinovero -Date: Mon Apr 20 12:09:42 2020 +0100 - - HHH-13950 Apply the mass replace script to switch to Jakarta Validation API - - For reference, this is the script being applied: - find . -type f -name '*\..java' -o -name '*.\.adoc' -o -name '*.\.gradle' | xargs sed -i 's/javax\.validation/jakarta\.validation/g' - -commit b9a24f458c6e9c5331b2362f58eb36e5c244de5e -Author: Sanne Grinovero -Date: Thu Mar 26 13:17:57 2020 +0000 - - HHH-13950 Update to Bean Validation 3 preview: Hibernate Validator 7.0.0.Alpha1 - - We apply the update int two steps: - - some hand-rolled changes, such as switching the dependency to the new Hibernate Validator preview build - - running a replace-all scripts - - This individual commit represents the first set of changes. - When porting this change to a different branch, this one should be cherry picked while the second change - is better ported by running the same script once again. - -commit 32e4a16623cbef687ea3fd6876b370d0aedf34a0 -Author: Andrea Boriero -Date: Fri Apr 17 15:03:19 2020 +0100 - - Fix merge issues - -commit 7ced01d303c46325f4fdffb404d0c248d1a35772 -Merge: 9547c9ca09 95c9526dda -Author: Andrea Boriero -Date: Fri Apr 17 14:39:36 2020 +0100 - - Merge remote-tracking branch 'upstream/master' into wip/6.0_merge_32 - -commit 3f2a4947a78a125f9c6817586cd6818d042f610e -Author: Sanne Grinovero -Date: Fri Apr 17 08:56:43 2020 +0100 - - HHH-13952 Remove dependency to Arquillian as its no longer used - -commit c1423c9cb1b8f5420680f6df4c336339ea78a2c3 -Author: Sanne Grinovero -Date: Thu Apr 16 23:06:02 2020 +0100 - - HHH-13952 Amend the WildFly integration documentation to warn the feature is gone - -commit 1aa2e858baae67c435185cb62502e42e5c64ac09 -Author: Sanne Grinovero -Date: Thu Apr 16 17:18:22 2020 +0100 - - HHH-13952 Remove all WildFly based integration tests - -commit 2b279c6a833ddf50fb9c0c3debaf720b7fa4f86e -Author: Sanne Grinovero -Date: Thu Apr 16 16:47:27 2020 +0100 - - HHH-13952 Remove our ability to build the Wildfly feature pack and run integration tests on WildFly - -commit 95c9526ddabcbbdd543532394b010fc466dc0bc2 -Author: Jonathan Bregler -Date: Fri Mar 27 17:08:28 2020 +0100 - - HHH-13917: Add support for HANA Cloud - -commit 9547c9ca09f5bf5344ff0d67931bd4aff1470351 -Merge: 132a4121b5 4741fa4f33 -Author: Andrea Boriero -Date: Fri Apr 17 07:53:00 2020 +0100 - - Merge remote-tracking branch 'upstream/master' into wip/6.0_merge_31 - -commit 4741fa4f33b6a8c5dba17b4c310fec7b4c2aac8c -Author: Gail Badner -Date: Tue Oct 23 19:26:42 2018 -0700 - - HHH-11903 : @OneToOne Derived ID is null when returned by query when bidirectional - -commit 1cd56964c6af1464b55c032b38106c52a78e526c -Author: Scott Marlow -Date: Thu Apr 16 12:46:18 2020 -0400 - - HHH-13953 Upgrade dom4j to 2.1.3 - -commit 2ddf58907e8dc202c9dba7fdaf4d19878514b0b4 -Author: Steve Ebersole -Date: Thu Apr 16 08:32:25 2020 -0500 - - HHH-13948 - EnhancedSetterImpl should define writeReplace - -commit 2a4c10a663a23bebbf1f0cfdceb440d57e37a25e -Author: Gail Badner -Date: Wed Mar 4 12:47:37 2020 -0800 - - HHH-13890 Add support for custom event types and listeners - -commit 132a4121b5b2bb829221f9a877d559b2ca15b561 -Author: Andrea Boriero -Date: Thu Apr 16 11:46:19 2020 +0100 - - Fix issues after merging master - -commit 2ccf7fab9ed29029f6b071f6c8c3c6f017b5013c -Merge: 299826b9b7 588115bb0a -Author: Andrea Boriero -Date: Thu Apr 16 11:03:49 2020 +0100 - - Merge remote-tracking branch 'upstream/master' into wip/6.0_merge_30 - -commit 588115bb0a055573a85a8fa01c50490390870ca2 -Author: Yoann Rodière -Date: Tue Apr 14 15:21:33 2020 +0200 - - HHH-13682 Restore the system property net.bytebuddy.experimental=true in tests on JDK15+ - - Turns out it's necessary for JDKs with experimental support. - -commit 0b4bcce3fa2589f25b28d1393a57fe1e10a5cbce -Author: Sanne Grinovero -Date: Tue Apr 14 15:58:41 2020 +0100 - - HHH-13947 Switch the JPA Javadoc prefix URL to a build parameter - - Applying the following script, and setting the current value as a - documentation parameter: - - find . -type f -name '*.java' -o -name '*.adoc' -o -name '.xml' | xargs sed -i 's/https:\/\/javaee\.github\.io\/javaee-spec\/javadocs\/javax\/persistence\//\{jpaJavadocUrlPrefix\}/g' - - Having the script might help re-migrating existing documentation patches, - or forward porting subsequent improvements from previous branches. - - The javadocs for JPA 3.0 have not been published yet at this point; - having a parameter will make it easier to leave this single task for - a later point in time. - -commit 299826b9b7d62abb2a9ac7f9025e4c50c65c4d49 -Author: Andrea Boriero -Date: Tue Apr 14 14:23:29 2020 +0100 - - HHH-13937 Get rid of junit5 compile-time dependencies - -commit 5fab58bf767951ff1bebc74c06866237cb01c347 -Author: Yoann Rodière -Date: Fri Apr 3 11:01:07 2020 +0200 - - HHH-13682 Upgrade to forbiddenapis 2.7 - - So that we can feed it Java 13/14 bytecode - -commit b32ff5cd9c8da14fc2b756ccca2fdc860403b113 -Author: Yoann Rodière -Date: Wed Oct 23 08:45:47 2019 +0200 - - HHH-13682 Allow forcing the tested Java version in the Gradle build - - ... just in case we need that for some cutting-edge JDK, for example 15, - that would not be supported by Gradle yet. - -commit 1060baf74b3d480d026a3d88e9c4b2d4aae118a3 -Author: Yoann Rodière -Date: Thu Apr 2 11:33:22 2020 +0200 - - HHH-13682 Enable extended bytecode enhancement in NaturalIdInUninitializedAssociationTest - - This test accesses a field of an entity directly and expects it to be - automatically initialized; this cannot work without extended bytecode - enhancement. - - This used to work with Java 8 bytecode, but only by chance. It seems - that Java 8 bytecode relies on "synthetic", static access methods - inserted by the compiler to access the fields of entities in this test: - any access to the field is done through this access method instead of - through a direct field access. Since we apply bytecode enhancement to - all methods of entities, this means that access to fields triggers - initialization, without any bytecode enhancement in the caller class. - - I believe this is specific to nested classes, but couldn't find a - source. For reference, the bytecode of access methods looks like this: - - static int access$002(org.hibernate.test.bytecode.enhancement.lazy.NaturalIdInUninitializedAssociationTest$AnEntity, int); - Code: - 0: aload_0 - 1: iload_1 - 2: dup_x1 - 3: putfield #3 // Field id:I - 6: ireturn - - static org.hibernate.test.bytecode.enhancement.lazy.NaturalIdInUninitializedAssociationTest$EntityImmutableNaturalId access$102(org.hibernate.test.bytecode.enhancement.lazy.NaturalIdInUninitializedAssociationTest$AnEntity, org.hibernate.test.bytecode.enhancement.lazy.NaturalIdInUninitializedAssociationTest$EntityImmutableNaturalId); - Code: - 0: aload_0 - 1: aload_1 - 2: dup_x1 - 3: putfield #2 // Field entityImmutableNaturalId:Lorg/hibernate/test/bytecode/enhancement/lazy/NaturalIdInUninitializedAssociationTest$EntityImmutableNaturalId; - 6: areturn - - With Java 11, however, access to fields of entities is done directly, - even for nested classes. So the access methods no longer exist, and we - don't get automatic initialization upon field access. We need extended - bytecode enhancement, like we would in any other case of field access - (in particular accessing fields of non-nested classes). - -commit 96f7870528cfcfeaf28f090b059f069ad253a485 -Author: Yoann Rodière -Date: Mon Oct 21 14:57:54 2019 +0200 - - HHH-13682 Do not set net.bytebuddy.experimental=true in tests anymore - - It's no longer necessary since we upgraded to byte-buddy 1.10.2, - and it causes bytecode to be converted from Java 14 to Java 12 in some - cases (I don't know why). - -commit 0cdf4c19e3d2f64b0538639211a1295904930b6e -Author: Yoann Rodière -Date: Mon Oct 21 11:02:11 2019 +0200 - - HHH-13682 Generate Java 13/14 bytecode for tests when building with JDK13/14 - -commit c906989989ca35e87fad19e0b4154e3cf936428f -Author: Yoann Rodière -Date: Fri Apr 3 10:20:45 2020 +0200 - - HHH-13682 Remove unnecessary checks around Java 8 compatibility - - The build requires JDK8+, so we're alwways Java 8 compatible. - -commit 0069aa7be9437192e1580fad3f0972f91e62be33 -Author: Sanne Grinovero -Date: Tue Apr 14 12:23:38 2020 +0100 - - Switching version to 5.5.0-SNAPSHOT - -commit 34d5a2ae7aadfece890bff4a1446c9c893e83713 -Author: Nathan Xu -Date: Tue Mar 24 15:04:30 2020 -0400 - - implement @Filter for loader - -commit c23ded50ba38887fa835b1d4252ee30cc7b44552 -Author: Nathan Xu -Date: Sun Mar 29 21:24:10 2020 -0400 - - update user guide regarding the new feature of `@SortNatural` by default - -commit 7e571cc75cf9078d91b72904c128aa42501c493a -Author: Nathan Xu -Date: Sun Mar 29 05:49:32 2020 -0400 - - fix some obvious logging bugs - -commit a91383a226817c96865767e56bbf204e7cc959da -Author: Nathan Xu -Date: Mon Mar 23 18:10:52 2020 -0400 - - revert back v5 implementation of fetch entity graph - -commit 11c5a1019f2c039ff1bf88c61e06d97d50122501 -Author: Nathan Xu -Date: Thu Mar 19 23:06:44 2020 -0400 - - renaming and some legacy code fixing - -commit 5d1aea1897a26c052b52d74ae0274665d26763f9 -Author: Andrea Boriero -Date: Thu Apr 9 07:37:45 2020 +0100 - - Fix merge checkstyle and compilation errors - -commit 5c86c4a805496d00b290c766a42e2fd2ec7866b6 -Merge: fe25fee834 ba0902d99a -Author: Andrea Boriero -Date: Thu Apr 9 07:37:11 2020 +0100 - - Merge remote-tracking branch 'upstream/master' into wip/6.0_merge_29 - -commit ba0902d99a240d2080d21d5776f21dc56532ca68 -Author: Andrea Boriero -Date: Mon Apr 6 18:48:40 2020 +0100 - - 5.4.14 - -commit b897a36f2facacc191388c11e30aa0da2faa7f01 (tag: 5.4.14) -Author: Andrea Boriero -Date: Mon Apr 6 18:21:11 2020 +0100 - - Fix issue with generated pom missing project description - -commit 016f8ed28592f34572cc615c8005170396d61cec -Author: Andrea Boriero -Date: Mon Apr 6 16:42:29 2020 +0100 - - 5.4.14 - -commit 6ea98448746f305bba2f53241708faf8a2ae21bc -Author: Sanne Grinovero -Date: Mon Apr 6 14:56:40 2020 +0100 - - HHH-13935 Allow subclasses of StandardServiceRegistryBuilder to initialize a custom list of StandardServiceInitiator(s) - -commit 9bb76a5ccacfa6c8132159ae12590abc17c28a09 -Author: Yoann Rodière -Date: Thu Apr 2 17:45:52 2020 +0200 - - HHH-13925 Upgrade hibernate-gradle-plugin to Gradle 6 - -commit bee15c498f41b4a8883f4e42fdf024693f8223e0 -Author: Yoann Rodière -Date: Thu Apr 2 17:11:08 2020 +0200 - - HHH-13925 Fix malformed @author tags in javadoc - - You're not supposed to use unescaped "<" or ">". - - This wasn't detected by checkstyle in Gradle 5, but it is now, and that - fails the build. - -commit aebf9d192f488e3023ec4d253ed313c495d50d8c -Author: Yoann Rodière -Date: Thu Apr 2 17:04:54 2020 +0200 - - HHH-13925 Fix invalid javadoc syntax - - This wasn't detected by checkstyle in Gradle 5, but it is now, and that - fails the build. - -commit 1cd9ad0efe72abe62a15bb503b992762f66f4e53 -Author: Yoann Rodière -Date: Thu Apr 2 16:39:35 2020 +0200 - - HHH-13925 Disable Gradle module metadata publishing until we know what we want - -commit dbd49f110065b03b283302633f3c8e24ff4fc1c4 -Author: Yoann Rodière -Date: Thu Apr 2 16:27:06 2020 +0200 - - HHH-13925 Upgrade from the gradle-build-scan plugin to the gradle-enterprise plugin - - That's the new name of the plugin in Gradle 6. - -commit 8168a5cfb37d8e35d5d5d9412a90ea4cee3bcfa5 -Author: Yoann Rodière -Date: Thu Apr 2 16:22:07 2020 +0200 - - HHH-13925 Upgrade to Gradle 6 - -commit 0a962bdd7e3ba872ea3f52a1edfbecff9e64d68b -Author: Sanne Grinovero -Date: Mon Apr 6 14:30:01 2020 +0100 - - HHH-13934 GraalVM native-image metadata needs to register class metadata antlr.CommonToken - -commit e1aa8714c054a1791d6293e623f8cdc09ac7a483 -Author: Sanne Grinovero -Date: Sun Apr 5 22:55:22 2020 +0100 - - HHH-13930 Minor formatting improvements and comments - -commit 0955394c824bdba01c46b6e58188c14a87eb72d5 -Author: Stuart Douglas -Date: Fri Apr 3 15:59:18 2020 +1100 - - HHH-13930 Allow for creation of unloaded proxies in ByteBuddyProxyHelper - -commit a975d0de19d844f7769452fb47fa548e7877d901 -Author: Sanne Grinovero -Date: Sun Apr 5 22:25:59 2020 +0100 - - HHH-13929 Add test coverage using PersistenceUtilHelper within exising test for Enhanced Proxies - -commit 2ac0d2ee913d9e34374fcfb09382d611b484b695 -Author: Sanne Grinovero -Date: Fri Apr 3 17:16:43 2020 +0100 - - HHH-13929 Improve the PersistenceUtilHelper to allow dealing with Enhanced Proxies - -commit e9f2c02140893c0b8e07e89adf9019831ef4f3e7 -Author: Chris Cranford -Date: Wed Apr 1 16:56:57 2020 -0400 - - HHH-13886 Revert behavior changes introduced by HHH-10844 - -commit fe25fee834e3c7a75f53242609ac37b263c9e1a5 -Author: Steve Ebersole -Date: Wed Apr 1 13:47:41 2020 -0500 - - initial migration guide - -commit 40d0c8580e6415c3acf244ef15b8be25f8529380 -Merge: 2f98e4bfe8 2f32169249 -Author: Steve Ebersole -Date: Wed Apr 1 11:32:00 2020 -0500 - - Merge remote-tracking branch 'upstream/master' into wip/6.0 - - - up to the point of upgrading Gradle version for wrapper to 5.6.3 - -commit 2f32169249952849e7fc22b7b22ebe9790432973 -Author: Yoann Rodière -Date: Wed Oct 23 10:03:00 2019 +0200 - - HHH-13689 Replace uses of the deprecated osgi plugin with the biz.aQute.bnd plugin - - https://docs.gradle.org/5.0-milestone-1/release-notes.html#deprecated-osgi-plugin - -commit bb93bc839f9c834984e4305c83ee4f73e8830e36 -Author: Yoann Rodière -Date: Tue Mar 31 18:09:12 2020 +0200 - - HHH-13685 Move Suppression*CommentFilter to its new place in checkstyle config - - See https://stackoverflow.com/a/55266521/6692043 - -commit 42f3948ce58677e20a72633ea00483b99c8268a1 -Author: Yoann Rodière -Date: Tue Mar 31 18:05:50 2020 +0200 - - HHH-13685 Remove the obsolete FileContentsHolder module in checkstyle configuration - - See https://github.com/checkstyle/checkstyle/issues/3573 - -commit ab4d87cfd1301c1f96e6bf212e711694c2f76e47 -Author: Yoann Rodière -Date: Fri Oct 25 16:59:15 2019 +0200 - - HHH-13685 Upgrade to gradle-karaf-plugin 0.5.1 - -commit 34e498fb3dc5643aab3b4886044cf9858cc6b304 -Author: Yoann Rodière -Date: Fri Oct 25 10:27:28 2019 +0200 - - HHH-13685 Upgrade to maven-repo-auth 3.0.2 - -commit 7be9e625045fa2c64d22e5924525295aad84f9d9 -Author: Yoann Rodière -Date: Tue Oct 22 17:39:29 2019 +0200 - - HHH-13685 Increase the heap size for Gradle - - Otherwise I get an OutOfMemoryError... - -commit cee0fce043ab397fc36885a57732b2f5a6d581be -Author: Yoann Rodière -Date: Wed Oct 23 09:58:09 2019 +0200 - - HHH-13685 Replace uses of deprecated classifier property in Jar tasks with archiveClassifier - -commit 1d98edc40266bb3a4116bf5cdf4f57b9c03d6932 -Author: Yoann Rodière -Date: Tue Oct 22 16:43:44 2019 +0200 - - HHH-13685 Remove the deprecated "stable publishing" feature flag - - It's the default behavior in Gradle 5. - -commit e14d20d82989692a7b2ed928d615da2ada670a1b -Author: Yoann Rodière -Date: Mon Oct 21 18:53:36 2019 +0200 - - HHH-13685 Upgrade to build-scan plugin 2.4.2 - -commit 30ad825775b12a33d1452016d4980ab34596aa64 -Author: Yoann Rodière -Date: Tue Oct 22 19:03:58 2019 +0200 - - HHH-13685 Upgrade to gradle-xjc-plugin 2.0.1 - -commit 08132916bb15b80ad086f6fa0bbfdf7351ed6c8a -Author: Yoann Rodière -Date: Mon Oct 21 18:49:41 2019 +0200 - - HHH-13685 Upgrade to hibernate-matrix-testing 3.0.0.Final - -commit 6921b02891676552276936e336a8a7f76c1aa490 -Author: Yoann Rodière -Date: Mon Oct 21 18:48:17 2019 +0200 - - HHH-13685 Upgrade to Gradle 5.6.3 - -commit ae4bc5e55dee8fc0c57f7362aed142284a283754 -Author: Yoann Rodière -Date: Mon Oct 21 18:29:06 2019 +0200 - - HHH-13685 Remove uses of deprecated classesDir - -commit 47f02f2e6e200ebfbb30976a7950883de3a108de -Author: Yoann Rodière -Date: Mon Oct 21 17:37:54 2019 +0200 - - HHH-13685 Enable the "stable publishing" feature to test it before upgrading to Gradle 5 - -commit 2f98e4bfe867ea6de76c53d0053b0451d2d8e7c1 -Author: Andrea Boriero -Date: Fri Mar 20 12:37:25 2020 +0000 - - Fix ToOne @Fetch(FetchMode.SELECT) - -commit 5f836622269f7db171923104462e9059645874fa -Author: Nathan Xu -Date: Sat Mar 14 15:25:36 2020 -0400 - - HHH-13889 fix the issue that inline string literal in Criteria is not escaped - -commit 897184362609a2277735b866e85d367dbdbbc25f -Author: Andrea Boriero -Date: Wed Apr 1 11:01:37 2020 +0100 - - Fix compilation errors after merge - -commit 2c127bdbe3159bcf4978ff552b84330f9f455f28 -Merge: 00beab3ba9 716a8bac20 -Author: Andrea Boriero -Date: Wed Apr 1 10:40:03 2020 +0100 - - Merge remote-tracking branch 'upstream/master' into wip/6.0_merge_27 - -commit 00beab3ba980dd3409792c110010652a5c12c3c6 -Author: Steve Ebersole -Date: Tue Mar 24 17:07:51 2020 -0500 - - Support for SQL script (import.sql) handling as part of schema tooling - -commit 716a8bac2080fdcce349550e1817b14a100f3b74 -Author: Gail Badner -Date: Thu Mar 26 22:42:38 2020 -0700 - - 5.4.13 - -commit 5104c4b7f3b99e8a78236053ac26aa59ed82f301 (tag: 5.4.13) -Author: Gail Badner -Date: Thu Mar 26 22:15:06 2020 -0700 - - 5.4.13 - -commit e1d2aecef75bef9e61c64964fbb2e0103dafff7d -Author: Gail Badner -Date: Thu Mar 26 21:02:44 2020 -0700 - - HHH-13910 : MySQL57Dialect selected by automatic dialect resolution when using MySQL 8.0 database - -commit caded6cd40877e082bcd93e8a20ce70a969efe90 -Author: Gail Badner -Date: Thu Mar 26 20:59:55 2020 -0700 - - HHH-13910 : Added and corrected tests - -commit a54d657d98795e88b5541b9aa05a4621c9f5f1b5 -Author: Gail Badner -Date: Fri Mar 6 16:50:21 2020 -0800 - - HHH-13891 : ProxyFactory should not be built if any ID or property getter/setter methods are final - -commit 3427bc8414b90910fe79b93a812e72bcc2f72398 -Author: Gail Badner -Date: Fri Mar 6 16:48:31 2020 -0800 - - HHH-13891 : Added test - -commit eae3a4a0a62e1cc0ca0bc0aa4502ba5ebd212559 -Author: Steve Ebersole -Date: Mon Mar 23 08:28:56 2020 -0500 - - fix issue with Criteria queries not defining selections explicitly. should use the (single) root as the selection. - -commit ade760d71a0315260461504aafebd10fa0e9ec65 -Author: Andrea Boriero -Date: Fri Mar 20 08:04:19 2020 +0000 - - Fix compilation errors after merge - -commit 3476e8212282b8e086725ee2181cb2c7784ec8c5 -Merge: 7e2987ac79 b5443deab3 -Author: Andrea Boriero -Date: Fri Mar 20 08:01:20 2020 +0000 - - Merge remote-tracking branch 'upstream/master' into wip/6.0_merge_26 - -commit 7e2987ac79a5f059251ff49eb6ddf258b9c648c2 -Author: Nathan Xu -Date: Tue Feb 11 19:16:49 2020 -0500 - - HHH-13877 - Make @SortNatural by default - -commit cf461639582b99c428c8ce155c4de01ba5a6f9d9 -Author: Nathan Xu -Date: Sat Feb 29 22:25:49 2020 -0500 - - Fix a subtle double-checked locking issue - -commit df0aa1eb2e0623bcd1f52ad9deb46b7c16b589b4 -Author: Nathan Xu -Date: Sat Feb 29 22:24:08 2020 -0500 - - Fix a subtle double-checked locking issue - -commit b5443deab3cff37826ab9a22e61995eb81bc3b97 -Author: romainmoreau <1763676+romainmoreau@users.noreply.github.com> -Date: Sat Feb 8 16:17:42 2020 +0100 - - Drop constraints using CASCADE - - Co-Authored-By: William Cekan - -commit b35ccc8e37b5704ff4589be5b0cf7e89aedfacb9 -Author: Romain Moreau -Date: Fri Nov 8 13:56:19 2019 +0100 - - HHH-13711: drop constraints enabled for H2 - -commit 620dcc62c05943472f2d302513ae8967d72a3145 -Author: Nathan Xu -Date: Sun Mar 15 12:35:01 2020 -0400 - - HHH-13756 renaming and internal implementation tweaking - -commit 12c272a9cddcede5a84630552c3c949d330c71fe -Author: Nathan Xu -Date: Fri Mar 13 12:38:29 2020 -0400 - - make use of JUnit5's ParameterizedTest to avoid some testing code duplication - -commit a9c2ea3a46425e85382f60a78a76948d8fb5d520 -Author: Nathan Xu -Date: Thu Mar 12 16:38:37 2020 -0400 - - add 'Criteria' testing - -commit e2ddd800acccd73a5aaef5e880ae89dd2b5f63fa -Author: Nathan Xu -Date: Thu Mar 12 16:24:55 2020 -0400 - - finish both 'loader' and 'HQL' testing - -commit a3dce5f00a99e1e6e93c83c91b2bbe5f3a5df8c1 -Author: Nathan Xu -Date: Thu Mar 12 11:24:08 2020 -0400 - - HHH-13756 simplify EntityGraphNavigator's navigate() to never return null value - -commit d4746da853f5f7aef6f23f328517a6bcf228ca25 -Author: Nathan Xu -Date: Wed Mar 11 18:11:45 2020 -0400 - - HHH-13756 fix some bug in EmbeddableFetchImpl - -commit 979e146f55b195750e697ca1397faed4890ace1c -Author: Nathan Xu -Date: Wed Mar 11 14:29:46 2020 -0400 - - HHH-13756 enrich hql testing class - -commit 3b9c1cd77756a5f043103ad978a0daa968f5c621 -Author: Nathan Xu -Date: Wed Mar 11 11:44:59 2020 -0400 - - HHH-13756 add a hql testing skeleton - -commit 94b8d8a128cdd4525342bdf1b56c56d30785152d -Author: Nathan Xu -Date: Wed Mar 11 11:24:22 2020 -0400 - - HHH-13756 rename 'NavigateResult' class name to 'Navigation' - -commit 335c1ecd7590ff5fd0917d949a5f09c19d694b52 -Author: Nathan Xu -Date: Sat Mar 7 15:55:27 2020 -0500 - - HHH-13756 implement entity graph in v6 - -commit 62e9a674ad7f713e6e79542c5168eeef0cc254ba -Author: Nathan Xu -Date: Thu Mar 12 09:30:04 2020 -0400 - - fix bug that newly created 'tableGroupJoin' is not added to its 'joinedGroup' - -commit 70b6de476cf59210ee09d2da0ff2ea0694995218 -Author: Nathan Xu -Date: Tue Mar 10 16:34:22 2020 -0400 - - implement ResourceRegistryStandardImpl#convert to get rid of 'todo' - -commit adc87b790849a1d265b973f933be7c1895f1cf4a -Author: Nathan Xu -Date: Sun Mar 1 11:07:21 2020 -0500 - - various cosmetic code improvements - -commit b3254a2fa6a23dd20d08cd05bbcdd43f03e9b934 -Author: Steve Ebersole -Date: Thu Mar 19 13:01:35 2020 -0500 - - SQM 'insert select', 'insert values', and 'update' queries - -commit 02cd346d3f8271bf370a66d45c876c62c809144f -Author: gavinking -Date: Sat Feb 22 15:07:52 2020 +0100 - - add additional HQL bulk tests - - - failing test for secondary table update - - failing test for embeddable update - - passing test for secondary table delete - -commit e90207e651d7f903f5be11b6f9595fcbf6f0fe41 -Author: gavinking -Date: Sat Feb 22 11:45:46 2020 +0100 - - remove unused class - -commit c787dae475d5717d4fa5770caacdee19cb1d9405 -Author: gavinking -Date: Sun Feb 16 13:46:10 2020 +0100 - - Minor cleanups to SqlAstTranslators - - - rename SqlAstInsertSelectTranslator to SqlAstInsertTranslator - - use simplified for loops - -commit 0381da76b9c6421d83d108c607e34f41669b2d58 -Author: gavinking -Date: Sun Feb 16 01:25:49 2020 +0100 - - Test for insert values - -commit 95ff568b3d327ffe5deead6faaa32fa0091117b7 -Author: gavinking -Date: Sun Feb 16 01:25:30 2020 +0100 - - Add support for HQL 'insert ... values ...' - -commit 10f333943dde414321abec6c50713ae3c5551339 -Author: gavinking -Date: Sat Feb 15 23:36:46 2020 +0100 - - tests for HQL insert/update - -commit 5f2745a50363a1b798299d5dcbf5713232ad333f -Author: gavinking -Date: Sat Feb 15 22:54:49 2020 +0100 - - HQL 'insert ... select' and 'update' - - - fill in the implementation of HQL insert ... select - - clean up grammar for HQL insert/delete/update - - fix syntax for 'set' clause of HQL update - - fix translation of set value expression in HQL update - - tentative fix for attribute resolution with repeated entities - -commit 375076df355986e8ab49fc16af13b4ec97dc3ce3 -Author: gavinking -Date: Sat Feb 15 22:38:34 2020 +0100 - - Remove unnecessary parens in grammar - -commit 3f95c2eadbe36c56a4a8f3bc063f7c4333a12570 -Author: Yoann Rodière -Date: Thu Jul 26 10:06:51 2018 +0200 - - HHH-7318 Test auto-discovery of result types in native queries - -commit 62a14972bc522363f763bba71fc4738fea5a5127 -Author: Yoann Rodière -Date: Thu Jul 26 11:00:49 2018 +0200 - - HHH-7318 Fix native queries incorrectly converting BIGINT results to BigInteger - - Also fix existing tests with wrong expectations: - - * TupleNativeQueryTest: there is no reason to expect a BigInteger in - results, since the ID of entity Users if of type Long. - * MultiLineImportFileTest: there is no reason to expect "COUNT(*)" to - return a BigInteger, since the SQL type of COUNT(*) is bigint, which - corresponds to Long in Java. - -commit 486addab0cef2a9e886b615d35da0620133894d7 -Author: Sanne Grinovero -Date: Wed Mar 18 16:06:15 2020 +0000 - - HHH-13897 ResultSetProcessingContextImpl: no need to clear collections before discarding the reference to them - -commit 6462218587550ab4d4a6e2e00c0087418d0a788a -Author: Andrea Boriero -Date: Mon Mar 9 18:04:31 2020 +0000 - - Implemented SelectEagerCollectionInitializer - -commit 2fa3889e5acebb057f3d6bf27c7ce3f887c857c3 -Author: Andrea Boriero -Date: Fri Mar 6 13:12:46 2020 +0000 - - Add one more test for empty collections - -commit 6eb729003a8d664beab9a62d8a6180745657faea -Author: Andrea Boriero -Date: Wed Feb 26 14:41:09 2020 +0000 - - Fix initialization of empty collections - -commit db50e046e2e2ad810ad1f82fb018253077cc64a0 -Author: Nathan Xu -Date: Tue Feb 18 18:29:20 2020 -0500 - - revert back changes in 'org.hibernate.test.cascade' - -commit 30bfe8924661cf1b86025e6918cc392116706103 -Author: Nathan Xu -Date: Wed Feb 26 15:58:26 2020 -0500 - - verify 'column quoting' - -commit 6108c7d2fab12a95e374ea95316ec8e16e0cf37e -Author: Steve Ebersole -Date: Sat Mar 14 09:17:57 2020 -0500 - - ORM 6 - re-enable hibernate-orm-modules module - - cleanup - -commit 5999d8070193b2281dc416aea32bde6d31b102a3 -Author: Andrea Boriero -Date: Fri Mar 13 14:17:12 2020 +0000 - - Fix wrong tableExpression and columnExpression value assignment for ColumnConsumer#accept method - -commit 8c6f8025e32f422857f0a29fd142c4306b658b9a -Author: Gail Badner -Date: Tue Mar 10 13:54:42 2020 -0700 - - HHH-13619 - Support for JPA's `size` function as a select expression - - - Fix to work on Oracle by removing "as" between table name and alias - -commit d88d4a8d7bd0c7ab1b6061c373f82f27ae7c2893 -Author: Andrea Boriero -Date: Thu Mar 12 14:42:38 2020 +0000 - - Re-enabled hibernate-orm-modules - -commit 7ee45f68ee0d97208cb78d03dafcea7456f8a90c -Author: Nathan Xu -Date: Fri Feb 21 08:50:15 2020 -0500 - - wrap up verification for both @SortedSet and @SortedMap - -commit cce8f823e77efe4dca300940023cd1a2afa91f32 -Author: Andrea Boriero -Date: Fri Mar 6 11:35:14 2020 +0000 - - Fix issue with empty array collection - -commit 1dbda278f91d75393b36c1b40dbdf741216638fb -Author: Andrea Boriero -Date: Mon Mar 9 18:39:14 2020 +0000 - - Add test - -commit 956da855cd4cfd963b0907e8355a3f1d202fbd69 -Author: Andrea Boriero -Date: Tue Mar 3 15:35:53 2020 +0000 - - EntityFetchDelayedInitializer check if a Proxy already exists before creating a new one - -commit a96096bc28289fb4e21bdb0657b6c744d2531a8e -Author: Andrea Boriero -Date: Tue Mar 3 12:28:20 2020 +0000 - - Move more tests to o.h.orm.test - -commit 28f4d62f6a46f1978039a22af776447748689899 -Author: Andrea Boriero -Date: Tue Mar 3 12:36:06 2020 +0000 - - Fix checkstyle errors - -commit 37292c587672468ea5f07a6a9b70edba9b1044b0 -Author: Andrea Boriero -Date: Tue Mar 3 11:20:50 2020 +0000 - - Fix issue with circular fetch detection - -commit 52b126d4cfe9e4b7f832ff362144e4aca4e125e8 -Author: Andrea Boriero -Date: Fri Feb 28 11:51:45 2020 +0000 - - Fix issue with SimpleForeignKeyDescriptor DomainResult creation - -commit 681c3fa9cffe5caef1d1a34b4c5712e73ddced66 -Author: Andrea Boriero -Date: Thu Feb 27 12:33:46 2020 +0000 - - Fix issue with collection initializer for test OneToManyAutoReferenceTest#testSelectParentFetchChildren - -commit 2e285f891dd8dcb3ed6bde8ae11219d0edf82d9f -Author: Andrea Boriero -Date: Thu Feb 27 10:56:25 2020 +0000 - - Fix issue with SimpleForeignKeyDescriptor#generateJoinPredicate() using wrong columns - -commit 1fea05742c76ccc8e3105952c7eb59e0733fd304 -Author: Andrea Boriero -Date: Wed Feb 26 14:41:09 2020 +0000 - - Fix initialization of empty collections - -commit 3a9c578a14f92c1d8538787cd29a98d4db299a85 -Author: Andrea Boriero -Date: Wed Feb 26 09:37:19 2020 +0000 - - Add test - -commit 94f23dd2d5ecf59a87a285e59081b4af6dfbdd96 -Author: Andrea Boriero -Date: Mon Feb 24 17:58:32 2020 +0000 - - EntityInitializer and DelayedCollectoinAssembler see if we have an existing entry in the PC for the EntityKey - -commit e61f610e329b0cc3d458c5af33a77f70d5fb9a4d -Author: Andrea Boriero -Date: Thu Feb 20 14:18:21 2020 +0000 - - EntityFetchDelayedInitializer check if the entity instance has been already loaded - -commit 587a2b0e350a0f637db6ac24e6e727fa4ce0ea7b -Author: Andrea Boriero -Date: Thu Feb 20 11:52:13 2020 +0000 - - Fix NPE when a fetched association is null - -commit 90cd4e5c8f59eb711b03a2ae12812fa3a647e9b2 -Author: Andrea Boriero -Date: Thu Feb 20 10:38:13 2020 +0000 - - fix issue with circularity detection - -commit 1df4824d5f811d77e35763eec86da6d3c3d816bc -Author: Andrea Boriero -Date: Wed Feb 19 16:44:44 2020 +0000 - - Move more tests to o.h.orm.test - -commit 2dd745110d342404f8f9135d87df6c866558a67d -Author: gavinking -Date: Thu Feb 20 16:40:08 2020 +0100 - - Add SqlSelection.getExpressionType() and remove some typecasts - -commit a1a85e2517c19daefafa3280e6423a71fdfc9435 -Author: gavinking -Date: Mon Feb 17 01:15:34 2020 +0100 - - Fixes for subqueries in HQL select clause - - Allow subqueries to occur in the select list, and allow their aliases to occur - in the order by clause. - -commit 76000201eb260975b53e1b8d536fab13dcebaeee -Author: gavinking -Date: Sun Feb 16 13:07:09 2020 +0100 - - Support HQL 'any'/'some', 'every'/'all', and 'exists' subquery operators - - - 'exists' and 'not exists' are predicates - - 'any'/'some' are expression used on RHS of comparison operators, but - note that they also collide with the HQL aggregate functions of the - same name - -commit e0ffa498b1cf678a5a99185640e702624c54bff0 -Author: Andrea Boriero -Date: Fri Mar 6 09:49:48 2020 +0000 - - Add one more test - -commit b5080b555fc92fb19421c9d2441f5cb8ed1a5603 -Author: Andrea Boriero -Date: Thu Mar 5 18:39:21 2020 +0000 - - Fix issue initializing an Entity with an array collection - -commit a7ecba4f5bc4e2bd8e9299d075250380f8cc9230 -Author: Andrea Boriero -Date: Thu Mar 5 08:59:43 2020 +0000 - - Remove @FailureExpected from ArrayTests - -commit 23f2cc584b515eb5702ba68d622cf1024af781cb -Author: Koen Aers -Date: Wed Feb 26 16:12:09 2020 +0100 - - Verify array support: add 'EntityOfArrays' case to the GambitDomainModel and the PluralAttributeMappingTests - - Signed-off-by: Koen Aers - -commit 86fa0d5fed3bc3fe9507cd36a465d44a20ec5d91 -Author: Koen Aers -Date: Wed Feb 26 16:10:29 2020 +0100 - - Verify array support: Make PluralAttributeBuilder also recognize array types - - Signed-off-by: Koen Aers - -commit 9d9a24091766e397114a141d4a3742b03ed89a0f -Author: Koen Aers -Date: Wed Feb 26 16:09:11 2020 +0100 - - Verify array support: Add a basic test fixture - - Signed-off-by: Koen Aers - -commit 7f26deac937c35597b40c820f764076678df79ad -Author: Steve Ebersole -Date: Mon Mar 9 13:12:03 2020 -0500 - - Improved README.md - - - mention TravisCI in addition to Jenkins - - minor re-org - -commit 38effc6191673e2c884cfd7e3ea331bff5f6ecf2 -Author: Nathan Xu -Date: Sun Mar 1 14:33:57 2020 -0500 - - fix HashMap constructor with expected size usage error - -commit 26ab3c536296193304e906bc478f58082d6f8420 -Author: Steve Ebersole -Date: Thu Mar 5 09:58:35 2020 -0600 - - HHH-13619 - Support for JPA's `size` function as a select expression - - - PR revisions - -commit 336c3b9e30616bdfe024a2ce3d802037c54f0b60 -Author: Steve Ebersole -Date: Wed Mar 4 12:27:46 2020 -0600 - - HHH-13619 - Support for JPA's `size` function as a select expression - - - code cleanup - -commit 692f19c83fef4339112e4fbabcc09437999a1bdf -Author: Steve Ebersole -Date: Wed Mar 4 12:06:59 2020 -0600 - - HHH-13619 - Support for JPA's `size` function as a select expression - - - initial support - -commit 24cedfa6ec63105b423ec87f8dadca716d64190a -Author: Gail Badner -Date: Tue Oct 29 15:06:42 2019 -0700 - - HHH-13619 : test cases - -commit abe1e656f77c65eece13c523f52f54c3ab9f8ff9 -Merge: c9190e45f8 5bf772c59d -Author: Andrea Boriero -Date: Tue Mar 3 16:59:30 2020 +0000 - - Merge remote-tracking branch 'upstream/master' into wip/6.0 - -commit 5bf772c59d017ebe3674d4cd9f24d5e72f0b07d6 -Author: Andrea Boriero -Date: Mon Mar 2 11:48:54 2020 +0000 - - HHH-13322 Fix test - -commit 188c05cc333dec0fe3edfefd8f27fe19b63c702a -Author: Nathan Xu -Date: Thu Feb 27 10:21:19 2020 -0500 - - HHH-13322 Fix Oracle dialect's 'getQuerySequencesString()' issue by limiting to current schema - -commit c9190e45f80e838c531ad069e8a717843851c0e2 -Author: Nathan Xu -Date: Sun Mar 1 11:57:18 2020 -0500 - - Remove unused imports - -commit 2bda2d1fd28d1ed2904f11f82a5be7f4dc884485 -Author: Andrea Boriero -Date: Fri Feb 28 16:47:16 2020 +0000 - - Fix a Test Case Guide adoc error - -commit c7e551afe704733eaf9b9050413234d286a3282a -Author: Andrea Boriero -Date: Fri Feb 28 16:04:07 2020 +0000 - - Add a Test Case Guide adoc - -commit d8d8d6e112d3f54aa1b3997868973c856d49b141 -Author: Nathan Xu -Date: Mon Feb 24 09:51:54 2020 -0500 - - Fix some obvious log or exception message issues - -commit 09c33446ff61ffae00758fc7bad262592196acbe -Author: Nathan Xu -Date: Tue Feb 25 15:35:56 2020 -0500 - - modernize legacy code via JDK7's diamond operator - -commit b856d534cba88064da87f27010cad30e0bdb62f5 -Author: Sanne Grinovero -Date: Wed Feb 26 09:45:55 2020 +0000 - - HHH-13876 Remove unused code from StandardStack - -commit e65ef1354c6eb015f9cf361c623b2a74a253d853 -Author: Sanne Grinovero -Date: Wed Feb 26 09:41:30 2020 +0000 - - HHH-13876 Delete the immutable SingletonStack implementation as its no longer used - -commit 90c669108be39196bfbecdf94b8d2d5af4a659e1 -Author: Sanne Grinovero -Date: Wed Feb 26 09:40:53 2020 +0000 - - HHH-13876 Remove method Stack#getPrevious as its unused and contains a bug - -commit 4e58006f10cd3adb662eb4c770968b98021c7c28 -Author: Davide D'Alto -Date: Mon Feb 24 14:23:46 2020 +0000 - - HHH-13878 Make some private methods in Loader protected - - This way we can reduce the amount of copy and paste in Hibernate Rx. - -commit fe52328ab66155a79da8698cbad5419cd32feb19 -Author: Davide D'Alto -Date: Mon Feb 24 14:23:06 2020 +0000 - - HHH-13878 Remove final from SessionImpl#internalLoad - - In Hibernate RX we need to override this method. - -commit 06a26fe5c632bf4f8e15c6c8c3a78728d04a8d6d -Author: Nathan Xu -Date: Tue Feb 25 09:39:34 2020 -0500 - - enrich existing tesing case by SQL inspect - -commit 5e5bef71e6d0f1bb3146c1a866fbe7d46360eb2e -Author: Nathan Xu -Date: Mon Feb 24 12:59:38 2020 -0500 - - verify bidirectional collection circular reference detection - -commit bb8ceaea1dd3128e2da1ba4aa5ca5587424d403c -Author: Nathan Xu -Date: Tue Feb 25 18:13:50 2020 -0500 - - Fix an obvious bug in AbstractLimitHandler - -commit c76675f11ac47dac77cb8109873ce7adf913231e -Author: Vlad Mihalcea -Date: Tue Feb 25 18:29:43 2020 +0200 - - Changes according to PR review. Requires rebase! - -commit c7aaf31cbed5d41ea85f406d90d4bd16530370a5 -Author: Vlad Mihalcea -Date: Tue Feb 25 16:33:15 2020 +0200 - - HHH-13879 - Slow query log should use System#nanoTime not System#currentTimeMillis - -commit 5501a40dd20cd21c96a142979276b746cfd0f728 -Author: The Geeky Asian -Date: Sat Feb 8 01:31:41 2020 +0400 - - HHH-13855 - Remove unnecessary delared variable JtaManager in HibernatePersistenceProviderAdaptor - - In the HibernatePersistenceProviderAdaptor, there is an unnecessary declaration of JtaManager. The sole purpose of having this variable is only to use in the overridden method named InjectJtaManager. - - This was be improved by removing the JtaManager as there is no use of the variable, as of now at least. - -commit a7261ad0533f8cc1eabd299a62e5daef8735faae -Author: Gail Badner -Date: Fri Feb 21 15:32:29 2020 -0800 - - HHH-13875 : Optional one-to-one does not always join the associated entity table when querying - -commit b060b21851d0330a7d75145b6976d0a9b39c6093 -Author: Gail Badner -Date: Fri Feb 21 15:24:04 2020 -0800 - - HHH-13875 : Added test cases - -commit cab651e19451230ce61c25bb5f68b15a654d0a8f -Author: Daniel Shuy -Date: Mon Feb 24 21:42:48 2020 +0800 - - HHH-13799 : Criteria API support for Hibernate Spatial (#3159) - - * HHH-13799 : Criteria API support for Hibernate Spatial - - Co-authored-by: Karel Maesen - -commit 3545de74eac277dfa2407f1ea53ef32ab1985b9d -Author: gavinking -Date: Sat Feb 22 15:19:31 2020 +0100 - - fix logic for interpreting HQL literal enum values - - Note that this feature still doesn't work because we still - can't get a MappingModelExpressable from an SqmEnumLiteral. - -commit b914b02dcaf48dde8c9bf5e4b965056c194477e8 -Author: The Geeky Asian -Date: Fri Feb 21 10:49:51 2020 +0400 - - HHH-13874 - Removing the @author added. - - The newly added @author in the previous commit or deprecation messages has been removed in this commit. - -commit e98e89d80627a70f2a9810e3a4dd88d29e21cc8c -Author: The Geeky Asian -Date: Thu Feb 20 23:44:55 2020 +0400 - - HHH-13874 - Messages added for the deprecated methods. - -commit c4bd5937e3d6e83c5c65582123d3ba989a9cc47f -Author: The Geeky Asian -Date: Thu Feb 20 21:04:28 2020 +0400 - - HHH-13874 - Deprecating methods that will be removed soon - - Two methods that are dropped in v6.0 are now marked as deprecated in this commit. - - As discussed in the removal PR https://github.com/hibernate/hibernate-orm/pull/3229 - -commit e9df1cb62611022e4f0873e8488e930161ba14c1 -Author: Nathan Xu -Date: Tue Feb 18 14:09:33 2020 -0500 - - HHH-13853 fix minor issue - -commit d9a335c429ef812bc9726e9d467597ebae2b81a5 -Author: Vlad Mihalcea -Date: Thu Feb 20 11:16:11 2020 +0200 - - HHH-13872 - Make the Java Stream close the underlying ScrollableResultsIterator upon calling a terminal operation - -commit e8080414774a9818d555e349a14e146b9da8560f -Author: The Geeky Asian -Date: Sun Feb 9 12:14:24 2020 +0400 - - HHH-13856 - Long-awaited TODOs done as an improvement - - 1. TODO: Remove duplicate method from ConstraintConstaint.java currently has two duplicate methods. 1. getColumnIterator()2. columnIterator() - - Both the methods return the same value i.e. column.iterator(). - - One of them needs to be removed in order to reduce and clean the duplication. - - 2. TODO: Change method name for getXmlFiles in BaseCoreFunctionalTestCaseCurrently, in BaseCoreFunctionalTestCase a method named getXmlFiles()has a TODO placed that suggests the method name to be changed to getOrmXmlFiles(). - - Since the method has a protected scope, there is a possibility it is being used by other clients. Hence, changing the method name in minor versions might break the code for clients. - -commit 3c67d521e1c79421a7282120ee429179d74183e7 -Author: Arend v. Reinersdorff -Date: Sun Feb 16 14:11:57 2020 +0100 - - Fix typo "fare more" -> "far more" - -commit 28b8cebf9d730b948736b732ef95d43c088144b6 -Author: w1ida -Date: Wed Feb 12 11:09:29 2020 +0800 - - HHH-13873 IdTableHelper can skip opening a connection when there's no statements to execute - -commit 86a8106696cd56bfd19082a4cec43f1ea8ebf5e6 -Author: Nathan Xu -Date: Mon Feb 10 08:32:11 2020 -0500 - - correct an obvious coding bug - -commit b1d7bad4ef1804f95ce672129165c227922cd01d -Author: gavinking -Date: Thu Feb 20 12:08:07 2020 +0100 - - Move a couple of log messages to ConnectionPoolingLogger - - For consistency. - -commit 78423a8d55c677097f3cbc3c593cd9db7988ea72 -Author: gavinking -Date: Thu Feb 20 12:06:45 2020 +0100 - - Move Dialect logging to DialectFactoryImpl - - As suggested by @Sanne. - -commit 285b7d8696dd977acdf0e4eb622640a1e3cd3610 -Author: Steve Ebersole -Date: Wed Feb 19 13:55:45 2020 -0600 - - @Version support - - - improved design where EntityVersionMapping simply has a (delayed) reference to the version attribute and provides easier access to often used information - -commit 874fe8a42a9a59e9c93fae6fba8ec4bb701a473e -Author: Steve Ebersole -Date: Wed Feb 19 13:05:30 2020 -0600 - - https://github.com/asciidoctor/asciidoclet/pull/91 - - - re-disable as the Travis CI JDK 11 build did not like it - -commit aa87f157088be1d237244f6dcd811214590ec7bd -Author: Steve Ebersole -Date: Wed Feb 19 12:46:28 2020 -0600 - - https://github.com/asciidoctor/asciidoclet/pull/91 - - - re-disable as the Travis CI JDK 11 build did not like it - -commit 1364929fe08f87400ee97a4859d4c242c07c32fd -Author: Christoph Dreis -Date: Wed Feb 19 17:47:05 2020 +0100 - - HHH-13870 - Add explaining comment - -commit 5ea5bd12b07ad7915e97dd05b1a2ab5194f73ab8 -Author: Christoph Dreis -Date: Wed Feb 19 16:18:03 2020 +0100 - - HHH-13870 - Extract task action in Gradle plugin to fix up-to-date checks - - Lambdas are not allowed and cause the compile task to be always out of date - -commit 28b5f493b997eb898f60ecc6b4592db1bd937700 -Author: Christian Beikov -Date: Fri Jan 31 19:24:00 2020 +0100 - - Determine type of self rendering function lazily during type access - -commit ab6d1953d6a1fce869e0e39149be08bef6e68d5b -Author: Steve Ebersole -Date: Wed Feb 19 12:10:16 2020 -0600 - - initial work on @Version support - - - by side effect fixed batch collection loading - -commit 1503f09a411f162e62894693d5500b4feb6dbf9e -Author: gavinking -Date: Fri Jan 31 15:16:29 2020 +0100 - - Log usage of deprecated Dialect classes using DeprecationLogger - - We want people to stop using the ones annotated @Deprecated. - -commit 60ead26c4bd1323e463f1b31df2d0cf25e9c10db -Author: Nathan Xu -Date: Sun Feb 2 16:06:51 2020 -0500 - - Disallow FQN as entity name in Jpa compliance mode - -commit c97fb45a027dbafb5fa81b6e229603a8f72090b2 -Author: gavinking -Date: Sat Feb 1 13:26:49 2020 +0100 - - Remove FrontBaseDialect - - I can't find evidence that anyone uses this on StackOverflow, and the Dialect - is not of high quality. - -commit 7267b418c508756a6bdccf92e8429bdd8582cc94 -Author: gavinking -Date: Sat Feb 1 13:21:20 2020 +0100 - - Rename SAPDBDialect to MaxDBDialect - - (Leaving a stub SAPDBDialect class for backward compatibility.) - -commit e43c5a3166c6bd7a1f4dc4b4a617679118846718 -Author: Steve Ebersole -Date: Wed Feb 19 08:30:57 2020 -0600 - - https://github.com/asciidoctor/asciidoclet/pull/91 - - - work in progress as the PR did not fix the problems - -commit 5d830ceebf37f5b912257fcc16bd89fe10b6a111 -Author: gavinking -Date: Fri Jan 31 10:12:51 2020 +0100 - - Attempt to reconstruct the fallbackSqmMutationStrategies - - This method threw lots of NotImplementedFor6Exceptions, so I've tried - to figure out what the right implementations are, going by what was - there in the other branches. However, I'm not at all sure that I got - everything here right. - -commit ccc3c58367c0f6df6f51aa12ccca80d91a93f46d -Author: Fabio Massimo Ercoli -Date: Mon Dec 23 12:38:01 2019 +0100 - - HH-13720 Test mapping model support for plural attributes - sorted map - -commit 1042f23beee20777c1e359b910a1c59d9756c2f2 -Author: Steve Ebersole -Date: Tue Feb 18 15:21:29 2020 -0600 - - HHH-13103 - Allow Hibernate Types to get access to the current configuration properties using constructor injection - -commit c346171b23a0d06fc74162a6b4846116c0d46c7d -Author: Vlad Mihalcea -Date: Wed Nov 14 18:32:14 2018 +0200 - - HHH-13103 - Allow Hibernate Types to get access to the current configuration properties - -commit 9084ce497ee45afec1451f8b0988942cf7976847 -Author: Vlad Mihalcea -Date: Fri Feb 7 16:57:50 2020 +0200 - - HHH-13853 - Pass the merged Integration settings and Persistence Unit properties to buildBootstrapServiceRegistry - -commit 8defa9619e81d483618805746ac60535274faae0 -Author: Andrea Boriero -Date: Tue Feb 18 16:33:03 2020 +0000 - - Remove NavigablePath#hashCode field - -commit c355ecee08484d640382aa07fb83f2f2dba35235 -Author: Andrea Boriero -Date: Mon Feb 10 18:32:57 2020 +0000 - - Fix issue with FromClauseIndex#findFetchedJoinByPath for hql 'from entity1 e1 join fetch e1.entity2 e2 join fetch e2.entity3' not resolving entity3 fetch join during EntityResultImpl creation - -commit d77adbfc133e861dfe83875128a4c2a38014fd53 -Author: Andrea Boriero -Date: Thu Feb 6 18:26:18 2020 +0000 - - Add FailureExpcted to EmbeddedTest for @Parent annotation - -commit 9d7c4f98e34a1d5ef0449446637cb508a3013efe -Author: Andrea Boriero -Date: Thu Feb 6 18:19:32 2020 +0000 - - Fix compilation error after rebase - -commit 529726f59aea8be5cd1c95accaad5a0eff3bc501 -Author: Andrea Boriero -Date: Thu Feb 6 17:34:25 2020 +0000 - - Remove unused import - -commit 6cfbed73baf82dc02cb640975efc12f4e70cd816 -Author: Andrea Boriero -Date: Thu Feb 6 12:05:27 2020 +0000 - - Fix issue with hql and where clause with Embeddable is null - -commit efb07506f260186d75e74e63be208425cecf162e -Author: Andrea Boriero -Date: Wed Feb 5 16:55:51 2020 +0000 - - Fix test - -commit 7d13abf528cde5e67e16835bdb6e71d42260d441 -Author: Andrea Boriero -Date: Wed Feb 5 09:51:02 2020 +0000 - - Add test - -commit 484589c5b4d940bbb728d8081c79b92ad9e829fd -Author: Andrea Boriero -Date: Tue Feb 4 16:56:54 2020 +0000 - - Fix BiDirectionalFetchImpl CircularFetchAssembler#assemble for collection initialization - -commit 7de3be2492830c80ad90a43dd986b488f8a3e6ed -Author: Andrea Boriero -Date: Sat Feb 1 10:49:46 2020 +0000 - - Fix NPE in SingularAssociationAttributeMapping#resolveCircularFetch(...) method - -commit 9633345dbb4c6094198e042d5d5c12dfb4db3438 -Author: Andrea Boriero -Date: Sat Feb 1 09:10:20 2020 +0000 - - Fix issue determining fetchablePath and fetchParent for PluralAttributes in LoaderSelectBuilder#createFetchableConsumer() method - -commit d34353e2a3367d75fc83bfee7b447d4752f08274 -Author: Andrea Boriero -Date: Sat Feb 1 08:53:24 2020 +0000 - - Revert "EntityCollectionPart#generateFetch() add TableGroupJoin to EntityCollectionPartTableGroup" - - This reverts commit f5351addb8155bd85fbd38f5b989ef0a260bcf3f. - -commit 8c377e9208fd194ce8e42049e73b860caf0994fd -Author: Andrea Boriero -Date: Fri Jan 31 18:30:25 2020 +0000 - - Fix issue with @ElementColletion of Embeddables - -commit a4330599c29c665a3384c350473f19f5eb49971e -Author: Andrea Boriero -Date: Fri Jan 31 14:19:03 2020 +0000 - - Fix SingularAssociationAttributeMapping identifyingColumnsTableExpression and inverseIdentifyingColumnsTableExpression values - -commit f3b2a1537be15771379790ab4f4fa1dae7c435f7 -Author: Andrea Boriero -Date: Fri Jan 31 11:54:14 2020 +0000 - - Implemented SingularAssociationAttributeMapping circular fetch detection for ToOne with JoinTable - -commit 2afd4c8123eeae28c77ce7129d10408263d17242 -Author: Andrea Boriero -Date: Fri Jan 31 09:57:40 2020 +0000 - - Avoid EntityFetchJoinedImpl visiting the EntityIdentifierMapping - -commit bd28b5448251b33b9de2fdfb3b091ee2f4bef0aa -Author: Andrea Boriero -Date: Thu Jan 30 19:03:35 2020 +0000 - - EntityCollectionPart#generateFetch() add TableGroupJoin to EntityCollectionPartTableGroup - -commit 8c16e7cfe9336d20ed08ed02c2ef610848734414 -Author: Andrea Boriero -Date: Thu Jan 30 17:34:30 2020 +0000 - - Fix issue with AbstractEntityPersister and the creation of the RootTableGroup - -commit 16d81eb4bf6277dda016819ab34c0d8ddd27e96e -Author: Andrea Boriero -Date: Thu Jan 30 14:54:14 2020 +0000 - - Refactoring - -commit 3222b52ab22297a9c92ac8aad62767d0f1dbba9a -Author: Steve Ebersole -Date: Mon Jan 27 21:15:04 2020 -0600 - - continued work on circular fetch detection. still need to work through the cases involving embeddables "in between" - -commit 00b5a700eb9b8089a2c7dd1805c10e77a7aa3e18 -Author: Steve Ebersole -Date: Fri Jan 24 08:49:50 2020 -0600 - - continued work on circular fetch detection. still need to work through the cases involving embeddables "in between" - -commit 4f750cdc5540d250787ce707e14e012ad449df29 -Author: Steve Ebersole -Date: Fri Jan 17 09:30:35 2020 -0600 - - initial work on circular fetch detection across embeddables - -commit 8c806a5a169de24c141635781e146f018941331b -Author: Andrea Boriero -Date: Tue Jan 14 13:23:27 2020 +0000 - - Fix issue with TableReference resolution - -commit cb5fe2645a0860123bf0aa1cd7706fbf209d681a -Author: Andrea Boriero -Date: Tue Jan 14 12:49:31 2020 +0000 - - Code Clean up - -commit c4887356ca4db859f20f33152f6448f09896ed0f -Author: Andrea Boriero -Date: Tue Jan 14 12:49:03 2020 +0000 - - Move more tests to o.h.orm.test - -commit 67f77efa919bf5ac775d9478a3636fdf778633f9 -Author: Andrea Boriero -Date: Wed Dec 11 09:42:48 2019 +0000 - - AttributeOverride add more tests - -commit 436060008b1ded4025a31b68385d5ec1312a7e2d -Author: Andrea Boriero -Date: Thu Feb 13 15:32:02 2020 +0000 - - Fix empty collection not initialized - -commit 08b08c0d81022d63154a27ff367d6cd3d0b15568 -Author: Andrea Boriero -Date: Wed Feb 12 15:32:44 2020 +0000 - - Re-enabled few more tests - -commit a1b38ad58f9ad81ca2569e89dfdfa06228ceab25 -Author: Andrea Boriero -Date: Fri Feb 14 11:52:51 2020 +0000 - - Fix compilation error after merging master - -commit 2660007df9173fec70f8637e98b3665167cd870e -Merge: bb10a8ce27 015d1e019f -Author: Andrea Boriero -Date: Fri Feb 14 11:36:06 2020 +0000 - - Merge remote-tracking branch 'upstream/master' into wip/6.0_merge_24 - -commit 015d1e019fb90846ce4ce4ce1b20fb9d591ea524 -Author: Andrea Boriero -Date: Thu Feb 13 18:43:12 2020 +0000 - - 5.4.12 - -commit f5fe63bf0c43e9414de3f2de8b7db26dbb44f1f4 (tag: 5.4.12) -Author: Andrea Boriero -Date: Thu Feb 13 18:04:06 2020 +0000 - - 5.4.12 - -commit 7d37e9f8784040fa91330a94628787bc36eb26c1 -Author: Sanne Grinovero -Date: Thu Feb 13 11:41:04 2020 +0000 - - HHH-13863 Introduce the hibernate-graalvm module to share some GraalVM native image metadata - -commit 760386d2cf88c472f464f2cb01691a49b6831ccf -Author: Sanne Grinovero -Date: Thu Feb 13 16:41:01 2020 +0000 - - HHH-13864 Cosmetic change of format when reporting version number - -commit 2f2d30e4e513ad9e6ef98cec7d6506902f9b9599 -Author: Andrea Boriero -Date: Wed Feb 12 10:15:05 2020 +0000 - - HHH-13861 Expose the doWork() and doReturningWork() APIs on StatelessSession as well - -commit 6b1ef47a2ded638303d9e89c969a3704f345fe85 -Author: Sanne Grinovero -Date: Tue Feb 11 16:19:34 2020 +0000 - - HHH-13859 Test running a scanner on a JDK11 archive having module-info.class - -commit 2ed15445c6fa1a355e8f402a13be633af69ce5b6 -Author: Sanne Grinovero -Date: Tue Feb 11 12:51:45 2020 +0000 - - HHH-13859 Removing unused import - -commit d3fdb657d699e29e9e6980df5d9e1051fd957298 -Author: Sanne Grinovero -Date: Tue Feb 11 12:44:04 2020 +0000 - - HHH-13859 Avoid attempting to index a module-info.class via Jandex - -commit 5defe54d31c26dd57d83af17ba88e7eb6bd5cab9 -Author: Andrea Boriero -Date: Sun Feb 9 11:52:12 2020 +0000 - - HHH-13856 Fix Oracle failing tests - -commit bb10a8ce278c858d11b6315494bb233861a71959 -Author: gavinking -Date: Sun Feb 9 15:46:17 2020 +0100 - - As suggested by @romainmoreau and @aklish, use 'cascade' in H2 1.4.200+ - - See https://github.com/hibernate/hibernate-orm/pull/3093 - - Also fix up some confusing/wrong handling of H2 version numbers and - delete some obsolete commented code. - -commit 39091fc65889ed5f3ce328472d4e112348fd9ecf -Author: Andrea Boriero -Date: Fri Feb 7 17:52:54 2020 +0000 - - 5.4.11 - -commit 878f75c6b5cf60f3eebf969fc627f7f292e9cb3c (tag: 5.4.11) -Author: Andrea Boriero -Date: Fri Feb 7 17:27:10 2020 +0000 - - 5.4.11 - -commit 90b69ffc7d90a3107f17df2225bab36c416b38a9 -Author: Sanne Grinovero -Date: Fri Feb 7 16:39:01 2020 +0000 - - HHH-13854 Allow extensions of StandardServiceRegistryBuilder to ignore Environment variables - -commit 11b16237744d07c7f6310325daff82b432673742 -Author: Sanne Grinovero -Date: Fri Feb 7 13:41:22 2020 +0000 - - HHH-13804 Update comments in Environment to suggest the ability to inject an externally defined ProxyFactoryFactory instance - -commit 8043e49384eb3fc454457d8657b823ab290c4315 -Author: Sanne Grinovero -Date: Thu Feb 6 11:22:02 2020 +0000 - - HHH-13851 Remove a dead code field from PojoEntityTuplizer - -commit 0964b881f726d3a2bb1a207cf7105b4bc62027a8 -Author: Sanne Grinovero -Date: Wed Feb 5 14:31:59 2020 +0000 - - HHH-13851 Rework initialization of ProxyFactoryFactory, allow some code reuse from SPI - -commit 52ca2703f30acb470346619bb433c9b38951a0fc -Author: Sanne Grinovero -Date: Wed Feb 5 09:55:14 2020 +0000 - - HHH-13850 Clear the BytecodeProvider caches both after SessionFactory creation and stop - -commit 5c81089d65d0010ced4b0104903e4d789c39add0 -Author: Sanne Grinovero -Date: Tue Feb 4 20:29:19 2020 +0000 - - HHH-13849 Convert BytecodeProvider into a Service as well - -commit e19acd5a9c908c3e5d62ef2b5b60217c04787a70 -Author: Sanne Grinovero -Date: Tue Feb 4 16:59:13 2020 +0000 - - HHH-13849 Convert ProxyFactoryFactory into a Service, scope it to SessionFactory - -commit 844adb4d458e2afb3e75c9d55cfd7bd529b179bb -Author: Steve Ebersole -Date: Wed Feb 5 13:23:47 2020 -0600 - - rework collection loading state management - remove the "temp" load collections in various PersistentCollection impls - -commit 8fd1f9a536f638d09a575472ca5cb9131c91deb7 -Author: Steve Ebersole -Date: Fri Jan 31 14:18:49 2020 -0600 - - rework collection loading state management - remove the "temp" load collections in various PersistentCollection impls - -commit cb3560de9626c6ad924c152053e5e0ed3b6196ad -Author: gavinking -Date: Wed Feb 5 16:04:53 2020 +0100 - - Allow binary literals to be specified in a Java byte-array-like format - - Allow you to write x'DEADBEEF' as {0xDE, 0xAD, 0xBE, 0xEF}. - - For now I'm being quite restrictive here: - - - byte literals must be written in hexadecimal not in decimal - - they must be exactly two digits in length - - (I would like to allow decimal format but I think that would start to - collide with other rules with braces in the grammar.) - -commit ddaff288386346563182f6229a9df98d5d8026d5 -Author: gavinking -Date: Sun Feb 2 03:57:52 2020 +0100 - - Add hexadecimal binary literals with standard SQL syntax - - And fix up the parsing and formatting in VarbinaryTypeDescriptor which - was inconsistent with how the JDBC drivers handle the conversion to - signed bytes. - -commit 4b037cdf8f781c8b5cbe1dcac21a2359ea339508 -Author: Frank Doherty -Date: Sat Dec 21 18:27:25 2019 +1100 - - HHH-13792 evict entity cache after transaction has committed for read-write cache access strategy - - - changed EntityReadWriteAccess to remove the no-op unlockRegion method (now uses the method inherited from - AbstractCachedDomainDataAccess, which calls evictAll) - - - changed AbstractReadWriteAccess to add a no-op removeAll method (as this is called by the constructor in - BulkOperationCleanupAction.EntityCleanup, during the transaction) - - - added new file ReadWriteCacheTest with some test scenarios: - - testDeleteHQL/testDeleteNativeQuery/testUpdateHQL/testUpdateNativeQuery which confirm that the fix corrects the - scenario where stale entities could be loaded into the cache and remain there (because the eviction was - happening before the transaction had committed) - - testDelete/testUpdate show that entity updates/deletions were not affected by this issue (only HQL/native queries) - -commit 07ffd63b3af3de39578d65fed50f95ef9a60fa8e -Author: Hyunjin Choi -Date: Wed Feb 5 22:53:10 2020 +0900 - - Fix typos in AbstractEntityPersister's generateSQLDeletStrings() method - - Fix typo. - -commit eb4373465895865e1aca1d413646e26f10680b24 -Author: Andrea Boriero -Date: Wed Feb 5 12:16:41 2020 +0000 - - Fix compilation errors after merge - -commit f77fb7563912c65a501f00f911b2e28b9cb02f9b -Merge: ae291bf04f ddb810510c -Author: Andrea Boriero -Date: Wed Feb 5 11:37:36 2020 +0000 - - Merge remote-tracking branch 'upstream/master' into wip/6.0_merge_23 - -commit ae291bf04f574ef745761ebde00791806fbbed53 -Author: gavinking -Date: Fri Jan 31 08:48:35 2020 +0100 - - Prevent overflow when persisting Durations - - Durations should be converted to BigDecimals for storage in NUMERIC columns. - - (I missed this change when I merged my work from the previous branch.) - -commit 5401f4fcfd038e525c4b35d3127f3deee09e1945 -Author: gavinking -Date: Tue Feb 4 13:46:57 2020 +0100 - - Fix rendering of boolean literals on Oracle, SQL Server and possibly others - - These databases do not understand 'true' and 'false' but that's what we - generated for a boolean literal in the HQL. - -commit 1706141ffc154c1b61e304445a603ebf9a3e0a2e -Author: gavinking -Date: Fri Jan 31 23:37:56 2020 +0100 - - H2 supports 'true' and 'false' boolean literals - -commit 398dcfffeb979b78d2dd16b39d315a5348e92291 -Author: gavinking -Date: Sun Feb 2 09:43:21 2020 +0100 - - Fill in implementation of HQL hexadecimal literals - - And add tests for hex and BigDecimal/BigInteger literals - -commit 0b6e071f4a5188b4ba83aa989d3548eb44ea49b6 -Author: gavinking -Date: Sun Feb 2 09:41:06 2020 +0100 - - Remove obsolete token from list in parser - -commit 558e757a33fa14800d65379bbbfa6e35cd9e4f4d -Author: gavinking -Date: Sat Feb 1 12:26:06 2020 +0100 - - Improve test for function parameter binding - -commit ddb810510c162ba4c8414f313c67e024604902ab -Author: Sanne Grinovero -Date: Fri Jan 31 14:45:36 2020 +0000 - - HHH-13838 Allow extension of PersistenceXmlParser - -commit c41c6aaf7d9ffa35f33a9aa32763954d0a93427f -Author: Christian Beikov -Date: Fri Jan 31 11:17:50 2020 +0100 - - Some fixes for delete and update statements - -commit fe4f98186acf0e2e41578856e9e25dba726e0fec -Author: gavinking -Date: Fri Jan 31 13:00:52 2020 +0100 - - Remove InterbaseDialect, PointbaseDialect, and ProgressDialect - - None of these dialects seem to be maintained, and the databases themselves - look to be moribund. - -commit 47c001b00c6ef9c8338331d48e60409ed228d821 -Author: gavinking -Date: Fri Jan 31 12:29:58 2020 +0100 - - Remove MckoiDialect - - The last release of this database was in 8 years ago, and nobody is using it - according to StackOverflow. - -commit b1de5d6703283350b1cec21cfa9108b938d05852 -Author: gavinking -Date: Fri Jan 31 12:17:36 2020 +0100 - - Remove JDataStoreDialect - - It is: - - - not used (no JDataStore questions on StackOverflow) - - not maintained - - not of high quality - -commit 57f7c7bcd3e3822d40a4e6698ca10c622d206b3f -Author: gavinking -Date: Fri Jan 31 11:55:45 2020 +0100 - - Improve Javadoc in TypeNames - -commit 294f16f73d9502ed13d0f33a37980b172d85a34c -Author: gavinking -Date: Fri Jan 31 11:21:29 2020 +0100 - - hibernate.legacy_limit_handler no longer has any effect - - Therefore: - - - mark USE_LEGACY_LIMIT_HANDLERS deprecated - - delete the tests for this workaround (which were broken anyway) - -commit 6a8d0bf801facc0343721f3f204f608940813096 -Author: gavinking -Date: Fri Jan 31 11:19:37 2020 +0100 - - Fix grammar - -commit eb524aa3a4160e4601027d5ee0686d61a429e2e7 -Author: Sanne Grinovero -Date: Fri Jan 31 10:00:43 2020 +0000 - - HHH-13809 On more fix in basic_types.adoc - -commit 2175aea8adfed2488ac81623cd285e6162b3f0a8 -Author: gavinking -Date: Fri Jan 31 10:58:42 2020 +0100 - - File headers and newlines - -commit 19e35b86cce79799c48179b9d5617af08f5d4030 -Author: Nathan Xu -Date: Tue Jan 7 15:17:28 2020 -0500 - - HHH-13809 Various improvements in the user guidesw - -commit cc7c7d7ee3448ea14e61ece3b8d338514f62e519 -Author: Sanne Grinovero -Date: Thu Jan 30 20:19:35 2020 +0000 - - HHH-13837 Initialize the Hibernate VERSION as a real constant - -commit 5f302c57a71e48f7fdde47f67dcd62cad9bdc597 -Author: Sanne Grinovero -Date: Thu Jan 30 22:05:17 2020 +0000 - - HHH-13831 Avoid log level check within complex loops - -commit 41577dcec4ca3e64ce9855036bf5c31abd528666 -Author: gavinking -Date: Thu Jan 30 19:51:38 2020 +0100 - - Map Durations to NUMERIC instead of BIGINT - -commit 9a061c5c10cd9508182af45044180db2013e67e4 -Author: gavinking -Date: Thu Jan 30 19:41:36 2020 +0100 - - Render HQL Boolean literals correctly on dialects which use BIT for boolean - -commit 0d3b1302581ab7d018ce7d95c5056e4c6b7cbe83 -Author: gavinking -Date: Thu Jan 30 19:25:12 2020 +0100 - - Remove support for octal literals - - For the datetime stuff we need integer literals with leading zeros, and - surely there is not a single breathing person who has ever written an - octal literal in HQL. - -commit 42de2976e17aaf7a537539305ac7c65f67f26f02 -Author: gavinking -Date: Thu Jan 30 19:03:06 2020 +0100 - - don't swallow connection errors - - This bug made it *really* hard to figure out what was going on with - rejected connections! - -commit b085730dd8f8a9c9d42754a2f826d9b374082657 -Author: gavinking -Date: Thu Jan 30 18:40:22 2020 +0100 - - Use autoboxing in BooleanTypeDescriptor - -commit 1989635bc200e023456620d89470c19903be3715 -Author: gavinking -Date: Thu Jan 30 18:30:33 2020 +0100 - - Clean up use of generic types in EnumValueConverters - - Use the "self type" idiom correctly. - -commit d5096fc66036e82e3802b7cba3a038b0cbf98d77 -Author: gavinking -Date: Thu Jan 30 17:31:48 2020 +0100 - - TinyInt should not use Short here - -commit 41cb8272673dd6158d82824ee784189a13addbe8 -Author: gavinking -Date: Thu Jan 30 15:23:58 2020 +0100 - - Delete two obsolete ICS classes - -commit e4379bea4bae251b9c83113acb6d4561804b1b97 -Author: gavinking -Date: Thu Jan 30 15:23:35 2020 +0100 - - Improve javadoc - -commit a63d23f724ebc8feac03e07d09654f1d768acec4 -Author: gavinking -Date: Thu Jan 30 15:23:17 2020 +0100 - - Use switch for consistency - -commit eb71ec395d01f5b26af2120f0018361ec8d14355 -Author: gavinking -Date: Tue Jan 28 20:29:15 2020 +0100 - - Oracle doesn't recognize "as", so use the Dialect to decide - -commit 5cae462f7a4d9eb9b4ff941f84cac945c71ca9be -Author: gavinking -Date: Tue Jan 28 20:28:33 2020 +0100 - - Let ClobTypeDescriptor handle Strings - - Just like BlobTypeDescriptor can handle byte[] arrays - -commit 3ab747517d1204252bac4f52ad454ca8b68dddae -Author: gavinking -Date: Tue Jan 28 20:27:13 2020 +0100 - - Use OID instead of BYTEA for @Lob mappings on PostgreSQL - -commit c8f477c9629616b5989e7781a788a99bba4674b8 -Author: gavinking -Date: Tue Jan 28 18:18:33 2020 +0100 - - A couple of default properties went missing from the dialects - -commit 4f5b37c9c4e1b2942d367a47c53fd6dab793c621 -Author: gavinking -Date: Tue Jan 28 18:00:20 2020 +0100 - - Use SequenceSupport everywhere instead of deprecated methods of Dialect - -commit f6eaaca82487535c09ab8f3a0be21ba249a464ee -Author: gavinking -Date: Tue Jan 28 14:17:39 2020 +0100 - - Fix up Dialect auto-detection - - - make it work for DriverManagerConnectionProviderImpl - - improve logging and some confusing exceptions - - make it respect explicit database setting properties - -commit 95930820af1419728b315b38e1159fb246a10715 -Author: gavinking -Date: Tue Jan 28 09:52:03 2020 +0100 - - Support for timezones - - - add TimestampWithTimeZoneDescriptor and use it in OffsetDateTimeJD - and ZonedDateTimeJD - - add ZoneOffsetJavaDescriptor for ZoneOffset attributes - - clean up string rendering for temporal types using ISO formats; - note that they do not need to implement objectToSQLString() - since they cannot be discriminators - - Note that at this time very few databases have meaningful support - for the ANSI-standard TIMESTAMP WITH TIME ZONE type. This limits - the usefulness of TimestampWithTimeZoneDescriptor for now. - - Also add in some missing but needed type mappings for temporal types - -commit 5a3838dfa6dd332217292a0f8ba38be1bcac427f -Author: gavinking -Date: Tue Jan 28 02:06:02 2020 +0100 - - Simplify the whole SqmFunctionDescriptor hierarchy - - And make the various function implementations work in more common ways. - - - remove some unnecessary flexibility - - simplify some function descriptors to do their work during render() - - fix generics of QueryLiteral - - fix DerbyConcatEmulation - -commit effec02964cddcedea7afa0e5b2bf606f32e1076 -Author: gavinking -Date: Mon Jan 27 23:12:53 2020 +0100 - - Automatically generate check constraints for boolean and enum attributes - - And make enums map to TINYINT by default. - -commit 992b390fce6ee531f3b0300b865f70c8503892d1 -Author: gavinking -Date: Mon Jan 27 20:10:57 2020 +0100 - - Get type-specific column length/precision/scale defaulting working again - - And fix resulting breakage to envers - -commit f0d93200b5fafef65f0bec09c3e40fb64087884e -Author: gavinking -Date: Mon Jan 27 16:44:58 2020 +0100 - - Add hibernate.dialect.show_hql_functions - - Very useful feature for logging available functions - -commit 96c948b06bb7947dc07cbd6995e552a11506f2bc -Author: gavinking -Date: Mon Jan 27 12:13:00 2020 +0100 - - Changes to tests - - First, disable tests that fail because of loss of indirected parameter binding. - On the other branch, the index of a HQL parameter wasn't passed directly through - as the index of the JDBC parameter. On this branch it seems to be. This causes a - problem for fancy HQL functions like overlay() and pad() which sometimes - duplicate/reorder HQL arguments in the generated SQL. - - Also reenable tests that now pass. - - Also fixed a rather badly-written test that failed for me. - - - called Thread.sleep(), wasting a whole second - - failed on non-slow machines - -commit 5b18a4048d8bf2fff02c64d9d8c986bbdc057ec1 -Author: gavinking -Date: Mon Jan 27 14:03:31 2020 +0100 - - Make parenthesized expressions work in HQL - - Previously, parenthesized expression were broken. - -commit 95a291575ea58c7d797e7e12ef83674165d45c53 -Author: gavinking -Date: Sun Jan 26 16:58:41 2020 +0100 - - Hacky solution to make count(e) work again - - (It wasn't working on the new 6 branch) - -commit 28232427ce523e7407951b77554d788d8dd7507b -Author: gavinking -Date: Sun Jan 26 13:40:29 2020 +0100 - - Got unary +, - working again - - (They were unimplemented on the new 6 branch) - -commit 9565d499af2d4efd71eeaad1101982a8183c3884 -Author: gavinking -Date: Fri Jan 24 01:01:35 2020 +0100 - - Big merge of my branch with new Hibernate 6 codebase - - Lots of new functionality here related to HQL functions, SQL - dialects, and date/time handling. - -commit 4cd9dd30a094af43b9975869c0ef37d1bf5bb0c3 -Author: Davide D'Alto -Date: Thu Jan 30 16:37:11 2020 +0000 - - HHH-13831 Rename test class to EventListenerDuplicationStrategyTest - -commit 0268ba9a33763f87033d26e0d4d5b560a42efb98 -Author: Davide D'Alto -Date: Thu Jan 30 11:53:42 2020 +0000 - - HHH-13831 Test listeners error replacement strategy - -commit e38d2be43122131bb8e8761b2b560d059eeb3ffd -Author: Davide D'Alto -Date: Thu Jan 30 11:51:03 2020 +0000 - - HHH-13831 Test listener keep original replacement strategy - -commit 6670d034936643efde004560be272f34a7dc9b5d -Author: Davide D'Alto -Date: Thu Jan 30 11:40:09 2020 +0000 - - HHH-13831 Add tests for multiple listeners - - We want to test what happens when we apply a replacement strategy - that doesn't match all listeners. - -commit 695e3a084edaa2bea84d2e2855ab95a3778c28d2 -Author: Davide D'Alto -Date: Thu Jan 30 11:39:39 2020 +0000 - - HHH-13831 Clean up existing tests for listeners - -commit 7bf632e5c5f762aa19b191e17d9d5df70a109df6 -Author: Davide D'Alto -Date: Wed Jan 29 19:09:32 2020 +0000 - - HHH-13831 Fix the way we keep track of the callers in test - -commit c0a2b4f4242906d5e85c86c7ec94941176e9dcb1 -Author: Davide D'Alto -Date: Thu Jan 30 14:52:00 2020 +0000 - - HHH-13831 Add missing placeholder to log message - -commit 0a2dd4e1261e7c134a966ce02f6b89171d923dbd -Author: Steve Ebersole -Date: Wed Jan 29 12:53:08 2020 -0600 - - HHH-13831 Refresh listeners when one is replaced - -commit 2f86c4983f652326cf9855ad3330140a24092403 -Author: Steve Ebersole -Date: Wed Jan 29 12:09:25 2020 -0600 - - HHH-13831 Refresh listeners when one is replaced - -commit 739ca869af62b91ece6077d56dfad577c255f0cc -Author: Davide D'Alto -Date: Wed Jan 29 14:04:59 2020 +0000 - - HHH-13831 Test for replacing listeners - -commit 5c1cc35f9842222b74901459245c1bf387e398aa -Author: Davide D'Alto -Date: Wed Jan 29 14:04:08 2020 +0000 - - HHH-13831 Refresh listeners when one is replaced - -commit 89ebcfbc32f6efda357f3dae33a37d479caaa6e5 -Author: Christian Beikov -Date: Thu Jan 30 12:20:33 2020 +0100 - - Allow to invoke list() operation also without unique filtering - -commit 7b064afbd33729ae15d06aba1bdb5cf17b2d5dca -Author: Christian Beikov -Date: Thu Jan 30 06:31:42 2020 +0100 - - Use type inference for every added when/otherwise arm for case expressions - -commit f7aba3ea1719fbb2e8504714a102b7197acfdd18 -Author: Sanne Grinovero -Date: Thu Jan 30 09:02:43 2020 +0000 - - HHH-13833 Replace references to Opcodes.ASM7 with OpenedClassReader.ASM_API - -commit 3eb49972f33e4a52c93125c4cb51239551208092 -Author: Nathan Xu -Date: Fri Jan 24 14:28:28 2020 -0500 - - HHH-8776 add more 'final' keywords to align with existing coding style - -commit d02ce91e9c9b8fed47bec9af05fb160efcd0d977 -Author: Nathan Xu -Date: Thu Jan 23 22:31:47 2020 -0500 - - HHH-8776 add testing cases to prove 'fetch graph' takes precedence over 'fetch profile' - -commit 29f905dafc4ef09695f37eed53cd09f90280c724 -Author: Nathan Xu -Date: Thu Jan 23 07:39:51 2020 -0500 - - HHH-8776 fix check style issue - -commit f3cfff5ceeda3685d2895c951c84d33368f35aea -Author: Nathan Xu -Date: Wed Jan 8 16:21:38 2020 -0500 - - HHH-8776 fix 'fetch graph' semantic - -commit a60a10f0090b276a404bb4910ce906cb55eccd3e -Author: Sam De Block -Date: Tue Jan 28 00:26:02 2020 +0100 - - HHH-13390 - - Upgrade JPA MetaModel Generator (jpamodelgen) to support Gradle Incremental Compile - -commit 1cd5ea61f682ce6ce4ae7efe089aab7901d88327 -Author: Christian Beikov -Date: Wed Jan 29 18:18:22 2020 +0100 - - Fix type inference for case expressions and simple case SQL rendering issue - -commit f66728d5b25f30bde4f41468bb2a6e4f57793d31 -Author: Christian Beikov -Date: Wed Jan 29 00:20:45 2020 +0100 - - Fix plural join alias de-reference - -commit 31377b1423a2c6737f76a5fe33f09743e8a578fb -Author: Christian Beikov -Date: Tue Jan 28 22:37:40 2020 +0100 - - Register JPA embeddable types properly, allow access to functions in registry and fix AttributeClassifications - -commit a4ba7666208ad568192bda68a21033a6165eb73b -Author: Gwenneg Lepage -Date: Wed Jan 29 01:05:14 2020 +0100 - - HHH-13833 Replace OpCodes.ASM5 with OpCodes.ASM7 in the Byte Buddy enhancer - -commit 252ca9e98b3691728697a96a7dddcae32e666f8f -Author: Sanne Grinovero -Date: Wed Jan 29 15:19:58 2020 +0000 - - HHH-13832 Optimise setting of default Flush Mode on a newly created Session - -commit 9b2a839ee4a92fd860df21fc28eb2499fce0f62f -Author: Safeer Ansari -Date: Wed Jan 29 16:17:57 2020 +0400 - - Fixing a typo in the build task #HHH-13830 - - One of the build tasks, publish, had a typo in the description. It has been corrected in this commit. - -commit b178f9e23aa0a2197e34966271ea058eb46d05aa -Author: Jonathan Bregler -Date: Tue Jan 28 21:36:32 2020 +0100 - - HHH-13783: fix test failure in HiLoSequenceMismatchStrategyTest - -commit b51d34a22d92a58c61cd37a1a9c55d6378192a92 -Author: Andrea Boriero -Date: Tue Jan 28 15:18:06 2020 +0000 - - HHH-13796 Fix test failure on Oracle - -commit 9d2ac546f39697810b81907a2ec49eabf01a8f0a -Author: Nathan Xu -Date: Thu Dec 12 19:29:07 2019 -0500 - - HHH-13677 make org.hibernate.flushMode config take effect - -commit a6934467f7d9c36b53e26e0a87be8a0517225c09 -Author: Nathan Xu -Date: Fri Jan 24 23:15:59 2020 -0500 - - HHH-6686 fix JQL exception in face of 'empty' - -commit f1d1e624782025a3ec466a6f304b4babce6bded5 -Author: Andrea Boriero -Date: Mon Jan 27 13:42:34 2020 +0000 - - HHH-10844 Fix test formatting - -commit 85bfcc6e21b4d7a6d3a6b17a5e8222f96910e1f7 -Author: Jan-Willem Gmelig Meyling -Date: Sun Dec 15 22:24:44 2019 +0100 - - HHH-13796 - Missing from clause in query from BinaryLogicOperatorNode row value constructor translation - - https://hibernate.atlassian.net/browse/HHH-13796 - -commit 38f01311602f115ccec23f9ee8faf4b2d69d636d -Author: Chris Cranford -Date: Fri Dec 6 15:04:07 2019 -0500 - - HHH-10844 Resolve columnDefinition to appropriate sql-type for audit mappings - -commit c02a703b170f60bd1ed06cd359e6161d06fc5893 -Author: Chris Cranford -Date: Thu Dec 19 09:59:38 2019 -0500 - - HHH-6615 Minor format changes - -commit ea170f4dca48d5f0dda98461e1e9024b64d6e369 -Author: Chris Cranford -Date: Fri Dec 6 12:46:25 2019 -0500 - - HHH-6615 Document throwing AuditException when revision number overflows - -commit f4abc098544225455ece84789583de301f202d88 -Author: Chris Cranford -Date: Fri Dec 6 12:24:18 2019 -0500 - - HHH-6615 Throw AuditException when generated revision number is negative. - -commit 8c52eb2eae14111d582145914928d8484cf61e85 -Author: Chris Cranford -Date: Mon Jan 13 19:55:14 2020 -0500 - - HHH-13770 Fix modified columns being populated with null values - -commit b3ea1d67c4ac01ed50096be28552d9d2ae8e9ad5 -Author: Chris Cranford -Date: Wed Jan 15 14:40:11 2020 -0500 - - HHH-13760 Code formatting changes & suggested logic simplification - -commit d1b32d2b6500da876249b78792a6aa4ec63a5feb -Author: Chris Cranford -Date: Wed Jan 15 14:33:06 2020 -0500 - - HHH-13760 Code formatting changes & suggested logic simplification - -commit 92bd6f89dd65e513d4667d0eb8a3c2fa45b37b9e -Author: Chris Cranford -Date: Mon Jan 13 18:28:53 2020 -0500 - - HHH-13760 Fix ClassCastException when Envers inserts audit rows that use lazy many-to-one mappings - -commit c5581e6759fd463e1ec3254dfe177c906adfaa03 -Author: Andrea Boriero -Date: Mon Jan 27 11:30:11 2020 +0000 - - HHH-13783 Fix test failing on Oracle - -commit 0c8e3056dcb2beab31e62839667ddf6584e8c33a -Author: Nathan Xu -Date: Sun Dec 15 16:16:40 2019 -0500 - - HHH-13783 avoid SequenceMismatchStrategy checking for non-pooled optimizer - -commit 5844bbd85b0301c581b3f72537a5ff60abc149ba -Author: Andrea Boriero -Date: Fri Jan 24 11:32:44 2020 +0000 - - HHH-12856 Reintroduce supportsLimitOffset for legacy OS400 - -commit 7b1d1a1f3a2ff775c1ed846d3046d366bfa58d16 -Author: Pierrick Rouxel -Date: Wed Jan 2 23:34:14 2019 +0100 - - HHH-12856 Add AS400V7R3Dialect as default for V7R3 of IBM i - -commit 622978b725bc8256afb43485ac681b34fbdb1de6 -Author: Pierrick Rouxel -Date: Wed Jan 2 23:14:12 2019 +0100 - - HHH-12856 Fix DB2400V7R3 dialect in documentation - -commit 1038a0c96884058257b66b3e9f94c5bc9f6ee9ae -Author: Pierrick Rouxel -Date: Wed Jan 2 23:12:58 2019 +0100 - - HHH-12856 Reintroduce limitation for legacy OS400 - -commit b204c95e0cf970ea64ea65f95eb6f29ae816d2da -Author: Pierrick Rouxel -Date: Mon Aug 6 09:10:38 2018 +0200 - - HHH-12856 Fix sequences with liblist support - -commit 4aea43bdb0e4cba3082e1c9f54d71c57166ea82c -Author: Pierrick Rouxel -Date: Sun Aug 5 22:10:04 2018 +0200 - - HHH-12856 Cleanup DB2400Dialect - -commit 1c3b8a1c280b95b6bb5e54f3a569f8438710baff -Author: Pierrick Rouxel -Date: Wed Jul 25 00:13:42 2018 +0200 - - HHH-12856 Support of sequences on DB2400 - -commit d04a1fe3fd42d425321514e533466a2001f245ac -Author: Andrea Boriero -Date: Fri Jan 24 09:59:02 2020 +0000 - - HHH-13373 Remove FailureExpected annotation from tests and assure tearDownDBs method is executed even if an error occurs in the setUpDBs method - -commit bc2aa159a16e417a25d1d26601bf3177997e2147 -Author: Nathan Xu -Date: Wed Jan 22 18:56:56 2020 -0500 - - HHH-13373 ensure testing code correctness by local testing - -commit 7beb96a2aba2c8df52600f4d184284457abdad86 -Author: Nathan Xu -Date: Wed Jan 22 16:53:02 2020 -0500 - - HHH-13373 add a testing case annotated with '@FailureExpected' annotation - -commit 8fb35947ff6525a8286295f2959cd5a71502b2f9 -Author: Nathan Xu -Date: Fri Dec 13 20:00:55 2019 -0500 - - HHH-13373 fix the bug that 'different sequence names in differnt dbs' breaks SequenceInformationExtractorMariaDBDatabaseImpl - -commit 98414b1a921b38b07589e9baa90a8cfa1e6789a8 -Author: Andrea Boriero -Date: Wed Jan 22 19:35:14 2020 +0000 - - Fix compilation error after merge - -commit fd6866f029f2da6ec7b1a63c1f31a907cfd39a86 -Merge: e889c76e49 4318349b4d -Author: Andrea Boriero -Date: Wed Jan 22 19:34:38 2020 +0000 - - Merge remote-tracking branch 'upstream/master' into wip/6.0_merge_22 - -commit e889c76e49673819d623875c98f6adc06f82ccde -Merge: 9643537262 63a96e335e -Author: Andrea Boriero -Date: Wed Jan 22 18:14:10 2020 +0000 - - Merge remote-tracking branch 'upstream/master' into wip/6.0_merge_21 - -commit 4318349b4db5695f4cb7520b3fb8535fabba0137 -Author: Antoine Reilles -Date: Fri Jan 10 14:44:24 2020 +0100 - - Fix String format in log - - Use %s in the log string format, to avoid java.util.UnknownFormatConversionException: Conversion = ']' when enabling debug logs. - -commit a2f7f59de4578ed41241037fe161a653e49bec1f -Author: Christian Beikov -Date: Thu Dec 5 19:21:03 2019 +0100 - - HHH-13752 - Workaround id class issues like suggested by @jwgmeligmeyling - -commit 8f563fbd3146c2fe649ba14e1e5af191dba455eb -Author: Christian Beikov -Date: Tue Nov 26 16:25:10 2019 +0100 - - HHH-13752 - Test and fix deletion of entities with many-to-many assocations using non-primary keys for join table - -commit fa952863cf7effa61c8a3b63f72805e7d1be8b79 -Author: gavinking -Date: Mon Jan 20 21:14:30 2020 +0100 - - HHH-13823 Make it possible to reuse MergeContext in Hibernate RX. - - Exposes the operations used by DefaultMergeEventListener - -commit e5f8341aa4173ca460aa6f8b09c28c4bb05a6c67 -Author: gavinking -Date: Mon Jan 20 17:06:53 2020 +0100 - - HHH-13823 Add setters for two of the properties of EntityIdentityInsertAction - - This is needed by hibernate-rx. - -commit a0f9b1df0015b5747e4de7e63b1acde87a2d40ac -Author: gavinking -Date: Mon Jan 20 14:44:13 2020 +0100 - - HHH-13823 Make three private methods of SessionImpl visible to subclasses - -commit a2f21e12a4f05223de767b2fe041e4e0cc600f62 -Author: gavinking -Date: Sun Jan 19 19:43:30 2020 +0100 - - HHH-13823 Expose members of some SQL construction classes to subclasses - - Allows hibernate-rx to more easily customize bind variable syntax. - -commit 12a8508e669aa2824df7ab6d7ad2b58fcb20d5e3 -Author: gavinking -Date: Sun Jan 19 18:00:41 2020 +0100 - - HHH-13823 Introduce an indirection when instantiating Insert/Update/Delete - - This allows hibernate-rx to intervene in the rendering of bind variables - and use $n instead of ? - -commit 96faae93b11d97fac31cfbf9df2a592e8b22e0fb -Author: gavinking -Date: Sun Jan 19 15:19:50 2020 +0100 - - HHH-13823 Always generate lowercase column aliases - - This change is needed by hibernate-rx as a workaround for behavior - of the Postgres client. But anyway I think it's cleaner. - -commit f59f0ce40680b02e8cfd113ef0f3a2577640b9ce -Author: gavinking -Date: Sat Jan 18 14:53:36 2020 +0100 - - HHH-13823 Changes for Hibernate RX - - Mostly just expose some operations and constructors that were previously inaccessible. - -commit da019405b67d5b4bf089740d00111fd850ac4ac1 -Author: Sanne Grinovero -Date: Tue Jan 21 12:20:16 2020 +0000 - - HHH-13821 Update to Byte Buddy 1.10.7 - -commit 33fa24d9359116a8ba31c9812e0c00f13f03d5b7 -Author: Sanne Grinovero -Date: Tue Jan 21 12:20:47 2020 +0000 - - HHH-13822 OSGi integration tests need to be able to download dependencies from Maven Central using HTTPS - -commit bf473681e49cb51a3de9fd163d2611516563d29b -Author: marekchodak -Date: Sun Jan 19 22:04:47 2020 +0100 - - HHH-13780 Allow NamedQuery to set hint QueryHints.PASS_DISTINCT_THROUGH - -commit 63a96e335ef425f4329d819d6a1c821df9b98ef3 -Author: Gail Badner -Date: Wed Jan 15 15:23:47 2020 -0800 - - HHH-13814 : Add tests - -commit 9643537262a7ce6c84f6489591c3232bb1a386e6 -Author: Andrea Boriero -Date: Tue Jan 14 13:25:08 2020 +0000 - - Fix Polymorphic collection issue, remove unused code - -commit b23e5ba54a68f894faf08a955487bc7b620e2529 -Author: Steve Ebersole -Date: Tue Jan 14 07:24:07 2020 -0600 - - support for canonical reference to id and version. consider other entity parts - natural-id, tenant-discriminator, etc - -commit c2bb7d65f2e051895dfc4fad89ee504b6ea06d76 -Author: Andrea Boriero -Date: Mon Jan 13 11:36:40 2020 +0000 - - Fix Polymorphic collection issue - -commit 0d024ffd596f5d14ec98aa6df544bc0e6766e1ab -Author: Steve Ebersole -Date: Mon Jan 13 10:38:35 2020 -0600 - - - Fix error when null is value is bind to a query parameter - - fixed problem with id attributes not named `id` - -commit ccfa8101c1e8e967b7179e8fdad6811de2ac8c48 -Author: Steve Ebersole -Date: Sun Jan 12 23:03:12 2020 -0600 - - added working design doc on attribute ordering wrt inheritance - -commit 19b7921d1d2afc1be785e49801c414ac3b10cf13 -Author: Sanne Grinovero -Date: Thu Jan 9 08:51:50 2020 +0000 - - HHH-13806 CoreMessageLogger#unableToLoadCommand is not printing the cause of the error - -commit a9ee082128edc354032038ab9e9634dab19753a6 -Author: Steve Ebersole -Date: Tue Jan 7 15:34:29 2020 -0600 - - initial work on non-aggregated composite-id support - -commit 0b938bd16b55a0fa57f8e6f823785407987796b4 -Author: Nathan Xu -Date: Mon Jan 6 16:38:35 2020 -0500 - - HHH-13800 fix typo in AbstractGraphNode's verifyMutability() method - -commit 207c0d68be50317931f1e1c76d12221418634855 -Author: Nathan Xu -Date: Mon Jan 6 16:01:13 2020 -0500 - - HHH-13800 add a new found typo in org.hibernate.graph package's package-info.java - -commit 674b1dfd271a940b91038a7e5f72a3f381697e75 -Author: Nathan Xu -Date: Thu Dec 26 16:21:55 2019 -0500 - - HHH-13800 Fix typos in Javadoc - -commit 00e9db2b8bc396ce5013903bf4b4611fbb3e451d -Author: Nathan Xu -Date: Sat Dec 21 17:10:38 2019 -0500 - - HHH-11958 Make EntityManager.find() support QueryHints.HINT_READONLY - -commit eab6107ec2e7b3a0c06146a9ff51b9964f4b3169 -Author: Steve Ebersole -Date: Mon Jan 6 08:38:08 2020 -0600 - - HHH-13785 : HQL/Criteria function support - - - temporal literals - - generalized literals - - literal formatters (SQL string generation) - - FORMAT function - -commit 49fe4f649408dbe51013dc95d048a53aa1d6a8d0 -Author: Nathan Xu -Date: Thu Nov 28 20:13:48 2019 -0500 - - HHH-13726 Extract 'prepareEventListeners' method out of SessionFactoryImpl - -commit bd472581a4df0310ad597abbce5ccb566690e043 -Author: Nathan Xu -Date: Sun Jan 5 19:02:08 2020 -0500 - - HHH-13802 add support of the various new tags so their warning won't show up - -commit 2663f8718ec179f19da4fcc6cc3d94d397c22e2f -Author: Nathan Xu -Date: Sun Jan 5 12:48:24 2020 -0500 - - HHH-13802 revert back @todo - -commit 3df0fcefa40b2f1a6c273c7a37002b87ed65562c -Author: Nathan Xu -Date: Sat Jan 4 15:20:09 2020 -0500 - - HHH-13802 fix javadoc warnings - -commit 6e0d15b134ee52674ac7a34beb7fcbf94301744e -Author: Steve Ebersole -Date: Thu Dec 26 11:19:25 2019 -0600 - - HHH-13785 : HQL/Criteria function support - - - EXTRACT function - - LOCAL_DATETIME function - - LOCAL_DATE function - - LOCAL_TIME function - -commit 77377337d67a7623549e0ed7b8f67e0ec1028c21 -Author: Steve Ebersole -Date: Sun Dec 22 07:33:28 2019 -0600 - - HHH-13785 : HQL/Criteria function support - - - checkstyle - -commit ba5b4e7c022866f6a1085f14dda39d143f62bd95 -Author: Steve Ebersole -Date: Sat Dec 21 21:52:04 2019 -0600 - - HHH-13785 : HQL/Criteria function support - - - tests - - Dialect changes - -commit a39fa09650ed0283a2c215a931016a4efcd30094 -Author: Steve Ebersole -Date: Sat Dec 21 19:38:22 2019 -0600 - - HHH-13785 : HQL/Criteria function support - - - tests - - Dialect changes - -commit 3e89772bb823fef55a52dc8c84b4e4402c69bbcc -Author: Steve Ebersole -Date: Fri Dec 20 17:44:18 2019 -0600 - - HHH-13785 : HQL/Criteria function support - - - preliminary work on updated tree handling. See SqmFunctionDescriptor, SqmFunctionRegistry and SqmFunction - -commit 6925fe5ab4e114a82e3b611b75605aa6cd897ed6 -Author: Steve Ebersole -Date: Fri Dec 20 07:50:56 2019 -0600 - - 6.0.0.Alpha4 - -commit a3e04f1d6ce99ba91c2edfbfdcb02a31e95b5c3d (tag: 6.0.0.Alpha4) -Author: Steve Ebersole -Date: Fri Dec 20 06:53:47 2019 -0600 - - 6.0.0.Alpha4 - -commit 99d42017301595f192c72bd4ccf3af7f17865b5c -Author: Steve Ebersole -Date: Mon Dec 16 15:17:30 2019 -0600 - - Consolidated Antlr grammars into dedicated package - -commit 0ec232a32651a04577d8f2c0cea1675e35486168 -Author: Steve Ebersole -Date: Mon Dec 16 15:01:56 2019 -0600 - - HHH-13778: `@OrderBy` handling using SQL AST - - - complete support other than function support which is still overall not implemented - -commit 1d4bb08ef7f6e3694482375d3d4015295cc419ea -Merge: d5715e3fbc 6cf7fdaa97 -Author: Andrea Boriero -Date: Mon Dec 16 12:43:47 2019 +0000 - - Merge remote-tracking branch 'upstream/master' into wip/6.0_merge_16 - -commit d5715e3fbc878e14383abe1e1400b9f55fdfa947 -Author: Andrea Boriero -Date: Mon Dec 16 11:15:26 2019 +0000 - - Refactoring, removed InFlightEntityMappingType#finishMappingModelInitialization method - -commit 6cf7fdaa976d2782843461596cebfeab405808fe -Author: Davide D'Alto -Date: Wed Dec 11 16:36:31 2019 +0000 - - HHH-13759 Small refactoring for PersistentAttributeTransformer - - This change makes it easier to identify where we behave differently - because we are dealing with a class annotated with @MappedSuperclasss. - -commit 57a45dab19622cc4fa60d1de69f5789fdd37070e -Author: Davide D'Alto -Date: Wed Dec 11 16:35:41 2019 +0000 - - HHH-13579 Add comment to InlineDirtyChekingHandler - -commit 0251473c87d2381124543297c4dd83b953bb55b0 -Author: Davide D'Alto -Date: Wed Dec 11 15:08:23 2019 +0000 - - HHH-13759 Additional test cases - -commit 0dea8319d460670b346742905b8dd0e7f4fe623f -Author: Andrea Boriero -Date: Tue Nov 26 19:07:23 2019 +0000 - - HHH-13759 - Support for private Embedded in MappedSuperclass - -commit c4dc9b0d250c6b95b1229a22cc788e3c0bc6292d -Author: Davide D'Alto -Date: Fri Dec 13 11:29:40 2019 +0000 - - HHH-13704 Make javassist a compile time dependency again - - This commit revert some of the changes so that we can release it in a micro - without breaking application using Javassist. - - In the next minor it should be reverted. - -commit 287808a914b33cc91370d114b264a6aac2463400 -Author: Steve Ebersole -Date: Thu Dec 12 18:24:36 2019 -0600 - - HHH-13778: `@OrderBy` handling using SQL AST - - - fixed test - -commit b87bbb472000aba338ceda72a7cb6c65f8a10d41 -Author: Steve Ebersole -Date: Thu Dec 12 13:38:28 2019 -0600 - - HHH-13778: `@OrderBy` handling using SQL AST - - - checkstyle - -commit 284b2c567723b2946aa2fe2bea64c1cfc2f64a15 -Author: Steve Ebersole -Date: Thu Dec 12 13:34:37 2019 -0600 - - HHH-13778: `@OrderBy` handling using SQL AST - - - parsing in PluralAttributeMapping implemented - - still need to convert the OrderByFragment to SQL AST and add to the SQL AST order-by-clause - -commit 8600058784c82e99ba8d7f31387cfabd393bd4a2 -Author: Steve Ebersole -Date: Thu Dec 12 11:57:54 2019 -0600 - - HHH-13778: `@OrderBy` handling using SQL AST - - - initial work - Antlr grammar, parse tree visitation and building OrderByFragment (translation) tree - - fixed bug in HQL parsing - was building an unnecessary HqlLexer instance - -commit 130945f70fe5cd3ac499ddbfd0d0167a5924a573 -Author: Davide D'Alto -Date: Fri Dec 6 10:12:43 2019 +0000 - - HHH-13704 Add optional=true to javassist in orm module - -commit f322054000766ea54540b146af71713af3ff9be5 -Author: Davide D'Alto -Date: Wed Nov 27 16:30:25 2019 +0000 - - HHH-13704 Update migration guide - -commit 50d6fbe3a631f4b6d7574bc73ab0cfe18f593bf5 -Author: Davide D'Alto -Date: Wed Nov 27 16:19:36 2019 +0000 - - HHH-13704 Add Javassist integration tests with WildFly - -commit 921b1fe67f426a89eb4072cd3f5226601fd6a7ad -Author: Davide D'Alto -Date: Wed Nov 27 12:18:11 2019 +0000 - - HHH-13704 No need to exclude javassist in the envers module - -commit b8ffe851a71645efdddd87444bb86debe9bf675e -Author: Davide D'Alto -Date: Mon Nov 11 11:24:15 2019 +0000 - - HHH-13704 Format imports in EnhancerFileNotFoundTest - -commit c3ccc65275522504836965828f84450e9bffc6d2 -Author: Davide D'Alto -Date: Mon Nov 11 11:13:00 2019 +0000 - - HHH-13704 Test Javassist is not on the classpath - -commit 76d267212215fcad99a84253406d0854ae5f0823 -Author: Davide D'Alto -Date: Fri Nov 8 20:54:00 2019 +0000 - - HHH-13704 Make Javassist an optional dependency - - * Change the gradle scope to `provide` - * Add the dependency to the OSGi test bundle - - HHH-13704 Add Javassist to the dependencies for the OSGi test - -commit 39071a4d397e899ce05af9390763e64948adb03c -Author: Davide D'Alto -Date: Fri Nov 8 20:53:44 2019 +0000 - - HHH-13704 Move EnhancerFileNotFoundTest - - Tests requiring Javassist are now in a dedicated folder. - -commit dd79fda20d8e4e2faba50182c0381b169562262c -Author: Davide D'Alto -Date: Fri Nov 8 20:48:11 2019 +0000 - - HHH-13704 Remove unused javassist import - -commit 2e5892236b1a34433039b3c570df503eb3eddf6d -Author: Davide D'Alto -Date: Fri Nov 8 12:52:46 2019 +0000 - - HHH-13704 Remove Javassist from ClassFileArchiveEntryHandler - - Use Jandex instead. - -commit bac88eda53ef8b36a807d09df8206f44309a8c1c -Author: Davide D'Alto -Date: Thu Nov 7 12:08:15 2019 +0000 - - HHH-13704 Typo: tupizer -> tuplizer - -commit 8c671d98d0fbb5729213a781b9c6d43563aa4eb6 -Author: Steve Ebersole -Date: Wed Dec 11 19:43:37 2019 -0600 - - minor - -commit 3a69b748947b865b3b90ae9459ca1b6bb581813e -Author: Nathan Xu -Date: Thu Nov 28 23:04:04 2019 -0500 - - HHH-13456 refactor ForeignGenerator to allow for the possibility of StatelessSession - -commit 8ce140475496d7b58df9c9fd82f1aafc288f73f4 -Author: Nathan Xu -Date: Fri Dec 6 23:11:36 2019 -0500 - - HHH-13644 fix the NPE by override ProcedureCallImpl's 'getResultStream()' method. - -commit 28c0b05d0f9a823dd2e795854066950e988cc9ce -Author: Steve Ebersole -Date: Wed Dec 11 15:03:04 2019 -0600 - - `org.hibernate.metamodel.RuntimeMetamodels` - -commit 1580613f8ab7d80423c133d5859a9b4fa059ed23 -Author: Andrea Boriero -Date: Wed Dec 11 11:31:43 2019 +0000 - - HHH-13777 UnsupportedOperationException is thrown for MappedSuperclass if the id is declared on subclasses - -commit 3eed21813585314b4c79c089ba653c699bbe9c12 -Author: Andrea Boriero -Date: Tue Dec 10 15:21:53 2019 +0000 - - HHH-13769: Avoid unnecessary joins test - -commit 31913eaeeab47daa900879f78c7ef95de0ac4987 -Author: Andrea Boriero -Date: Mon Dec 9 10:26:46 2019 +0000 - - Add tests for AttributeOverride - -commit 996157fca18799c9a56feb809149475324313534 -Author: Steve Ebersole -Date: Tue Dec 10 14:43:24 2019 -0600 - - HHH-13769: Avoid unnecessary joins - - better support for lazy TableReference handling for collections; - removed TableReferenceCollector and TableReferenceContributor - -commit dcbef8705c09d10f4b066384765bd4470427dd00 -Author: Steve Ebersole -Date: Tue Dec 10 14:13:41 2019 -0600 - - HHH-13769: Avoid unnecessary joins - - better support for lazy TableReference handling for collections - -commit becbaea1720163c6d8568881a5a5328c2ce79f25 -Author: Andrea Boriero -Date: Tue Dec 10 12:07:25 2019 +0000 - - Fix Could not resolve binding for Foreign Key for TableReference name with schema - -commit 1363844ca02a96c59cb7ce765d41d45abddc0646 -Author: Andrea Boriero -Date: Wed Dec 4 18:17:13 2019 +0000 - - Implement support for @Embeddable with ToMany and ToOne - -commit 3be2369110c7643df3f6ef2c0ee907fca1e9f833 -Author: Steve Ebersole -Date: Mon Dec 9 17:30:21 2019 -0600 - - HHH-13769: Avoid unnecessary joins - -commit 79c83cf8ba0509de938c8e032e87b52d0bda3a24 -Merge: 033eea4258 56561f4b4b -Author: Andrea Boriero -Date: Mon Dec 9 12:07:23 2019 +0000 - - Merge remote-tracking branch 'upstream/master' into wip/6.0 - -commit 033eea4258a7b523062db36adfa4e64173b9880b -Author: Steve Ebersole -Date: Sat Dec 7 08:38:40 2019 -0600 - - minor change - - - initialize `#valueMapping` field during `org.hibernate.metamodel.mapping.EmbeddableMappingType` ctor by passing along the creator-function, allowing `#valueMapping` to become physically final (was always logically final). - -commit 56561f4b4b72365b7d846ffecfcaa75a504b347e -Author: Andrew Guibert -Date: Thu Dec 5 10:40:48 2019 -0600 - - HHH-13767 Remove mention of Oracle and DB2 not being in MC - - Both Oracle and DB2 JDBC drivers are now available in MC so the statement is no longer accurate - -commit dba8d70e940f37f8dce3a68cbcfca8bf231cedcf -Author: Andrea Boriero -Date: Thu Dec 5 17:52:29 2019 +0000 - - 5.4.10 - -commit 1a1631b57b4a3eac90b8d524e83d79adae1a5799 (tag: 5.4.10) -Author: Andrea Boriero -Date: Thu Dec 5 16:36:34 2019 +0000 - - 5.4.10 - -commit a6b924ffe7293e7baeee3b171c62bdd68a3c67d5 -Author: Jan-Willem Gmelig Meyling -Date: Wed Dec 4 20:26:24 2019 +0100 - - HHH-9301 Fix test under PostgreSQL - -commit 963a516ea818d0a10462f492e721a720145264ac -Author: Andrea Boriero -Date: Thu Dec 5 12:34:27 2019 +0000 - - Revert "HHH-13752 - Test and fix deletion of entities with many-to-many assocations using non-primary keys for join table" - - This reverts commit 58dd469e4ca59485469cf4b7c3537443faf104a9. - -commit e924d55fdfe9b726404ffd2a38e30f34d16a032b -Author: Andrea Boriero -Date: Thu Dec 5 12:34:10 2019 +0000 - - Revert "HHH-13752 - Deletion of entities with many-to-many assocations using non-primary keys for join table" - - This reverts commit 11455f34677fa0bc5dd5123977fd3a0849da6aea. - -commit 99868fb5f9aee7f09c25b68ddd9005e5aaa1f68b -Author: Gail Badner -Date: Tue Nov 19 11:49:59 2019 -0800 - - HHH-13355 : StaleStateException for updates to optional secondary table using saveOrUpdate - -commit 69dad5fda505e4a59162b12a5f0fd38c1390fc0d -Author: Gail Badner -Date: Tue Nov 19 11:46:02 2019 -0800 - - HHH-13355 : test case - -commit 6ce7831f77f2f70b0f763e8b57ba7705197f0131 -Author: Gail Badner -Date: Fri Nov 15 16:11:29 2019 -0800 - - HHH-13365 : Entities in joined subclass table are not inserted with batch size > 0 using sequence-identity ID generator - -commit 7d11649d99183b1683f637e2601039cda52c537a -Author: Gail Badner -Date: Fri Nov 15 16:10:32 2019 -0800 - - HHH-13365 : Added test case - -commit 11455f34677fa0bc5dd5123977fd3a0849da6aea -Author: Andrea Boriero -Date: Thu Dec 5 10:18:23 2019 +0000 - - HHH-13752 - Deletion of entities with many-to-many assocations using non-primary keys for join table - -commit 58dd469e4ca59485469cf4b7c3537443faf104a9 -Author: Christian Beikov -Date: Tue Nov 26 16:25:10 2019 +0100 - - HHH-13752 - Test and fix deletion of entities with many-to-many assocations using non-primary keys for join table - -commit a133aff97f5d84767eee0c792f1fc8be4a5c7c09 -Author: Andrea Boriero -Date: Thu Dec 5 09:25:32 2019 +0000 - - HHH-13608 Fix failing tests - -commit ca782f64b2bdbdde5a1fddd4287f64c879a648fb -Author: Davide D'Alto -Date: Wed Nov 27 17:39:05 2019 +0000 - - HHH-13755 Update Hibernate Gradle plugin in the documentation - -commit 7daf67172abbbcd8845af0aca2121557006a3c05 -Author: Jason Jijón -Date: Fri Nov 29 11:40:56 2019 -0500 - - HHH-13758 - Limit Handler for SQL server doesn't work with CTE queries with strings literals - -commit 42752ec89d37b05ff904e5dc52cdff82c83cfb4d -Author: Sanne Grinovero -Date: Wed Dec 4 17:40:59 2019 +0000 - - HHH-8901 Missing data cleanup in the new test - -commit 386d77129eca3a37f2d94d7f7b9cb6cc40b22989 -Author: Sanne Grinovero -Date: Mon Dec 2 12:31:35 2019 +0000 - - HHH-13761 Debug logging of JPA compliance settings didn't log the value of the settings - -commit b9b15245b7df8ac8710ccd7d6bedae1882d08839 -Author: Sanne Grinovero -Date: Wed Dec 4 16:37:34 2019 +0000 - - HHH-8901 Some very minor string handling optimisations - -commit ab9ae431858dc6727023d7f03bd6925f99011c62 -Author: Nathan Xu -Date: Tue Nov 26 22:28:34 2019 -0500 - - HHH-8901 replace "in ()" SQL with "in (null)" in QueryParameterBindingsImpl - -commit 4e449dfafac58507233f0ec15711fde2d785e653 -Author: Davide D'Alto -Date: Tue Dec 3 16:14:22 2019 +0000 - - HHH-13764 Test behaviour doesn't change when @Embedded is on the getter - -commit 4fb813f39ce082eb64456bb5fcdc8d7c69b35907 -Author: Davide D'Alto -Date: Tue Dec 3 17:47:58 2019 +0000 - - HHH-13764 Include getter annotations when required for the enhancements - -commit d5125d8e31abfbf65a57c2a3d1c61df8c2958c43 -Author: Steve Ebersole -Date: Tue Dec 3 13:27:37 2019 -0600 - - HHH-13763 : Update all load-by-key handling to use SQL AST - - minor fix-ups - -commit e112d9631ed579b4a09ef0732c6856125dfa8bb0 -Author: Steve Ebersole -Date: Tue Dec 3 13:12:57 2019 -0600 - - HHH-13763 : Update all load-by-key handling to use SQL AST - - SingleUniqueKeyEntityLoader - -commit 0a41ac8466f14cd0a0599b9253a53c273ad243ef -Author: Steve Ebersole -Date: Tue Dec 3 11:31:45 2019 -0600 - - HHH-13763 : Update all load-by-key handling to use SQL AST - - * dropped `org.hibernate.loader.plan` - * dropped `org.hibernate.loader.custom` (*) - * dropped `org.hibernate.loader.collection` - * dropped `org.hibernate.loader.entity` - * dropped `org.hibernate.loader.hql` - * cleaned-up `org.hibernate.loader` - -commit 98101bfc529992c3d44522d92a84e608898b7f18 -Author: Davide D'Alto -Date: Fri Nov 29 16:18:37 2019 +0000 - - HHH-13759 Add AssertJ for testing Hibernate Core - -commit 46170d9ffe00f8e31366b212aac8782a8a7e9f9e -Author: Davide D'Alto -Date: Fri Nov 29 16:15:40 2019 +0000 - - HHH-13759 Add AssertJ in the list of libraries available - - It's useful to test the bytecode enhancements and has a nicer - fluent API. - -commit 10cdb47a97bdde774dbc87b04cfc12f407c59e1d -Author: Steve Ebersole -Date: Mon Dec 2 15:05:26 2019 -0600 - - HHH-13763 : Update all load-by-key handling to use SQL AST - - * Cleanup - * Prep for dropping LoadPlan - -commit 264224a49e1c0a45057dd4b3e68837bb78822c4f -Author: Steve Ebersole -Date: Mon Dec 2 13:48:21 2019 -0600 - - HHH-13763 : Update all load-by-key handling to use SQL AST - - - Preliminary work on NaturalIdLoader - -commit c96ad0dcea2d8f393d5ff8f97810467e47c50469 -Author: Steve Ebersole -Date: Mon Dec 2 12:12:54 2019 -0600 - - HHH-13763 : Update all load-by-key handling to use SQL AST - - - Initial working support for the following load-by-key Loaders: - - * SingleIdEntityLoader - * MultiIdEntityLoader - * SingleKeyCollectionLoader - * BatchKeyCollectionLoader - * SubSelectFetchCollectionLoader - -commit 6acfd17548ac1ccfd9af6404965a8719c94d705c -Author: Simeon -Date: Sun Dec 1 08:36:37 2019 +1100 - - HHH-13762 Update vibur-dbcp dependency to 25.0 - -commit f836689be8c7d4b66812bd0ef8c1c81ef815bf5e -Author: Andrea Boriero -Date: Mon Dec 2 10:22:56 2019 +0000 - - Fix merge errors - -commit d2865a54df67fe157591a7821e300e49967fa5a6 -Merge: 75d436ab25 f08abf3628 -Author: Andrea Boriero -Date: Mon Dec 2 09:14:27 2019 +0000 - - Merge remote-tracking branch 'upstream5/master' into wip/6.0_merge_15 - -commit 75d436ab25ef47ac8bbfdda23df2b11d1df2d0ca -Author: Steve Ebersole -Date: Wed Nov 27 12:06:21 2019 -0600 - - HHH-13720: Implement mapping model support for plural attributes - sorted set; - HHH-13715: HQL/Criteria DELETE support - support for cleaning-up collection tables - -commit 7b489b180c35aecd73c6f8e7b0aa634b20d91c77 -Author: Steve Ebersole -Date: Wed Nov 27 07:22:49 2019 -0600 - - HH-13720: Implement mapping model support for plural attributes - sorted set - -commit 6a403fa5d93254d2c93a65f0a6ee7ff970abc3fe -Author: Andrea Boriero -Date: Wed Nov 27 10:53:35 2019 +0000 - - Fix delete of entity with plural attributes - -commit afb9f9770ddc332c2082dadf472e9ee408455959 -Author: Steve Ebersole -Date: Tue Nov 26 15:12:54 2019 -0600 - - HHH-13746: Implement Load by Multiple Ids using SQL AST - - composite id testing - -commit c13bfdc338adb8329d13bf5ce88e57a64ecdf851 -Author: Steve Ebersole -Date: Tue Nov 26 14:54:36 2019 -0600 - - initial working support for SQL-AST-based subselect-fetching - -commit 293fc0fe54d2fcb0c62e877f3f1eb38ada1e9c74 -Author: Steve Ebersole -Date: Mon Nov 25 17:14:21 2019 -0600 - - more work on design docs for SQM and SQL AST - -commit 0c6c8b44061548a6449f9bb5cfdffb1bba1542e9 -Author: Steve Ebersole -Date: Mon Nov 25 15:58:50 2019 -0600 - - more work on multi-id entity loading and key-based loading in general - -commit f08abf3628ea958d46f586a2b559db6447637157 -Author: Vlad Mihalcea -Date: Mon Sep 2 09:31:15 2019 +0300 - - HHH-13608 Oracle8iDialect should use CASE_INSENSITIVE pattern matching when checking the statement type - -commit 21e79125e601160101f1f27e1aea026ede9c36a9 -Author: Jan-Willem Gmelig Meyling -Date: Wed Sep 4 04:45:58 2019 +0200 - - HHH-9301 - Support select variable refs in group by for DBMS dialects that support it - - While not strictly compliant with the SQL specification, the MySQL, PostgreSQL and H2 support the use of select aliases in the GROUP BY clause. An obvious benefit is that produced SQL queries will be easier to read, because complex select expressions from aggregrate queries will have to be included in the group by clause as well. These can now simply reference the aliases of the respective columns for the tuple element. However, there is also a functional difference. For function invocations that have parameterized arguments, the query optimizer can't guarantee the that the function result between the selection projection and grouping process are equal. This results in an error because a value is projected which is not grouped by. An example where this for example becomes relevant, is when parameterizing TimeScaleDB's [`time_bucket_gapfill()`](https://docs.timescale.com/latest/api#time_bucket_gapfill-examples) function. - - For example, using `time_bucket_gapfill()` one might want to produce a criteria query that produces the following SQL: - - ```sql - SELECT - time_bucket_gapfill(?, time, ?, ?) AS ts, - avg(tg) as tg - FROM iaqmeasurement - GROUP BY ts - ORDER BY ts; - ``` - - When the alias is not used as grouping value, the query will yield an error: - - ```sql - SELECT - time_bucket_gapfill(?, time, ?, ?) AS ts, - avg(tg) as tg - FROM iaqmeasurement - GROUP BY time_bucket_gapfill(?, time, ?, ?) - ORDER BY ts; - ``` - - Of course the parameter values can just be stored in a CTE as well, but I think we should consider support for variable refs in group by for DBMS dialects that support it. This pull request implements the feature equivalently to how its currently done for order by clauses, and only enables the feature for known supported dialects (H2, PostgreSQL and MySQL - based on [https://stackoverflow.com/a/3841804/2104280](https://stackoverflow.com/a/3841804/2104280)). - - Jira: https://hibernate.atlassian.net/browse/HHH-9301 - - Co-authored-by: Sayra Ranjha - -commit bde7ca974be406cdc8327ba76d2a83d2654b4856 -Author: Jan-Willem Gmelig Meyling -Date: Wed Aug 8 23:06:10 2018 +0200 - - HHH-12895 - Extra LEFT JOIN generated with @ManyToOne and @JoinTable when projecting - on main entity id - -commit 473566c50dc88f71624a6de9781cba06d75a3b95 -Author: Jan-Willem Gmelig Meyling -Date: Thu Nov 21 21:34:44 2019 +0100 - - HHH-13742 - Added additional tests - -commit 1b7f60c348c9473b9d27490c96d389ef47d9a40f -Author: Steve Ebersole -Date: Sun Nov 24 12:11:11 2019 -0600 - - preliminary design docs for SQM and SQL AST - -commit 0ec5af29855f3483e4fdac346188c20bfd665e62 -Author: Steve Ebersole -Date: Sat Nov 23 13:39:48 2019 -0600 - - HHH-13746 - Implement load-by-multiple-ids using SQL AST - -commit e9920f548901664fc321e1f78f8f833d0f0b62b2 -Author: Steve Ebersole -Date: Sat Nov 23 09:48:54 2019 -0600 - - HHH-13081 - Pass BootstrapContext to Integrator#integrate; - HHH-11990 - Remove LogicalConnectionImplementor#makeShareableCopy - - 6.0 Alpha3 prep - -commit 056469262def9af37c861c9b33c9da646448f345 (tag: 6.0.0.Alpha3) -Author: Steve Ebersole -Date: Sat Nov 23 08:51:37 2019 -0600 - - HHH-13081 - Pass BootstrapContext to Integrator#integrate; - HHH-11990 - Remove LogicalConnectionImplementor#makeShareableCopy - - 6.0 Alpha3 prep - -commit 0d803cf25f691f8ed648a2964c74a7b24e63e6d7 -Author: Steve Ebersole -Date: Sat Nov 23 03:31:16 2019 -0600 - - HHH-13720 - Implement mapping model support for plural attributes - - minor conflict - -commit a6722fe57a66affe80af5912e3ab8320e7ab388a -Author: Steve Ebersole -Date: Sat Nov 23 03:23:35 2019 -0600 - - HHH-13720 - Implement mapping model support for plural attributes - - a lot is working. annoying bug still that affects deleting "element collection" data - -commit 8a196bc0e59c3da599381106232399f38499e66c -Author: Andrea Boriero -Date: Fri Nov 22 19:05:43 2019 +0000 - - HHH-13725: Implement ToOne Associations support - -commit f1bf0791223108fbeec632462290cc9d834b59d3 -Merge: 32fd79d214 c9a373c180 -Author: Andrea Boriero -Date: Fri Nov 22 09:05:57 2019 +0000 - - Merge remote-tracking branch 'upstream5/master' into wip/6.0_merge_14 - -commit 32fd79d2144e6ee9db1f7594bd328ce00f336849 -Author: Steve Ebersole -Date: Thu Nov 21 23:58:30 2019 -0600 - - HHH-13720 - Implement mapping model support for plural attributes - - added some tests for maps - -commit ecfb3da0718e69a22905cb00c105123c08700507 -Author: Steve Ebersole -Date: Thu Nov 21 22:04:22 2019 -0600 - - fixed concurrency problem uncovered during JMH-based throughput testing (Act 4 - which is really Act 2) - -commit 2b65c73fb715d7f364da4ad4c2720b47d92219a3 -Author: Steve Ebersole -Date: Thu Nov 21 20:56:48 2019 -0600 - - fixed concurrency problem uncovered during JMH-based throughput testing (Act 3) - -commit 1b2aa85fa79d8de62edd43409e68a982d35c8e53 -Author: Steve Ebersole -Date: Thu Nov 21 20:41:27 2019 -0600 - - fixed concurrency problem uncovered during JMH-based throughput testing (Act 2) - -commit db86a107f783716e48c89d072a0f4577915b95ed -Author: Steve Ebersole -Date: Thu Nov 21 20:16:12 2019 -0600 - - fixed concurrency problem uncovered during JMH-based throughput testing - -commit 03c5bd406f30f23d64774a85739d60d086744ae4 -Author: Andrea Boriero -Date: Thu Nov 21 22:14:45 2019 +0000 - - work on aggregate composite identifier - -commit 8e81f54a86352a7a13d8db2fa488e36578f0c6fb -Author: Andrea Boriero -Date: Thu Nov 21 15:22:33 2019 +0000 - - partially implemented QueryParamters#processFilters - -commit 9a0ad0f21de8ed152b1061bfd3145c2a93b03aaa -Author: Andrea Boriero -Date: Thu Nov 21 08:38:07 2019 +0000 - - work on aggregate composite identifier - -commit 04c5160e0265fff81074a6ee4a73734533375db6 -Author: Steve Ebersole -Date: Thu Nov 21 15:29:13 2019 -0600 - - pull over "legacy 6.0" tests - -commit 7576b51407a0d5dda562630c2058715fb6285ae8 -Author: Steve Ebersole -Date: Thu Nov 21 14:48:13 2019 -0600 - - pull over "legacy 6.0" tests - -commit 325239353e3ac6da1a37e9c2bf5b5a7215da223b -Author: Jan-Willem Gmelig Meyling -Date: Thu Nov 21 16:06:23 2019 +0100 - - HHH-13742 - Preliminary fix for HHH-13742 - -commit 8089d8c575f8262a094e8c2cfe8d67b9e9611ecb -Author: Jan-Willem Gmelig Meyling -Date: Thu Nov 21 15:30:41 2019 +0100 - - HHH-13742 - Missing from clause with joined inheritance property in association subquery - -commit e4f70d508fe4b30f54cc679637b66eb4960d39a6 -Author: Andrea Boriero -Date: Wed Nov 20 17:00:40 2019 +0000 - - HHH-13724 - Add more tests - -commit a53772f6a069115ed97a0a5179491f682d964267 -Author: Andrea Boriero -Date: Wed Nov 20 15:08:47 2019 +0000 - - HHH-13725 - Fix issue circular fetch detection - -commit c8a1728bded2ddeaff63894299e15dcd08501f31 -Author: Andrea Boriero -Date: Wed Nov 20 13:27:51 2019 +0000 - - HHH-13725 - Fix issue with DelayedEntityFetchImpl and FK not referring to PK - -commit 343dd979babba4eaf44b68eaeb85f5fe868b9a92 -Author: Andrea Boriero -Date: Tue Nov 19 11:50:06 2019 +0000 - - HHH-13725 ToMany FkDescriptor creation and circular fetch detecion - -commit aa3ff4507dbf217e26aa4a9f162b04378964aa2b -Author: Andrea Boriero -Date: Mon Nov 18 17:48:48 2019 +0000 - - HHH-13725 Work on circular fetch detection - -commit 461e559184d3ca853f1a85cb8829dea772c0e5ca -Author: Andrea Boriero -Date: Mon Nov 18 09:37:39 2019 +0000 - - HHH-13725 Add more tests - -commit 4ca9617b6fbc44e3ffbcc76ca05cd12b2e9e86df -Author: Andrea Boriero -Date: Mon Nov 18 09:14:11 2019 +0000 - - HHH-13725 - Fix determining FK key name for OneToOne with PrimaryKeyJoinColumn - -commit 4c614e031599ff2cb35dcb408d687faece1070a2 -Author: Andrea Boriero -Date: Sun Nov 17 21:27:39 2019 +0000 - - HHH-13725 Add more tests - -commit 7db245230eed5cee398065856d244df52c68a3d1 -Author: Andrea Boriero -Date: Sun Nov 17 15:50:27 2019 +0000 - - HHH-13725 Fix join fetch with alias - -commit 93c6c2e7e7af5b518a5827d90fd194e8eff06b03 -Author: Andrea Boriero -Date: Sun Nov 17 15:07:26 2019 +0000 - - Add more tests - -commit 97f9d4ce00144cfdce76095d7dd1687cfc68b63c -Author: Andrea Boriero -Date: Sat Nov 16 13:40:21 2019 +0000 - - HHH-13725 Work on circular fetc detection - -commit 032fdb5d2eebecf56de8d35f640c2c30ee714cf4 -Author: Steve Ebersole -Date: Wed Nov 20 10:27:50 2019 -0600 - - HHH-13715 - working support for "multi-table" HQL/Criteria UPDATE and DELETE queries - - CTE, id-table and in-line strategies are all implemented (though only id-table is tested); - refactoring for performance (direct creation of SQL AST object directly, rather than SQM -> SQL AST) and as part of initial impls for remaining strategies (global temp and persistent id tables, and the "inline" strategy; - fixed concurrency bug (thanks Luis!) - -commit b04599cbe55b9c7d6070f194093f27d93efc0852 -Author: Steve Ebersole -Date: Mon Nov 18 12:20:48 2019 -0600 - - HHH-13715 - working support for "multi-table" HQL/Criteria UPDATE and DELETE queries - - complete support for "local temp table"-based strategy - -commit c9a373c1803ef63d45fbb871658fbf513165dcd0 -Author: Sanne Grinovero -Date: Mon Nov 18 15:21:23 2019 +0000 - - HHH-13739 Upgrade to Agroal 1.7 - -commit be23e167af2c45d3dda8db679d86b2a3e872f8ea -Author: Andreas Knees -Date: Fri Nov 15 23:40:39 2019 +0100 - - HHH-13722 Introducing a test case - -commit 7331a58d5ea3b3f62cb0874906943916030613a0 -Author: Sanne Grinovero -Date: Mon Nov 18 14:51:36 2019 +0000 - - HHH-13722 ArrayStoreException in Constraint.generateName - -commit 0dae701c9343ef3291580cebbdd35e53c9e9311d -Author: Andrea Boriero -Date: Fri Nov 15 15:47:34 2019 +0000 - - HHH-13725 - Add more tests - -commit ed49f6abcfe5555aee78189dcec391b60b796fd8 -Author: Andrea Boriero -Date: Fri Nov 15 15:33:31 2019 +0000 - - HHH-13725 - Implement ManyToOne with Join Table associations support - -commit 36bf9f9dfe47cb061b7a66d6fa309613a824aaef -Author: Andrea Boriero -Date: Fri Nov 15 12:27:36 2019 +0000 - - changed order of AbstractEntityPersister#attributeMappings - -commit b986ef1ea822d95b25c1e2fcbe267442fff998a6 -Author: Andrea Boriero -Date: Thu Nov 14 21:22:04 2019 +0000 - - HHH-13725 - Implement ManyToOne associations - -commit 0094236d985c6e735458509a296082b481ae4dee -Author: Andrea Boriero -Date: Thu Nov 14 18:53:50 2019 +0000 - - HHH-13725 - Implement ManyToOne associations support done some code refactoring - -commit d2851888f9aaee8fe7be5b1e9621e41eb6889011 -Author: Andrea Boriero -Date: Thu Nov 14 10:52:01 2019 +0000 - - HHH-13725 - Implement ManyToOne associations support - -commit 86dee1f66c8d86e57a6af9c5f3cd58033c4e427a -Author: Andrea Boriero -Date: Thu Nov 14 10:14:49 2019 +0000 - - HHH-13725 - Implement ManyToOne associations support - -commit bfb640196dfb74e81e33c59c1505d168d95ad995 -Author: Andrea Boriero -Date: Wed Nov 13 18:54:43 2019 +0000 - - HHH-13725 - Implement ToOne Associations support - add @FailureExpected to EntityWithManyToOneJoinTableTest - -commit dd772ab2a0f76bb14f4ba8787e8a93e2a2656896 -Author: Andrea Boriero -Date: Wed Nov 13 18:20:29 2019 +0000 - - HHH-13725 - Implement ToOne Associations support - -commit 09d1dd3daf123451089d6be0ac3367ade7adb7cf -Author: Andrea Boriero -Date: Wed Nov 13 17:03:49 2019 +0000 - - HHH-13725 - Implement ToOne Associations support - -commit a99881a1037d1a2aabade153b8e724e96f0ee67e -Author: Andrea Boriero -Date: Wed Nov 13 10:43:48 2019 +0000 - - HHH-13725 - Implement ToOne Associations support - -commit ef5db4aa3b1c9ea85a985426a0f77e00f99a894d -Author: Andrea Boriero -Date: Tue Nov 12 12:07:45 2019 +0000 - - HHH-13725 - Implement ToOne Associations support - -commit 403bf9257c1ee2dbee8e47cb16e80e6005c0a081 -Author: Andrea Boriero -Date: Mon Oct 21 12:19:25 2019 +0200 - - HHH-13725 - Implement ToOne Associations support - -commit 76308e8a3e62410be593c48340373754ca2b685e -Author: Gail Badner -Date: Thu Nov 14 15:02:08 2019 -0800 - - HHH-13737 : Correct log message and fix checkstyle failure - -commit 7d8549d8aa08bbc4f28e5965bdf30d6b0a4b3062 -Author: Gail Badner -Date: Thu Nov 14 13:47:08 2019 -0800 - - HHH-13737 : Add debug logging - -commit c02011ef40c5df337e068cd75f8c448a31e09ec5 -Author: Gail Badner -Date: Thu Nov 14 13:28:56 2019 -0800 - - HHH-13737 : Add test case for HHH-13433 - -commit 7a74e4dd8f2a6eccb08fe1d6cae3fa47426e8f11 -Author: Andrea Boriero -Date: Thu Nov 14 17:18:14 2019 +0000 - - 5.4.9 - -commit 5fb866403e41fdfcd60fcb19d06a76e2be0fe744 (tag: 5.4.9) -Author: Andrea Boriero -Date: Thu Nov 14 15:42:14 2019 +0000 - - 5.4.9 - -commit 0e329bef5a0f298362f3cd40b664c9f805b7947a -Author: Chris Cranford -Date: Fri Aug 23 12:51:47 2019 -0400 - - HHH-12030 - Fix ClassCastException when Embeddable collection uses generic types - -commit 841368175f68c7d44e4c74c09852809a66a83e8b -Author: Andrea Boriero -Date: Thu Oct 3 16:01:31 2019 +0100 - - HHH-13614 Allow the IntegratorProvider to be supplied via its FQN in the JPA persistence.xml - -commit 52f9a36a6dab5c9709d8b08f9653cc2e7d6df975 -Author: Vlad Mihalcea -Date: Sat Sep 7 04:03:59 2019 +0300 - - HHH-13614 Allow the IntegratorProvider to be supplied via its FQN in the JPA persistence.xml - -commit f5fb84cfe29c15e79cd4903d6f380d75bf129442 -Author: Andrea Boriero -Date: Tue Nov 5 16:20:45 2019 +0000 - - HHH-13705 Enhancement as Proxy with inline dirty checking - flush of an @ManyToOne with an Embedded value having not null properties causes PropertyValueException - -commit 842a15561564a5ec5af4018286d44d1253ef82b0 -Author: Andrea Boriero -Date: Mon Oct 28 14:21:23 2019 +0000 - - HHH-13705 Add test for issue - - HHH-13705 Add test for issue - -commit 47c8a89390aa4ea36a8779fc6139b4ff2eab6b7d -Author: Christian Beikov -Date: Thu Nov 14 11:13:58 2019 +0100 - - HHH-13712 - Test and fix for missing superclass table joins when joining superclass associations - -commit f7c8ba853269e3ea39923ea969d9d2b0be1ea693 -Author: Sanne Grinovero -Date: Thu Nov 14 10:11:22 2019 +0000 - - HHH-13733 Upgrade to Jandex 2.1.1.Final - -commit fcb8fdde3e7ae74029a88a1dca4369d2a132c088 -Author: Sanne Grinovero -Date: Thu Nov 14 10:10:48 2019 +0000 - - HHH-13731 Upgrade to Classmate 1.5.1 - -commit 19692c13018478b3bde7de3bd74adf2a8310dc90 -Author: Sanne Grinovero -Date: Thu Nov 14 08:45:23 2019 +0000 - - HHH-13730 Upgrade to Classmate 1.4.0 - -commit 9ddab37748de6c313e93ac98e7d720bf0c880c34 -Author: Andrea Boriero -Date: Wed Nov 13 09:08:12 2019 +0000 - - HHH-13727 H2 database with DATABASE_TO_UPPER=false throws org.h2.jdbc.JdbcSQLSyntaxErrorException: Table sequences not found - -commit 83a1eb57151aa8b7ca50daf131af3601494edbac -Author: Steve Ebersole -Date: Tue Nov 12 18:02:21 2019 -0600 - - HHH-13715 - working support for "multi-table" HQL/Criteria UPDATE and DELETE queries; - - basic working support for simple (non-multi-table) SQM UPDATE statements - -commit eddd5b938b95c5b6df1f13f5e2c8e49b8f973801 -Author: Steve Ebersole -Date: Tue Nov 12 14:19:23 2019 -0600 - - HHH-13715 - working support for "multi-table" HQL/Criteria UPDATE and DELETE queries - - work on generalized CTE handling; - initial work on SQM CTE support - -commit 0c0248d448a9316623bc0cd3246fec829e5e3f1c -Author: Christian Beikov -Date: Sat Nov 2 15:37:21 2019 +0100 - - Include the WITH clause AST in the FromElement so that column references can be analyzed - -commit 05e6a41e5fc13cc76dd8f42b8b665fdbf775b2d3 -Author: Jan-Willem Gmelig Meyling -Date: Thu Oct 31 18:42:58 2019 +0100 - - HHH-13670 - Reproducer Missing from clause in query with joined inheritance, regression in 5.4.5 - -commit 164e1fc7cc2d79c0ce2e309ae1a486ddf2607c5f -Author: Sanne Grinovero -Date: Mon Nov 11 19:05:25 2019 +0000 - - HHH-13687 TenantSchemaResolver not called in integration test after upgrade from - -commit dd364ccf5f9ab669e18a8930ca195ed64982044a -Author: Steve Ebersole -Date: Tue Nov 12 11:34:50 2019 -0600 - - HHH-13715 - working support for "multi-table" HQL/Criteria UPDATE and DELETE queries; - - fixed problem with local temp table support - it works! - -commit a654c95c8dfe78e19c38a3c2d98d84fb8f6ebbdb -Author: Steve Ebersole -Date: Tue Nov 12 11:30:41 2019 -0600 - - HHH-13715 - working support for "multi-table" HQL/Criteria UPDATE and DELETE queries; - - fixed problem with local temp table support - it works! - -commit 2ca1bf876bd0efe21a4eb0f0bb7b8a009fec5e37 -Author: Steve Ebersole -Date: Mon Nov 11 18:11:42 2019 -0600 - - HHH-13715 - working support for "multi-table" HQL/Criteria UPDATE and DELETE queries; - - work on CTE-base multi-table handling - -commit eadd9ae4bb6452a237859dafdd2b1ed2da9e3185 -Author: Steve Ebersole -Date: Mon Nov 11 17:50:29 2019 -0600 - - HHH-13715 - working support for "multi-table" HQL/Criteria UPDATE and DELETE queries; - - work on CTE-base multi-table handling - -commit d38c163f3a97ec4278e102d19dbfd0cdfcaf8066 -Author: Steve Ebersole -Date: Mon Nov 11 17:35:46 2019 -0600 - - HHH-13715 - working support for "multi-table" HQL/Criteria UPDATE and DELETE queries; - - work on CTE-base multi-table handling - -commit 169646875b3eef1f98427c46645bc0070afdc476 -Author: Steve Ebersole -Date: Mon Nov 11 17:25:27 2019 -0600 - - HHH-13715 - working support for "multi-table" HQL/Criteria UPDATE and DELETE queries; - - work on CTE-base multi-table handling - -commit 82b8e7718468f7a26b6840a7d32dc9a13855372d -Author: Steve Ebersole -Date: Mon Nov 11 16:46:27 2019 -0600 - - HHH-13715 - working support for "multi-table" HQL/Criteria UPDATE and DELETE queries; - - tests for joined-subclass - -commit ba5ef1b14904a31f9e07b7b3ebc574d315b1f2fd -Author: Steve Ebersole -Date: Mon Nov 11 16:09:11 2019 -0600 - - HHH-13715 - working support for "multi-table" HQL/Criteria UPDATE and DELETE queries; - - local-temp-table support works tested on H2. I believe cte support works as well - need to set up and environment with a database supporting it. - - There is a problem saving entities with secondary tables atm so for now i cannot create the data to assert that the correct rows were deleted. But looking at the executed SQL it works - -commit 186f4b37c0611736c64c1d5118f774e5f9c47630 -Author: Andrea Boriero -Date: Mon Nov 11 13:35:35 2019 +0000 - - Joined inheritance work - implemented explicit Discriminator - -commit 895cc3f5291d358444d46f8ba74f74bd8c1e8f5b -Author: Andrea Boriero -Date: Mon Nov 11 12:20:23 2019 +0000 - - Joined inheritance work - fixed issue - -commit 66515a2e4e9ac312b58575fdc6dcdce9dacc27ea -Author: Sanne Grinovero -Date: Mon Nov 4 12:09:00 2019 +0000 - - HHH-13723 Hint sizing of ArrayList in ResultSetProcessingContextImpl - -commit e0dd8321f3dc4a634b574937e019218f82286704 -Author: Andrea Boriero -Date: Sat Nov 9 11:00:39 2019 +0000 - - fix up - -commit dbd1079828fbaa0ec249177ef9ac143fd8fd2828 -Author: Andrea Boriero -Date: Sat Nov 9 10:57:32 2019 +0000 - - Joined inheritance work - Removed CasePredicate - -commit fccaca8391071af73c1ad389328b6e63fd561a21 -Author: Andrea Boriero -Date: Sat Nov 9 10:45:42 2019 +0000 - - Joined inheritance work - Removed columnExpression field from CaseSearchedExpression - -commit 59e45521959f43569994e71ff2d2eeed1985a129 -Author: Steve Ebersole -Date: Fri Nov 8 18:35:42 2019 -0600 - - Working support for simple restricted HQL DELETE -> execution!! - -commit e6895c3d915e98b08170ff4102825e3c754c5b5b -Author: Steve Ebersole -Date: Fri Nov 8 16:26:10 2019 -0600 - - Working support for simple HQL DELETE -> execution!! - -commit 30ad3eabe516b2ed46f90e74d44a164ffdce4d2e -Author: Steve Ebersole -Date: Fri Nov 8 15:58:54 2019 -0600 - - Working support for simple HQL DELETE -> SqmDeleteStatement translation - -commit 8dd63c372d94a293ca89d02ce30d63cfff0eb070 -Author: Andrea Boriero -Date: Fri Nov 8 21:45:34 2019 +0000 - - removed hibernate-core-RunnableIdeTest.launch - -commit 3fcb9efda3c62404b0246fbb2893c8fea08f2cbf -Author: Andrea Boriero -Date: Fri Nov 8 17:47:46 2019 +0000 - - removed gradlew_process_test_resources.launch - -commit 87441781c61ef527c60be99ce8750a0d4699c1f8 -Author: Andrea Boriero -Date: Fri Nov 8 17:05:09 2019 +0000 - - upgrade gradle-bintray-plugin to 1.8.4 - -commit feacaf14f4fe7f2062752879b0939306eae94ae7 -Author: Andrea Boriero -Date: Fri Nov 8 14:03:47 2019 +0000 - - fix rebase compilation errors - -commit 6b1c5c8c116f531cd921f11d38bb52f86d5ed852 -Author: Andrea Boriero -Date: Fri Nov 8 13:55:36 2019 +0000 - - Refactoring : JoinedSubclassDiscriminatorMappingImpl and EntityDiscriminatorMappingImpl - -commit ebb3e36db6a5793bb4a3615f2e7ab74839936be7 -Author: Andrea Boriero -Date: Thu Nov 7 18:42:11 2019 +0000 - - Fix mixed inheritance issue - -commit 42213c860a1513fa916d5e0b87c040d2841f4864 -Author: Andrea Boriero -Date: Thu Nov 7 15:51:28 2019 +0000 - - Fix joined inheriatance with concrete root - -commit 0f2e5dca8c0656644e8eb24d5812dab3a38e6109 -Author: Andrea Boriero -Date: Thu Nov 7 11:29:48 2019 +0000 - - add to the root query the PK columns of the subclasses tables - -commit 0a6fd5ba469bc5df78881bc13773269ec981c7d8 -Author: Andrea Boriero -Date: Thu Nov 7 11:11:13 2019 +0000 - - Implemented CaseExpressionWalker for different Dialects - -commit bef4fc1fde21f6c651c97f2c937127ebae8d1532 -Author: Andrea Boriero -Date: Mon Nov 4 09:08:49 2019 +0000 - - initial work on joined inheritance, implemented root queries - -commit 7120b8bd40e32f149b934167a61fb8077565840c -Merge: 68d931e383 c7c040db9c -Author: Andrea Boriero -Date: Fri Nov 8 15:54:35 2019 +0000 - - Merge pull request #191 from dreab8/wip/6.0_merged_12 - - Wip/6.0 merged - -commit c7c040db9c06dfcd1bda56606c443efd2ac72c4b -Author: Andrea Boriero -Date: Fri Nov 8 14:48:46 2019 +0000 - - fix errors - -commit 4b0da2444b42a7444e808107a0b0a786dcbfa7e7 -Merge: 68d931e383 a682a7d19c -Author: Andrea Boriero -Date: Fri Nov 8 14:24:48 2019 +0000 - - Merge remote-tracking branch 'upstream5/master' into wip/6.0_merged_11 - -commit 68d931e3839fa9f5ad77650261f889ba653ba853 -Author: Steve Ebersole -Date: Fri Nov 8 07:12:16 2019 -0600 - - completed revert of HHH-13656 - -commit dd0b6a9da3ff1555f00c6d9c6ea4eb6f172a9450 -Author: Steve Ebersole -Date: Fri Nov 8 07:07:56 2019 -0600 - - Revert "HHH-13656 Con not build and run test on Eclipse IDE" - - This reverts commit f6fad942df1c25a798c987f3a6d64671b4a103e5. - -commit 39b46f2a9af67f5215fe83f7bd6dfa96582abf33 -Author: Steve Ebersole -Date: Fri Nov 8 07:02:12 2019 -0600 - - reverted e651bd7369 (by hand) - -commit 7e34be04db12f5fa04097e32658f2251293e0818 -Author: Steve Ebersole -Date: Fri Nov 8 06:50:59 2019 -0600 - - Revert "HHH-13656 Can not build and run test on Eclipse IDE" - - This reverts commit 0f859e7bb4d9bb8ce83fc7fd0de12d141195695c. - -commit 2cc517e349797ac4fab36c54e351c2ece5e51cc6 -Author: Steve Ebersole -Date: Fri Nov 8 06:50:38 2019 -0600 - - Revert "HHH-13656 Can not build and run test on Eclipse IDE" - - This reverts commit 85f129daeb3e4e4ab5e6ef6c7974e461274a01f4. - -commit a682a7d19c5ed1940b5b902e0dc125f525164757 -Author: Scott Marlow -Date: Tue Jun 11 09:40:36 2019 -0400 - - HHH-13433 EntityManager.find() should only check for roll-back-only condition if there is an active JTA transaction, otherwise ORM should throw throw convert( e, lockOptions ) - -commit 3cb6e137bff49a6a57cf83c03fd89746c435ad2b -Author: Steve Ebersole -Date: Thu Nov 7 20:08:03 2019 -0600 - - fixed fk predicate rendering into SQL AST for collections; - basic tests for loading + mapped-fetch strategy - -commit d200fa9545e0250e4ca216985e4a9a3998cdfcf7 -Author: Steve Ebersole -Date: Thu Nov 7 14:11:28 2019 -0600 - - xjc plugin via portal - -commit 92391ec3e6fc3a367ffe08a406764b44a478df70 -Author: Steve Ebersole -Date: Thu Nov 7 07:05:20 2019 -0600 - - change expected type of entity identifier values from Serializable to Object - fixed all related compile problems in all modules - -commit 5b3c6c488461943364d3ce8b696e999d77109419 -Author: Steve Ebersole -Date: Thu Nov 7 06:38:40 2019 -0600 - - continued work on replacing LoadPlan with SQL AST approach - cleanup; - change expected type of entity identifier values from Serializable to Object - -commit e522cbe542123739c81f02e6051e4b9675376706 -Author: Steve Ebersole -Date: Wed Nov 6 13:24:07 2019 -0600 - - preliminary work on replacing LoadPlan with SQL AST approach - basic working support - -commit 6dc5f37827de564e48941a395568ea71551b44dd -Author: Marco Behler -Date: Sat Nov 2 18:44:47 2019 +0100 - - Link to Marco Behler's guide to "data access in Java" from the Getting Started Guide preface - -commit 704ba4f85ff40f38c5739f112ecd046151592b5b -Author: Andrea Boriero -Date: Sat Nov 2 18:22:54 2019 +0000 - - initial work on joined inheritance - -commit 5cdf6d4b2bb190cf14b04e80fbe64a8cd3806922 -Author: Andrea Boriero -Date: Sat Nov 2 13:32:08 2019 +0000 - - add test doe Joined inheritance - -commit 5b928165b08b8cf0aca13c13cc8ab2ea7eede23b -Author: Andrea Boriero -Date: Thu Oct 31 17:29:13 2019 +0000 - - Add more inheritance tests - -commit 47a7a0765c6778de9225253b428775ff6d3556da -Author: Andrea Boriero -Date: Thu Oct 24 11:28:44 2019 +0100 - - initial work for table per class inheritance - -commit 0c1df5fc0de4d8bc1af12ca6a3eaa7667eea0f03 -Author: Gail Badner -Date: Wed Oct 30 14:08:45 2019 -0700 - - HHH-13698 : Hibernate does not recognize MySQL 8 error code 3572 as PessimisticLockException - -commit a7f017c3dc231fe4f683d5a2ec250a72edc3ba61 -Author: Gail Badner -Date: Wed Oct 30 16:32:05 2019 -0700 - - HHH-13307 : On release of batch it still contained JDBC statements using JTA - -commit 1241d35a5012e77af4990b841e150eef1eb004b2 -Author: Gail Badner -Date: Wed Oct 30 16:30:45 2019 -0700 - - HHH-13307 : Added test - -commit 2ea03f7d568e2a3ee300ae0241196c0ed41e672c -Author: Steve Ebersole -Date: Fri Nov 1 12:00:55 2019 -0500 - - sketch for ForeignKeyDescriptor handling for to-one associations - -commit 85f129daeb3e4e4ab5e6ef6c7974e461274a01f4 -Author: hailtondecastro -Date: Wed Oct 30 15:20:34 2019 -0300 - - HHH-13656 Can not build and run test on Eclipse IDE - - Eclipse windows - -commit 0f859e7bb4d9bb8ce83fc7fd0de12d141195695c -Author: hailtondecastro -Date: Tue Oct 29 22:18:51 2019 -0300 - - HHH-13656 Can not build and run test on Eclipse IDE - - Eclipse windows - -commit e651bd736989dc37593e6a86a1c19d0a2e0df8a3 -Author: hailtondecastro -Date: Wed Oct 23 21:39:00 2019 -0300 - - HHH-13656 Con not build and run test on Eclipse IDE - - Eclipse windows - -commit f6fad942df1c25a798c987f3a6d64671b4a103e5 -Author: hailtondecastro -Date: Wed Oct 23 17:19:31 2019 -0300 - - HHH-13656 Con not build and run test on Eclipse IDE - - Eclipse windows - -commit 9f8a3128413a6c3bfa75f38d27df904084fe5ad9 -Author: hailtondecastro -Date: Tue Oct 22 21:41:08 2019 -0300 - - Eclipse windows - -commit cec7329214300a4d53725f556f188456a31eede7 -Author: Sanne Grinovero -Date: Thu Oct 31 23:43:38 2019 +0000 - - HHH-13700 Configuration property CONNECTION_PROVIDER_DISABLES_AUTOCOMMIT should not be passed to the JDBC connection properties - -commit c89ee3761aca44dcef9ff15ce78bb808d2efffd6 -Author: Steve Ebersole -Date: Thu Oct 31 17:43:54 2019 -0500 - - preliminary support for collections - lists and sets tested (excluding entity-valued elements and map-key) - -commit 2bcb1b0a6d8600ba3a60eae6460dcb52bf5628e7 -Author: Sanne Grinovero -Date: Wed Oct 30 12:27:21 2019 +0000 - - HHH-13654 Reorganize fields and add some comments about this work - -commit f89bf35106d834415432252be120146abf52ffa1 -Author: Sanne Grinovero -Date: Wed Oct 30 10:27:12 2019 +0000 - - HHH-13654 Make AbstractFlushingEventListener#entitiesByKey also lazily initialized - -commit 6034ece73101d418ab4e5a2151f8a1760063504e -Author: Sanne Grinovero -Date: Tue Oct 29 12:43:38 2019 +0000 - - HHH-13654 Refactor references to StatefulPersistenceContext#batchFetchQueue - -commit 500819e1695c2bee52ef705c96ed1fb02427a0bc -Author: Sanne Grinovero -Date: Tue Oct 29 12:31:05 2019 +0000 - - HHH-13654 Defer initialization of StatefulPersistenceContext#entitySnapshotsByKey - -commit f4bf11331bba1c3628b5cecc944bceb994e86803 -Author: Sanne Grinovero -Date: Tue Oct 29 09:54:23 2019 +0000 - - HHH-13654 Defer initialization of StatefulPersistenceContext#collectionsByKey - -commit b9924d18058b287c78f277ae96d234ae9713423f -Author: Andrea Boriero -Date: Mon Oct 28 19:17:14 2019 +0000 - - 5.4.8 - -commit a50f2da6aac602dae591483a8954f478527edb8e (tag: 5.4.8) -Author: Andrea Boriero -Date: Mon Oct 28 19:15:43 2019 +0000 - - 5.4.8 - -commit 72b81eebfebdb7eb67e84fe8d01bafdfee73867b -Author: Chris Cranford -Date: Tue Oct 1 10:32:23 2019 -0400 - - HHH-12965 Avoid creating foreign keys between audit and main tables - - * Added test case - -commit b28c7b07616aad1966a821a05afdb16c017729c8 -Author: Chris Cranford -Date: Mon Sep 30 16:31:12 2019 -0400 - - HHH-12965 Avoid creating foreign keys between audit and main tables - - * Fixes a corner case not addressed by HHH-10667 - * Avoids creating foreign-key constraints for any many-to-one - -commit 093f4109530d7c733258bae26682a275ceb306f7 -Author: Steve Ebersole -Date: Mon Oct 28 07:26:41 2019 -0500 - - preliminary support for collections - -commit 02089a5cce95cd7c473a9be40a5089d5b4bb3324 -Author: Sanne Grinovero -Date: Mon Oct 28 10:53:51 2019 +0000 - - HHH-13696 Minor code refactoring and applying the Hibernate code style - -commit 051a7d9b7c6ced4f66e0148ac0fde77036450651 -Author: Kaja Mohideen -Date: Fri Sep 6 20:07:56 2019 +0530 - - HHH-13696 Use PU Info Classloader when booting in OsgiPersistenceProvider - -commit 1dd787eaa1a4c99703b61e6403e9da2d78de1274 -Author: barreiro -Date: Sun Aug 25 03:29:15 2019 +0100 - - HHH-13446 - Validate mapped-by values got from annotations in bytecode enhancers - -commit b4a8052a152c34ee1607cb96799087ffb9b09bd8 -Author: Sanne Grinovero -Date: Fri Oct 25 14:52:31 2019 +0100 - - HHH-13695 DDL export forgets to close a Statement - -commit e5539cc36c6173bb9fdc404c658cc5f280967467 -Author: Sanne Grinovero -Date: Thu Oct 24 10:53:43 2019 +0100 - - HHH-13651 Adding a regression test for the issue - -commit a5c8a812f5bd7bd80ab821e24be55b95d0ea8c04 -Author: Yosef Yona -Date: Wed Oct 23 23:53:39 2019 +0300 - - HHH-13651 Applying hibernate codestyle to PersistentBag - -commit 2808a75d5cefcf7703eb9d3448f25ae998343d22 -Author: Yosef Yona -Date: Wed Oct 23 18:58:54 2019 +0300 - - HHH-13651 NPE on flushing when ElementCollection field contains null element - -commit cf09e47d40114ebcb620bb868a47b94bbcaf215e -Author: Steve Ebersole -Date: Wed Oct 23 13:10:10 2019 -0500 - - fixed usage of `AbstractEntityPersister#staticFetchableList` - -commit 520c8f200486d3b3efe71510fe0bf1abf61e1a8e -Author: Andrea Boriero -Date: Wed Oct 23 16:15:56 2019 +0100 - - initial work for table per class inheritance - -commit 27968b80273ffa89f329f265a09727aaed187a2f -Author: Andrea Boriero -Date: Wed Oct 23 13:58:38 2019 +0100 - - Add test for TablePerClassInheritanceTest and MappedSuperclassInheritanceTest - -commit 9574ffbd849aa01e46034130c6b25c315273cbba -Author: Steve Ebersole -Date: Tue Oct 22 21:18:47 2019 -0500 - - improved visitation of of fetchables to use "static List of fetchables" when TREAT is not used - -commit 9279a7e766a8b5ab525234b9fe8ce0a89f9c8ed3 -Author: Steve Ebersole -Date: Tue Oct 22 17:49:18 2019 -0500 - - fixed version - -commit f5c3ae181ccf094649812c8e6a502218c5b09eb8 -Author: Steve Ebersole -Date: Tue Oct 22 14:45:14 2019 -0500 - - initial discriminator hierarchy support - -commit 97c300a6ad03d7fe5843c9e0ac63afe43f649333 -Author: Sanne Grinovero -Date: Mon Oct 21 18:34:24 2019 +0100 - - HHH-13686 Upgrade to Agroal 1.6 - -commit 4d0ec22411a6f536f18967113ad0728345827fa0 -Author: Andrea Boriero -Date: Mon Oct 21 17:32:53 2019 +0100 - - 5.4.7 - -commit 5c8045b42212c4f29f54ca9af4da641342250ad5 (tag: 5.4.7) -Author: Andrea Boriero -Date: Mon Oct 21 15:39:32 2019 +0100 - - 5.4.7 - -commit 96e7abf80b45c6b25c25b7761d618a2b44fbdbd7 -Author: Andrea Boriero -Date: Thu Oct 17 14:38:58 2019 +0100 - - HHH-13672 The temporary PersistenceContext of a StatelessSession is not cleared after a refresh operation - -commit 43402ea51c319cd037c94d858711bf2082dc2e24 -Author: Andrea Boriero -Date: Thu Oct 17 13:52:35 2019 +0100 - - HHH-13672 Add test for issue - -commit d83acfa50fd7d121ef28e4b7797e21e48c33897b -Author: Yoann Rodière -Date: Mon Oct 21 09:30:58 2019 +0200 - - HHH-13681 Upgrade to Byteman 4.0.8 - -commit cacef1f466ae3215dbd9e270d0f11da0ae230a74 -Author: Yoann Rodière -Date: Mon Oct 21 09:26:01 2019 +0200 - - HHH-13680 Upgrade to Byte-buddy 1.10.2 - -commit 3c650851237fd5ff669495a8b2e89c2146ada641 -Author: Steve Ebersole -Date: Mon Oct 21 05:08:09 2019 -0500 - - changed log message level - -commit f39d96f9fa824af1d92541ef5547f9f28e84a3ac -Author: Andrea Boriero -Date: Mon Oct 7 15:30:24 2019 +0100 - - HHH-13673 Cryptic error when providing import.sql file without a terminal char at the end of each line - -commit 8f68a3573e5c244e8ed3986d9d8afbbd2884861a -Author: Andrea Boriero -Date: Thu Oct 17 18:22:13 2019 +0100 - - HHH-13673 Add test for issue - -commit 31e2423d8ac02852c00cbacf47fbcb2e0cb3a1eb -Author: Steve Ebersole -Date: Fri Oct 18 12:46:22 2019 -0500 - - initial work on support for discrim-inheritance; - started design doc about SQM model, building and translation; - initial work on `#load` support (strange error in BasicFormatterImpl as part of SqlStatementLogger) - -commit 3b1e7afb20ce934abe35150889f02b41be98ca0c -Author: Christoph Dreis -Date: Thu Oct 17 23:10:18 2019 +0200 - - HHH-13675 : Optimize PersistentBag.groupByEqualityHash() - -commit 1c840f9dd17c75f1e01667fe26b71753f97c7168 -Author: Andrea Boriero -Date: Mon Oct 7 10:43:30 2019 +0100 - - HHH-12858 HHH-13432 fix Oracle failing tests - -commit 26d914f4149fe21a66e85af1497cc09d9be0bc5c -Author: Steve Ebersole -Date: Fri Oct 18 07:11:19 2019 -0500 - - (perf) Antlr parsing performance - what they call "2 step parsing" - -commit 93a07453f0cdf3e764832a22679c8642e3af6fb9 -Author: Gail Badner -Date: Thu Oct 17 12:04:19 2019 -0700 - - HHH-13634 : Fix test case queries to order results - -commit 42de569a37f54fc3eec39fed3cb03ad6e763ddc1 -Author: Gail Badner -Date: Wed Oct 16 11:19:13 2019 -0700 - - HHH-13634 : PersistenceContext can get cleared before load completes using StatelessSessionImpl - -commit eccb786ba454ef95cab593d54214cdb60382d1c4 -Author: Gail Badner -Date: Wed Oct 16 11:16:49 2019 -0700 - - HHH-13634 : Test cases - -commit 9aab0892eb9c7c51b1ccfd740cb0155a42fd38b0 -Author: Steve Ebersole -Date: Thu Oct 17 10:20:52 2019 -0500 - - fixed issues with merging master - -commit 8b500acc1d5cdb1d95cfd186ab2e7209c1ca56fa -Merge: 39afae5462 6cdb0256d4 -Author: Andrea Boriero -Date: Thu Oct 17 16:02:43 2019 +0100 - - Merge remote-tracking branch 'upstream5/master' into wip/6.0_merged_9 - -commit 6cdb0256d41e873b67a8a6ce40a6d1ee5a4b6599 -Author: Yoann Rodière -Date: Tue Oct 15 15:06:48 2019 +0200 - - HHH-13666 Test custom BeforeTransactionCompletionProcess/AfterTransactionCompletionProcess - -commit 5c8169ba7cd81b5ab9ac282bd5c596f25c7d7f9b -Author: Yoann Rodière -Date: Tue Oct 15 15:05:52 2019 +0200 - - HHH-13666 Re-use the wrapped exception's message upon beforeTransactionCompletion/afterTransactionCompletion failure - - For convenience. - -commit f9c149ab0db9215d2fc45837b67b227c0bb5b77b -Author: Yoann Rodière -Date: Tue Oct 15 15:04:13 2019 +0200 - - HHH-13666 Throw a HibernateException with a more appropriate message upon beforeTransactionCompletion/afterTransactionCompletion failure - -commit 250f56933925d8b1b41f1d41f4001762cbd785b2 -Author: Yoann Rodière -Date: Tue Oct 15 14:32:02 2019 +0200 - - HHH-13666 Clarify that existing BeforeCompletion/AfterCompletion tests are about JTA only - -commit 8655d683e68fc335c74affd71f48d627bdb846dd -Author: Yoann Rodière -Date: Tue Oct 15 14:29:25 2019 +0200 - - HHH-13666 Remove some dead code in tests related to transactions - -commit 39afae54629028ac99c4ce5a9c82927a3cd648fd -Merge: 1a3fcff8af 81d5f5eb21 -Author: Andrea Boriero -Date: Thu Oct 17 09:18:56 2019 +0100 - - Merge remote-tracking branch 'upstream5/master' into wip/6.0_merged_8 - -commit 81d5f5eb219d531154cd2080809f266586729106 -Author: Gail Badner -Date: Wed Oct 16 13:53:53 2019 -0700 - - HHH-13633 : Fix test case queries to order results - -commit 1a3fcff8afa3fd3242b14f5036c75d74272ac407 -Author: Steve Ebersole -Date: Wed Oct 16 13:48:23 2019 -0500 - - (perf) fix cases of Map resizing when number of entries known ahead of time; - (perf) convert some List Iterators to "for i" loops - -commit 388b62f049237915a96c889faaf8d2e6a370a51c -Author: Gail Badner -Date: Mon Oct 14 23:33:39 2019 -0700 - - HHH-13633 : Bugs join-fetching a collection when scrolling with a stateless session using enhancement as proxy - - Make corrections. - - (cherry picked from commit 40a7cee13d3e11b4965ab74a7b36db363b9de349) - -commit ce19b83e4e96618a4219cc9b3afd08da311da806 -Author: Gail Badner -Date: Mon Oct 14 23:32:16 2019 -0700 - - HHH-13633 : Add tests including for no HibernateProxy factory - - (cherry picked from commit 5aa421d6978140f4a1e5225c16bfed65f386c6f1) - -commit 20d6b53631953bd186aca3e919548ecf39d5e600 -Author: Gail Badner -Date: Mon Sep 23 13:21:59 2019 -0700 - - HHH-13633 : Bugs join-fetching a collection when scrolling with a stateless session using enhancement as proxy - - Minor changes suggested by Andrea. - - (cherry picked from commit cce634f03b8f23ce1c3faa068eaa60da4f5e0660) - -commit f1fa438bbe0b3db9d27666a495589d31c1e0fc61 -Author: Gail Badner -Date: Thu Sep 19 23:08:23 2019 -0700 - - HHH-13633 : Bugs join-fetching a collection when scrolling with a stateless session using enhancement as proxy - - (cherry picked from commit b589251166da2c08bd1f9226237f7f8d490a6839) - -commit e2a403e19d4f44b3c7bb40fbaeac459a184ee958 -Author: Gail Badner -Date: Thu Sep 19 23:06:14 2019 -0700 - - HHH-13633 : Added more tests based on renamed original (w/ and w/o bytecode enhancement) - - (cherry picked from commit 9ad427a33e3fddb347d6605d9e37a6dfa1b0dc5c) - -commit 38ff41c8961d2205b729e282b8c7eeadf84404a2 -Author: Andrea Boriero -Date: Wed Sep 18 20:08:32 2019 +0100 - - HHH-13633 : Add test for issue - - (cherry picked from commit 1d8f93ca64cbe5a499df6c04f13440a5f7b356bc) - -commit 5482c55e6c9dfa5f24e2b9b3baafa575a60a1ede -Author: Steve Ebersole -Date: Wed Oct 16 10:30:17 2019 -0500 - - remove caching of ColumnReferences inside ColumnReferenceQualifier - they are already cached as part of the SqlExpressionResolver, which has a broader scope and is therefore more efficient place - -commit 4d32d3d763251b585bf94e02e40992947929bc25 -Author: Steve Ebersole -Date: Wed Oct 16 10:04:28 2019 -0500 - - prep work for to-one mapping support - -commit 63b22c4c6b5629954377df8562a02f62efb39748 -Author: Steve Ebersole -Date: Tue Oct 15 15:30:03 2019 -0500 - - fixed references to same column, but from different TableReferences (different qualifiers) - -commit 39391c86f25d97f31a0f6a647b255bb26f816c24 -Author: Steve Ebersole -Date: Tue Oct 15 14:22:47 2019 -0500 - - Checkstyle (missing license header) - -commit a5fe8642958fde8261fb0e4dec2be06351a35c0d -Author: Steve Ebersole -Date: Tue Oct 15 14:06:33 2019 -0500 - - Fixed test - -commit fb8d5b42c9731e45251098457dbfc8dfdfc97e7d -Author: Gail Badner -Date: Mon Oct 14 23:29:47 2019 -0700 - - HHH-13640 : Correct DefaultLoadEventListener#proxyOrLoad to work properly enhancement but no HibernateProxy factory - -commit 66afff296a528eef6638c16714dcb48ee842c764 -Author: Gail Badner -Date: Mon Oct 14 23:11:13 2019 -0700 - - HHH-13640 : Add test using custom EntityTuplizer with no HibernateProxy factory using Session - -commit 6ea723ddc5adcb7a314476f76c71c789746c5851 -Author: Steve Ebersole -Date: Tue Oct 15 11:49:36 2019 -0500 - - New test - -commit 611cdceeb20030a066c1bd42443cdea40b45963d -Author: Steve Ebersole -Date: Tue Oct 15 11:38:08 2019 -0500 - - Performance work - -commit c392d03bf1719009aad649306f954c1a3cf89e25 -Author: Andrea Boriero -Date: Mon Oct 14 16:31:21 2019 +0100 - - HHH-13665 selecting an Entity annotated with @Immutalbe but not with @Cachable causes a NPE when use_reference_entries is enabled - -commit 8d9eb04d1600ce8c07de4bcab67bf60ab560d64e -Author: Andrea Boriero -Date: Mon Oct 14 16:29:44 2019 +0100 - - HHH-13665 Add test for issue - -commit e10e84159afcd5dd4977f6a709413c8f4e1b1530 -Author: Gail Badner -Date: Fri Oct 11 16:39:30 2019 -0700 - - HHH-13640 : Remove SharedSessionContractImplementor#internalLoad(String, Serializable, boolean, boolean, Boolean unwrapProxy) - -commit c21ecb511c6426caefde7e3ea123889b6928d6ce -Author: Gail Badner -Date: Fri Oct 11 16:36:36 2019 -0700 - - HHH-13640 : Added/modified tests - -commit 8f96d7e1e97bd6f16e9c3089685ae77a3f319b04 -Author: Francisco A. Lozano -Date: Mon Oct 14 10:20:24 2019 +0200 - - HHH-4235 MapBinder.createFormulatedValue() does not honor DB schema name when creating query - -commit 2985c1db98886ff88efb67a56e4e69d75c7f876a -Author: Andrea Boriero -Date: Mon Oct 14 10:27:11 2019 +0100 - - HHH-4235 Add test for issue - -commit 14b6330a324340fd13cd055c73fe64658e3a14f6 -Author: Sanne Grinovero -Date: Fri Oct 11 10:55:07 2019 +0100 - - HHH-13663 Have the test actually use ThreadLocalSessionContext - -commit 1d64a386cd1e9f1ae3d6d4f89334e407d42fcd90 -Author: Sanne Grinovero -Date: Fri Oct 11 10:44:39 2019 +0100 - - HHH-13663 adjust formatting style - -commit 26edb2863fd46ec7a3cde6e1b79c18f3bee5c398 -Author: mimmoz81 -Date: Fri Oct 11 10:12:34 2019 +0200 - - HHH-13663 Method setHibernateFlushMode not callable without an active transaction on threadbound Sessions - -commit 9d6463eab6ed9e91f5e592571f09b32f41f6f138 -Author: Sanne Grinovero -Date: Thu Oct 10 09:38:22 2019 +0100 - - HHH-13662 Avoid initializing XmlMappingBinderAccess when no XML mappings are defined - -commit 567eb38069a68dd048a3b2abcd7144a5aaa3fa54 -Merge: c7ce52c4b1 404bc196f7 -Author: Andrea Boriero -Date: Wed Oct 9 18:00:48 2019 +0100 - - Merge remote-tracking branch 'upstream5/master' into wip/6.0_merged_6 - -commit c7ce52c4b10ee18b712fbd6171faec6d60d7d84b -Author: Steve Ebersole -Date: Wed Oct 9 11:41:23 2019 -0500 - - perf changes - -commit 6f77e0d261ba71150f32b544d0c95814f27bbb05 -Author: Steve Ebersole -Date: Wed Oct 9 11:40:48 2019 -0500 - - perf work - -commit 404bc196f7fa07547203286ec6d82f48a1ab13ae -Author: Sanne Grinovero -Date: Wed Oct 9 10:33:07 2019 +0100 - - HHH-13660 Removing dead parameter: forceFetchLazyAttributes - -commit 9dd6b8439b9eb932c0ee7d64122bf054175df27c -Author: Sanne Grinovero -Date: Wed Oct 9 10:24:04 2019 +0100 - - HHH-13660 Reduce allocation costs of IdentityMaps used by ResultSetProcessingContextImpl - -commit d6376834a723f5147ba4152c1d5576fb500b3acb -Author: Gail Badner -Date: Wed Oct 2 22:12:19 2019 -0700 - - HHH-13640 : Minor improvement - -commit cec4228d700cbad63a330380c784776ba5cbf724 -Author: Andrea Boriero -Date: Wed Oct 2 16:51:37 2019 +0100 - - HHH-13640 - Fix initialization of existing proxy association leaf subclass - -commit c712b83955522dba4ef1e79c38a9dc39fc8b252a -Author: Gail Badner -Date: Sun Oct 6 20:03:44 2019 -0700 - - HHH-13653 : More test cases - -commit 3c1f4356dd3a6e6d88ee4a9442119f262b6dfb97 -Author: Andrea Boriero -Date: Fri Oct 4 16:41:07 2019 +0100 - - HHH-13653 Uninitialized entity does not get initialized when a setter is called with enhancement-as-proxy enabled - -commit ab508d2afacd3aa564d2a71ad067b2e11adebba7 -Author: Steve Ebersole -Date: Sat Oct 5 23:03:09 2019 -0500 - - HHH-12858 - integration overrides during JPA bootstrap ought to override all logically related settings - HHH-13432 - Have EntityManagerFactory expose persistence.xml `jta-data-source` element as a `javax.persistence.nonJtaDataSource` property - -commit fd72e4f75f73703511b9b47fbcc15a0438a69c2d -Author: Steve Ebersole -Date: Sat Oct 5 22:45:29 2019 -0500 - - HHH-12858 - integration overrides during JPA bootstrap ought to override all logically related settings - HHH-13432 - Have EntityManagerFactory expose persistence.xml `jta-data-source` element as a `javax.persistence.nonJtaDataSource` property - -commit d95c16e9ab1b3d3b718adb4eb0fa0ede62b9cd95 -Author: Chris Cranford -Date: Fri Oct 4 19:28:20 2019 -0400 - - HHH-13655 Fix NullPointerException for audited MapKeyEnumerated collections with basic value types - -commit 00f45951daea6bd0bc872edbdd019b76ce6cef0e -Author: Gail Badner -Date: Thu Oct 3 23:54:23 2019 -0700 - - HHH-13653 : Test case - -commit b350599442f8ff7e4da7aeb99f43cd9453e30fc0 -Author: Steve Ebersole -Date: Wed Oct 2 03:05:43 2019 -0500 - - HHH-12858 - integration overrides during JPA bootstrap ought to override all logically related settings - - - e.g. a datasource passed in the integration overrides map ought to effectively override JDBC-connection settings in `persistence.xml` (and vice-versa) - - HHH-13432 - Have EntityManagerFactory expose persistence.xml `jta-data-source` element as a `javax.persistence.nonJtaDataSource` property - -commit 2bc7fed96ecab48ea6ab98394e0ad93ad829981d -Author: Andrea Boriero -Date: Tue Oct 1 14:01:01 2019 +0100 - - HHH-13640 - Add PrepareStatement executed check to LazyToOnesProxyWithoutSubclassesTest - -commit 2502f4c108c6653827753bd51374c21a881e7dc7 -Author: Andrea Boriero -Date: Wed Oct 2 11:21:04 2019 +0100 - - Change back version to SNAPSHOT - -commit 4b6777cde2f39ab337b8b0c72513b128014e4c10 -Merge: 726dbeef34 616f549f8c -Author: Andrea Boriero -Date: Wed Oct 2 10:24:59 2019 +0100 - - Merge remote-tracking branch 'upstream5/master' into wip/6.0_merged_4 - -commit 616f549f8cc50c6eb70dd2c8a5fcb2772af0f68b -Author: Gail Badner -Date: Tue Oct 1 17:32:45 2019 -0700 - - HHH-13640 : Added failing test where a proxy is found in PersistenceContext, but it does not have a subclass - -commit b606759e61cfaf128c500d889ec743f50f10ad98 -Author: Chris Cranford -Date: Mon Sep 30 14:00:22 2019 -0400 - - HHH-10398 Allow MOD column naming to be driven by a strategy - - * Fixed javadoc comments - * Various code suggested code changes from review - -commit f78877a607f478841df9b9b462655501735384fa -Author: Chris Cranford -Date: Wed Sep 18 17:38:27 2019 -0400 - - HHH-10398 Allow MOD column naming to be driven by a strategy - - * Fixes OSGI integration with missing service lookup registration - -commit 3ecdd860a376f7bfb4250b10329bbeb25b045e2e -Author: Chris Cranford -Date: Tue Sep 17 23:31:10 2019 -0400 - - HHH-10398 Allow MOD column naming to be driven by a strategy - - In the past the MOD columns were constructed based on the property name, - therefore if users specified a @Column/@JoinColumn like annotation and - changed the underlying schema column, the MOD column would continue to - be derived based on the property name. - - This enhancement introduces a new ModifiedColumnNamingStrategy SPI that - comes with two implementations, a default/legacy mode that maintains - the prior naming model and an improved mode that will derive the MOD - name based on the naming strategy ORM used to derive the column name. - -commit 0084f82b1aac9841deac779700a267102acef768 -Merge: 1dfb25bbbb ee304305e8 -Author: Steve Ebersole -Date: Tue Oct 1 09:26:57 2019 -0500 - - Merge branch 'master' of github.com:hibernate/hibernate-orm - -commit ee304305e8005e479164c92edd01b55a0296df3d -Author: Steve Ebersole -Date: Mon Sep 30 17:50:39 2019 -0500 - - HHH-13640 - Uninitialized HibernateProxy mapped as NO_PROXY gets initialized when reloaded with enhancement-as-proxy enabled - -commit d46d3d66a28382f4212f68d453dc7d4d87ec1a43 -Author: Steve Ebersole -Date: Mon Sep 30 07:58:18 2019 -0500 - - HHH-13432 - EntityManagerFactory no longer exposes "javax.persistence.nonJtaDataSource" - -commit 726dbeef34d5f610cb2a4ab206f14cd9b95189db -Merge: 032f03afa3 5d4eb8004b -Author: Andrea Boriero -Date: Mon Sep 30 16:45:27 2019 +0100 - - Merge remote-tracking branch 'upstream5/master' into wip/6.0_merged_4 - -commit 1dfb25bbbbb61e0a0fb6a2a47f5503f7fe143d64 -Author: Steve Ebersole -Date: Mon Sep 30 07:58:18 2019 -0500 - - HHH-13432 - EntityManagerFactory no longer exposes "javax.persistence.nonJtaDataSource" - -commit 5d4eb8004bd41146f7c44b75d7e49d46cf3ed7cc -Author: Andrea Boriero -Date: Mon Sep 30 13:28:19 2019 +0100 - - 5.4.6 - -commit 39e576cea49c62763e651237f3666f97205406f6 (tag: 5.4.6) -Author: Andrea Boriero -Date: Mon Sep 30 11:51:40 2019 +0100 - - 5.4.6 - -commit 9a627c30fee89429d6c5218ff762c5ba021f0abf -Author: Vlad Mihalcea -Date: Thu Jul 11 08:49:14 2019 +0300 - - HHH-13493 - For a native query, the SessionImpl class does not call applyQuerySettingsAndHints - -commit a92cd6c9b962d9a657ed4531dcfa51d12c8fab07 -Author: Sanne Grinovero -Date: Mon Sep 30 10:35:14 2019 +0100 - - HHH-13645 Include a comment in the implementation about the design choice to not optimise for null values - -commit 00d25c1824f1721f13d47cb63c577ca9e2ba05d8 -Author: Gail Badner -Date: Fri Sep 27 15:32:25 2019 -0700 - - HHH-13645 : StatsNamedContainer#getOrCompute throws NullPointerException when computed value is null - -commit 3f7d03bfec1a9f8295525dbff416e997c0addd2b -Author: Gail Badner -Date: Fri Sep 27 15:31:49 2019 -0700 - - HHH-13645 : test cases - -commit 4b8c81908c0b8bac7b7173d8c2b7f19ef15b417b -Author: Chris Cranford -Date: Wed Sep 18 17:24:06 2019 -0400 - - HHH-11797 Add support for @MapKeyEnumerated mappings - -commit 032f03afa30e827b460ec94eb1966898172e776f -Author: Steve Ebersole -Date: Fri Sep 27 14:58:34 2019 -0500 - - initial work for LoadQueryInfluencer (EntityGraph, FetchProfile, etc) in SQM -> SQL AST transformation while building DomainResult/Fetch graph - -commit e572202cd11dc0ba2bb5c2877c4579d76c744e2f -Author: Steve Ebersole -Date: Fri Sep 27 12:09:43 2019 -0500 - - fixed SqmParameter type inference from an SqmPath during translation to SQL AST - -commit 7355fc513163ad7b74c6837390859af9ec2e3517 -Author: Kim Hansen -Date: Thu Sep 26 14:12:48 2019 +0200 - - Fix error in error message - -commit c06092c9649d6e1a3005c2b49899a937e55388e8 -Author: Yash Jain -Date: Fri Aug 30 02:06:07 2019 +0530 - - Grammatical and syntax mistake in README.md - - 1. Inserted "," before "and" - 2. "quite unique" creates a tautology. - 3. "features" -> "feature", The sentence was about a single feature. - 4. The phrases "in order to" maybe wordy. Consider changing the wording. - 5. The phrases "a number of" maybe wordy. Consider changing the wording. - 6. "Note :" -> "Note:", Unnessacary space between "Note" and ":" - -commit e04348079facecca66fa3facf934cf5d74f2d141 -Author: Andrea Boriero -Date: Fri Sep 6 19:11:10 2019 +0100 - - HHH-13597 Building DatabaseInformation fails on H2 without DATABASE_TO_UPPER - -commit 0e9ef8c7c975a23dc70977dd207ae4dd390cd502 -Author: Vootele Rotov -Date: Mon Aug 26 14:01:21 2019 +0300 - - HHH-13597 Add test for issue - -commit b9f4562680d4e885c98a8dffb32664a77b0944ad -Author: Steve Ebersole -Date: Thu Sep 26 14:14:19 2019 -0500 - - fixed source of NPE wrt accessing an entity's version attribute descriptor when no versioning is defined; - added `@org.hibernate.testing.orm.junit.SessionFactory#exportSchema` - -commit 57fba402b43d4101020cadc8693767f869f635de -Author: Steve Ebersole -Date: Wed Sep 25 15:10:33 2019 -0500 - - HHH-12858 - Persistence.createEntityManagerFactory(Map) should allow overwriting jta-data-source of persistence.xml - -commit 4ff3c0b6e43c94ab44811c70e1eb57764bb2fbff -Author: Steve Ebersole -Date: Wed Sep 18 12:19:32 2019 -0500 - - HHH-13130 - Provide Gradle-based bytecode enhancement as a task separate from the compileJava task - -commit 12ca8a2a819ee31b7290a93c431455efb8950370 -Author: Steve Ebersole -Date: Wed Sep 25 11:36:25 2019 -0500 - - avoid NPE with no proxy-class defined - -commit 7fd33fdd93c92a8462a01ade39b7a1be900db837 -Author: Steve Ebersole -Date: Wed Sep 25 11:29:27 2019 -0500 - - various perf cleanup - -commit 283802c4913cf1429a9cab1aba5df1ca80f105c0 -Author: Gail Badner -Date: Tue Sep 24 15:03:29 2019 -0700 - - HHH-13640 : Test case (marked FailureExpected) - -commit a3cccca66d4ccae89aead97e8a1665c7fd1973ab -Author: Mahmoud Anouti -Date: Fri Sep 20 17:27:52 2019 +0300 - - Fix typo in user guide explicit polymorphism section - -commit 4e3f60bf3246ab685b928facb3ed7933a3d55320 -Author: Steve Ebersole -Date: Mon Sep 23 14:12:13 2019 -0500 - - clean up SqmPath -> TableGroup resolution, esp wrt LHS - -commit 4149350222f3339eca2f9528fbde8732732b0f0e -Author: Steve Ebersole -Date: Mon Sep 23 12:53:51 2019 -0500 - - pluggable SQL AST translators - -commit 35860baad6c56d539a77a58f3aa425a2b7feface -Author: Steve Ebersole -Date: Mon Sep 23 11:53:14 2019 -0500 - - support for pluggable HqlTranslator (renamed from SemanticQueryProducer); - support for pluggable SqmToSqlAstConverterFactory - - - both allow a precedence of user-supplied > Dialect > standard - -commit cd354f1e2bc8fbd4dc0ac30a62f3add31b046d45 -Author: Steve Ebersole -Date: Mon Sep 23 11:01:00 2019 -0500 - - minor cleanup - -commit 25152db2de04acb913ea445f39113626d6fb0714 -Author: Steve Ebersole -Date: Mon Sep 23 09:01:53 2019 -0500 - - cleanup wrt TableGroup rendering; - better utilize constants when rendering SQL AST - -commit 0f5107ca11da3f492a5c57ce5de5b9583c1a48c7 -Merge: 3d764e15d5 18c8495bab -Author: Steve Ebersole -Date: Mon Sep 23 05:44:40 2019 -0500 - - Merge branch 'andrea-merge' into wip/6.0 - -commit 3d764e15d587b7db3960815be4a902498317b5c2 -Author: Steve Ebersole -Date: Sun Sep 22 10:52:43 2019 -0500 - - minor cleanup - -commit 233a3b176cd4cf328fe467518b29ea5cf6e99f83 -Author: Steve Ebersole -Date: Sun Sep 22 10:32:41 2019 -0500 - - initial working "unqualified" entity join support in criteria - -commit 18c8495babb5aceca8c13075cd08b31a00b816a6 -Merge: 26b08fd35e 5c9cf4d0d8 -Author: Andrea Boriero -Date: Fri Sep 20 08:09:34 2019 +0100 - - Merge branch 'master' into wip/6.0_merged2 - -commit 26b08fd35ef64dcaaea008f9489be347e04395db -Author: Steve Ebersole -Date: Thu Sep 19 15:59:59 2019 -0500 - - initial working literal and parameter selection - -commit 5631a702a7ded27aa878c99365749f11fac6763c -Author: Steve Ebersole -Date: Thu Sep 19 15:13:50 2019 -0500 - - initial working dynamic instantiation support; - cleanup - -commit 055ce0c54239b6b1e3fab6f6b0754a6743519c7f -Author: Steve Ebersole -Date: Thu Sep 19 07:36:41 2019 -0500 - - cleanup - -commit 05a38d2c7cf8c835c81fd0848eb92289692517bd -Author: Steve Ebersole -Date: Thu Sep 19 07:30:44 2019 -0500 - - initial working support for embeddables and sub-references in HQL - -commit 5c9cf4d0d834b00e3a9e15380a7b9e91f5edb0e3 -Author: Steve Ebersole -Date: Wed Sep 18 11:30:31 2019 -0500 - - HHH-13130 - Provide Gradle-based bytecode enhancement as a task separate from the compileJava task - -commit 1bdbc0e7646d2648453659649864db488c0f611e -Author: Sanne Grinovero -Date: Tue Sep 17 19:43:08 2019 +0100 - - HHH-13625 After upgrading to 5.4.5, it's no longer possible to bootstrap Hibernate if the org.hibernate.cfg LOG is set to DEBUG - -commit 9d171f364c6056beceed6a2659dc19742ee6fd23 -Author: Andrea Boriero -Date: Tue Sep 17 15:42:36 2019 +0100 - - 5.4.5 - -commit 568413a102f3d1f13fb71900e254f1d898476aae (tag: 5.4.5) -Author: Andrea Boriero -Date: Tue Sep 17 14:08:29 2019 +0100 - - 5.4.5 - -commit 0f2a037e1880a074b6328ea3f2bcd86a161469cd -Author: Yoann Rodière -Date: Fri Aug 30 14:57:19 2019 +0200 - - HHH-13606 Upgrade the HANA JDBC driver to 2.4.59 in the matrix_hana task - - It's already the version we use when running test -Pdb=hana, so let's - be consistent. - -commit 5500985afa8d5c2dd6b9040549a4a3aab9440c2e -Author: Steve Ebersole -Date: Mon Sep 16 13:09:43 2019 -0500 - - initial working support for root entity loading via HQL - -commit 57dbfbb60e1a97708a0a4f004fc3f4101d86ef97 -Author: Sanne Grinovero -Date: Mon Sep 16 16:22:56 2019 +0100 - - HHH-13622 Upgrade the WildFly Transaction Client to 1.1.7.Final - -commit 00267022eb1605d3f0a8a60ececa0d0b578c4371 -Author: Andrea Boriero -Date: Fri Sep 13 18:41:31 2019 +0100 - - Initial working support for selecting a "query root" - i.e. - -commit c27c53f6192e40e62e86252864a5c16593a89743 -Author: Andrea Boriero -Date: Fri Sep 13 14:25:41 2019 +0100 - - Initial working support for selecting a "query root" - i.e. - -commit f5877052ff00cf923628d0c1859cc1f7779df500 -Author: Andrea Boriero -Date: Fri Sep 13 11:24:11 2019 +0100 - - HHH-13621 Exception if spaces after value of javax.persistence.schema-generation.scripts.action in hibernate.properties - -commit 26c2e0bf2b4d714cad340f3ebb3b18a498095168 -Author: Andrea Boriero -Date: Fri Sep 13 11:09:25 2019 +0100 - - HHH-13621 Add test for issue - -commit 23c3c8949eb902deb5638afcfc0dbc3a7b1f6602 -Author: Steve Ebersole -Date: Fri Sep 13 15:38:56 2019 -0500 - - adjust ORM artifact references in module descriptors (missed some) - -commit 6eb9154184e990707046dbcfe0fdeae5d2bdfba5 -Author: Steve Ebersole -Date: Fri Sep 13 15:21:29 2019 -0500 - - adjust ORM artifact references in module descriptors. - -commit 9cf6195110dbaf026a5f6cac344c5d9b182d02c3 -Author: Steve Ebersole -Date: Fri Sep 13 14:53:30 2019 -0500 - - All hail the mighty Checkstyle - -commit 50ba882b2d6e739f89836cfa959fd57a3fa41bc5 -Author: Steve Ebersole -Date: Fri Sep 13 14:30:10 2019 -0500 - - temporarily include just the new tests so we can publish SNAPSHOTS for others to use - -commit 648dd3d2edd7c00ee90340021442f866824d7972 -Author: Steve Ebersole -Date: Fri Sep 13 14:09:04 2019 -0500 - - More work on EntityResult handling; - Changes to how SqmParameters are handled to account for criteria parameters - -commit 1db0927e8e51cb8a1ad754148932f38aa14e930d -Author: Andrea Boriero -Date: Fri Sep 6 14:15:12 2019 +0100 - - 6 - Fix StandardBasicTypes not registering types into BasicTypeRegister when a SF is closed and recreated - -commit 76b42a94c378869dab405f461b7f1c999928a628 -Author: Steve Ebersole -Date: Wed Sep 11 13:41:17 2019 -0500 - - Initial working support for selecting a "query root" - i.e. `select e from TheEntity e` - -commit a4e4cb72604df3891880b0b6d02275ddce3bcb1c -Author: Steve Ebersole -Date: Thu Sep 5 09:40:47 2019 -0500 - - Initial working support for building and executing JdbcSelect operation from simple HQL for a converted (enum) value - actually reading; - fixed (temporary) support for writing enumerated values - -commit 340ba91e5c7f22bf9d5fb5c62047bb0a04968bba -Author: Andrea Boriero -Date: Thu Sep 5 12:25:56 2019 +0100 - - Initial working support for building and executing JdbcSelect operation from simple HQL - -commit f85fe137b28b0dcf6cb9035739b918c744b082c2 -Author: Andrea Boriero -Date: Thu Sep 5 11:56:44 2019 +0100 - - Initial working support for building and executing JdbcSelect operation from simple HQL - -commit 5b1df3c6c917a5f44f03027cdc083519ffdf525f -Author: Steve Ebersole -Date: Thu Sep 5 06:50:29 2019 -0500 - - Initial working support for building and executing JdbcSelect operation from simple HQL for a converted (enum) value - -commit dbd108e0b75fe4d42f26a6eac039d79a632305d1 -Author: Steve Ebersole -Date: Wed Sep 4 20:40:48 2019 -0500 - - Initial working support for building and executing JdbcSelect operation from simple HQL - -commit 70c051af6f0ac069863e23d797c14718b013058d -Author: Steve Ebersole -Date: Wed Sep 4 12:57:25 2019 -0500 - - Proper creation of JdbcSelect for simple HQL query - -commit 1ec133a989693a79ce3170486e7b2c863f4abe0a -Author: Steve Ebersole -Date: Wed Sep 4 10:27:57 2019 -0500 - - Continued tests of Hibernate mapping model and SQL AST - -commit f4441e3664234d26eb1a48e21351fe2bd76f2352 -Author: Andrea Boriero -Date: Wed Sep 4 15:41:15 2019 +0100 - - Fix compilation errors - -commit 20f2002269359dd7ead55d96b683b8c584227c50 -Author: Andrea Boriero -Date: Wed Sep 4 11:45:57 2019 +0100 - - 6 - fix compilation errors in envers and osgi projects - -commit 0acd11fae343eafde2b9bd8f8e37a0f850f7dece -Author: Steve Ebersole -Date: Tue Sep 3 14:00:40 2019 -0500 - - 6 - SQM based on JPA type system - - Completed rebase on master (from the point just after HHH-11147 work) - fixed compilation failures - -commit a4fa6430f329cef3a0e90d6a83e06e2fc46d3c70 -Author: Sanne Grinovero -Date: Fri Aug 30 19:11:50 2019 +0100 - - Fixing the SessionImpl#buildLockOptions method - -commit fffc9e7786488a28faa328d6be58ed91fa9b2441 -Author: Sanne Grinovero -Date: Fri Aug 30 13:40:14 2019 +0100 - - 6 - SQM based on JPA type system - - Fix compilation errors, imports, and amend deleted files after rebasing. - -commit 5aea8bcf6a690660e8072babcadc8454aa2a42e6 -Author: Steve Ebersole -Date: Thu Aug 29 20:39:14 2019 -0500 - - 6 - SQM based on JPA type system - - Completed rebase on master (from the point just after HHH-11147 work) - fixed compilation failures - -commit 58acd33b5441e9f6c41bc5ac1fcc861f2e46b139 -Author: Andrea Boriero -Date: Mon Aug 19 10:11:28 2019 +0100 - - 6 - SQM based on JPA type system - -commit 00d3abba1303855b21a93de9cee618a9854206ef -Author: Andrea Boriero -Date: Mon Aug 19 09:47:43 2019 +0100 - - 6 - SQM based on JPA type system - -commit 7a82dcf22bb4072284f1ab78dcc5f069d0f10323 -Author: Steve Ebersole -Date: Thu Aug 15 19:24:16 2019 -0500 - - 6 - SQM based on JPA type system - - - Continued work on mapping model and conversion from SQM to SQL. Currently flushing out mapping model - how expressive do we want this to be? Do we really want to re-use the walking contracts? Or create a new SPI/impls based on MappingModelExpressable? - -commit 0c66f23af2153a6654390a31d31641c4c7f16ce5 -Author: Steve Ebersole -Date: Tue Aug 13 16:40:54 2019 -0500 - - 6 - SQM based on JPA type system - - - Initial work on SQL AST generation based on older persister model - -commit bb207c092669d497d1f8e1e1d5bc5dbecd6a634b -Author: Steve Ebersole -Date: Mon Aug 5 19:12:41 2019 -0500 - - 6 - SQM based on JPA type system - - - Initial work on SQL AST generation based on older persister model - -commit 4dd7c280ca865748ba8887250a76fce6cbca033c -Author: Steve Ebersole -Date: Mon Aug 5 11:55:37 2019 -0500 - - 6 - SQM based on JPA type system - - - SQM tests - -commit 5359a7b5fde84f3afdb21ee1f0ee01ceee908fa3 -Author: Steve Ebersole -Date: Fri Jul 26 15:28:17 2019 -0500 - - 6 - SQM based on JPA type system - - - SQM tests - -commit ac93c1d213cb41679f3417006aef805b19710d00 -Author: Steve Ebersole -Date: Fri Jul 26 15:24:33 2019 -0500 - - 6 - SQM based on JPA type system - - - SQM tests - -commit 62b98712d49723f79ac7b3a170f49eeb9004eb8f -Author: Steve Ebersole -Date: Fri Jul 26 15:11:20 2019 -0500 - - 6 - SQM based on JPA type system - - - SQM tests - -commit 1003ddf1152a9922b8005c07926ab1c506c21b12 -Author: Steve Ebersole -Date: Fri Jul 26 13:24:51 2019 -0500 - - 6 - SQM based on JPA type system - - - SQM tests - -commit 21f4cfb89198aea1b7a2a11b9b8019142f45e927 -Author: Steve Ebersole -Date: Thu Jul 25 14:17:27 2019 -0500 - - 6 - SQM based on JPA type system - - - DynamicInstantiationTests - -commit 5e8be067ca58063956e437f3f5fa96a1a0f5d754 -Author: Steve Ebersole -Date: Thu Jul 25 14:06:54 2019 -0500 - - 6 - SQM based on JPA type system - - - moving SQM-specific tests from wip/6.0 - -commit 5e19aee4a1da4c7ad3a10e9eb0a37a06ca6db71d -Author: Steve Ebersole -Date: Thu Jul 25 12:08:25 2019 -0500 - - 6 - SQM based on JPA type system - - - moving SQM-specific tests from wip/6.0 - -commit c45108a2b60dd028b960a2b3d5bb0ccffb491a41 -Author: Andrea Boriero -Date: Thu Jul 25 17:39:32 2019 +0100 - - 6 - SQM based on JPA type system - -commit b101ffbf79719cb43e9d3e2652257fbb3e1df1b5 -Author: Steve Ebersole -Date: Thu Jul 25 11:59:38 2019 -0500 - - 6 - SQM based on JPA type system - - - moving SQM-specific tests from wip/6.0 - -commit 00da979e70a415234a29d156a7754eabc37cb75f -Author: Steve Ebersole -Date: Wed Jul 24 13:40:56 2019 -0500 - - 6 - SQM based on JPA type system - - - compilation errors down to zero and some test failure causes addressed - -commit 268f479b161c462e720092c6e155d9ef21d5dc16 -Author: Andrea Boriero -Date: Mon Jul 22 12:33:00 2019 +0100 - - 6 - SQM based on JPA type system - -commit b9d07df7f2c5ca9d96ec37a38315717b797096aa -Author: Andrea Boriero -Date: Mon Jul 22 12:22:16 2019 +0100 - - 6 - SQM based on JPA type system - -commit 944e15ce1261d7279e3aab1e2f476c15a128f291 -Author: Andrea Boriero -Date: Mon Jul 22 12:14:14 2019 +0100 - - 6 - SQM based on JPA type system - -commit ec086cd29995431d26efd236489d700b71942ac6 -Author: Andrea Boriero -Date: Mon Jul 22 10:58:13 2019 +0100 - - 6 - SQM based on JPA type system - -commit b196374da9ef5e0b58d4f550e99b9c57d6a0300f -Author: Andrea Boriero -Date: Mon Jul 22 10:38:30 2019 +0100 - - 6 - SQM based on JPA type system - -commit 697aeb2f82a716adbfd1a74f2d63c07003ffa2ed -Author: Andrea Boriero -Date: Fri Jul 19 16:49:45 2019 +0100 - - 6 - SQM based on JPA type system - -commit 588f11684d472ea1f9a92a9f91fa6252b864bef8 -Author: Andrea Boriero -Date: Fri Jul 19 15:03:10 2019 +0100 - - 6 - SQM based on JPA type system - -commit 711aaec3c909b87f2a29c7e86224dc187e0ed166 -Author: Andrea Boriero -Date: Thu Jul 18 17:41:21 2019 +0100 - - 6 - SQM based on JPA type system - -commit 8f63e3176e14c7e42c38c9248834e9da4ec14289 -Author: Andrea Boriero -Date: Thu Jul 18 17:32:17 2019 +0100 - - 6 - SQM based on JPA type system - -commit 407d46200cbb4bd54dfcd31cc39a3b4e1580dd1c -Author: Andrea Boriero -Date: Thu Jul 18 16:40:13 2019 +0100 - - 6 - SQM based on JPA type system - -commit 197b8e69e013de681e2e5fa06031041055cf6ad2 -Author: Andrea Boriero -Date: Thu Jul 18 16:06:31 2019 +0100 - - 6 - SQM based on JPA type system - -commit 42bd76d565e734122cca2f4ffcb2dca4be363e21 -Author: Andrea Boriero -Date: Thu Jul 18 15:43:17 2019 +0100 - - 6 - SQM based on JPA type system - -commit 665808b5af908716c4b18d6219b795f362a4dcdc -Author: Andrea Boriero -Date: Thu Jul 18 14:39:56 2019 +0100 - - 6 - SQM based on JPA type system - -commit b05029e6ac89644e41d6cfe36f79f18edbeecaef -Author: Andrea Boriero -Date: Thu Jul 18 14:37:20 2019 +0100 - - 6 - SQM based on JPA type system - -commit 911c0220fefe0b8ea19de4c76f0e024a3bbaef3d -Author: Andrea Boriero -Date: Thu Jul 18 12:30:18 2019 +0100 - - 6 - SQM based on JPA type system - -commit a15774b7e0f7bdab263675dbd286738ef2a8e1a1 -Author: Andrea Boriero -Date: Wed Jul 17 17:33:57 2019 +0100 - - 6 - Remove setParameter(... Type type) methods in favour of setParameter( AllowableParameterType type) - -commit a5414d2324f20f61462d86ddbbfb162348880ce1 -Author: Andrea Boriero -Date: Wed Jul 17 17:14:03 2019 +0100 - - 6 - Remove NativeQuery addScalar(String columnAlias, Type type) in favour of NativeQuery addScalar(String columnAlias, BasicDomainType type) - -commit 44e01cdf7e2c3d78288667fc9f0cf731159b251a -Author: Andrea Boriero -Date: Wed Jul 17 17:03:26 2019 +0100 - - 6 - SQM based on JPA type system - -commit dd5d399f27df700d50fc50b8e9cf5ef2c7dfc4fc -Author: Andrea Boriero -Date: Wed Jul 17 16:07:55 2019 +0100 - - 6 - SQM based on JPA type system - -commit 3f3e4c24e813a60db623de3cb438948f1f12a3eb -Author: Andrea Boriero -Date: Wed Jul 17 15:33:38 2019 +0100 - - 6 - SQM based on JPA type system - -commit f436d18bf28d17407159ba30f74e45f7e8532e89 -Author: Andrea Boriero -Date: Wed Jul 17 15:04:37 2019 +0100 - - 6 - SQM based on JPA type system - -commit d99a3f193804b6b3df3a9b70128f747d327280aa -Author: Andrea Boriero -Date: Wed Jul 17 14:27:50 2019 +0100 - - 6 - SQM based on JPA type system - -commit 3dbcf28b41e7d919bf397e4389461262941dc2fb -Author: Andrea Boriero -Date: Wed Jul 17 13:40:49 2019 +0100 - - 6 - SQM based on JPA type system - -commit 4fc456e9c1e3aa2adf5de84c693bffa96699b299 -Author: Andrea Boriero -Date: Wed Jul 17 12:25:23 2019 +0100 - - 6 - SQM based on JPA type system - -commit 9b586aec456201d032a02fa653e7bb6ffecc1e38 -Author: Andrea Boriero -Date: Wed Jul 17 11:21:11 2019 +0100 - - 6 - SQM based on JPA type system - -commit ff1650c66cd61ee7d0dbb85866c00930314ec6b0 -Author: Andrea Boriero -Date: Wed Jul 17 10:26:26 2019 +0100 - - 6 - SQM based on JPA type system - -commit 4fd34e4a5767e3de6ebc689c2234f052ce185f78 -Author: Andrea Boriero -Date: Tue Jul 16 18:17:52 2019 +0100 - - 6 - SQM based on JPA type system - -commit 0a95c8c81563459863369720c5143dbe0df6172d -Author: Andrea Boriero -Date: Tue Jul 16 17:55:56 2019 +0100 - - 6 - SQM based on JPA type system - -commit 86ccb2115b026eb9ca448f10b38559bd2cfd002c -Author: Andrea Boriero -Date: Tue Jul 16 17:14:46 2019 +0100 - - 6 - SQM based on JPA type system - -commit ff59a1301d351639d7e3e6e19d046b3f34af82cc -Author: Andrea Boriero -Date: Tue Jul 16 16:00:58 2019 +0100 - - 6 - SQM based on JPA type system - -commit d1b86c2a72f9472df5b045fd7668c9281cc900a4 -Author: Andrea Boriero -Date: Tue Jul 16 15:42:50 2019 +0100 - - 6 - SQM based on JPA type system - -commit 430a76588897062d077a84dc4e62c27ec004e246 -Author: Andrea Boriero -Date: Tue Jul 16 14:42:27 2019 +0100 - - 6 - SQM based on JPA type system - -commit 0bf8cd1266f27ddb5ef270d92b3ee83b7d224e1c -Author: Andrea Boriero -Date: Mon Jul 15 18:20:29 2019 +0100 - - 6 - SQM based on JPA type system - -commit c50c95a691a7d5539ebd97af4594429eadf86871 -Author: Andrea Boriero -Date: Mon Jul 15 15:38:15 2019 +0100 - - 6 - SQM based on JPA type system - -commit 40fb8dc254755166524e9938c00794b3d7613754 -Author: Andrea Boriero -Date: Mon Jul 15 14:58:28 2019 +0100 - - 6 - SQM based on JPA type system - -commit 21cd25f520053645f190b04995c1ceddcc51d80d -Author: Andrea Boriero -Date: Mon Jul 15 13:52:42 2019 +0100 - - 6 - SQM based on JPA type system - -commit 1713e82d2479655383e4cd5bef65b8da1c7f0b8f -Author: Steve Ebersole -Date: Fri Jul 12 12:20:33 2019 -0500 - - 6 - SQM based on JPA type system - - - focus on reducing compilation errors - -commit 3d5209d1058ec329a3d9c5da45c05bee4656cdb4 -Author: Andrea Boriero -Date: Fri Jul 12 17:06:37 2019 +0100 - - 6 - SQM based on JPA type system - -commit fbe622fce68f821729add3418bae4cabbac17e30 -Author: Steve Ebersole -Date: Fri Jul 12 11:08:05 2019 -0500 - - 6 - SQM based on JPA type system - - - focus on reducing compilation errors - -commit 3d59cef87349eb3d3ce4b901eef1316d4915a560 -Author: Andrea Boriero -Date: Fri Jul 12 14:05:09 2019 +0100 - - 6 - SQM based on JPA type system - - -commit ffb704b532245d2b616b5c901453d26cfb513447 -Author: Andrea Boriero -Date: Thu Jul 11 18:23:39 2019 +0100 - - 6 - SQM based on JPA type system - -commit 18a52483ef6c8dd99a8e8499df59ad4ae38d66cb -Author: Steve Ebersole -Date: Thu Jul 11 11:13:14 2019 -0500 - - 6 - SQM based on JPA type system - - - focus on reducing compilation errors - -commit 83a9618614c8a960e88ef7b459f8c1afe5dcf824 -Author: Andrea Boriero -Date: Thu Jul 11 14:17:56 2019 +0100 - - 6 - SQM based on JPA type system - -commit a6597f872e168817d46731ef1535f867103fac96 -Author: Steve Ebersole -Date: Thu Jul 11 10:07:42 2019 -0500 - - 6 - SQM based on JPA type system - - - focus on reducing compilation errors - -commit c0cabdbfe8ce4c3d8ff68da0daaeeb6a7ff79044 -Author: Andrea Boriero -Date: Thu Jul 11 11:40:12 2019 +0100 - - 6 - SQM based on JPA type system - -commit f48f486ec63eecaf7956bab37bb4975836abae24 -Author: Andrea Boriero -Date: Thu Jul 11 10:53:54 2019 +0100 - - 6 - SQM based on JPA type system - -commit a769d47a9ace6a62b1a532c414fffb1858fc4f59 -Author: Andrea Boriero -Date: Thu Jul 11 10:02:23 2019 +0100 - - 6 - SQM based on JPA type system - -commit 230a8190655dcb8b2d54c59cd31deee8f7bc2b84 -Author: Andrea Boriero -Date: Thu Jul 11 09:58:57 2019 +0100 - - 6 - SQM based on JPA type system - -commit 398ef8d640d2196f506ad692ff1544904a683831 -Author: Andrea Boriero -Date: Wed Jul 10 17:14:11 2019 +0100 - - 6 - SQM based on JPA type system - -commit f17895e2d54b44bce89bd429a0b745e237f59f49 -Author: Steve Ebersole -Date: Wed Jul 10 12:19:56 2019 -0500 - - 6 - SQM based on JPA type system - - - focus on reducing compilation errors - -commit b39d9d22bd57557111b80fda5245947012a32aed -Author: Steve Ebersole -Date: Wed Jul 10 10:11:55 2019 -0500 - - 6 - SQM based on JPA type system - - - focus on reducing compilation errors - -commit c6a11d99fd9894b1743a46559274ccc1b88a3a93 -Author: Steve Ebersole -Date: Tue Jul 9 15:06:56 2019 -0500 - - 6 - SQM based on JPA type system - - - focus on reducing compilation errors - -commit d0116d7caaa9a2b2274df07ed5d313adc27aa152 -Author: Steve Ebersole -Date: Wed Jul 3 07:33:44 2019 -0500 - - 6 - SQM based on JPA type system - - - work on `org.hibernate.query` (especially `NamedQueryRepository` and friends) - - work on `org.hibernate.sql.exec` - - work on `org.hibernate.sql.results` - - work on `org.hibernate.sql.exec` - - work on `org.hibernate.sql.results` - - work related to `org.hibernate.metamodel.model.mapping.spi.ValueMapping` - including "sketching in" the hooks with `org.hibernate.persister.walking` - -commit f8a75994e1af50b7ff65d6096a0fb5bb05448a09 -Author: Steve Ebersole -Date: Tue Jun 11 18:48:03 2019 -0500 - - 6 - SQM based on JPA type system - - - work on `org.hibernate.query` (especially `NamedQueryRepository` and friends) - - work on `org.hibernate.sql.exec` - - work on `org.hibernate.sql.results` - - work on `org.hibernate.sql.exec` - - work on `org.hibernate.sql.results` - - work related to `org.hibernate.metamodel.model.mapping.spi.ValueMapping` - including "sketching in" the hooks with `org.hibernate.persister.walking` - -commit 8d0ff71dfc8ffe76c4b85a666da843395511bac3 -Author: Steve Ebersole -Date: Wed Jun 5 14:33:21 2019 -0500 - - 6 - SQM based on JPA type system - - - further work on `org.hibernate.query` (especially `NamedQueryRepository` and friends) - - initial work on `org.hibernate.sql.exec` - - initial work on `org.hibernate.sql.results` - - SemanticPathPart handling - - NamedQueryMemento - - work on ProcedureCall - - continued work on `org.hibernate.sql.exec` - - continued work on `org.hibernate.sql.results` - - ported `hibernate-testing` JUnit 5 support - -commit 46e27d7f46a26ba30039eb4cab9284046e1e9208 -Author: Andrea Boriero -Date: Tue Jun 4 18:15:10 2019 +0100 - - 6 - SQM based on JPA type system, RuntimeModelCreationProcess - -commit d6428c5b430df3c3e842c26c6a5ad848d8097507 -Author: Steve Ebersole -Date: Tue Jun 4 10:28:24 2019 -0500 - - 6 - SQM based on JPA type system - - - further work on `org.hibernate.query` (especially `NamedQueryRepository` and friends) - - initial work on `org.hibernate.sql.exec` - - initial work on `org.hibernate.sql.results` - - SemanticPathPart handling - - NamedQueryMemento - - work on ProcedureCall - - continued work on `org.hibernate.sql.exec` - - continued work on `org.hibernate.sql.results` - -commit 638c217e8aa3d03c0eb8ebd4d7661e3a9b97b2dd -Author: Andrea Boriero -Date: Sat Jun 1 14:32:42 2019 +0100 - - 6 - SQM based on JPA type system, RuntimeModelCreationProcess - -commit 52aff8055e0ca707f160862e983413dc4820812b -Author: Andrea Boriero -Date: Sat Jun 1 14:05:33 2019 +0100 - - 6 - SQM based on JPA type system, RuntimeModelCreationProcess - -commit f20d36be403a2c9afb8d8104ab0d8cb2fb463bf3 -Author: Andrea Boriero -Date: Wed May 29 20:53:04 2019 +0100 - - 6 - SQM based on JPA type system, RuntimeModelCreationProcess - -commit f52e305ffba50143eb912c341ac6d492ec273635 -Author: Steve Ebersole -Date: Fri May 31 10:29:35 2019 -0500 - - 6 - SQM based on JPA type system - - - further work on `org.hibernate.query` (especially `NamedQueryRepository` and friends) - - initial work on `org.hibernate.sql.exec` - - initial work on `org.hibernate.sql.results` - - SemanticPathPart handling - - NamedQueryMemento - - work on ProcedureCal - -commit 3a761361fe46c1241dfb4a2d26109764ec4b6848 -Author: Steve Ebersole -Date: Thu May 30 14:10:13 2019 -0500 - - 6 - SQM based on JPA type system - - - further work on `org.hibernate.query` (especially `NamedQueryRepository` and friends) - - initial work on `org.hibernate.sql.exec` - - initial work on `org.hibernate.sql.results` - - SemanticPathPart handling - - NamedQueryMemento - - work on Query impls - -commit 031fc0edcdb4282b788bd03c4a37ecba9f3966f4 -Author: Steve Ebersole -Date: Wed May 29 21:09:00 2019 -0500 - - 6 - SQM based on JPA type system - - - further work on `org.hibernate.query` (especially `NamedQueryRepository` and friends) - - initial work on `org.hibernate.sql.exec` - - initial work on `org.hibernate.sql.results` - - SemanticPathPart handling - - NamedQueryMemento - - misc - -commit 0be0d06b1d9c93f86a3ede6eeb5d05c782410462 -Author: Steve Ebersole -Date: Wed May 29 08:10:38 2019 -0500 - - 6 - SQM based on JPA type system - - - further work on `org.hibernate.query` (especially `NamedQueryRepository` and friends) - - initial work on `org.hibernate.sql.exec` - - initial work on `org.hibernate.sql.results` - - SemanticPathPart handling - - NamedQueryMemento - -commit 43c738ec4e28080789bfd8c37908cd4a9fbfb226 -Author: Steve Ebersole -Date: Tue May 28 20:48:55 2019 -0500 - - 6 - SQM based on JPA type system - - - further work on `org.hibernate.query` (especially `NamedQueryRepository` and friends) - - initial work on `org.hibernate.sql.exec` - - initial work on `org.hibernate.sql.results` - - SemanticPathPart handling - - NamedQueryMemento - -commit 536e5e1a1274bca17241ea10ee49caafa012018e -Author: Steve Ebersole -Date: Tue May 28 17:28:11 2019 -0500 - - 6 - SQM based on JPA type system - - - further work on `org.hibernate.query` (especially `NamedQueryRepository` and friends) - - initial work on `org.hibernate.sql.exec` - - initial work on `org.hibernate.sql.results` - - SemanticPathPart handling - -commit 2167abd373777e6d77ae36aaef7c469c4234a595 -Author: Steve Ebersole -Date: Tue May 28 16:12:18 2019 -0500 - - 6 - SQM based on JPA type system - - - further work on `org.hibernate.query` (especially `NamedQueryRepository` and friends) - - initial work on `org.hibernate.sql.exec` - - initial work on `org.hibernate.sql.results` - - SemanticPathPart handling - -commit fb12f3a60fada27e0096c33f1340d2382972af7b -Author: Andrea Boriero -Date: Tue May 28 10:36:11 2019 +0100 - - 6 - SQM based on JPA type system - -commit 11b820181e0c899ce81719e460fe7f0bd9ef1dbe -Author: Steve Ebersole -Date: Mon May 27 13:21:49 2019 -0500 - - 6 - SQM based on JPA type system - - - further work on `org.hibernate.query` (especially `NamedQueryRepository` and friends) - - initial work on `org.hibernate.sql.exec` - - initial work on `org.hibernate.sql.results` - -commit f25ed96df63c5d673a9a411a50cf826311c55ea4 -Author: Steve Ebersole -Date: Fri May 24 16:49:08 2019 -0500 - - 6 - SQM based on JPA type system - -commit 0ce1c35d9549e0f8755c161819100ce0bf0955c8 -Author: Andrea Boriero -Date: Fri May 24 14:59:30 2019 +0100 - - 6 - SQM based on JPA type system - -commit 163cc5331815a85b15c2f21d042991cf28ef5792 -Author: Steve Ebersole -Date: Fri May 24 11:21:47 2019 -0500 - - 6 - SQM based on JPA type system - -commit 4c058d8e9c16113751d6b372f98cfa47588eeebb -Author: Steve Ebersole -Date: Thu May 23 13:29:09 2019 -0500 - - 6 - SQM based on JPA type system - -commit e8f22dc2efa206702bdcdd32349fa0e664fa463c -Author: Andrea Boriero -Date: Thu May 23 18:21:35 2019 +0100 - - 6 - SQM based on JPA type system - -commit 05724fc19a2ceb9af99e09f68dda669b5a07f260 -Author: Andrea Boriero -Date: Thu May 23 18:19:36 2019 +0100 - - 6 - SQM based on JPA type system - -commit 2748b34a116f47e5a8a280e246d58f303ba6561e -Author: Andrea Boriero -Date: Thu May 23 18:02:10 2019 +0100 - - 6 - SQM based on JPA type system - -commit 70334e44e1429c482881efae15e76d6491b302dd -Author: Andrea Boriero -Date: Thu May 23 17:10:08 2019 +0100 - - 6 - SQM based on JPA type system - -commit 84a481a3c27a97137990a6fffeb9243e8a168047 -Author: Steve Ebersole -Date: Thu May 23 11:01:56 2019 -0500 - - 6 - SQM based on JPA type system - -commit fa754a77e22aecda552c2470a893757ee66d3c63 -Author: Andrea Boriero -Date: Thu May 23 16:38:34 2019 +0100 - - 6 - SQM based on JPA type system - -commit e551311eaaa68a8e4595124a809d905baf27f299 -Author: Steve Ebersole -Date: Thu May 23 09:38:31 2019 -0500 - - 6 - SQM based on JPA type system - -commit f4126082dae44ab6643c3fcdfec6e5e04c4d2c11 -Author: Steve Ebersole -Date: Thu May 23 09:17:16 2019 -0500 - - 6 - SQM based on JPA type system - -commit af2c32e32c1ff033170e4e4a776ab20237cda99b -Author: Steve Ebersole -Date: Wed May 22 17:53:46 2019 -0500 - - 6 - SQM based on JPA type system - -commit 3958e37103593a82b5a9329b621bca75948eb982 -Author: Steve Ebersole -Date: Wed May 22 10:20:43 2019 -0500 - - 6 - SQM based on JPA type system - -commit 26ff169db2405f6cd9e59f4c50632bad1e62f7fd -Author: Steve Ebersole -Date: Tue May 21 16:29:57 2019 -0500 - - 6 - SQM based on JPA type system - -commit ef87991fa39478234bcbc5b274eafbf4aadcbc9b -Author: Yoann Rodière -Date: Fri Aug 30 14:42:01 2019 +0200 - - HHH-13605 Upgrade the MariaDB JDBC driver to 2.2.4 in the matrix_mariadb task - - It's already the version we use when running test -Pdb=mariadb, so let's - be consistent. - -commit debc5d37f8c12d7fb93633c953d672608eea3f13 -Author: Yoann Rodière -Date: Mon Aug 26 16:29:34 2019 +0200 - - HHH-13581 Disable tests involving MariaDB ConnectorJ's buggy ResultSet#getTime(int, Calendar) method - -commit 74d35b2d59c4fff09f40df6d393800c88dfdda7f -Author: Yoann Rodière -Date: Mon Aug 26 13:31:17 2019 +0200 - - HHH-13580 Ignore LocalTimeTest and OffsetTimeTest's 'nativeWriteThenRead' test for MySQL - - The returned time is right (otherwise #writeThenRead would fail), it's - just that a different day is returned, but it won't affect the LocalTime - representation manipulated by the user. - -commit 8fce51c765311302305e52669ca778272e650144 -Author: Yoann Rodière -Date: Mon Aug 26 11:44:53 2019 +0200 - - HHH-13580 Use safer ZoneId => TimeZone conversion in AbstractJavaTimeTypeTest - - We were testing GMT instead of UTC-8 without even knowing it... - -commit f9f6793232d5f5144f63622bf1ee1710b42ee74c -Author: Yoann Rodière -Date: Mon Aug 26 18:11:57 2019 +0200 - - HHH-13580 Fix a copy/paste error in OffsetTimeTest - -commit a580227569fd4ec362b5d1b387801eabd8b24f35 -Author: Yoann Rodière -Date: Tue Aug 27 11:47:07 2019 +0200 - - HHH-13582 Ignore LocalDateTest for MySQL - - MySQL ConnectorJ 8.x returns the wrong date - when the JVM default timezone is different from the server timezone: - https://bugs.mysql.com/bug.php?id=91112 - -commit be7cc76556f1a2efd715b24ba4516fba0ddbbec1 -Author: Yoann Rodière -Date: Mon Aug 26 13:53:29 2019 +0200 - - HHH-13582 Upgrade MySQL Connector/J to 8.0.17 - - ConnectorJ 8 is the version used in WildFly integration tests. - ConnectorJ 5 is apparently no longer tested. - - Note this solves most timezone-related issues we've been having. - -commit f0218e82adaf96fb5b20017a6845d0fabecfb5dc -Author: Andrea Boriero -Date: Tue Sep 10 15:51:11 2019 +0100 - - HHH-13616 Enable the hibernate-orm-modules test for JDK 11 - -commit ea8694ad38a3cc06972523e46e35317ad4f4f9b9 -Author: Andrea Boriero -Date: Mon Sep 9 10:32:17 2019 +0100 - - HHH-13611 : Restore EntityMetamodel constructor to take SessionFactoryImplementor argument instead of PersisterCreationContext - -commit b26ec4e6255a9e17dda7dfbc299d1f37ad51d136 -Author: Gail Badner -Date: Tue Sep 3 14:43:37 2019 -0700 - - HHH-13611 : Restore EntityMetamodel constructor to take SessionFactoryImplementor argument instead of PersisterCreationContext - -commit 2076c68ddff5dc39055e90e162a34c99c72261cb -Author: Gail Badner -Date: Fri Aug 23 22:40:36 2019 -0700 - - HHH-13586 : ClassCastException when using a single region name for both entity and query results - -commit 1cb81c0304b6ed8f521054245abf69ab03fb3357 -Author: Gail Badner -Date: Fri Aug 23 22:39:50 2019 -0700 - - HHH-13586 : test case - -commit 7ceaf3aaa42992b18f809adc2322388a81018fc2 -Author: Steve Ebersole -Date: Wed Sep 4 16:42:10 2019 -0500 - - HHH-13607 - Exception thrown while flushing uninitialized enhanced proxy with immutable natural ID - -commit 650b1dec6a105a40f197cececd754f24cdca7e57 -Author: Gail Badner -Date: Fri Aug 30 19:02:44 2019 -0700 - - HHH-13607 : Added tests - -commit 148b4b2ed009b488206b8e3854bc7270dc7931b4 -Author: Gail Badner -Date: Sun Aug 25 22:32:31 2019 -0700 - - HHH-13590 : TransientObjectException merging a non-proxy association to a proxy - -commit 11409ed633e62f507d54d8a819dd6a3326afe982 -Author: Gail Badner -Date: Sun Aug 25 22:31:50 2019 -0700 - - HHH-13590 : test cases - -commit ea301a7084fbbde81b749e64908369aa382d0962 -Author: Andrea Boriero -Date: Mon Sep 2 13:52:29 2019 +0100 - - HHH-13564 - Fix EmbeddedIdGenericsTest failures on Oracle and MariaDB - -commit 40b30fa0998e521f68c837dc897e53b4f75f87b2 -Author: Sanne Grinovero -Date: Wed Aug 28 11:39:46 2019 +0100 - - HHH-13600 Avoid capturing lambdas in ParameterTranslationsImpl - -commit c8a36cd961464797c6277449d7f640af05c89e8d -Author: Sanne Grinovero -Date: Wed Aug 28 11:26:18 2019 +0100 - - HHH-13600 Extracting some more constants from loops - -commit 9f71bd890d32bbcc02e0e8572cb632a8975e938c -Author: Sanne Grinovero -Date: Wed Aug 28 11:21:04 2019 +0100 - - HHH-13600 Unguarded log statement in CollectionCacheInvalidator - -commit 86e498f4f7bd4b2f8ecc6f02d57844f344209c60 -Author: Sanne Grinovero -Date: Wed Aug 28 11:15:09 2019 +0100 - - HHH-13600 Avoid capturing lambdas in AbstractDomainDataRegion construction - -commit 3d715c0ae8879a1cdc202f52ee3f0cc6c582e005 -Author: Sanne Grinovero -Date: Wed Aug 28 11:08:01 2019 +0100 - - HHH-13600 Extract Alias allocation from loop in AbstractCollectionPersister - -commit bcbfea7724a8f2dd14d56e9a7708d4e9680b591a -Author: Sanne Grinovero -Date: Tue Aug 27 18:11:13 2019 +0100 - - HHH-13599 Avoid ArrayList allocation in JtaTransactionCoordinatorImp in common scenario - -commit 5c95096e7cc10a23f50e9654851e3b9fc6ee692a -Author: Chris Cranford -Date: Fri Aug 23 15:04:52 2019 -0400 - - HHH-13564 - Fix NullPointerException for audited entity with embedded-id - in mapping superclass that makes use of generics. - -commit 44c6f0fa3f52a2959a6525421954c68b0b34b042 -Author: Sanne Grinovero -Date: Fri Aug 23 15:20:02 2019 +0100 - - HHH-13595 Remove the invocations to the no-op methods of ConnectionObserver - -commit db92f7aa00ff32dee1c59dbb3ee764241f51d582 -Author: Sanne Grinovero -Date: Fri Aug 23 15:16:52 2019 +0100 - - HHH-13595 Small tuning of JdbcObserverImpl - -commit c94117cedccc107730f7fc6a98242f6ea691a7fd -Author: Sanne Grinovero -Date: Fri Aug 23 15:10:02 2019 +0100 - - HHH-13595 Deprecate ConnectionObserver - -commit 952bf6f9c0f85b30ba7fe6345bad581959f5d7e8 -Author: Elena Felder <41136058+elefeint@users.noreply.github.com> -Date: Tue May 28 12:49:33 2019 -0400 - - HHH-13412 Added link for predefined properties, warning that not all settings apply to all situations - -commit ba1f15553c424f9f71dd35cf85689b757f59471b -Author: Elena Felder <41136058+elefeint@users.noreply.github.com> -Date: Fri May 24 17:29:09 2019 -0400 - - HHH-13412 Remove stray newlines - -commit 13afce9afbbad93acecfde023743a2024ae13824 -Author: Elena Felder <41136058+elefeint@users.noreply.github.com> -Date: Fri May 24 17:11:10 2019 -0400 - - HHH-13412 Move custom driver properties into their own section - -commit 5fc6012449e80da5fe253a968bc2b5eb65b519c0 -Author: Yoann Rodière -Date: Tue Aug 20 11:47:19 2019 +0200 - - HHH-13592 Populate AutoFlushEvent#isFlushRequired with the correct value - -commit 618a502dacafb4d6d384a691d1c0e58d561d8094 -Author: Yoann Rodière -Date: Tue Aug 20 11:47:01 2019 +0200 - - HHH-13592 Test AutoFlushEvent#isFlushRequired - -commit 9bfffd85d7beeaee98630bb73dbbb3fb7a11f5e7 -Author: Sanne Grinovero -Date: Wed Aug 21 11:48:18 2019 +0100 - - HHH-13565 Ensure all events from EventListenerGroup can be fired without allocations - -commit 646a8756a9cfa41425826d7cd6f9608a0b6c9e54 -Author: Sanne Grinovero -Date: Wed Aug 21 09:16:38 2019 +0100 - - HHH-13565 Making SessionFactoryImpl#LockOptions lazily initialized as well - -commit 2de048fde5872d0149798513448802d77fea92c3 -Author: Sanne Grinovero -Date: Tue Aug 20 21:59:16 2019 +0100 - - HHH-13565 Prepare the most commonly needed SessionBuilder instances in advance - -commit cc39f54717f9c6761a108dc7c14ab77533cf8766 -Author: Sanne Grinovero -Date: Tue Aug 20 21:18:38 2019 +0100 - - HHH-13565 Micro cleanup of Trace level checks - -commit 91299aeb7faa703c67e72f4e9d4b7c3a1e61106e -Author: Sanne Grinovero -Date: Tue Aug 20 21:10:07 2019 +0100 - - HHH-13565 Remove some dead code from SessionImpl - -commit b8f3fc36164a5bb70349039ba6325d560a77a041 -Author: Sanne Grinovero -Date: Mon Aug 19 22:31:24 2019 +0100 - - HHH-13565 Convert iteration of event listeners to be allocation free - -commit 269d5f835860b188df81622d369bc37e61a35ea5 -Author: Sanne Grinovero -Date: Thu Aug 22 08:47:50 2019 +0100 - - HHH-13565 Review allocations for default SessionEventListener instances - -commit 4b2f056a632c64b4bde2ad7e5fe05ace4d50e17c -Author: Sanne Grinovero -Date: Tue Aug 13 20:21:03 2019 +0100 - - HHH-13565 Avoid allocating ArrayList of ConnectionObserver instances on each Session - -commit 4ef8030f5163ff50ccb0c66309e5d2fffa587380 -Author: Sanne Grinovero -Date: Tue Aug 13 10:15:59 2019 +0100 - - HHH-13565 Move field SessionImpl#discardOnClose to FastSessionServices as well - -commit e23e6a73e6a6b068573e4ab4044d40bb78e67e9f -Author: Sanne Grinovero -Date: Mon Aug 12 21:33:03 2019 +0100 - - HHH-13565 Extract Session properties to avoid eager initialization of Map properties - -commit 457e9b61faffc9f5d4fd60fb164ca6b0efa77b71 -Author: Sanne Grinovero -Date: Mon Aug 12 20:28:25 2019 +0100 - - HHH-13565 Formatting improvements - -commit bc5b3c028febed445fe1f1e70eaf874e41dc93cc -Author: Sanne Grinovero -Date: Mon Aug 12 10:20:33 2019 +0100 - - HHH-13565 Remove some related dead code - -commit be9fe275923c171390ee8ddd340b35a58e7baa73 -Author: Sanne Grinovero -Date: Mon Aug 12 19:47:26 2019 +0100 - - HHH-13565 Promote to FastSessionServices: isJtaTransactionAccessible - -commit 8931ef0962a026a9dad7dd72414137135bc3ce7e -Author: Sanne Grinovero -Date: Mon Aug 12 09:41:49 2019 +0100 - - HHH-13565 Promote JDBCServices as hot service to be retrieved from FastSessionService as well - -commit 185ef2edb7cae1c74f0f92ba91b79ef2b35e2042 -Author: Sanne Grinovero -Date: Fri Aug 9 13:19:11 2019 +0100 - - HHH-13565 Extract some hot ServiceRegistry services as well - -commit 72ce71ef1079d183c5f6d1b67c65f984f67d25b4 -Author: Sanne Grinovero -Date: Fri Aug 9 13:05:17 2019 +0100 - - HHH-13565 Dialect is another constant - -commit 8a3c1ee5049c5a0c34836c35da6911d333393e8a -Author: Sanne Grinovero -Date: Fri Aug 9 13:00:49 2019 +0100 - - HHH-13565 Promote field useStreamForLobBinding as cross-Session constant - -commit a39acebde84e9d2a16d5b8472fc0b4430ed0bfbd -Author: Sanne Grinovero -Date: Fri Aug 9 12:55:28 2019 +0100 - - HHH-13565 Move field AbstractSharedSessionContract#disallowOutOfTransactionUpdateOperations to constants in FastSessionServices - -commit 5eaa1498df0f8f5f7f00515fb9bb2960b2ac489b -Author: Sanne Grinovero -Date: Fri Aug 9 10:28:18 2019 +0100 - - HHH-13565 Session opening efficiency: introduce FastSessionServices and design for shared services among sessions - -commit 408275ddecc3ba79bfddbe78a2867116c52e6423 -Author: Sanne Grinovero -Date: Tue Aug 20 18:53:09 2019 +0100 - - HHH-13594 ResourceRegistryStandardImpl#release could avoid allocating a capturing lambda - -commit 4661efa468c11b63e992a1c7a84c959c1477033b -Author: Sanne Grinovero -Date: Tue Aug 20 08:41:00 2019 +0100 - - HHH-13591 Fixing formatting of previous patch - -commit 19ac013eeb666a45066b6adb23c05df80a0fe6bb -Author: Carsten Hammer -Date: Sun Aug 18 12:25:07 2019 +0200 - - HHH-13591 Replaces simple uses of array iteration with a corresponding for-each loop - -commit e0f40474296c44cc8ec5e36256d3e0ddf118c7b8 -Author: Ladislav Kulhanek -Date: Thu Oct 11 15:49:44 2018 +0200 - - HHH-12993 Omit joining of superclass table when querying subclass only - -commit da847f4b574c3b21eb8ddd8d12b77011e2f63a53 -Author: Sanne Grinovero -Date: Sat Aug 17 22:43:04 2019 +0100 - - HHH-13587 Avoid using deprecated PersistenceContext#getCollectionEntries in tests - -commit 7531ed793a9ab08c18f10491af293274f018d691 -Author: Sanne Grinovero -Date: Sat Aug 17 21:50:58 2019 +0100 - - HHH-13587 Make StatefulPersistenceContext#entitiesByUniqueKey lazily initialized as well - -commit 05b888e0c0a66522ea921a808a801a3f45172b5b -Author: Sanne Grinovero -Date: Sat Aug 17 21:59:07 2019 +0100 - - HHH-13587 Make StatefulPersistenceContext#arrayHolders lazily initialized as well - -commit dbbc24c2e16bc99606aaf7e17fc3c1b8cabf31c5 -Author: Sanne Grinovero -Date: Sat Aug 17 21:26:42 2019 +0100 - - HHH-13587 Make StatefulPersistenceContext#nonlazyCollections a lazily initialized field - -commit 690a8d55207c2ca5a195508daaeac675ef93c54e -Author: Sanne Grinovero -Date: Sat Aug 17 17:07:20 2019 +0100 - - HHH-13587 Make StatefulPersistenceContext#collectionEntries also lazily initialized - -commit 3b30c60ce3e81b23c3eea21018d5831b8bb4c5ad -Author: Sanne Grinovero -Date: Sat Aug 17 17:00:13 2019 +0100 - - HHH-13587 Introduce SPI method PersistenceContext#getCollectionEntriesSize() - -commit 0d10174c236d4d73d7f64893819687a663ce1be7 -Author: Sanne Grinovero -Date: Sat Aug 17 16:53:01 2019 +0100 - - HHH-13587 Make StatefulPersistenceContext#parentsByChild a lazily initialized IdentityHashMap - -commit 1101727a4f7584944500d35f7105393c24f7c23d -Author: Sanne Grinovero -Date: Sat Aug 17 16:43:15 2019 +0100 - - HHH-13587 StatefulPersistenceContext#unownedCollections was almost fully lazy already - -commit a11359524b5325834c4c2ac673f15a7a7004d9a0 -Author: Sanne Grinovero -Date: Sat Aug 17 16:17:17 2019 +0100 - - HHH-13587 Lazily initialize ConcurrentReferenceHashMap proxiesByKey in StatefulPersistenceContext - -commit 0538b97d6a087f77e2ca51248ef3317c6f0973a8 -Author: Sanne Grinovero -Date: Sat Aug 17 15:58:36 2019 +0100 - - HHH-13587 Allocate StatefulPersistenceContext#naturalIdXrefDelegate lazily - -commit aae670b9b33dca97ac9624eac3e62ca23532663c -Author: Sanne Grinovero -Date: Sat Aug 17 15:53:07 2019 +0100 - - HHH-13587 Allocate StatefulPersistenceContext#nullAssociations lazily - -commit 5bbf417c523c938899a66ecf7b148b41fa880bb7 -Author: Sanne Grinovero -Date: Sat Aug 17 12:03:25 2019 +0100 - - HHH-13587 Allocate StatefulPersistenceContext#nullifiableEntityKeys lazily - -commit eb675e1c7f27f9a086af5ed935d0d41d2afb817a -Author: Sanne Grinovero -Date: Sat Aug 17 13:55:29 2019 +0100 - - HHH-13587 Review formatting and logging style of StatefulPersistenceContext - -commit d06588814029175c95dd901c93fa66c573925833 -Author: Sanne Grinovero -Date: Sun Aug 18 15:00:09 2019 +0100 - - HHH-13589 Avoid HashMap.values() when forEach is an easy replacement - -commit f49c97c0aa6777677dc5adc1eb57586acff06f80 -Author: Sanne Grinovero -Date: Sun Aug 18 14:46:37 2019 +0100 - - HHH-13589 ActionQueue review: code formatting - -commit 0a3f62abbffacb0fcd8d611942fce46f5dea5761 -Author: Sergey Ponomarev -Date: Sat Aug 17 19:38:30 2019 +0300 - - HHH-13588 Add missed functions to MySQL Dialect: weight_string, to_base64, from_base64, regexp_replace, regexp_instr, regexp_substr - -commit 0a1213be1aa2b8bda4cdc3219dab573cd5b9adad -Author: Sanne Grinovero -Date: Fri Aug 16 14:59:37 2019 +0100 - - HHH-13585 Duplicate resource release in PessimisticReadSelectLockingStrategy - -commit 0b64cef2b3d047fba460f984514446cc46a29db9 -Author: Sanne Grinovero -Date: Wed Aug 14 13:36:37 2019 +0100 - - HHH-13579 Optimise ResourceRegistryStandardImpl to avoid heavy allocation of iterators - -commit 927f4c2ffc4ae5c45d2ede9d8302d52e7014085e -Author: Sanne Grinovero -Date: Fri Aug 16 11:57:37 2019 +0100 - - HHH-13584 Reduce ServiceRegistry lookups in LocalConnectionAccess in SessionFactory - -commit 7c57047f4a039221bad4dbaddae0dee03c8848be -Author: Gail Badner -Date: Thu Aug 15 01:28:23 2019 -0700 - - HHH-13569 : Shorten table name that's too long for Oracle - -commit 210aff098c2b1d1c59e7780829d9c19bfff08e46 -Author: Andrea Boriero -Date: Wed Aug 14 11:55:11 2019 +0100 - - HHH-13577 LockTest.testContendedPessimisticLock and StatementIsClosedAfterALockExceptionTest.testStatementIsClosed tests fail on Sybase - - HHH-13577 : Re-enable LockTest for SybaseASE15Dialect - -commit cfd7db36c60b49ea773b3a1a34f062b91c0881c8 -Author: Andrea Boriero -Date: Wed Aug 14 09:29:20 2019 +0100 - - HHH-13574 SybaseASE does not support PARTITION BY - -commit 6b489474f58033fe9b52e1c5c866b421c8c4f3e2 -Author: Sanne Grinovero -Date: Wed Aug 14 11:31:32 2019 +0100 - - HHH-13576 Similar debugf and tracef issues found via grepping - -commit e110ab00300107e46af52b98eb1874681d833e0c -Author: Sanne Grinovero -Date: Wed Aug 14 11:07:46 2019 +0100 - - HHH-13576 A couple more Logger mistakes in SessionImpl - -commit 77462271156d8eeb595a92aaaebdf6b919f745cc -Author: Sanne Grinovero -Date: Wed Aug 14 11:04:47 2019 +0100 - - HHH-13576 Invoking tracef() or debugf() w/o an array of parameters actually allocates an empty Object[] - -commit 35037dac7b6e080c7d1dae31a64d0d5012b1b40c -Author: Legohuman -Date: Sat Aug 10 00:33:24 2019 +0200 - - HHH-13259 Fix StackOverflowError in StringHelper - - Before fix method org.hibernate.internal.util.StringHelper#replace - matched placeholders illegally in case when ordinal parameters list was - expanded. Ex. placeholder ?1 was matched with ?11, ?12, ?13 etc. For - queries with 2 or more IN clauses with different collections there were - a situation when ?1 from the first clause matched with already expanded - placeholders from the second collection. Each match led to recursive - call of replace method. If collection in second clause was very long - then StackOverflowError occurred. - - Fix adds check of partial placeholder match for wholeWords mode which - is used in expanding list parameters. Partial matches are skipped - during replace. - -commit fed93b0ae96bd39367897cbbec66327ddd83962d -Author: Gail Badner -Date: Wed Aug 14 00:25:49 2019 -0700 - - HHH-13573 : Test failure due to Sybase not supporting cascade delete on foreign key definitions - -commit ce03ef96b9e46a673f7f6f345e8eaecb8ff3f309 -Author: Gail Badner -Date: Tue Aug 13 23:37:47 2019 -0700 - - HHH-13570 : Test failures due to Sybase not supporting UPDATE statement with WITH(NOWAIT) - -commit 9988d677b955154d188671cc0086153444b3e70c -Author: Gail Badner -Date: Tue Aug 13 23:16:45 2019 -0700 - - HHH-13571 : Test failures due to cross joined table out of scope of a subsequent JOIN on Sybase - -commit 937d4a35031cd7ee4968bec26b09de5815c4395e -Author: Gail Badner -Date: Tue Aug 13 18:02:32 2019 -0700 - - HHH-13569 : org.hibernate.test.annotations.embedded.EmbeddedTest failures on Sybase - -commit 1a5b401d09e6ede20152e5d5855ab8fa1b9e9163 -Author: Andrea Boriero -Date: Tue Aug 13 16:08:36 2019 +0100 - - HHH-13554 QueryAndSQLTest.testNativeQueryWithFormulaAttributeWithoutAlias() fails on MariaDB - -commit 2aee5a930d06ba10c79e08be5c37488ae5072a7c -Author: Andrea Boriero -Date: Tue Aug 13 21:01:12 2019 +0100 - - HHH-13556 Tests doing dynamic fetch scrolling a collection fail on DB2 - -commit f2f788c03d2b5e95c46376d9300297439742b6d6 -Author: Yoann Rodière -Date: Fri Aug 9 17:42:18 2019 +0200 - - HHH-13551 Test the retrieval of a service when an "incompatible" classloader is provided - -commit 5174fc28dc2d4b13992af184179589f71083f4ab -Author: Yoann Rodière -Date: Fri Aug 9 19:15:04 2019 +0200 - - HHH-13551 Ignore ServiceConfigurationError thrown when accessing services of individual (non-aggregated) class loaders - -commit 31fb14e0d9de1df1aa239e85542df54d992248bd -Author: Yoann Rodière -Date: Fri Aug 9 19:02:03 2019 +0200 - - HHH-13551 Restucture ClassPathAndModulePathAggregatedServiceLoader - - This does not change the behavior of the class at all: it simply - restructures the code to allow for the changes in the next commits. - -commit 358307461933685fe1e6796b2d9165456ae3fffb -Author: Gail Badner -Date: Mon Aug 12 21:30:20 2019 -0700 - - HHH-13558 : InstantTest, LocalDateTimeTest, OffsetDateTimeTest, ZonedDateTimeTest failing on Sybase for year 1600 - -commit 1b06b76e17a41b977a43c48551c3a844704044e7 -Author: Gail Badner -Date: Mon Aug 12 19:38:09 2019 -0700 - - HHH-13557 : LocalTimeTest#writeThenNativeRead and OffsetTimeTest#writeThenNativeRead tests are failing on SQL Server - -commit 3e17be98324a2aed8d18aab573c11a846e40c106 -Author: Sanne Grinovero -Date: Sun Aug 11 21:50:15 2019 +0100 - - HHH-13562 List of TransactionObserver for JdbcResourceLocalTransactionCoordinatorImpl should be lazily initialized - -commit 25ca80b1c5a58862e94d0bc5679f2ca6c39617af -Author: Sanne Grinovero -Date: Sun Aug 11 21:38:17 2019 +0100 - - HHH-13563 ResultSetReturnImpl is looking up JdbcServices on each construction - -commit d4e1b7ffbcb5f92901b57cbb5d288915a4af5c7c -Author: Sanne Grinovero -Date: Sun Aug 11 21:18:34 2019 +0100 - - HHH-13561 Do not retrieve the same ActionQueue multiple times - -commit fdca4b2854a0fec274eaa1b1d8b307b0e1cd9226 -Author: Gail Badner -Date: Fri Aug 9 18:52:16 2019 -0700 - - HHH-13559 : Skip failing tests on Sybase - -commit cb51b1e83800558ab781f0908785d19231cef578 -Author: Gail Badner -Date: Fri Aug 9 17:28:42 2019 -0700 - - HH-13550 : Fix Oracle failure for test added by HHH-13424 - -commit 2a018ffcb47de6be7d0203ec47c7dd85469818b0 -Author: Gail Badner -Date: Fri Aug 9 17:13:44 2019 -0700 - - Revert "HHH-13557 : LocalTimeTest#writeThenNativeRead and OffsetTimeTest#writeThenNativeRead tests are failing on SQL Server" - - This reverts commit c703bbede1653a8931862264a156f5c282888562. - -commit c703bbede1653a8931862264a156f5c282888562 -Author: Gail Badner -Date: Fri Aug 9 17:09:00 2019 -0700 - - HHH-13557 : LocalTimeTest#writeThenNativeRead and OffsetTimeTest#writeThenNativeRead tests are failing on SQL Server - -commit dbb94d80664e54ef398b8772ca3715bc6d0b3d8c -Author: Gail Badner -Date: Fri Aug 9 14:56:18 2019 -0700 - - HHH-13555 : FetchGraphTest, MergeProxyTest and ProxyDeletionTest fail due to ConstraintViolationException - -commit 2a154cb583374cfea35fce065f103c25e38f2aa3 -Author: Gail Badner -Date: Fri Aug 9 13:48:26 2019 -0700 - - HHH-13554 : QueryAndSQLTest.testNativeQueryWithFormulaAttributeWithoutAlias() fails on Oracle, MSSQL, Sybase, DB2 - -commit 6841012f78e157252e5628cce3630777ce4b405f -Author: Jonathan Bregler -Date: Thu Aug 8 17:30:56 2019 +0200 - - HHH-13553 Fix test failures on SAP HANA - - - Skip org.hibernate.test.annotations.query.QueryAndSQLTest.testNativeQueryWithFormulaAttributeWithoutAlias - - Update HANA JDBC driver to fix org.hibernate.test.type.LocalDateTimeTest - -commit 1d4d018dfa0c7bb06d27cc03f291feab7ef732fd -Author: Sanne Grinovero -Date: Fri Aug 9 15:52:54 2019 +0100 - - HHH-13552 Avoid retrieving the same Persister twice - -commit 80f8f0845c1081bd60c6945e901f4e02fa6798d0 -Author: Sanne Grinovero -Date: Fri Aug 9 15:49:43 2019 +0100 - - HHH-13552 Store the Collection Persister in a field of CollectionType - -commit 6510c34e93204ef84e85a6963856fbb9e7b62e1d -Author: Gail Badner -Date: Thu Aug 8 22:34:09 2019 -0700 - - HHH-13550 : Fix Oracle failure for test added by HHH-13424 - -commit 9b3c9e6f0fc3c7d842d218b888ab5cf93b461b58 -Author: Sanne Grinovero -Date: Wed Aug 7 19:59:45 2019 +0100 - - HHH-13548 Since SessionOwner is deprecated several fields in SessionImpl can be removed - -commit 0028c850b946d3734bc29f201a3889be2d23e0b0 -Author: Sanne Grinovero -Date: Wed Aug 7 22:19:32 2019 +0100 - - HHH-13549 StringHelper: use char rather than string when possible - -commit 85d4ffda14cdb3f4742cfc37325f9e99c3d2fbb7 -Author: Sanne Grinovero -Date: Wed Aug 7 22:10:51 2019 +0100 - - HHH-13549 Simplify StringHelper#isQuoted - -commit de8d6d095f87ee421e579298d90519a45c7eea1b -Author: Sanne Grinovero -Date: Wed Aug 7 22:07:13 2019 +0100 - - HHH-13549 StringHelper: Prefer generics over casting - -commit 0bf9bb14238e0ca29cbebba4bb0f4e8cee386f0f -Author: Sanne Grinovero -Date: Wed Aug 7 22:05:18 2019 +0100 - - HHH-13549 Fix a couple typos - -commit a1498331aaf259fc22ee60e0206a197e12946e2d -Author: Sanne Grinovero -Date: Wed Aug 7 22:04:30 2019 +0100 - - HHH-13549 Remove dead code from StringHelper - -commit 7dd520d7e4e2beee0b97d8a5fe3217f588bf463b -Author: Sanne Grinovero -Date: Thu Aug 1 15:39:11 2019 +0100 - - HHH-13512 Amend: Optimise StringHelper#isQuoted(String, Dialect) - -commit 87907e1edd2dd4a1827f826ff02524581143b409 -Author: Sanne Grinovero -Date: Wed Aug 7 11:30:11 2019 +0100 - - HHH-13546 Fetch configuration details at initialization of StatisticsImpl - -commit 8460cd8796dc63cf9a3c92eaa1620e4312d86f37 -Author: Sanne Grinovero -Date: Wed Aug 7 11:18:34 2019 +0100 - - HHH-13546 Make the sessionFactory field in StatisticsImpl required - -commit 41cab3bfced9dbfc998dd0a3c4dbf1b6a52768a2 -Author: Sanne Grinovero -Date: Tue Aug 6 10:22:30 2019 +0100 - - HHH-13527 Minimize captured state in lambdas used for Statistics - -commit b07e4b1ba3c4845b513c118b3828362dbf73f5ec -Author: Sanne Grinovero -Date: Tue Aug 6 09:17:53 2019 +0100 - - HHH-13527 Fix contention in StatisticsImpl#getDomainDataRegionStatistics() - -commit 7cb828f4e72d02d82704744c6be2fab2f3675d59 -Author: Sanne Grinovero -Date: Tue Aug 6 16:18:21 2019 +0100 - - HHH-13544 Restore logged warning on jdbc code mapping issue in NationalizedTypeMappings - -commit 8c228244de0a8b7c7a334e293c5c64a8944d2039 -Author: Sanne Grinovero -Date: Mon Aug 5 14:10:52 2019 +0100 - - HHH-13541 ExceptionConverter instance in AbstractSharedSessionContract should be lazily initialized - -commit 71fe4229b4f797df80796a8bd0b6db90d93a677d -Author: Sanne Grinovero -Date: Mon Aug 5 11:42:24 2019 +0100 - - HHH-13133 Review logging usage in the MavenEnhancePlugin - -commit ac7d7f4d6f40c4d65ae7437cb1035afa64a1b58a -Author: skis -Date: Sun Jul 14 16:49:29 2019 -0500 - - HHH-13133 Changed the log level from info to debug to reduce the amount of logging under non-debug mode - -commit d9e16fe8caaf56b28fbf11915279ffe60743950a -Author: Batbileg Dorj -Date: Sat Aug 3 00:37:52 2019 -0500 - - HHH-13249 Introduce an option to Log slow queries instead of all queries - -commit 618d186cb2ad7c8ee7a230861295d1d111c96920 -Author: Sanne Grinovero -Date: Thu Aug 1 11:26:11 2019 +0100 - - HHH-13534 AbstractLoadPlanBasedLoader never needs a List of AfterLoadAction - -commit 343deb982f764c83f4b37056462bbaeeb65cfbd0 -Author: Sanne Grinovero -Date: Thu Aug 1 16:23:16 2019 +0100 - - HHH-13531 Some more opportunities to reuse the constants pool in AliasConstantsHelperMore opportunities to reuse the int_ constant pools - -commit 33532c8998ff0d8ccc8430c9a43eebe5a4ce6eb0 -Author: Sanne Grinovero -Date: Thu Aug 1 15:16:29 2019 +0100 - - HHH-13512 Remove some dead code - -commit ca444fc487c0685dfca1244922f30ca382d8d6dd -Author: Sanne Grinovero -Date: Thu Aug 1 15:39:11 2019 +0100 - - HHH-13512 Optimise StringHelper#isQuoted(String, Dialect) - -commit 7f6bf82fed79382a891b5447ee364507c71513b8 -Author: Sanne Grinovero -Date: Thu Aug 1 12:23:05 2019 +0100 - - HHH-13512 Avoid allocating an array in org.hibernate.internal.util.StringHelper#unquote(String[], Dialect) if there are no changes to be applied - -commit c35bce15f90bf3ad4486b22fa2bcb27df05a9452 -Author: Sanne Grinovero -Date: Mon Jul 29 18:31:20 2019 +0100 - - HHH-13521 Avoid excessive validation of enabled filters - -commit ae176223b204caec588f0a6c36214f6b41a78148 -Author: Andrea Boriero -Date: Wed Jul 31 18:42:44 2019 +0100 - - HHH-13528 Remove call to resourceRegistry.release(ResultSet resultSet, Statement statement) from AbstractLoadPlanBasedLoader#executeLoad() - -commit edb8093319be53c21600a519bf0378d17e22e5c6 -Author: Sanne Grinovero -Date: Wed Jul 31 17:41:05 2019 +0100 - - HHH-13529 Specifically optimise Dialect retrieval from DefaultEntityAliases - -commit 6e373f2e177cbe0805717ce3bd602c63f04a2a23 -Author: Sanne Grinovero -Date: Wed Jul 31 15:47:41 2019 +0100 - - HHH-13529 Dot not access hot JdbcServices over ServiceRegistry - -commit 2c304a5e18e58a39e718c4faa464fefd4e0593ce -Author: Sanne Grinovero -Date: Wed Jul 31 10:59:49 2019 +0100 - - HHH-13528 Invoke afterStatements only at the end of releasing all statements for a batch - -commit 51c94121cb7dfed1113239bb7c4988e0b1b79e3e -Author: Sanne Grinovero -Date: Wed Jul 31 10:30:58 2019 +0100 - - HHH-13526 Avoid repeated lookups for the same component - -commit 68b1b650e995b662297e8b902f493fa83f64d08a -Author: Sanne Grinovero -Date: Wed Jul 31 10:06:29 2019 +0100 - - HHH-13526 Optimise HashMap lookup operations on ResourceRegistryStandardImpl xref - -commit 7d54b59743f72267ac78021d0f0b178ef1f92def -Author: Gail Badner -Date: Wed Jun 26 12:09:05 2019 -0700 - - HHH-13466 : ClassCastException when changing a Collection association to a Set if @PreUpdate listener exists - -commit 80828eba4374db6c05c82a2fea7fb9aad85a6a1a -Author: Gail Badner -Date: Wed Jun 26 12:00:13 2019 -0700 - - HHH-13466 : Test cases - -commit 429cdeff06ec779786989d5e02d9a91619937aea -Author: Sanne Grinovero -Date: Mon Jul 29 18:20:57 2019 +0100 - - HHH-13522 Optimise LoadQueryInfluencers by making maps lazily initialized - -commit d6abbe51243b13fa104848bed853034884f574ed -Author: Sanne Grinovero -Date: Tue Jul 30 11:49:44 2019 +0100 - - HHH-13525 Make test SessionDelegatorBaseImplTest more resilient to previously existing alias definition - -commit 8ee9b7e218c8f1e37025a835d4c526118cbd1a63 -Author: Sanne Grinovero -Date: Tue Jul 30 11:35:30 2019 +0100 - - HHH-13524 Remove unused fields xref,unassociatedResultSets from JdbcCoordinatorImpl - -commit 904ed10eaf48a89872cea81697de781611311c29 -Author: Sanne Grinovero -Date: Tue Jul 30 11:26:41 2019 +0100 - - HHH-13523 Remove an additional field from JdbcCoordinatorImpl - -commit c0c6e10272fb93fbcbbef8de9abd0348f8d40235 -Author: Andrea Boriero -Date: Mon Jul 29 22:19:05 2019 +0100 - - HHH-13523 StatementPreparerImpl should not need to retrieve the JDBCService as often - -commit 83e2f68477c053963356b1eac00b171f83859fb4 -Author: Andrea Boriero -Date: Tue Jul 30 09:02:51 2019 +0100 - - 5.4.4.Final - -commit 77155ea71651203d155c9fd0450ccb5737552d94 (tag: 5.4.4) -Author: Gail Badner -Date: Mon Jul 29 14:56:14 2019 -0700 - - 5.4.4.Final - -commit 3483d7c02276b8d2d57929323b6715831235ce15 -Author: Sanne Grinovero -Date: Mon Jul 29 21:40:53 2019 +0100 - - HHH-13520 Deprecate mutators on SqlStatementLogger - -commit 0387090bba264f1c40af62f58e335d50bba7731a -Author: Yoann Rodière -Date: Fri Jul 26 08:32:15 2019 +0200 - - HHH-13379 Test storage of java.time type representing an instant near the end of DST - -commit 89d304a00e9d12e15d64c2d0ffa84c2640868a2d -Author: Yoann Rodière -Date: Fri Jul 26 13:30:13 2019 +0200 - - HHH-13379 Do not change the instant when storing a java.time type representing an instant at DST end in the default JVM timezone - - Note problems can still occur in the JDBC driver if the JDBC timezone is - not forced to GMT/UTC. - -commit de8e965cc88e16db40537416d5dd793e9f8c42fa -Author: Yoann Rodière -Date: Fri Jul 26 10:10:08 2019 +0200 - - HHH-13379 Enhance date/time tests to allow testing certain values only when forcing the JDBC timezone - -commit 65fa9cb1e717165d7725926eae82d4881072cfbc -Author: Andrea Boriero -Date: Sat Jul 27 12:10:38 2019 +0100 - - HHH-13514 - Calling the wrong method inside SessionDelegatorBaseImpl#createStoredProcedureQuery - -commit 7eaf4904d88024bdfb46907cc970bd2530e9e227 -Author: Andrea Boriero -Date: Sat Jul 27 12:08:53 2019 +0100 - - HHH-13514 - Add test for issue - -commit 618f03565a84d30b120855545b3da2522390df0b -Author: Gail Badner -Date: Fri Jul 19 15:02:30 2019 -0700 - - HHH-13504 : Upgrade ByteBuddy to 1.9.11 - -commit 1da6bb69957c6cbbf3dd91ca0fc6eb9756bc2d88 -Author: Sanne Grinovero -Date: Thu Jul 25 12:27:27 2019 +0100 - - HHH-13508 Reuse alias names generated by BasicLoader#generateSuffixes - -commit ed8c72871bf0f16666201f99e1fd8e762017c0ee -Author: Sanne Grinovero -Date: Thu Jul 25 12:02:47 2019 +0100 - - HHH-13513 Only intern fields of DefaultEntityAliases when the object is not short lived - -commit bfe5f235c18cea9c6cd316ac2c2f02b49f9d4e98 -Author: Sanne Grinovero -Date: Thu Jul 25 11:48:43 2019 +0100 - - HHH-13513 Do not intern sql aliases in QueryLoader and BasicLoader - -commit a199f77b8383a3396e1518d18626fda1d0720e0e -Author: Sanne Grinovero -Date: Thu Jul 25 10:00:21 2019 +0100 - - HHH-13511 Remove interning of aliases in org.hibernate.loader.DefaultEntityAliases - -commit d7a0ffe519e0b18d342a508ebf130db1e8b733f4 -Author: Sanne Grinovero -Date: Wed Jul 24 17:44:17 2019 +0100 - - HHH-13496 Some more formatting fixes - -commit a2c6b82ada0bb1391e09bae6e9102ff45c3f80b7 -Author: Sanne Grinovero -Date: Wed Jul 24 17:38:34 2019 +0100 - - HHH-13496 Remove more dead code from Ejb3JoinColumn - -commit a2aee7917b66f8574dd025d7e65ab7e660153dee -Author: Sanne Grinovero -Date: Wed Jul 24 17:37:22 2019 +0100 - - HHH-13496 Remove some more dead code from TableBinder - -commit d5ea37d77975ec7c2539f5d8eedec918bd96a5ea -Author: Gail Badner -Date: Tue Jul 23 21:11:18 2019 -0700 - - HHH-13492 : OptimisticLockException after locking, refreshing, and updating an entity - -commit f59fe419a5602a1f7990b20e83ee3e23926c71b4 -Author: Gail Badner -Date: Tue Jul 23 21:08:39 2019 -0700 - - HHH-13492 : test cases - -commit 0f4c7ec0f2f1cb1d822ab37b6b14707a14951685 -Author: Yoann Rodière -Date: Tue Apr 16 09:01:06 2019 +0200 - - HHH-13357 Fix OffsetDateTime ending up with a different offset than the JVM default when loading from a Timestamp - - This bug only affects users that override the type descriptor for - OffsetDateTime, and only affects reading. - - Since I had to change how we extract the local time from the timestamp, - I also took this opportunity to apply the fix for HHH-13266, - which should make data loading more resilient when databases contain - weird values representing time, like 1650-04-15T14:45:49 or - 0000-00-00T14:45:49. - -commit 352b029404877822468738e693136e9a5ced6342 -Author: Gail Badner -Date: Wed Jul 24 12:34:51 2019 -0700 - - Revert "HHH-13266 HHH-13357 : Skip OffsetTimeTest#nativeWriteThenRead and #writeThenRead in some cases due to HHH-13357" - - This reverts commit b7b8f44298191db050f12819ca0594a30124df75. - -commit 18f9c142e3752cca0ebc5b595c9976a1cd6e3043 -Author: Gail Badner -Date: Tue Jul 16 22:22:18 2019 -0700 - - HHH-13424 : Table nullability should not depend on JpaCompliance.isJpaCacheComplianceEnabled() - -commit ea761ec43966d82324ee18f993517a8b0d575487 -Author: Gail Badner -Date: Tue Jul 16 22:20:48 2019 -0700 - - HHH-13424 : test cases - -commit be0ef0291cf508b9575d5c5beb1308df27615dee -Author: Esteban Gehring -Date: Wed Jun 19 11:06:39 2019 +0200 - - Update identifiers.adoc - -commit 14f7b49b79a5f3a6092a0088bd18447263a87464 -Author: Chris Cranford -Date: Mon Jul 22 16:34:19 2019 -0400 - - HHH-13500 Fix audit strategy sub-query return incorrect results - - In order to maintain backward compatibility with long-standing behavior, - this introduces a new configuration option which can be toggled to have - AuditReader#find implementations adhere to returning an exact match on - revision-number rather than one which is less-than or equal-to the - provided argument. - - So a new configuration option org.hibernate.envers.find_by_revision_exact_match - provides users with the ability to be able to force this new behavior - while allowing legacy behavior to remain the default. - -commit fa2f03593aa359014e02cdd5920c33d53fd17ee7 -Author: Gail Badner -Date: Fri Jul 19 19:17:19 2019 -0700 - - HHH-11032 : performance improvements of PersistentBag.equalsSnapshot - -commit f096445ccc17eccd2d89df23c1865b0f8a08373c -Author: Gail Badner -Date: Wed Jul 10 19:22:09 2019 -0700 - - HHH-11032 performance improvements of PersistentBag.equalsSnapshot - -commit 4c2a43b86f7f47be1a2e96c322f57cb1740acf9e -Author: Filip Nguyen -Date: Wed Aug 10 14:51:58 2016 +0200 - - HHH-11032 performance improvements of PersistentBag.equalsSnapshot - -commit c581dba4d7cb22d08130c6e6b28a4e4d8b5e57b9 -Author: Scott Marlow -Date: Fri Jul 19 12:15:14 2019 -0400 - - HHH-13505 : NullPointerException thrown by StatisticsImpl#getCacheRegionStatistics - -commit 09cc94c4d9f9093ba990c4bdd8c660056ea9826b -Author: Sanne Grinovero -Date: Mon Jul 8 21:07:06 2019 +0100 - - HHH-13496 Some missing 'final' modifiers on constants - -commit f042f8b553b5a08cfb98e349f6dd7c0fc1987816 -Author: Sanne Grinovero -Date: Mon Jul 8 21:02:40 2019 +0100 - - HHH-13496 Formula using unsafe concurrent initialization of its unique identifier - -commit a76c04783e89db06c755ce50d1ad16d82f41a0cf -Author: Sanne Grinovero -Date: Mon Jul 8 20:48:32 2019 +0100 - - HHH-13496 Dubious putIfAbsent usages - -commit fb0da1640b92088e6b03062e03d8952f497b3dac -Author: Sanne Grinovero -Date: Mon Jul 8 20:32:56 2019 +0100 - - HHH-13496 Shouldn't use the String constructor - -commit f2215dab47d9afb7cd6f84a812aedf254d80a6b9 -Author: Sanne Grinovero -Date: Mon Jul 8 20:30:21 2019 +0100 - - HHH-13496 Excessive relyiance on auto-boxing - -commit 433a7904c1489d2176805f71460eb26ef6834bee -Author: Sanne Grinovero -Date: Mon Jul 8 18:19:09 2019 +0100 - - HHH-13496 Loop optimisations - -commit b2eaf4e88db5db55b5bc1468c6e8b4c1764339ca -Author: Sanne Grinovero -Date: Mon Jul 8 18:13:28 2019 +0100 - - HHH-13496 Do not use toString on arrays when formatting error messages - -commit 0cccf74478d16d6ee8db1e218c7040b6cf45b9c0 -Author: Sanne Grinovero -Date: Mon Jul 8 11:38:36 2019 +0100 - - HHH-13496 Map sizing optimisations - -commit 3b0d7d67b11921195d2324cce09f2ea883ffd565 -Author: Sanne Grinovero -Date: Mon Jul 8 10:52:23 2019 +0100 - - HHH-13496 Remove redundant cases of throws - -commit 70d33e0c6b7c473b6187ecb6dee7f8aee9e6944d -Author: Sanne Grinovero -Date: Fri Jul 5 22:21:10 2019 +0100 - - HHH-13496 Pre-compile and reuse regular expressions - -commit bfc66ec35606ba9a63a953c31a73bdab2b3ba303 -Author: Sanne Grinovero -Date: Fri Jul 5 22:03:23 2019 +0100 - - HHH-13496 Constants not declared static - -commit d0bd04b6d3fb65e753b9103e9babeb14aa4c7ffa -Author: Sanne Grinovero -Date: Fri Jul 5 21:32:19 2019 +0100 - - HHH-13496 Prefer #addAll method usage rather than looping - -commit 91f4ddb3ecefaae70efd96865f45f3d8402772f9 -Author: Sanne Grinovero -Date: Fri Jul 5 21:24:46 2019 +0100 - - HHH-13496 Empty string processing - -commit 96129e58de3c77bb710650eae099804f8d7a71a7 -Author: Sanne Grinovero -Date: Fri Jul 5 21:14:40 2019 +0100 - - HHH-13496 Declare single char strings as chars - -commit 3d69df1ebfa158df631f77e9edf0e3967c4789eb -Author: Sanne Grinovero -Date: Fri Jul 5 19:23:38 2019 +0100 - - HHH-13496 Keyset iteration optimisations on Session opening properties - -commit 9c19bbd611b21f7b018784912b9f25083b8e591b -Author: Sanne Grinovero -Date: Fri Jul 5 16:34:17 2019 +0100 - - HHH-13496 Refactor entrySet iterators - -commit cdcd6bfe76e5fed989ff5734c617076bdddd2bfb -Author: Sanne Grinovero -Date: Fri Jul 5 16:22:49 2019 +0100 - - HHH-13496 Review string appending styles - -commit 9196a4e01e3ae9a055b23be82f523e5b2fcd3cff -Author: Sanne Grinovero -Date: Fri Jul 5 16:22:28 2019 +0100 - - HHH-13496 Prefer singletonList when possible - -commit 99ae7c94e3b93d429a794f6c72f91908d1d46d6d -Author: Sanne Grinovero -Date: Fri Jul 5 16:13:06 2019 +0100 - - HHH-13496 Extract repeated block from loop - -commit f8bd799544f3aa57bff1c999b9cc799cc0300f82 -Author: Sanne Grinovero -Date: Fri Jul 5 16:03:07 2019 +0100 - - HHH-13496 Make inner classes 'static' when possible - -commit 881eec83fe8f72ffd495fa460894de30c52b252a -Author: Sanne Grinovero -Date: Fri Jul 5 15:54:24 2019 +0100 - - HHH-13496 Removing duplicates from constant Set declarations - -commit 26fafc00984260f1263e3f18537124702199adaf -Author: Sanne Grinovero -Date: Fri Jul 5 15:42:37 2019 +0100 - - HHH-13496 Remove unused collection from EntityMetamodel - -commit 75fb7915f1ceb9fe29a207de189567d2653d16d1 -Author: Sanne Grinovero -Date: Fri Jul 5 15:37:32 2019 +0100 - - HHH-13496 Remove unused map of Property Names from AbstractCollectionPersister - -commit bbfad943a0aaa3db9749db56c0201d65fdc9b302 -Author: Sanne Grinovero -Date: Fri Jul 5 15:19:09 2019 +0100 - - HHH-13496 ManagedFlushChecker and AfterCompletionAction fields are unused in SessionImpl - -commit 0b67ac0d0b13e0587bffd7f5ba02a60a84e9fc34 -Author: Sanne Grinovero -Date: Fri Jul 5 15:18:35 2019 +0100 - - HHH-13496 Remove pointless variable initializers - -commit f41b11ad3f5124a08e358f959b9fc9af16100aeb -Author: Sanne Grinovero -Date: Fri Jul 5 15:13:49 2019 +0100 - - HHH-13496 Identified some String appending in loops - -commit 35b67bd00e6563f353a3b0965ecd5ca47e157264 -Author: Sanne Grinovero -Date: Fri Jul 5 15:03:03 2019 +0100 - - HHH-13496 Some collection constructors could benefit from size hinting - -commit 18e8c04d4d780a8ddf5c79b9c9161121e36eec6a -Author: Sanne Grinovero -Date: Fri Jul 5 15:22:31 2019 +0100 - - HHH-13496 Remove unused star import - -commit e636eaf9907f10add5007cfa84b6e0a08b7136be -Author: Sanne Grinovero -Date: Fri Jul 5 12:49:14 2019 +0100 - - HHH-13496 Some formatting fixes - -commit dd7d798d77feb14ad1f3f574e82407f221acc7f5 -Author: Sanne Grinovero -Date: Fri Jul 5 12:49:05 2019 +0100 - - HHH-13496 Move two instance fields to local fields in SessionImpl - -commit 6c44ef12e6aac450f33551d4091677ae683dc7b5 -Author: Sanne Grinovero -Date: Wed Jul 3 11:41:06 2019 +0100 - - HHH-13496 Identified and simplified some unnecessary repetition of getter invocations - -commit e7165f2d4359571507cd1df22be0cf7af9682d44 -Author: Sanne Grinovero -Date: Fri Jul 5 12:42:36 2019 +0100 - - HHH-13496 Remove unused field typeScope from many CollectionType classes - -commit 6a4ede4ec29e3d5be9ed8d96a0e269ffd2dcd549 -Author: Sanne Grinovero -Date: Wed Jul 3 11:14:12 2019 +0100 - - HHH-13496 Remove redundant logger level check - -commit 0776ce11549d80b523a24996b201efcb2b6d0983 -Author: Sanne Grinovero -Date: Fri Jul 5 15:14:00 2019 +0100 - - HHH-13496 Identify and remove some dead code - -commit ee63e49011b153a335c1f00d824e86ff5d348ad5 -Author: Sanne Grinovero -Date: Fri Jul 12 11:05:50 2019 +0100 - - HHH-13226 Log a warning in case of inconsistent configuration properties - -commit d18b38c504de628ee18358f33233ab31da591ea3 -Author: Sanne Grinovero -Date: Fri Jul 12 10:45:15 2019 +0100 - - HHH-13226 Avoid changing existing changelog and complete the backwards compatibility work - -commit 74b4c97552670aaf54a383638687d1a3858bcd79 -Author: asutosh936 -Date: Sat Feb 16 15:02:39 2019 -0600 - - HHH-13226 : Corrected Typo - -commit b9707c7df360a1910801834dd7615c8d9a034240 -Author: Sanne Grinovero -Date: Thu Jul 11 21:11:41 2019 +0100 - - HHH-13303 Fix formatting and add proper logger guard - -commit 4d301b17267427b31b766550d18642c94e9c853a -Author: Malcolm Taylor -Date: Tue Apr 2 08:45:26 2019 +0100 - - HHH-13303 Fix error message - -commit d2af672ca87604344c5b16aeccd0ab9597262a27 -Author: Malcolm Taylor -Date: Wed Mar 6 15:29:01 2019 +0000 - - HHH-13303 Fix some LGTM alerts - -commit 0d04397109d8c573972e31dc946dabc2b2a21562 -Author: Sanne Grinovero -Date: Wed Jul 10 19:10:08 2019 +0100 - - HHH-13495 Deprecate singleton access to NationalizedTypeMappings - -commit fafe8b5ba05719ba59b02c35f6bf9722230f923d -Author: Sanne Grinovero -Date: Wed Jul 10 19:07:49 2019 +0100 - - HHH-13495 Do not use BoundedConcurrentHashMap for NationalizedTypeMappings - -commit e5a3667fb57f3e4d95b6136b77090af0402a9c9b -Author: Sanne Grinovero -Date: Wed Jul 10 18:45:52 2019 +0100 - - HHH-13494 Deprecate singleton access in favour of static helpers - -commit 1ed8f7e626b1d4d078403a41dff9d9b01770c952 -Author: Sanne Grinovero -Date: Wed Jul 10 18:37:32 2019 +0100 - - HHH-13494 LobTypeMappings should not use a Bounded ConcurrentHashmap - -commit 8727072cdc1c0adfa4c7531b538d1f512120c20d -Author: Sanne Grinovero -Date: Mon Jul 1 21:33:49 2019 +0100 - - HHH-13478 Make CascadeStyles a final class - -commit 304a34f6d8e2a5a0c129f5078ca35876600f35e7 -Author: Sanne Grinovero -Date: Mon Jun 24 22:58:36 2019 +0100 - - HHH-13478 Micro optimisations in DefaultLoadEventListener - -commit 035657c9ec9871815155048c87225bd4cde7d45b -Author: Sanne Grinovero -Date: Mon Jun 24 18:34:50 2019 +0100 - - HHH-13478 BytecodeEnhancementMetadataPojoImpl : Micro optimisations - -commit baf781f05e94fdefdce19cac1cc38157f5ffe055 -Author: Sanne Grinovero -Date: Mon Jun 24 23:39:30 2019 +0100 - - HHH-13478 Code style fixes in LoadEvent - -commit 0d1cd35e8104eaf80572166859b236a73bf87870 -Author: Sanne Grinovero -Date: Fri Jun 28 14:33:53 2019 +0100 - - HHH-13478 Avoiding some duplicate getter executions in DynamicBatchingEntityLoaderBuilder - -commit fe6967be46f64ac8ce03b638f2bf2d94c2a5eae8 -Author: Sanne Grinovero -Date: Fri Jun 28 10:27:12 2019 +0100 - - HHH-13478 Minor dead code cleanup in StatefulPersistenceContext - -commit 3c5f3dddd0a1a5af9d3d1bca81e24919d39e925e -Author: Sanne Grinovero -Date: Tue Jul 2 13:02:07 2019 +0100 - - HHH-13478 AbstractEntityTuplizer: loop extraction and code cleanup - -commit 6e1a84b05d2abbea59df04e9ebf415d8c7fbb637 -Author: Sanne Grinovero -Date: Mon Jun 24 22:06:20 2019 +0100 - - HHH-13477 Make heavily invoked method final: EventListenerGroupImpl#listeners() - -commit e53282024094d41f06d7de46b4399661011baf0b -Author: Sanne Grinovero -Date: Tue Jul 2 10:47:12 2019 +0100 - - HHH-13476 Micro-optimisations of TwoPhaseLoad#getOverridingEager - -commit e46287438ba54a50b6d10d4e85d8e42b8b47a7a2 -Author: Sanne Grinovero -Date: Tue Jul 2 10:12:27 2019 +0100 - - HHH-13475 SessionImpl#applyQuerySettingsAndHints should not rely on defensive copies to just read properties - -commit 7e9471582a806963cac3661938b965d2a33c896e -Author: Sanne Grinovero -Date: Mon Jul 1 19:50:40 2019 +0100 - - HHH-13448 Another inner loop retrieving PRE_LOAD listenerd in AbstractRowReader - -commit 1371958357eadcbefe3dea5bc808c12fb647429b -Author: Gail Badner -Date: Thu Jun 27 20:42:42 2019 -0700 - - HHH-11147 Add tests for using enhanced proxies with @NotFound and batch fetches - -commit beb4c3891c1eb1212dc91450bb1601eb30ba85d8 -Author: Andrea Boriero -Date: Thu Jun 27 16:59:26 2019 +0100 - - HHH-11147 Fix initializing an entity that does not exist - -commit 0bc1d5a88ca9349c54815fc8263b803e8052ff3f -Author: Gail Badner -Date: Thu Jun 27 01:42:22 2019 -0700 - - HHH-11147 Add failing test for initializing an entity that does not exist - -commit 2e81c322652750bb775ad650d0aa5e0f5c551a13 -Author: Sanne Grinovero -Date: Mon Jun 24 18:31:40 2019 +0100 - - HHH-13465 Allow inlined access to the PersistenceContext for internal methods - -commit 65d542f3c97f124ab833fdce9998082242739de0 -Author: Sanne Grinovero -Date: Fri Jun 28 11:00:34 2019 +0100 - - HHH-13471 Avoid invoking delayedAfterCompletion() multiple times from the same SessionImpl method - -commit da8c501407fbbfc90f961f91a153c4daf1988650 -Author: Sanne Grinovero -Date: Mon Jun 24 22:59:05 2019 +0100 - - HHH-13462 Introduce a fastpath for SessionImpl#fireLoad to be used by internal loops - -commit 467f8a2a005cc5c64a0ea7d0e090502955b8a7d0 -Author: Sanne Grinovero -Date: Mon Jun 24 22:59:38 2019 +0100 - - HHH-13458 Update Hibernate's custom IdentityMap to better match its use - -commit 668253b364a0fa3e2127ea93a91e0aacf915a988 -Author: Gail Badner -Date: Thu Jun 27 15:47:25 2019 -0700 - - HHH-11147 - Add back assertions to BatchFetchProxyTest checking that batches are - initialized as expected. Also add a test that ensures that entities - loaded from a batch can be modified. - -commit 7e71843a501c4999cee2bc04e55d0c496efd5c18 -Author: Sebastian Nohn -Date: Wed Jun 26 11:44:49 2019 +0200 - - HHH-13463 - updated plexus-utils to 3.0.24 to avoid being vulnerable to CVE-2017-1000487 - -commit c10832a740422f93f8f21f18ea81cc467cf157eb -Author: Sebastian Nohn -Date: Wed Jun 26 11:09:11 2019 +0200 - - HHH-13463 - updated plexus-utils to 3.0.24 to avoid being vulnerable to CVE-2017-1000487 - -commit 41f155fcd94609518c90b5c131df9dbd28a44c87 -Author: Sanne Grinovero -Date: Thu Jun 27 15:54:45 2019 +0100 - - HHH-13467 Make average BatchFetchQueue consume less memory - -commit 6aebd26167f41106e09bfbb1ef1a299065832d5b -Author: Sanne Grinovero -Date: Thu Jun 27 15:33:05 2019 +0100 - - HHH-11147 Avoid allocating a BatchFetchQueue if batching was not enabled - -commit 5d0d134df39f44567f1baa50b0b461efaf774147 -Author: Sanne Grinovero -Date: Thu Jun 27 15:28:15 2019 +0100 - - HHH-11147 micro optimisation: avoid looking up the same object multiple times - -commit d983e29e879d94b94d0de7c2b7439fc8b6fc3602 -Author: Steve Ebersole -Date: Thu Jun 27 08:46:16 2019 -0500 - - HHH-11147 - Integrate enhanced-proxy support with BatchFetchQueue - -commit b5d845c89d781b01ba10353b19a0658158b1a9a8 -Author: Steve Ebersole -Date: Thu Jun 27 08:32:40 2019 -0500 - - HHH-11147 - Integrate enhanced-proxy support with BatchFetchQueue - -commit 409ba5709bc6a26028406c1c4ae66c855af5b8ec -Author: Steve Ebersole -Date: Thu Jun 27 08:27:51 2019 -0500 - - HHH-11147 - Integrate enhanced-proxy support with BatchFetchQueue - -commit 87bab8336116a1ce8aac4bc88b01e18237ed33d1 -Author: Yoann Rodière -Date: Wed Jun 26 16:23:18 2019 +0200 - - Fix JavaModulePathIT when testing with javassist - -commit 2ea0505e47559f7a1af3e0acd622595aa6d60076 -Author: Sanne Grinovero -Date: Sat Jun 22 23:59:32 2019 +0100 - - HHH-13453 Optimise CascadingActions for the most likely case - -commit cf1b7c3c121b48fa810509b5367e34ec188591df -Author: Sanne Grinovero -Date: Sun Jun 23 20:04:01 2019 +0100 - - HHH-13452 Missing log level guard on formatting in DefaultPersistEventListener#entityIsDeleted - -commit 3ba72c8b13f9b3197ca07321805983bba5d1d959 -Author: Sanne Grinovero -Date: Tue Jun 25 16:40:18 2019 +0100 - - HHH-13461 Style and formatting fixes: CollectionEntry - -commit 1aa6ce9b12944a97fa0420274182cc0e06dafd98 -Author: Andrea Boriero -Date: Tue Jun 25 18:33:09 2019 +0100 - - HHH-13460 - FetchGraphTest is failing on MariaDB - -commit cb343567e69b6b67c11320a2b2b3cde9c46bfb11 -Author: Andrea Boriero -Date: Tue Jun 25 16:42:47 2019 +0100 - - HHH-13459 - Unit test lock up when they run on PostgreSQL - -commit beac4865331c9ebd9ca65b35348a81bc497d52c3 -Author: Andrea Boriero -Date: Tue Jun 25 13:33:26 2019 +0100 - - HHH-13455 - Enabling Enhancement as a Proxy causes IllegalStateException when using Javassist - -commit db2e8382d5f2e21c776fb2d7b280aa4ca92f71c6 -Author: Andrea Boriero -Date: Tue Jun 25 11:12:51 2019 +0100 - - HHH-13454 - org.hibernate.orm.test.query.criteria.BasicCriteriaExecutionTests fails on Oracle - -commit 9367f011627fc6933cb71c226d73a6c5b9d210f4 -Author: Sanne Grinovero -Date: Sat Jun 22 23:38:44 2019 +0100 - - HHH-13451 Logging typo in CascadingActions causing significant allocations - -commit 44c13af23bd51393f5f84bb66547fe39d35b769a -Author: Sanne Grinovero -Date: Sat Jun 22 23:22:20 2019 +0100 - - HHH-13450 Do not compute the full role name of a collection unless necessary - -commit 3cc9e8f284eef9296ef19d60fde72b244f9a44f6 -Author: Andrea Boriero -Date: Fri Jun 21 10:30:15 2019 +0100 - - HHH-13442 - CollectionType#getCollection() method improvements - -commit 417a982b7bf32516c8df6436f95e41ddaf2b526d -Author: Sanne Grinovero -Date: Thu Jun 20 12:36:32 2019 +0100 - - HHH-13448 Avoid retrieving PRE_LOAD and POST_LOAD Event listeners within the inner loops of TwoPhaseLoad - -commit d1a617a0dc405e44543e131725e4c986d36ee931 -Author: Sanne Grinovero -Date: Thu Jun 20 12:01:44 2019 +0100 - - HHH-13448 Optimise implementation of TwoPhaseLoad#doInitializeEntity - -commit 33f02f411f71f75ff78fe476ea836048709bf400 -Author: Sanne Grinovero -Date: Thu Jun 20 10:33:45 2019 +0100 - - HHH-13447 Minimize number of EventListenerRegistry lookups within a Session use - -commit e476a992503a2ed16449d753b411849330065a74 -Author: Sanne Grinovero -Date: Thu Jun 20 22:00:55 2019 +0100 - - HHH-13443 Remove unnecessary calls to StringHelper - -commit 084c91c3d0eae4b96bbf05dd30723a9f0b232ddb -Author: MD. Mohiuddin Ahmed -Date: Wed Jun 19 22:10:53 2019 +0600 - - HHH-13443 Build failing to parse *.properties file attributes containing trailing space - -commit e7cefd8ddd00eff6a4614508d5bb0ee15bfd9aeb -Author: Yoann Rodière -Date: Mon May 27 09:37:56 2019 +0200 - - HHH-13409 Rework AggregatedServiceLoader to minimize the risk of regression - - In particular: - - * Keep the old behavior when retrieving services on JDK8 - * On JDK9+, query the AggregatedClassLoader first (before individual - class loaders) when retrieving services. - * On JDK9+, use ServiceLoader.Provider to avoid instantiating services - a second time if we know we already instantiated them with another class - loader. - -commit 9b34fc69a35fc21233160004f32ab771bc50b048 -Author: Yoann Rodière -Date: Mon May 27 09:28:41 2019 +0200 - - HHH-13409 Make AggregatedServiceLoader compatible with the module path (JDK9+) - -commit fc52db5cb49c0ec3581414debd96bd747e80a92d -Author: Yoann Rodière -Date: Fri May 24 09:37:15 2019 +0200 - - HHH-13409 Move aggregated service loading to a dedicated component - - So that we can provide a different implementation for Java 9+. - -commit b7e5106358650b86be31aadde28acf44ba74b907 -Author: Yoann Rodière -Date: Fri May 24 11:07:47 2019 +0200 - - HHH-13409 Remove unnecessary "public" keywords in ClassLoaderService - -commit d6cb72ee0dc0b95445267e9cc20d5c3d5bec9e76 -Author: Yoann Rodière -Date: Fri May 24 09:26:01 2019 +0200 - - HHH-13409 Add integration tests for running Hibernate ORM in the module path in Java 11+ - -commit 6b199d2e528585494b0daec3ce3ddb79b988d4b0 -Author: Yoann Rodière -Date: Fri Feb 8 11:10:23 2019 +0100 - - HHH-13154 Add support for JPA criteria on stateless sessions - -commit fd1963a6a267b76bf45e31c1d0be7515f086defc -Author: Yoann Rodière -Date: Mon May 27 12:00:15 2019 +0200 - - HHH-13154 Backport BasicCriteriaExecutionTests from ORM 6 - -commit ae1016a1c4df3f655ad57b79dc591faa8154d490 -Author: Sanne Grinovero -Date: Wed Jun 19 21:46:42 2019 +0100 - - HHH-13444 Remove ignored EntityMode field from CollectionKey - -commit 7f326b163bcfdd50b08b6843822e6deac1ef1ca7 -Author: Andrea Boriero -Date: Wed Jun 19 15:11:13 2019 +0100 - - HHH-13442 - CollectionType#getCollection() method improvements - -commit e8993eb688c43fd7baad42ee3d01ae59895f0244 -Author: Andrea Boriero -Date: Mon Jun 17 11:16:03 2019 +0100 - - HHH-11147 - Fix Oracle failing test - -commit e6401ca4c4bec8074519aa691089f760af0f3795 -Author: Andrea Boriero -Date: Wed Jun 12 20:02:06 2019 +0100 - - HHH-11147 - Add test case LazyCollectionDeletedAllowProxyTest - -commit 2e1d602f685ce4bd6179a121b0c4147e2aee6b37 -Author: Andrea Boriero -Date: Fri Jun 14 15:13:13 2019 +0100 - - HHH-11147 - Allow enhanced entities to be returned in a completely uninitialized state - - - Add test using IdClass - -commit 94c49aaaa6fce73677d9709e4a56a65ce573d350 -Author: Steve Ebersole -Date: Fri Jun 14 08:22:07 2019 -0500 - - HHH-11147 - Allow enhanced entities to be returned in a completely uninitialized state - -commit 48d88cfef6f99eeb757b194f8e560d1793717f54 -Author: Andrea Boriero -Date: Fri Jun 14 12:08:43 2019 +0100 - - HHH-11147 - Add failing test - -commit cc01f2561dbca95bd58048f85e283ba1719ee588 -Author: Steve Ebersole -Date: Thu Apr 18 02:28:29 2019 -0500 - - HHH-11147 - Allow enhanced entities to be returned in a completely uninitialized state - HHH-11161 - do not force initialize collection at all - -commit d6bd291934b2c90de6666f73a486d95f1c02a8c7 -Author: Yoann Rodière -Date: Thu Jun 13 16:39:19 2019 +0200 - - Force the use of Ubuntu Trusty in the Travis build - - If we don't force it, Travis will pick a release at random, - either Trusty or Xenial at the moment. - - Using Oracle JDK 8 on Xenial is not easy, for some reason. - - See: - - * https://travis-ci.community/t/oracle-jdk-11-and-10-are-pre-installed-not-the-openjdk-builds/785/15 - * https://github.com/travis-ci/travis-ci/issues/10289 - -commit ae5023cf533f72d284a3543d01f305ea915aa51a -Author: Yoann Rodière -Date: Thu Jun 13 08:44:53 2019 +0200 - - Do not log test progress by default, but provide a build option and enable it for Travis - - So that the build isn't too verbose when running it locally. - -commit 29d55481602e24777429142feec4cdf394eb8ae4 -Author: Sanne Grinovero -Date: Fri Jun 7 22:53:29 2019 +0100 - - HHH-13429 Upgrade WildFly provisioning plugin to version 0.0.11 - -commit a72d5e3d1eedcc05c7d0cbe399ce1a56cfb6bdc1 -Author: Sanne Grinovero -Date: Fri Jun 7 23:06:19 2019 +0100 - - HHH-13428 No longer allow fetching snapshot dependencies from JBoss Nexus - -commit 8e439b01b02454d48230b229d7927871d468b0c1 -Author: Yoann Rodière -Date: Fri May 24 09:24:48 2019 +0200 - - HHH-13428 Remove an unnecessary test dependency to woodstox - - It has split packages and won't work when running tests in the module - path. But more importantly we just don't use it. - -commit 2689dd141b2e5114a590c2a3c29c0ed8dc3bc114 -Author: Sanne Grinovero -Date: Wed Apr 17 14:35:13 2019 +0100 - - HHH-13428 Upgrade to Microsoft SQL Server JDBC 7.2.1 - -commit 73a29867f5c6f19c4cb860a795cc1952410232fa -Author: Sanne Grinovero -Date: Wed Apr 17 14:17:03 2019 +0100 - - HHH-13428 Remove more unused repositories - -commit 182e5dd56f724101171b72f1583552a1ed65da05 -Author: Sanne Grinovero -Date: Wed Apr 17 14:01:53 2019 +0100 - - HHH-13428 Use https in documentation too - -commit 7cc1ea88df677b4711c09576f81f99aab140900e -Author: Sanne Grinovero -Date: Wed Apr 17 14:00:22 2019 +0100 - - HHH-13428 Remove unused repository URLs - -commit 8f344af218305ca71cab9e1304627f4541236894 -Author: Yoann Rodière -Date: Mon May 27 13:02:38 2019 +0200 - - Get rid of travis_wait in .travis.yml - - ... so that we get actionable logs when something fails. - -commit eacbe616d46e92bdd6f5a45e6b4fbcf49527c1e0 -Author: Yoann Rodière -Date: Fri May 24 10:27:34 2019 +0200 - - HHH-13415 Run Travis tests on JDK11 too - - Use OpenJDK 11.0.3 instead of OracleJDK 11.0.2 in the Travis build, - because 11.0.2 just fails because of a bug in javadoc generation. - -commit 00c697780e852d92ca16e0cf129143ea7e18b9c5 -Author: Yoann Rodière -Date: Fri May 24 10:50:02 2019 +0200 - - HHH-13415 Clean up the places where we fix fix javadoc generation for JDK11 - -commit a7006fa226aa8d3099ab681f688d0b9ecf5dab3d -Author: Yoann Rodière -Date: Mon May 27 15:03:31 2019 +0200 - - HHH-13415 Add more comments where we disable OSGi tests with JDK11 - - Karaf or Pax Exam (don't know which) has serious issues with JDK 11.0.3. - -commit d5a1d24116ad5a23266cecfdc927d5d37f84893c -Author: Guillaume Smet -Date: Thu May 30 17:22:10 2019 +0200 - - Prepare next development iteration - -commit 9508e654854b45b856ae2ef4a24194101c859b4e (tag: 5.4.3) -Author: Guillaume Smet -Date: Thu May 30 16:15:34 2019 +0200 - - 5.4.3.Final - -commit c6671d504b811c17662f38eb1279895f5df8ec3d -Author: Guillaume Smet -Date: Wed May 29 19:44:00 2019 +0200 - - HHH-13421 Disable OSGi testing for JDK 11+ - -commit e376fe0aef5b5c3aef988a75616e3e2ee9cfd830 -Author: Guillaume Smet -Date: Wed May 29 19:43:36 2019 +0200 - - HHH-13419 Support building javadoc with JDK 11.0.3+ - -commit 313f5f71860cb976657e8ff5fc616dd2d32bed3c -Author: John OHara -Date: Wed May 1 19:07:15 2019 +0100 - - HHH-13418 : Revert log level caching - -commit 4be05af86d6d9e6acb1a3862ec7bdae5cba54a25 -Author: Sanne Grinovero -Date: Mon May 27 16:12:39 2019 +0100 - - HHH-13416 Unguarded debug message being rendered in org.hibernate.engine.internal.Collections.processReachableCollection - -commit b7b8f44298191db050f12819ca0594a30124df75 -Author: Gail Badner -Date: Fri Apr 19 00:00:52 2019 -0700 - - HHH-13266 HHH-13357 : Skip OffsetTimeTest#nativeWriteThenRead and #writeThenRead in some cases due to HHH-13357 - when Time is remapped as Timestamp and default JVM is not GMT - -commit 800b60e648b5696e00d006e70f8e0fa2c296fcc0 -Author: Gail Badner -Date: Thu Apr 11 20:11:08 2019 -0700 - - HHH-13364 : Added a test using a named query - -commit f62913ba1cd53f58930156858e9a459210584967 -Author: Gail Badner -Date: Thu Apr 11 19:38:04 2019 -0700 - - HHH-13364 : Query.getSingleResult and getResultList() throw PessimisticLockException when pessimistic lock fails with timeout - -commit 288afa35e0ccd7b36feec4063309faef8300e83e -Author: Gail Badner -Date: Thu Apr 11 19:24:12 2019 -0700 - - HHH-13364 : Added test cases - -commit 4d79ffb62f31365127628f3a9e0ecefee254ab0c -Author: Steve Ebersole -Date: Tue Apr 16 13:45:38 2019 -0500 - - HHH-13152 - managed/cached entities and fetching (test case) - -commit 73e5688c356e4711114153cb952e49a0c82cabea -Author: Steve Ebersole -Date: Mon Apr 15 16:11:58 2019 -0500 - - HHH-11223 - minor logging additions plus a test case - -commit 0506b4aa46238ec14cbbb3aa9ebbae1ea2ac1938 -Author: Gail Badner -Date: Thu Apr 4 22:44:02 2019 -0700 - - HHH-13343 : Bytecode enhancement using ByteBuddy fails when the class is not available from the provided ClassLoader - -commit a2a5799a1323923742b963ce2f710ed3222844a1 -Author: Gail Badner -Date: Wed Mar 27 22:56:07 2019 -0700 - - HHH-13343 : Bytecode enhancement using ByteBuddy fails when the class is not available from the provided ClassLoader - -commit a2cb264a273eb244eff719dfbc2499551e04da44 -Author: Gail Badner -Date: Thu Mar 28 14:23:37 2019 -0700 - - HHH-13343 : test case - -commit 823a5c1ede1869fd97471e3b8ebe7ec4ac8068e4 -Author: Guillaume Smet -Date: Thu Mar 21 18:32:23 2019 +0100 - - Prepare for next development iteration - -commit 08e9d01caa8581c179658e07d1fa60d32c0c529e (tag: 5.4.2) -Author: Guillaume Smet -Date: Thu Mar 21 16:05:07 2019 +0100 - - 5.4.2.Final - -commit b28dc488a11f580ebb8128d620cc01646d832343 -Author: Gail Badner -Date: Wed Mar 20 17:27:32 2019 -0700 - - HHH-13241 : Fix regression with an uninitialized null many-to-one association - -commit 65eebbb96b2a5557867994c27b382e9da6f22b12 -Author: Gail Badner -Date: Wed Mar 20 17:26:32 2019 -0700 - - HHH-13241 : Added test case with a lazy null many-to-one association - -commit 926e1da2d5c3620b76d502837eec17f299fc388d -Author: Thomas Bürli -Date: Wed Mar 20 17:11:33 2019 +0100 - - HHH-13332 Update c3p0 to 0.9.5.3 - - Update c3p0 dependency to addresses the XXE vulnerability (CVE-2018-20433) - -commit 883465f52512d24bb282c010c9fdf758ecf7984b -Author: Gail Badner -Date: Tue Mar 19 21:40:32 2019 -0700 - - HHH-13326 : Transaction passed to Hibernate Interceptor methods is null when JTA is used - -commit 705ecec94f6624797b91a4fd4f48db68c8bffdb4 -Author: Gail Badner -Date: Tue Mar 19 16:58:28 2019 -0700 - - HHH-13326 : test cases - -commit eca8816ec3ffb3f552fb90fe4939d5a5e24f47f7 -Author: Guillaume Smet -Date: Wed Mar 20 12:10:34 2019 +0100 - - HHH-13324 Install the security manager check layer once and for all - - If the security manager is defined later, the checks won't be installed. - - The security manager should be defined when starting the JVM. - -commit 3420ac9754b8d39e4268aa170b1a9b4273434c24 -Author: Johannes Kümmel -Date: Wed Mar 20 12:46:11 2019 +0200 - - HHH-13330: Fix a minor typo in ManagedBeanRegistryInitiator - -commit 9885e2f5957c1e58c2f8d74629c9eeece5225a64 -Author: Guillaume Smet -Date: Tue Mar 19 23:20:43 2019 +0100 - - HHH-13312 Add a test case - -commit d18b46e1fe46323b5097274c3cec44d0def9282e -Author: Taras <96leo10@gmail.com> -Date: Mon Mar 11 16:15:29 2019 +0200 - - HHH-13312 Fix an invalid condition in new entity graph code - -commit 634782fef69ed0dc80d49fae27c8e5d7fb2c8b84 -Author: Gail Badner -Date: Tue Mar 19 23:42:51 2019 -0700 - - HHH-13300 Correctly convert Hibernate exceptions to JPA in executeUpdate() - -commit 5a1efe883eefcb8fe1bf0325936a8684eca19071 -Author: Gail Badner -Date: Tue Mar 19 23:41:27 2019 -0700 - - HHH-13300 Test behavior when Query.executeUpdate() throws an exception - -commit 4665fd9cd94787e3fbdd3a11a1614394c6c0fbd8 -Author: Yoann Rodière -Date: Tue Mar 5 10:26:37 2019 +0100 - - HHH-13300 Correctly convert Hibernate exceptions to JPA in getSingleResult() - -commit 53f70ab213b45e2445b9bd2e1026ff0c80b7ad57 -Author: Yoann Rodière -Date: Tue Mar 5 10:18:18 2019 +0100 - - HHH-13300 Test behavior when query.getSingleResult() throws an exception - -commit bf78b73aa71856402d356d08c481cb594352472a -Author: Guillaume Smet -Date: Tue Mar 19 13:12:15 2019 +0100 - - HHH-13241 Comment the test for now - - We have issues with this test in both Javassist and ByteBuddy enhancers. - -commit e63449721a61640259793c7be1d50c709139deaa -Author: Yoann Rodière -Date: Thu Mar 14 16:03:42 2019 +0100 - - HHH-13266 Skip some tests that apparently trigger bugs in HANA - -commit c8f8959033d9e9f325b328a34f5655b2f2ee74b2 -Author: Yoann Rodière -Date: Thu Mar 14 15:24:32 2019 +0100 - - HHH-13266 Skip tests that involve timestamps before epoch with MySQL/Mariadb - -commit d0668af5d009f61196e11718ee28270137a71390 -Author: Yoann Rodière -Date: Thu Mar 14 10:41:36 2019 +0100 - - HHH-13266 Mark most databases as not supporting nanosecond-precision storage for timestamps - - At least PostgreSQL, Oracle, MySQL and HANA don't support it. - -commit 8acdbab275950eade070488e7487d7841acbf7c7 -Author: Gail Badner -Date: Thu Mar 14 14:38:36 2019 -0700 - - HHH-13236 Maintain the old behaviour for non-composite types for better backward compatibility - -commit 86be5321d844f52f24f989d694fc5d995804c9d5 -Author: Dmitry Panov -Date: Mon Mar 4 15:21:27 2019 +0000 - - HHH-13236 Maintain the old behaviour for non-composite types for better backward compatibility - -commit aa2451407ed90b94ed321d024d8e91a88c54a9bb -Author: Dmitry Panov -Date: Tue Jan 29 16:21:12 2019 +0000 - - HHH-13236 Honour @Column/insertable on element collections - -commit f94bc0d750350d358e8873222cf3a94db5e6f078 -Author: Yoann Rodière -Date: Tue Mar 12 13:36:27 2019 +0100 - - HHH-13266 Test serialization of java.time types when hibernate.jdbc.time_zone is set - -commit 08b6775372081502835c9faea77b307990767dc2 -Author: Yoann Rodière -Date: Tue Mar 12 12:12:11 2019 +0100 - - HHH-13266 Test OffsetTime serialization - -commit 12106ea67ae9df49ee563e9b910bac26d8356111 -Author: Yoann Rodière -Date: Tue Mar 12 11:23:00 2019 +0100 - - HHH-13266 Test LocalTime serialization - -commit 6394d56df5f5837c3edba6b94d275df5704dd765 -Author: Yoann Rodière -Date: Tue Mar 12 11:07:58 2019 +0100 - - HHH-13266 Fix LocalDate serialization by using the proper conversion methods between LocalDate and Timestamp - -commit a2bc5b0900928e9d78e6ea8a1073ccb8954a3d15 -Author: Yoann Rodière -Date: Tue Mar 12 11:04:30 2019 +0100 - - HHH-13266 Test LocalDate serialization when dates are remapped as Timestamp, in particular around 1900-01-01 - -commit eebcf6142cd1606c110006e6dbe7c45e3cefd2b3 -Author: Yoann Rodière -Date: Tue Mar 12 11:04:30 2019 +0100 - - HHH-13266 Allow to override the SQL type mappings in AbstractJavaTimeTypeTest - -commit acbefe5f0c1eaa00c95acf11508719194ed3fd3a -Author: Yoann Rodière -Date: Tue Mar 12 12:34:30 2019 +0100 - - HHH-13266 Test reading of values written without Hibernate ORM in AbstractJavaTimeTypeTest - -commit 30e50a979cc945df1ac2de06f36bcdc1ad9d656f -Author: Yoann Rodière -Date: Mon Mar 11 16:32:44 2019 +0100 - - HHH-13266 Add an abstract class for all java.time tests for this ticket - - So that we can hopefully factorize the upcoming additions. - -commit dc8a5a88b7e6e0b15a9418424b022a7448386ca1 -Author: Yoann Rodière -Date: Fri Mar 1 13:32:16 2019 +0100 - - HHH-13266 Fix Instant serialization by using the proper conversion methods between Instant and Timestamp - -commit 93d00aee19dad377a15094637b0cc9325c308b3e -Author: Yoann Rodière -Date: Fri Mar 1 13:23:34 2019 +0100 - - HHH-13266 Test Instant serialization, in particular around 1900-01-01 - -commit 12a67c3780ab0a7ad1be028bdc0b751af0d9e1da -Author: Yoann Rodière -Date: Fri Mar 1 13:15:27 2019 +0100 - - HHH-13266 Fix ZonedDateTime serialization by using the proper conversion methods between ZonedDateTime and Timestamp - -commit 223183a71e9129c3be95ae8556fc8ad9ca216ef6 -Author: Yoann Rodière -Date: Fri Mar 1 13:13:45 2019 +0100 - - HHH-13266 Test ZonedDateTime serialization, in particular around 1900-01-01 - -commit f3f167a1a94c2f4babd18aa947b2336abb3afc73 -Author: Yoann Rodière -Date: Fri Mar 1 13:03:23 2019 +0100 - - HHH-13266 Fix OffsetDateTime serialization by using the proper conversion methods between OffsetDateTime and Timestamp - -commit d96be79d6407df68ca42d3734d363e72f413a3f4 -Author: Yoann Rodière -Date: Fri Mar 1 13:03:00 2019 +0100 - - HHH-13266 Test OffsetDateTime serialization, in particular around 1900-01-01 - -commit a8d48cf691ae8f5d0242197d41566c275d1382e5 -Author: Yoann Rodière -Date: Thu Feb 28 17:48:07 2019 +0100 - - HHH-13266 Test LocalDate serialization, in particular around 1900-01-01 - -commit 99a56c57d556b4a48fd137a7145c8a022d33cf78 -Author: Gail Badner -Date: Wed Feb 27 22:09:27 2019 -0800 - - HHH-13266 Change test to use raw JDBC for executing native query - -commit 3fa7f197a16bf210580a239660d7c2965d6132a4 -Author: Yoann Rodière -Date: Tue Feb 26 12:55:14 2019 +0100 - - HHH-13266 Fix LocalDateTime serialization by using the proper conversion methods between LocalDateTime and Timestamp - -commit 10f2bca07551199320c2786b990d7d84382ca8f0 -Author: Yoann Rodière -Date: Tue Feb 26 12:08:39 2019 +0100 - - HHH-13266 Test LocalDateTime serialization, in particular around 1900-01-01T00:00:00 - -commit 980f24916ca27cd4e5ae658de353358d42c94cd2 -Author: Gail Badner -Date: Tue Feb 26 22:24:54 2019 -0800 - - HHH-13241 : Constraint violation when deleting entites in bi-directional, lazy OneToMany association with bytecode enhancement - -commit 69a1c2cc08e00586d2db30bc72ca87d9ba62c1eb -Author: Yoann Rodière -Date: Mon Mar 11 09:24:30 2019 +0100 - - HHH-13309 Test both the legacy and newer ExtendedBeanManager interfaces - -commit b79d0f96284a4f7f86136c9696a6e789db752df5 -Author: Yoann Rodière -Date: Mon Mar 11 09:16:22 2019 +0100 - - HHH-13309 Relax constraints on the accepted extended bean manager type - -commit 8dbd6a234b9c47725565f187315d2fcb2c5caa35 -Author: Gail Badner -Date: Wed Mar 6 18:25:20 2019 -0800 - - HHH-12653 : Add HHH-12653 to 5.4.0.CR1 changelog.txt (it was inadvertantly left out before) - -commit b856a85520f612abc6c23197cbb0ef27413dff5e -Author: Karel Maesen -Date: Thu Mar 7 21:04:25 2019 +0100 - - HHH-13257 - Adds MySQL8 Spatial Dialect - -commit 3a4ade9799c5411ab69cdece7ef4d400d0236873 -Author: Karel Maesen -Date: Thu Mar 7 21:28:37 2019 +0100 - - HHH-10148 - Fix checkstyle errors - -commit 73d2a8714815d151c1ba74a2249681eeaee27261 -Merge: f68d08abc1 e722555a56 -Author: Karel Maesen -Date: Thu Mar 7 20:09:00 2019 +0100 - - HHH-10148 - Update dockers for matrix testing (Spatial) - -commit f68d08abc1d392337553072c362efcd488f15c33 -Author: Karel Maesen -Date: Wed Sep 19 23:37:30 2018 +0200 - - HHH-10148 - SpatialDialect for SqlServer2012 - -commit e722555a562a084594e3499724f1607a0445f323 -Author: Karel Maesen -Date: Mon Jan 7 18:52:25 2019 +0100 - - Update spatial matrix test configs - -commit 59749984cb803eb3990fcd41f490a87cf578a045 -Author: Gail Badner -Date: Tue Mar 5 12:55:12 2019 -0800 - - HHH-13217 : Correct warning and update test to fail if the query succeeds - -commit 5b11014c7caffd294fa671b257f8fbd41340a67b -Author: Vlad Mihalcea -Date: Thu Feb 28 08:29:40 2019 +0200 - - HHH-13217 - Don't throw exception if both @MappedSuperclass and @Inheritance are used - - Make sure the @Inheritance annotation is ignored when used along with @MappedSuperclass - -commit f086821abd3b49a4326891a7ddc57a3809fcd363 -Author: Sanne Grinovero -Date: Tue Mar 5 23:06:31 2019 +0000 - - HHH-13305 Deprecate public static helpers returning the current Dialect - -commit 271bf2d4cd1bffe2b267ff26b0197ebc191e486c -Author: Sanne Grinovero -Date: Tue Mar 5 22:12:11 2019 +0000 - - HHH-13304 MySQLDialect shouldn't access System Properties - -commit d353a1038254ad41ee89ee34c4fd96d3f88f25fa -Author: Sanne Grinovero -Date: Wed Mar 6 12:50:50 2019 +0000 - - HHH-13306 And remove the unused LOG instance as well - -commit 30f560f94f1f4669c52ea4407fe624d049ab410f -Author: Jonas Fügedi -Date: Tue Feb 26 15:52:07 2019 +0100 - - HHH-13306 Remove verbose logging from the standard ExceptionMapper - -commit d8faee0d2c156e48a5d160385adeb51e49255c22 -Author: David Steinkopff -Date: Wed Feb 20 14:43:59 2019 +0100 - - HHH-13233 Add missing implementation to add attribute to subgraphs - -commit 89f523c87f5ebdd4f794d69a8d6bde664abd38ee -Author: Guillaume Smet -Date: Fri Feb 22 13:07:22 2019 +0100 - - HHH-13277 Add a couple of comments - -commit 38a0cd2690990e5b114564dbcb5c9924b8f0f3f7 -Author: Yoann Rodière -Date: Fri Feb 22 12:48:16 2019 +0100 - - HHH-13277 Simplify HibernateMethodLookupDispatcher - -commit 0b3babe4fb118b9396d90d4325257917a5289f50 -Author: Guillaume Smet -Date: Fri Feb 22 00:29:27 2019 +0100 - - HHH-13277 Make HibernateMethodLookupDispatcher less fragile - - And less dependent of the JVM. - -commit 6fba4c10357f7e87458bf280ef0e13b5034ffaf3 -Author: Gail Badner -Date: Sun Feb 24 14:25:32 2019 -0800 - - HHH-13285 : ClassCastException: org.dom4j.DocumentFactory cannot be cast to org.dom4j.DocumentFactory after dom4j update - -commit a938d5838c2d01e43376571c0c0b6f0bce7dc74f -Author: Gail Badner -Date: Sun Feb 24 17:01:05 2019 -0800 - - HHH-13262 - javax.persistence.TransactionRequiredException: Executing an update/delete query - -commit ef3b07bd73cb156dbd79f6a1e83d8357eff9f719 -Author: Andrea Boriero -Date: Tue Feb 12 11:22:34 2019 +0000 - - HHH-13262 - javax.persistence.TransactionRequiredException: Executing an update/delete query - -commit 4256f300ddad48ecd08ae4ee0b53feec7f0044d2 -Author: Andrea Boriero -Date: Tue Feb 12 10:48:27 2019 +0000 - - HHH-13262 - Add test for issue - -commit b4f76b67ffcd74aab3b70dff930aaa9adc68fbce -Author: Vlad Mihalcea -Date: Mon Feb 25 09:47:18 2019 +0200 - - HHH-13287 - Bidirectional @OneToMany does not support a non-nullable @OrderColumn - - Add replicating test case - -commit 6813d1f488f6b2bba82158740a40f5d0363b415a -Author: Chris Cranford -Date: Wed Feb 20 17:13:04 2019 -0500 - - HHH-13281 - Avoid ClassCastException when unwrapping EntityManager to deprecated org.hibernate.ejb.HibernateEntityManager. - -commit 819f92c42588abe3c61a92abd89e56db464cba66 -Author: Vlad Mihalcea -Date: Fri Feb 15 10:15:34 2019 +0200 - - HHH-13269 - Embeddable collection regression due to HHH-11544 - -commit b843b3e033137e5dfe820f9beebcc14e5dbee881 -Author: Ales Justin -Date: Sat Jan 19 12:00:07 2019 +0100 - - HHH-13216 Fix BigDecimal handling in criteria queries - - We used to lose some precision when dealing with BigDecimals. - -commit 4e06de2708b885d76bf065f329ba8c7e40672f9d -Author: Guillaume Smet -Date: Mon Feb 18 13:43:39 2019 +0100 - - HHH-13254 Upgrade Agroal to 1.4 - -commit d4ebdfb8ba7fc669606d4a0480ce0b3e32115292 -Author: Guillaume Smet -Date: Wed Jan 30 11:53:38 2019 +0100 - - HHH-13238 Reuse a static logger in QueryTranslatorFactoryInitiator - -commit 7a51b12cbb9a33c4569e8fa8cac0e234c65bd9ba -Author: Gail Badner -Date: Tue Feb 5 14:30:46 2019 -0800 - - HHH-13194 : Some methods returning org.hibernate.query.Query are not defined for StatelessSession - - HHH-13194 : Remove @Incubating from org.hibernate.query.Query - -commit 5a58f50e09246191bac39b51c94d90728c614e3e -Author: asutosh936 -Date: Sun Feb 17 15:05:51 2019 -0600 - - HHH-13258 : Updated documentation - -commit 7fbcfe83b27a1ba0ca29682d22a5f345d32a3623 -Author: Sanne Grinovero -Date: Mon Feb 18 14:14:24 2019 +0000 - - HHH-13275 Re-introduce usage of net.bytebuddy.experimental=true when testing on JDK > 11 - -commit d39921bd347cb1f568fcb3718b914249165b7920 -Author: Sanne Grinovero -Date: Mon Feb 18 12:31:18 2019 +0000 - - HHH-13271 Restore compatibility of build script with Java 8 too - -commit 9d30a5a024295af02fe32a20f39f870ae16b0cf0 -Author: Sanne Grinovero -Date: Sun Feb 17 21:32:03 2019 +0000 - - HHH-13271 Javadoc build failures on JDK 12 - -commit 758ca53742ca8b86f90f6aea2e326fec70e6667b -Author: Sanne Grinovero -Date: Sun Feb 17 21:48:45 2019 +0000 - - HHH-13272 Upgrade to Byte Buddy 1.9.10 - -commit 170007fc9a5436c1d515a245bc173984369c65ee -Author: Vlad Mihalcea -Date: Mon Feb 11 18:08:17 2019 +0200 - - HHH-13217 - Don't throw exception if both @MappedSuperclass and @Inheritance are used - -commit 072d8ca3156a9d859c9cb165d19659f25b3d90f8 -Author: Vlad Mihalcea -Date: Thu Jan 24 15:21:37 2019 +0200 - - HHH-13228 - The modification of a @OneToOne with @MapsId property is silently ignored during a merge operation - -commit 462e171ee3b15d6e17fd811fb4085c51fe50e72f -Author: Vlad Mihalcea -Date: Thu Jan 24 15:21:37 2019 +0200 - - HHH-13256 - Fix the fieldsPreUpdateNeeded property index allocation in AbstractEntityPersister#update - -commit 69af6caa95dfa165b5aa9d0d730432d792d97634 -Author: wonwoo -Date: Wed Feb 6 20:21:22 2019 +0900 - - HHH-13265 - Remove double semicolon - -commit 6be091038d70073bbc6308bfc84f01a5e0e93853 -Author: Vlad Mihalcea -Date: Fri Jan 25 09:35:08 2019 +0200 - - HHH-13230 - The AvailableSettings.HBM2DDL_HALT_ON_ERROR setting does not accept String values - -commit ab4c270fac711bb98d62a8201a197b5f3cc99abf -Author: Vlad Mihalcea -Date: Thu Jan 24 10:06:52 2019 +0200 - - HHH-13227 - UnsupportedOperationException When Programmatically Overriding hibernate.ejb.cfgfile - -commit 0720b2b376ccfe6960db7aa81cddace51cef8f19 -Author: Gail Badner -Date: Wed Feb 6 16:55:09 2019 -0800 - - HHH-13244 : add header to test; shorten table/column names to avoid oracle failure - -commit 180df5199e19a748bfcd03c3c8d8b068413c4e01 -Author: Vlad Mihalcea -Date: Fri Jan 18 10:41:09 2019 +0200 - - HHH-6190 - Leverage JmxService to expose management and monitoring capabilities. - -commit 36fc1ad35e094df3aa42abe3a29c1798c1543414 -Author: Gail Badner -Date: Mon Feb 4 13:51:28 2019 -0800 - - HHH-13244 : Fix EntityPrinter to log "" for uninitalized proxies - -commit 80ff6b4fe64bb69ae730a5db02084ea1b504f063 -Author: Stoty -Date: Fri Feb 1 15:05:03 2019 +0100 - - HHH-13244 - setting hibernate.jpa.compliance.proxy=true and - org.hibernate debug level to DEBUG breaks hibernate test case - - simplify test case - -commit d158762144943c0b2c511704f9cd03386d7b14fa -Author: Vlad Mihalcea -Date: Fri Jan 25 10:48:59 2019 +0200 - - HHH-13229 - Sequences in MariaDB doesnt work on existing sequence - -commit 0750716c879831e304860df26816de8005649b51 -Author: Jonathan Bregler -Date: Wed Jan 30 15:07:54 2019 +0100 - - HHH-13239 - The query hint javax.persistence.lock.timeout doesn't work correctly on HANA - - Convert the lock wait timeout to seconds by dividing the timeout by 1000 (i.e. ignoring the fractions of a second) - -commit a36df5f2596866d50e950b7caf9c1642ec0ebf75 -Author: Sanne Grinovero -Date: Wed Jan 30 16:49:52 2019 +0000 - - Revert "HHH-13234 Log exception causing load to fail as @Cause" - - This reverts commit 0fe74c2c1d8d40e0f1ff3572e115a3d47fe75e74. - -commit 0fe74c2c1d8d40e0f1ff3572e115a3d47fe75e74 -Author: Galder Zamarreño -Date: Mon Jan 28 17:04:53 2019 +0100 - - HHH-13234 Log exception causing load to fail as @Cause - -commit d65b5e62e235bd3ee86cb5d3c5d259dec9e488c1 -Author: Guillaume Smet -Date: Tue Jan 22 16:24:16 2019 +0100 - - HHH-13220 Only create the PersistentAttributeTransformer if the class is enhanced - -commit 76981d97a87a50814835124c86d8a428f0129245 -Author: Vlad Mihalcea -Date: Mon Jan 14 14:23:31 2019 +0200 - - HHH-13202 - Add support for PostgreSQL "GENERATED BY DEFAULT AS IDENTITY" - HHH-13106 - Hibernate fails with Schema-validation: missing sequence - -commit ba4d742d34be28df31e9967192fd30ca110e269c -Author: Guillaume Smet -Date: Thu Jan 24 00:27:07 2019 +0100 - - HHH-13225 Restore original constructor to preserve SPI compatibility - -commit 5fde418a0db9d01b0460e316ba8ae8f7cd2cde8e -Author: Marek Šabo -Date: Wed Jan 23 11:51:07 2019 +0100 - - HHH-13225 Fix minorVersionToMatch comparison in BasicDialectResolver - -commit 103629ee873655d378917d7f88dd9faad5f3cef1 -Author: John Lin -Date: Tue Jan 22 17:19:45 2019 +0800 - - HHH-13219 - The sentence "The chapter 6 (e.g. Criteria API)" should be "The chapter 6 (i.e., Criteria API)" - -commit 56c3ebb873ab3affdd9982723ebe4013a582b56c -Author: Gail Badner -Date: Tue Jan 22 10:04:46 2019 +0100 - - HHH-7525 : Add failing test case (annotated with @FailureExpected) - -commit cde4d998ebf758641fc39ab6d27b7245f23dffb1 -Author: Guillaume Smet -Date: Sat Jan 19 20:24:58 2019 +0100 - - Prepare for next development iteration - -commit 4c9985fd52ac018fb188d0da322c23c5f70de066 (tag: 5.4.1) -Author: Guillaume Smet -Date: Sat Jan 19 18:36:01 2019 +0100 - - 5.4.1.Final - -commit 7f71735e3b5f31d2ba176b599beb82e6919435fe -Author: Guillaume Smet -Date: Fri Jan 18 15:59:52 2019 +0100 - - HHH-13016 Test added in previous commit will now fail so add @FailureExpected - - Reintroducing CaseLiteralExpression had some issues with databases other - than H2 as it tried to cast to binary even if the enum was stored as - enumerated. Unfortunately, we cannot really know if the enum is in the - end compared to a value stored as a string or a number. - -commit e2ba4105d36016379d0f428b8bfaf69e0e774cbd -Author: Guillaume Smet -Date: Fri Jan 18 15:59:29 2019 +0100 - - Revert "HHH-13016 Bring back CaseLiteralExpression" - - This reverts commit 23153d5d559214652a6d40de25fd2367d163e301. - -commit 23153d5d559214652a6d40de25fd2367d163e301 -Author: Guillaume Smet -Date: Thu Jan 17 13:23:31 2019 +0100 - - HHH-13016 Bring back CaseLiteralExpression - - It was removed as part of - https://github.com/hibernate/hibernate-orm/pull/1361 but this PR didn't - fix all the issues as there are still cases where we don't deduce the - expected type and we need to have a proper cast. - -commit 624403e65c530f94a7f83cae353eb591f7a8065e -Author: Guillaume Smet -Date: Thu Jan 17 13:19:25 2019 +0100 - - HHH-13016 HHH-13199 Force parameter binding for enum literals - - Currently, we don't have a way to properly handle enum literals so get back to - using parameter binding, which was used before in the "case when" case - due to a bug fixed in HHH-13001. - - Note that this forces the usage of enum literals even at the root of the - select clause. - -commit 9c72384e1f879fee2d5c5b185aee5e5ef5045aff -Author: Guillaume Smet -Date: Thu Jan 17 12:20:47 2019 +0100 - - HHH-13199 Add test case - -commit e2510d9e3d33c231ece9fe3ca188def504ae22bc -Author: Cody Lerum -Date: Sat Oct 6 10:41:25 2018 -0600 - - HHH-13016 Add test case - -commit 15ea965d202c23e1ad8477668f32518c1d2371f0 -Author: Sanne Grinovero -Date: Thu Jan 17 17:33:58 2019 +0000 - - HHH-13211 Reduce logging verbosity of QueryTranslatorFactoryInitiator - -commit 9c63819000028c099530d4976df7c54369c0090e -Author: Sanne Grinovero -Date: Thu Jan 17 17:11:14 2019 +0000 - - HHH-13210 Don't log about running a script of type ScriptSourceInputNonExistentImpl - -commit e8b88f5350bd9092bcdde253c1b74b0aab576ab4 -Author: harikantverma <46159252+harikantverma@users.noreply.github.com> -Date: Wed Dec 26 16:32:55 2018 +0530 - - HHH-13068 - "order_inserts = true" causes FK Violation when inserting Self Referential Entity with Single_Table Inherited Entities - -commit 5e30e509b3c3a61a8b724a9f41016894408614fa -Author: Sanne Grinovero -Date: Wed Oct 3 11:19:34 2018 +0100 - - HHH-13209 Disallow races between destroy and reactivation of ServiceRegistry - -commit cc3e4c82d3126b9c10e70b5b6ef73e0f531cba5d -Author: Sanne Grinovero -Date: Fri Aug 17 20:03:39 2018 +0100 - - HHH-13209 Expose more state from MetadataImpl to allow shallow copies - -commit bc6be66c662492c85f87041e2594ecf3b888fed6 -Author: Sanne Grinovero -Date: Tue Aug 14 21:50:30 2018 +0100 - - HHH-13209 Allow for re-starting of a deactivated ServiceRegistry instance - -commit 5fe874f7cfd46a1e8b177cff3464fc0af4e3ae6e -Author: Sanne Grinovero -Date: Tue Aug 14 21:40:57 2018 +0100 - - HHH-13209 Avoid leaking invalid data in side cache of SessionFactoryServiceRegistryImpl - -commit ed0cec0ddb662f7b80112d8259e51a805aa7100e -Author: Sanne Grinovero -Date: Tue Jan 15 17:41:16 2019 +0000 - - HHH-13204 Introduce a configuration flag to skip processing of XML mapping metadata - -commit a26ff3b4f917a138e251efaae0c52cd50b6ab813 -Author: Sanne Grinovero -Date: Tue Jan 15 17:41:51 2019 +0000 - - Missing getSchemaCharset() delegate in AbstractDelegatingMetadataBuildingOptions - -commit 16a9b5b225c3318be9ff6bdc1af6cff5fefd0734 -Author: Chris Cranford -Date: Tue Dec 18 08:47:07 2018 -0500 - - HHH-13164 - Revert changes made for HHH-13147 HHH-13053 HHH-13044 HHH-13042 and HHH-11019. - -commit a57a2a56209e993dc27909ed8ef3210da2a1229f -Author: Chris Cranford -Date: Tue Dec 18 08:45:38 2018 -0500 - - HHH-13164 - Added test case. - -commit 2ab24150f0d967963c0ff2da393102ce84d0263d -Author: Sanne Grinovero -Date: Wed Jan 16 22:22:42 2019 +0000 - - HHH-13189 Restore to have Set#contains efficiency - -commit f383df13a7671f7a41699a759c1fe65a30b42408 -Author: Sanne Grinovero -Date: Wed Jan 16 18:50:50 2019 +0000 - - HHH-13189 Optimise for less allocations as well - -commit b32cacac71416ca8beac2d100075d4c48211eaf7 -Author: Tomas Lamr -Date: Mon Jan 7 14:40:39 2019 +0100 - - HHH-13189 simpler empty check - -commit 7abcf9bc9b1c6e04f0fe2e28ea0d672fb576e9b0 -Author: Tomas Lamr -Date: Mon Jan 7 14:28:30 2019 +0100 - - HHH-13189 org.hibernate.Query#setParameter(String, Object) is extremely slow - -commit fcef483d657d46848e91f82ac24b3752bce1b1c3 -Author: Guillaume Smet -Date: Wed Jan 16 15:54:50 2019 +0100 - - HHH-13192 Add a simplified test case - -commit 67ec2d07cc419f10ca772cbcc86e3ab389f16827 -Author: Chris Cranford -Date: Wed Jan 9 09:35:05 2019 -0500 - - HHH-13080 - EntityExistException when audited collection updated with detached entities. - -commit fc8f6871fd53b540fa8f34fb291e2e181d0c7d6b -Author: Chris Cranford -Date: Wed Jan 9 09:33:27 2019 -0500 - - HHH-13080 - Added test case. - -commit a2fe91c490040f3c065682b0b54202ee0ed0bcf0 -Author: Guillaume Smet -Date: Wed Jan 16 12:11:51 2019 +0100 - - HHH-13192 Add test - -commit a57d7e7767c3955244ce5d5bb5f4cf7a79bf6be0 -Author: Guillaume Smet -Date: Wed Jan 16 13:28:56 2019 +0100 - - HHH-13192 Revert HHH-13140 - - Keep the test and add a @FailureExpected annotation - -commit 502fd78c454e8118c9a317f7d6e596315b8fd5bb -Author: Guillaume Smet -Date: Wed Jan 9 12:54:30 2019 +0100 - - HHH-13059 Add test - -commit e6286e04f4f866bb555dd06dedb40a76109442f9 -Author: Guillaume Smet -Date: Wed Jan 9 12:51:43 2019 +0100 - - HHH-13059 Partially revert HHH-12594 - - The first commit was on the safe side, we decided to go the extra mile - and that was a mistake as we missed all the consequences. - - The new issue is about having a shared ReaderCollector: we add the info - there for each batch which leads to collecting the elements several - times. - - This reverts commit a19fc84320d1ba2172ecb37f5c8c9cbcde616712. - - HHH-13059 : Correct Javadoc - -commit 27ddc8e834917c86458f4308739d832e97139335 -Author: Chris Cranford -Date: Tue Jan 15 17:27:03 2019 -0500 - - HHH-13206 - Fix custom runner properly determine dialect feature checks. - -commit aa288ba34532ea8b7ce5efc2f169ae8c634db5ec -Author: Chris Cranford -Date: Tue Jan 15 11:06:41 2019 -0500 - - HHH-13104 - Skip these tests when no-column-support enabled. - -commit a66ca0463ea5d965238aeaa7f63c215bbb49675e -Author: Gail Badner -Date: Tue Jan 8 19:26:15 2019 -0800 - - HHH-13129 : Cascaded merge fails for detached bytecode-enhanced entity with uninitialized ToOne - -commit c62f0a75cde09a773e24aaa0d26c2a1c41358060 -Author: Bolek Ziobrowski -Date: Thu Nov 29 18:15:18 2018 +0100 - - HHH-13129 - Add test - - HHH-13129 : Move and reformat test - - HHH-13129 : Add more tests - -commit 3317ca5105afb09b7bf30797399d3bae02d58644 -Author: Guillaume Smet -Date: Fri Jan 11 10:21:32 2019 +0100 - - HHH-13197 Reduce bootstrap log verbosity - -commit 070c14e1498010024a3fbfb60512fc8d1517f7e3 -Author: Vlad Mihalcea -Date: Thu Jan 10 10:45:53 2019 +0200 - - HHH-13165 - Don't use confusing "this" in the User Guide admonition blocks - -commit a78c56c01fd87e5811d33a475f0e94f400e505ca -Author: Sanne Grinovero -Date: Tue Sep 4 12:34:01 2018 +0100 - - HHH-13198 Introduce a global configuration flag to disable JPA callbacks - -commit 29e135c0150c4cbc7dd5ceea5986ddfcfa9a0354 -Author: Vlad Mihalcea -Date: Wed Dec 19 13:16:07 2018 +0200 - - HHH-13104 - Oracle 12c / SAP Hana insert fails when entity contains only an identity-based column. - - Exclude tests failing for SAP HANA and add the supportNoColumnInsert method in Dialect to be used by the Insert class - -commit b66f548b5fe9031bb49667ff778d1fc5fd2cb0bb -Author: Chris Cranford -Date: Thu Jan 10 10:52:27 2019 -0500 - - HHH-13191 - Fix test using a table-name that wasn't compliant across dialects. - -commit 53c589a9e1e51cfdaee4185ac26de71af858a0a9 -Author: Andrea Boriero -Date: Wed Jan 9 09:56:27 2019 +0000 - - HHH-13191 - Avoid LazyInitializationException when session is waiting for auto-close with JPA_PROXY_COMPLIANCE enabled - -commit e07f1aa89b4856b2127e19e9c19cdeeebbe27244 -Author: Chris Cranford -Date: Tue Jan 8 08:56:48 2019 -0500 - - HHH-13191 - Avoid LazyInitializationException when session is waiting for - auto-close with JPA_PROXY_COMPLIANCE enabled. - -commit 3cf2b509118cd28328f3548b8047b89586444e15 -Author: Chris Cranford -Date: Tue Jan 8 08:54:29 2019 -0500 - - HHH-13191 - Added test case. - -commit 829ca59b232c695c673535c0635ee86195d14ab1 -Author: Guillaume Smet -Date: Sat Jan 5 21:55:23 2019 +0100 - - HHH-13175 "Comment" is a reserved keyword for Oracle - - This time, hopefully, it's fixed for good... - -commit 00bb35455c0b09b2e1d0d1664e1e32801547c415 -Author: Guillaume Smet -Date: Sat Jan 5 13:35:26 2019 +0100 - - HHH-13175 "Comment" is a reserved keyword for Oracle - -commit 813121dc72f1c7cef29346e7645e6aa49b7af155 -Author: Guillaume Smet -Date: Sat Jan 5 13:21:03 2019 +0100 - - HHH-13175 "Comment" is a reserved keyword for Oracle - -commit 6dfb9becb77b67d3a43fe6e60e711e27518b1ed2 -Author: Guillaume Smet -Date: Fri Jan 4 10:46:20 2019 +0100 - - HHH-13186 Update the latest MariaDB dialect for autodetection - -commit 15ef10bd54978d9e68e8c3d0328d9b76bd9b39a9 -Author: a.vasilev -Date: Fri Jan 4 11:28:32 2019 +0200 - - HHH-13184 Oracle dialect detection does not return latest dialect in the default case - -commit f8949f4abdaccfcb8d874fc9303b669321efc824 -Author: danielsmith1995 <45878051+danielsmith1995@users.noreply.github.com> -Date: Fri Dec 14 15:12:34 2018 +0000 - - HHH-12878 Include the statement when a StaleStateException is thrown - -commit 858524cd270c30144995624e22088003cf8d6703 -Author: Steve Ebersole -Date: Mon Dec 31 08:55:31 2018 -0600 - - HHH-13175 - Eager subsequent-select fails when EntityGraph is specified for find operation - -commit 99abb99edf9a8d49c0c9e29afbd92de3f5fbca20 -Author: Guillaume Smet -Date: Wed Dec 5 16:32:24 2018 +0100 - - HHH-12298 Add test for join fetch with bytecode enhancement - -commit 2a8582be7f114565fa1fcf8b16a85b721d88d47c -Author: Guillaume Smet -Date: Mon Dec 3 19:06:44 2018 +0100 - - HHH-13138 Set the TCCL in BytecodeEnhancerRunner - - We are not consistently using the ClassLoaderService and we sometimes - use the TCCL so better set it correctly. - -commit bae98ffaccf55c78bb1eb39b1e249f9b8ae92726 -Author: Guillaume Smet -Date: Mon Dec 3 15:27:53 2018 +0100 - - HHH-13138 By default, pass the class loader of the test to the EMF - - Not doing it causes issues when using the BytecodeEnhancerRunner which - introduces an enhancing class loader. - - We could do it on a per test basis but it's easier to do it once and for - all. - - And it can still be overridden anyway. - -commit 2dd008adb7e39a8513a027582ba8a55ee7b4eedb -Author: Guillaume Smet -Date: Tue Dec 25 14:06:43 2018 +0100 - - HHH-13172 Log a warning instead of throwing an exception when - @AttributeOverride is used in conjunction with entity inheritance - -commit 8f748db9b023ebb9e69ab9cfee361aed52d8cc35 -Author: Moritz Becker -Date: Wed Dec 19 15:02:44 2018 +0100 - - HHH-13169 - Use exact table name for multitable update queries instead of table alias - -commit 7fdac4eeb5ea0cdc4bd455d08340f8d012664cff -Author: Nicolas MAUTI -Date: Thu Jan 3 18:15:27 2019 +0100 - - Fix typo: incompatibile should be incompatible - -commit 61cddad76d5bba951805fa7ed90cc149d404841c -Author: Kedar Joshi -Date: Wed Jan 2 18:16:09 2019 +0530 - - Correct JTS version information - -commit 18e6f61041b37698cc04b6a2e244ef51f8f734d6 -Author: Anderson Calixto -Date: Wed Dec 26 10:13:13 2018 -0300 - - Fix typo: resister should be register - -commit 33efabd5976c8e02faf9366679ac4424eeb82897 -Author: Vlad Mihalcea -Date: Wed Dec 19 11:27:41 2018 +0200 - - HHH-13167 - When omitting the OTHERWISE clause in a CASE expression built with Criteria API, Hibernate throws a NullPointerException - -commit fa5b632f4e791f8b9b3c3065ea5e24a442a59f9c -Author: Gail Badner -Date: Tue Dec 18 15:15:00 2018 -0800 - - HHH-13084 HHH-13114 : Correct test case using reserved word - -commit 08747fc2f4b33414ef05ac039b67e1d33c14db5f -Author: John Lin -Date: Mon Nov 12 17:32:07 2018 +0800 - - HHH-13094 - Respect @Any.fetch setting to FetchType.EAGER - -commit 7358893eac05acf4038fae1ce2190d9ddfc2d79e -Author: Vlad Mihalcea -Date: Thu Dec 13 11:50:04 2018 +0200 - - HHH-13160 - Polymorphic query for InheritanceType.TABLE_PER_CLASS is not using UNION ALL - -commit e3eeba9845270efea559f5b58605c42dfb1fea06 -Author: Vlad Mihalcea -Date: Thu Dec 13 13:08:39 2018 +0200 - - HHH-13162 - Upgrade MySQL and MariaDB Dialects as they support UNION ALL - -commit 55f5c9c5bdc667e9bcfcf172f8bcf5f81bb58555 -Author: Vlad Mihalcea -Date: Wed Dec 12 15:17:06 2018 +0200 - - HHH-13153 - No content in 15.1. Query API of User Guide - -commit 89372191ecf450c37f2509ddfb61c638e1563413 -Author: Vlad Mihalcea -Date: Tue Dec 4 17:55:31 2018 +0200 - - HHH-13140 - Criteria API multiselect aliases are not passed through to the JPQL query and they are not available in ResultTransformer - -commit 7316307d0e10772b10b7dba94ac278ed1cf96c0f -Author: Gail Badner -Date: Tue Nov 6 15:02:02 2018 -0800 - - HHH-13084 HHH-13114 : Bugs querying entity with non-ID property named 'id' - - HHH-13084 HHH-13114 : Query 'select count(h) from Human h' fails if a subclass has a non-Id property named 'id' - - HHH-13084 HHH-13114 : Update hibernate-core/src/main/java/org/hibernate/hql/internal/ast/tree/FromElement.java - - Co-Authored-By: dreab8 - - HHH-13084 HHH-13114 - Fix FromElementType method name - - HHH-13084 HHH-13114 : Correct generated column names - -commit 346b3c7f3ed2c923f17967b6d88dd3dcd735c9e4 -Author: Gail Badner -Date: Mon Nov 5 19:00:57 2018 -0800 - - HHH-13084 HHH-13114 : Add test cases - - HHH-13084 HHH-13114 : Refactor test cases - - HHH-13084 HHH-13114 : Add test cases - - HHH-13084 HHH-13114 : Refactor test cases - - HHH-13084 HHH-13114 : Add failing test case - -commit b9edc8d323f54f088f48a28f2a9c9bd0f46280ce -Author: Sergey Morgunov -Date: Fri Dec 7 03:12:12 2018 +0300 - - HHH-13145 - Generated metamodel class can't be compiled. - -commit 77cdaa0824599601206e3483daba4ed51ec8e55f -Author: Vlad Mihalcea -Date: Fri Dec 7 10:39:28 2018 +0200 - - HHH-13146 - Hibernate Ehcache no longer supports the `net.sf.ehcache.hibernate.cache_lock_timeout` configuration property - -commit 478f6d0e111d8714f36aa7026d47e8cffde99bb2 -Author: George Vinokhodov -Date: Thu Dec 13 18:33:06 2018 +0300 - - HHH-13151 Fix fetch of treated entity - -commit f84ea3cd37c7d68e1029b9e5be1531b64b47b8f8 -Author: Chris Cranford -Date: Wed Nov 14 17:07:39 2018 -0500 - - HHH-13104 - Fix SAP Hana to throw MappingException if table contains a single identity-based column. - -commit d625e15192c68be07059f78003c3a25ba6db2678 -Author: Chris Cranford -Date: Wed Nov 14 17:06:40 2018 -0500 - - HHH-13104 - Fix Oracle 12c to return 'default' for identifier column in insert-statement. - -commit 08bf8c5044659922bba1ea390d6eeb59c5d5c257 -Author: Chris Cranford -Date: Wed Nov 14 17:06:02 2018 -0500 - - HHH-13104 - Added test case. - -commit 98249af058a1f6408fcfca5a61d675af192458a1 -Author: Guillaume Smet -Date: Mon Dec 17 13:54:23 2018 +0100 - - HHH-12555 Disable NClob test for dialects not supporting NClob - -commit 855f34c77181fd9ff103a8d2bf9c9bfb37360f2c -Author: Guillaume Smet -Date: Mon Dec 17 13:53:54 2018 +0100 - - HHH-12555 Add a DialectCheck for NClob support - -commit 4d0b5dc184f7b48a493da31edfe4acea30c8e975 -Author: Gail Badner -Date: Mon Dec 17 00:00:16 2018 -0800 - - HHH-12555 : Remove code in LobMergeStrategy implementations that copied original Lob when target is null - -commit ca6dc226eb53a0f40978847d2d251b64c5e49f41 -Author: Gail Badner -Date: Sun Dec 16 23:59:07 2018 -0800 - - HHH-12555 : Update test to check results - -commit 4e05953240264d32fe67f6e0f1810d8168c2725f -Author: Guillaume Smet -Date: Tue Nov 27 22:02:41 2018 +0100 - - HHH-12555 Add tests - -commit 1af878166fe0883ceb3d9130afa2790850492624 -Author: Guillaume Smet -Date: Mon May 28 12:35:37 2018 +0200 - - HHH-12555 Fix merging of lazy loaded blobs/clobs/nclobs - - It's better to avoid pushing UNFETCHED_PROPERTY to the types as it - requires all the types to take it into account. - - TypeHelper looks like the only sensible caller that needs change. - -commit c79ce44f845a6dfb0f704680c81f88ed55b8432b -Author: Vlad Mihalcea -Date: Thu Dec 13 16:46:12 2018 +0200 - - HHH-13163 - Fix DDLWithoutCallbackTest#testRangeChecksGetApplied which fails on MariaDB - -commit 0f8fc67a3968719aac017e591657b0ad26db1afb -Author: Guillaume Smet -Date: Wed Dec 12 23:15:19 2018 +0100 - - Prepare for next development iteration - -commit 7759404259a8715927485fa1bc051da1f0dc9d9b (tag: 5.4.0) -Author: Guillaume Smet -Date: Wed Dec 12 22:15:57 2018 +0100 - - 5.4.0.Final - -commit 0d2fa6e94b75d3531374c6095512787323595851 -Author: John Lin -Date: Wed Dec 12 14:53:29 2018 +0800 - - HHH-13156 - Enhance the @AnyMetaDef annotation section with more details about the optimal placement - -commit 9ff14a33c78b11f03351748dfe4a5610517325f3 -Author: Chris Cranford -Date: Fri Dec 7 09:53:58 2018 -0500 - - HHH-13147 - Fix DelayedPostIdentifierInsert when second-level cache enabled. - -commit 6d5dd25e7aeba23161f82e79a2a5bd104dddbedf -Author: Chris Cranford -Date: Fri Dec 7 09:53:17 2018 -0500 - - HHH-13147 - Added test case. - -commit d1d1f9f312ef5e3b74dfa935ff8ce83bd835852f -Author: Karel Maesen -Date: Thu Dec 6 22:02:38 2018 +0100 - - HHH-13083 - Add integration test - -commit d9dd1ebf625d8c3d270c110a4ec71a423d58bf3a -Author: Karel Maesen -Date: Thu Dec 6 21:27:48 2018 +0100 - - HHH-13083 - Fix matrix tests - -commit 89e36cf0e7245835b7e34e6069c28572ab587320 -Author: bernd hopp -Date: Thu Nov 1 15:41:24 2018 +0100 - - HHH-13083 Add support for st_makeenvelope in PostGIS dialect - - https://postgis.net/docs/ST_MakeEnvelope.html - -commit dc89e7199d1b25edaab8331097be71fe2d324972 -Author: Vlad Mihalcea -Date: Thu Dec 6 15:54:22 2018 +0200 - - HHH-13095 - Document how to use arithmetic expressions in CASE statements - - Fix tests failing on MariaDB and MySQL - -commit ae4652378c5a1c8bf2330c03433408368678a466 -Author: Vlad Mihalcea -Date: Thu Nov 29 16:53:26 2018 +0200 - - HHH-10778 - Add support for non-public AttributeConverter implementations - -commit 1a5cee7c0cad5df6e1effc3baeebb09a66f614a2 -Author: Vlad Mihalcea -Date: Mon Nov 12 12:17:46 2018 +0200 - - HHH-13095 - Document how to use arithmetic expressions in CASE statements - -commit f4e36a1bea099317b51b73a351616344459c1e52 -Author: Vlad Mihalcea -Date: Mon Nov 12 15:14:01 2018 +0200 - - HHH-13096 - Document that composite identifier cannot use auto-generated properties - -commit 84bc30d34ad1709f4fded06024c9dbad393335f8 -Author: Frank Doherty -Date: Wed Dec 5 22:18:22 2018 +1100 - - HHH-13141 - Could not fetch the SequenceInformation from the database when using SQL Server with a case-sensitive collatio - - -commit d986ae92d079a4930797d270b0c51edcbff6194f -Author: Vlad Mihalcea -Date: Thu Dec 6 09:22:29 2018 +0200 - - HHH-13144 - Move the doInAutoCommit utility to TranscationUtil - -commit 3ff3615d00f1e4471380fb1ab7f3da5f297fc8b9 -Author: Vlad Mihalcea -Date: Fri Nov 30 10:29:22 2018 +0200 - - HHH-13110 - @PreUpdate method on a Embeddable null on the parent caused NullPointerException - -commit 849e2a5a538a87b182516f75451d51b7ac128fc9 -Author: Guillaume Smet -Date: Thu Nov 29 18:02:01 2018 +0100 - - Prepare for next development iteration - -commit f4aec910309c45b58f1c8fe0d813b3d4fd7db7b0 (tag: 5.4.0.CR2) -Author: Guillaume Smet -Date: Thu Nov 29 17:24:48 2018 +0100 - - 5.4.0.CR2 - -commit 21fa1ab54b163d2cc245a039b00c78bd0595be7e -Author: Guillaume Smet -Date: Thu Nov 29 17:03:41 2018 +0100 - - HHH-13127 Update a few things in the metamodel generator documentation - -commit e528eb7ee96d44b5b72065043db328061429a23b -Author: Guillaume Smet -Date: Thu Nov 29 16:58:57 2018 +0100 - - HHH-13127 Document that JAXB jars are needed if using JDK 11 - -commit 190dedc8fc51fdd590b5764be898752280161242 -Author: Guillaume Smet -Date: Thu Nov 29 10:32:47 2018 +0100 - - HHH-13128 Add missing jaxb-runtime dependency to metamodel generator - - It's necessary for JDK 11 and we missed it when we added the - jaxb-runtime dependency to hibernate-core. - -commit d48307d5fa418d7e2027dfdbbdbf4f948edc6f30 -Author: Vlad Mihalcea -Date: Tue Nov 27 13:45:00 2018 +0200 - - HHH-13125 - Remove the Javadoc links in the User Guide pointing internal classes - -commit 1b53969359b5f5c2392d1dbef0b7de1427e98706 -Author: Vlad Mihalcea -Date: Wed Nov 28 14:52:26 2018 +0200 - - HHH-13102 - Document how catalog and schema attributes need to be applied based on the underlying DB capabilities - -commit c9356ce9b4717fe6783c723565fc8ac29e69e50d -Author: Vlad Mihalcea -Date: Fri Nov 23 17:17:35 2018 +0200 - - HHH-13115 - Document how to define timezone per tenant when using Multitenant Database - -commit 2823e98cd9bc080386a4d034a02a23287efaad9b -Author: Guillaume Smet -Date: Wed Nov 28 11:00:48 2018 +0100 - - Remove non-ascii character from Javadoc - - We often have java.io.FileNotFoundException: JAR entry - org/hibernate/annotations/NamedQueries.class not found errors when - building on these 2 classes and it's the only special thing in them so - let's hope it will fix this issue. - -commit 39d9f84920081d3f110fca07ee30ca817f95d737 -Author: Vlad Mihalcea -Date: Tue Nov 27 13:38:46 2018 +0200 - - HHH-13124 - The CachingRegionFactory resolution algorithm has changed - -commit 4900832cc2f2b2ff26c8934124137f244dba3972 -Author: Vlad Mihalcea -Date: Mon Nov 26 18:55:59 2018 +0200 - - Fix tests failing due to an import which was not even required - -commit 850f0cdd20e40b0b8a84af112ab21d02f1439da1 -Author: Vlad Mihalcea -Date: Mon Nov 26 17:51:14 2018 +0200 - - Add missing test condition for `hibernate.jpa.compliance.proxy` tests - -commit b93e340d22a0fd889556a29f3b4ac2bd824b3d60 -Author: Vlad Mihalcea -Date: Mon Nov 26 17:48:17 2018 +0200 - - Add tests to prove that the `hibernate.jpa.compliance.proxy` behavior works as expected - -commit 73345d526368fbb830c42c1327fbbe1faddfe702 -Author: Henri Tremblay -Date: Thu Nov 22 13:11:16 2018 -0500 - - HHH-13118 Use the provided class loader even when using the default URI - -commit 25554375f23b625963c7153160b932a315145b72 -Author: Guillaume Smet -Date: Fri Nov 23 14:59:39 2018 +0100 - - HHH-13111 Restore support of criteria subqueries in select clauses - - When the JPA query compliance mode is disabled (the default), it should - be possible to include subqueries in select clauses of a criteria query. - - This was previously accepted due to a bug. After having fixed HHH-13001, we - started to throw an IllegalStateException. - -commit a89a9beeb0f9a4f8c279aa6c5458d5d0b01e6316 -Author: Yoann Rodière -Date: Fri Nov 23 14:43:39 2018 +0100 - - HHH-13112 Fix a table name in NoPackageTest - -commit aa2648d87835d712c3c05b095dac8c63278fa3f4 -Author: Yoann Rodière -Date: Fri Nov 23 10:08:15 2018 +0100 - - HHH-13043 Upgrade to JAXB 2.3.1 - - ... which has a correctly formatted POM, and doesn't wreak havoc in - projects depending on us and using Maven + JDK11. - -commit 809eec87f02d62746a462b81d026619cbf902257 -Author: Yoann Rodière -Date: Fri Nov 23 08:06:13 2018 +0100 - - HHH-13112 Upgrade to ByteBuddy 1.9.5 - - ... which fixes https://github.com/raphw/byte-buddy/issues/568 - -commit 7799555bc78d3276d056b9d8d0e55b1e86e146e9 -Author: Yoann Rodière -Date: Wed Nov 21 09:11:13 2018 +0100 - - HHH-13112 Add a test with an entity in the default package - -commit 0684fd867c14ca9a4e4bfa6af0796e2bc9e3b5f6 -Author: Vlad Mihalcea -Date: Tue Nov 20 20:43:25 2018 +0200 - - Revert "HHH-13105 - Add registries for user-defined Types as currently a custom Type is instantiated and configured 9 times" - - This reverts commit 903d542020ea2a22e796ef8c21b7f55c26105967. - -commit 903d542020ea2a22e796ef8c21b7f55c26105967 -Author: Vlad Mihalcea -Date: Thu Nov 15 09:40:23 2018 +0200 - - HHH-13105 - Add registries for user-defined Types as currently a custom Type is instantiated and configured 9 times - -commit dab50a6d8a29560749ed3cc79cd0e5bdaa7f7197 -Author: Vlad Mihalcea -Date: Fri Nov 16 20:23:33 2018 +0200 - - HHH-13108 - IN Clause Parameter Padding not working for Criteria API - -commit 5515347ec3d765760543bdc3289fa646bf24d5fd -Author: Andrea Boriero -Date: Thu Nov 15 20:35:44 2018 +0000 - - HHH-13107 - JtaWithStatementsBatchTest fails on Oracle - -commit a95a48b0f1d0529c2de7173675badecee081c823 -Author: Guillaume Smet -Date: Thu Nov 15 15:25:19 2018 +0100 - - Prepare next development iteration - -commit 06da34868ba31fcd8c7b33dadd8bd5a7cf51d399 (tag: 5.4.0.CR1) -Author: Guillaume Smet -Date: Thu Nov 15 14:47:58 2018 +0100 - - 5.4.0.CR1 - -commit 11e71f6977fcf4366eb6875d9fc1ce46f029853c -Author: Andrea Boriero -Date: Tue Nov 6 14:28:30 2018 -0500 - - HHH-13050 - On release of batch it still contained JDBC statements logged - -commit a7fccaa377b306b60102c868dc69b750c4d37ba8 -Author: Gail Badner -Date: Tue Nov 13 00:07:07 2018 -0800 - - HHH-13050 : Add test with a batch that fails when addToBatch() is called - -commit be0ee006ab1f7d530d219861eae19efc85040ad2 -Author: Andrea Boriero -Date: Tue Nov 6 14:02:53 2018 -0500 - - HHH-13050 - Add test for issue - -commit 013e5b70b8ba3e883966a4a24f7053fdfb4ec071 -Author: Chris Cranford -Date: Wed Nov 14 12:46:33 2018 -0500 - - HHH-13053 - Fix test on Oracle and HANA databases. - -commit 805aec32b3bae5800a8af7740736892a3d40879b -Author: Chris Cranford -Date: Wed Nov 14 11:14:30 2018 -0500 - - HHH-13101 - Document `hibernate.id.disable_delayed_identity_inserts` config setting. - -commit a15dfe0e056c55664846b621c0d880ef2e367fff -Author: Andrea Boriero -Date: Fri Nov 9 09:15:07 2018 +0000 - - HHH-13076 - Hibernate 'Transaction already active' behaviour with JTA transaction manager - -commit 0fa4b50188f435aeecf2c2d7150dd27a25ab2931 -Author: Andrea Boriero -Date: Mon Nov 5 10:33:14 2018 +0000 - - HHH-13076 - Add test for issue - -commit 432c18441dee10ec02ed38b03ab817a4d3e09c68 -Author: Sanne Grinovero -Date: Wed Nov 14 15:32:29 2018 +0000 - - HHH-13100 Remove unused import - -commit 53cbc1660cee8b55eb54a9a91bfb3a3eb9edc7c9 -Author: Guillaume Smet -Date: Wed Nov 14 14:09:49 2018 +0100 - - HHH-13100 Make a couple of equals()/hashCode() implementations lighter - -commit c354b5e8b9e157d46c08d3070de5d654e4e6cf11 -Author: Vlad Mihalcea -Date: Wed Nov 14 14:44:29 2018 +0200 - - JPA-31 - Simple JPQL with guarded null Parameter fails with Postgresql - - Add test case to prove the issue does not replicate - -commit e12a68852413b2c0f6291894c9c719496dce8664 -Author: Gail Badner -Date: Wed Nov 14 00:25:24 2018 -0800 - - HHH-11209 : Log a DEBUG message if collection with queued operations is detached due to rollback; otherwise, log INFO message - -commit d7d6e2882f47fdf50c56449eeb37b4ea04811af1 -Author: Chris Cranford -Date: Mon Oct 22 18:21:07 2018 -0400 - - HHH-13042 HHH-13044 HHH-13053 - Fix to short-circuit delayed identifier insert forcing them to insert early. - -commit 1e8ccb6cce44b2721296fd381a7424390ecf2e3e -Author: Chris Cranford -Date: Mon Oct 22 18:19:11 2018 -0400 - - HHH-13053 - Added test case. - -commit 67459cd09757deb7caf67f20ac0883457b16d772 -Author: Chris Cranford -Date: Mon Oct 22 18:18:55 2018 -0400 - - HHH-13044 - Added test case. - -commit 7acad70b01ff856dd94ec661f8e82979f5d458db -Author: Chris Cranford -Date: Mon Oct 22 18:18:42 2018 -0400 - - HHH-13042 - Added test case. - -commit dc873c3d3672f24bf6f6a1bd15e53d31cfdaf523 -Author: Chris Cranford -Date: Mon Oct 22 18:15:58 2018 -0400 - - HHH-13042 - Revert change made for HHH-12464. - -commit 79a8f43ba57d9e4a1269c5027dfd063b18d4f7d9 -Author: Guillaume Smet -Date: Tue Nov 13 20:26:33 2018 +0100 - - HHH-13097 Don't throw an exception if there are two getter candidates - -commit 36078065ea345e2c6625cccb5b4afffc2d964e0b -Author: Guillaume Smet -Date: Tue Nov 13 17:11:28 2018 +0100 - - HHH-13097 Cache a static ByteBuddy matcher - -commit 45d5aa7ddf8aca86d997b8d497b3e72305bf8b17 -Author: Guillaume Smet -Date: Tue Nov 13 17:09:15 2018 +0100 - - HHH-13097 Cache the resolution of the getters - -commit 4ec71218e957b19fe838a1cdc2722f11944d9c51 -Author: Guillaume Smet -Date: Tue Nov 13 16:08:50 2018 +0100 - - HHH-13097 Cache the annotations resolution - -commit d125349c077451ddaec7987a70ba77814654d075 -Author: Guillaume Smet -Date: Tue Nov 13 11:07:47 2018 +0100 - - HHH-13097 Only rewrite class if enhanced in the ByteBuddy enhancer - - This makes the behavior of the ByteBuddy enhancer consistent with the - behavior of the Javassist enhancer. - - Currently, the Maven plugin rewrites every class provided. - -commit 5cdf56774d26f0c5fada7a3cd9ca66768f32dc5f -Author: Guillaume Smet -Date: Tue Nov 13 10:43:34 2018 +0100 - - HHH-13097 Add a missing @Override - -commit b959f41134d98b06df6a68aefa09492f01811719 -Author: Sanne Grinovero -Date: Tue Nov 13 22:52:58 2018 +0000 - - HHH-13100 All custom implementation of Byte Buddy "Implementation" s should have a proper equals and hashcode - -commit 0f3bba6ed8be2f850595ac1f0bbd52793d420475 -Author: Sanne Grinovero -Date: Tue Nov 13 22:24:12 2018 +0000 - - HHH-13099 Update to Byte Buddy 1.9.4 - -commit c8166b3f5d878413de399ed3b7c83b705e986f91 -Author: Chris Cranford -Date: Tue Nov 6 17:01:18 2018 -0500 - - HHH-13051 - Refactored strategy solution. - -commit 68df2792c6e244462bf783582b06f8a163aadf68 -Author: Rokko11 -Date: Sun Oct 14 23:33:27 2018 +0200 - - HHH-13051 Make audit tables structure more extensible - -commit 82d3793549f87268aea4374ff810c151b348728c -Author: Vlad Mihalcea -Date: Thu Aug 23 12:05:04 2018 +0300 - - HHH-12925 - The JDBC Type to Hibernate matching is limited to the Dialect only instead of considering the Type contributions as well - -commit 69bde03c24a3782ffe448f708920b1a8cba0e025 -Author: Chris Cranford -Date: Tue Nov 13 08:36:37 2018 -0500 - - HHH-12913 - Fix test on oracle database. - -commit 2e0976d8b6547033c5cf035e7463f8da83370f75 -Author: Guillaume Smet -Date: Wed Oct 17 17:16:32 2018 +0200 - - HHH-12945 Properly support entry() criteria expression - - With additional changes from Gail. - -commit e4c964fb3632253de2ae41385bec7e3f62065ea8 -Author: Guillaume Smet -Date: Wed Nov 7 12:21:08 2018 +0100 - - HHH-12850 Sybase Anywhere - Explicitly map Java booleans to SQL bits - -commit ea42f43881fbeced6ba5be413d97e0368e1ccdff -Author: Chris Cranford -Date: Mon Nov 12 09:33:10 2018 -0500 - - HHH-12713 - Fix metamodel contracts to extend Hibernate JPA extension contracts. - -commit 27118f765c06063909d760835fa220d88f5addc1 -Author: Vlad Mihalcea -Date: Mon Nov 12 12:21:20 2018 +0200 - - Revert "HHH-13077 - Optimize query plan call count" - - This reverts commit 4f27d5b931eb42235a8b05f849d924014a0d68cc. - -commit 4f27d5b931eb42235a8b05f849d924014a0d68cc -Author: Vlad Mihalcea -Date: Mon Nov 5 21:10:36 2018 +0200 - - HHH-13077 - Optimize query plan call count - -commit 0a9bf2d07a427fd18752f75cfbf4bf81cab22aae -Author: Vlad Mihalcea -Date: Sat Nov 10 12:01:15 2018 +0200 - - Update change log to include the fix for HHH-10874 - -commit 5b76256e96f4bba97e9cd9b8158d88ad2fdfb972 -Author: thymepuns -Date: Thu Jun 12 14:59:07 2014 -0700 - - HHH-9241 - Allow declaring non-java.util Collection interfaces - -commit bc6289e0b890e868251f9912154c6eaffe117af3 -Author: Guillaume Smet -Date: Thu Nov 8 15:32:08 2018 +0100 - - HHH-13092 Upgrade Hibernate Commons Annotations to 5.1.0.Final - -commit 1fc8adc85d5c188f17fea26919033d4c94a9f71b -Author: Vlad Mihalcea -Date: Fri Nov 9 09:34:26 2018 +0200 - - HHH-13089 - SchemaCreatorImpl.applyImportSources incorrect HBM2DDL_IMPORT_FILES handling when parameter is empty string - -commit 741c84a10cee915642a8c1f00cb8b9a92446930f -Author: Gail Badner -Date: Thu Nov 8 21:28:04 2018 -0800 - - HHH-11209 : Fix checkstyle error - -commit 7af7182cc1b2d3ec390d3f64a913a952767b8191 -Author: Gail Badner -Date: Tue Nov 6 19:03:13 2018 -0800 - - HHH-11209 : Log a DEBUG message if collection with queued operations is detached due to rollback - -commit 22ad668b88b8ff04769396dbe4e153be024d64dc -Author: Gail Badner -Date: Tue Nov 6 18:22:46 2018 -0800 - - HHH-11209 : Added test case for testing debug logging when collection is detached during rollback - -commit 509f6fed10ee1c93334c0d685f05d592f13c2368 -Author: Guillaume Smet -Date: Thu Nov 8 15:13:45 2018 +0100 - - HHH-13091 Upgrade Ehcache 2 to 2.10.6 and Ehcache 3 to 3.6.1 - -commit 736d9dd6154b87b05245a0334b8df795dc893a6f -Author: Mykola Pavluchynskyi -Date: Thu Nov 8 10:43:23 2018 +0200 - - HHH-13090 Allow to use specific cache implementations in Ehcache cache provider - - Typically, it allows to use a BlockingCache. - -commit c17e4832a9fb982472c2a9af6695ec8ad2efe08b -Author: Chris Cranford -Date: Thu Nov 8 08:35:50 2018 -0500 - - HHH-12913 - Fix test failure on Oracle db. - -commit b00f580d8daa3bffbcff854dc815887756de9664 -Author: Chris Cranford -Date: Wed Nov 7 15:31:47 2018 -0500 - - HHH-12913 - Fix AuditJoinTable to work when specified in an AuditOverride. - -commit 8a7497377635195f550d7b2983280120ad8e57bc -Author: Chris Cranford -Date: Wed Nov 7 15:30:11 2018 -0500 - - HHH-12913 - Added test case. - -commit 563758669a1a54c2f9e845da67b6aaa634ab7654 -Author: Gail Badner -Date: Mon Nov 5 12:55:42 2018 -0800 - - HHH-12436 : Shorten entity names to fix test failures on Oracle - -commit 53f8e5a002c2d0e79d1793ff2a642bbb4da86a0e -Author: Andrea Boriero -Date: Thu Nov 1 15:20:39 2018 +0000 - - Add 'Use {@link #getTransactionStartTimestamp()}' to SharedSessionContractImplementor#getTimestamp deprecated comment - -commit e67f3dfa8215f9ed2e7ec0f510891dcb08dc8fab -Author: Guillaume Smet -Date: Mon Nov 5 11:38:30 2018 +0100 - - HHH-13069 Go back to non-SSL links for our JBoss Nexus repositories - - Using SSL repositories with JDK 11 ends up with the error below: - javax.net.ssl.SSLHandshakeException: extension (10) should not be presented in server_hello - - This is a bug in JDK 11 that will apparently be fixed in the next update - (planned for January 2019). - - Until then, we need to use non-SSL links. - - For more information: - https://stackoverflow.com/questions/52016415/jdk-11-ssl-error-on-valid-certificate-working-in-previous-versions - https://bugs.openjdk.java.net/browse/JDK-8209965 - JDK 12 issue - https://bugs.openjdk.java.net/browse/JDK-8210005 - JDK 11 issue - -commit 88b3edfcee240b693483fd759e19902d725a8114 -Author: Julien Bras -Date: Fri Nov 2 14:55:00 2018 -0400 - - HHH-13078 Choose the right dialect for Sybase SQL Anywhere 17 - - On SQL Anywhere 17.0.0.1062 the product name is "SQL Anywhere" and - not "Adaptive Server Anywhere". - - I suggest to include this string in the test to select the right dialect. - -commit 12d34965ff59fe53abcd7dd2fe34a7f3fd2ba11d -Author: Guillaume Smet -Date: Mon Nov 5 10:42:11 2018 +0100 - - HHH-13075 Upgrade Javassist to 3.24.0-GA - -commit df12675150b2b5a004d39112b94eee22576ff385 -Author: Guillaume Smet -Date: Mon Nov 5 10:41:43 2018 +0100 - - HHH-13074 Upgrade ByteBuddy to 1.9.3 - -commit a3bc66e1d2032a2ca927d4c2fa6e14b52ec82c14 -Author: Christian Beikov -Date: Thu Oct 18 11:35:13 2018 +0200 - - HHH-13045 - Fix access of association id of element collection alias in query - -commit b202333ff9b6b2129cc1f74bc2fe103ae372ff36 -Author: Christian Beikov -Date: Thu Oct 18 11:34:41 2018 +0200 - - HHH-13045 - Testcase showing access of assocation id contained in element collection doesn't work - -commit 3c5534f23f794a00bf376f6e0937718c6bf01dbb -Author: Frank Doherty -Date: Thu Nov 1 14:04:03 2018 +1100 - - HHH-13070 Perform injections on listener when using duplication strategy with REPLACE_ORIGINAL - - - Previously, the CallbackRegistryConsumer/JpaBootstrapSensitive injections were not performed on new listeners that - were appended using duplication strategy with REPLACE_ORIGINAL, which could lead to NullPointerException when the - listener was invoked (for example for a listener which is a CallbackRegistryConsumer, as the callbackRegistry field - was not set) - - Added calls to checkAgainstBaseInterface and performInjections on the listener, in the case of appending a listener - which replaces an existing one - - Added test cases to verify that the callbackRegistry is being injected - -commit d16e7211e09353813f8215f171e5d5b504475f3f -Author: Sanne Grinovero -Date: Wed Oct 31 11:04:45 2018 +0000 - - HHH-13069 Update the links to JBoss Nexus to use the direct repository over https - -commit aa441ddb12ce04ff5355987b880e6aafaac3294f -Author: Henning Rohlfs -Date: Thu Nov 1 12:46:12 2018 +0100 - - HHH-13071 Use SourceSetOutput.getClassesDirs to prevent deprecation warnings during build when using the gradle plugin - -commit 71af989f604512e105e1465ebecce01ba672b652 -Author: Vlad Mihalcea -Date: Wed Oct 31 20:31:23 2018 +0200 - - HHH-11096 - @CreationTimestamp doesn't works with @Column(nullable=false) - -commit d39d456614df601d986b3bb5dd00abf77a76e1f4 -Author: Chris Cranford -Date: Thu Nov 1 14:42:44 2018 -0400 - - HHH-12992 - Fix tests to run on various db platforms without naming conflicts. - -commit 1e2eea95cb51d37f56a65b1ae27df538338bff9d -Author: Chris Cranford -Date: Wed Oct 31 15:52:14 2018 -0400 - - HHH-12992 - Fix tests to run on various db platforms without naming conflicts. - -commit 3218f6cc7df4f704eef5d70cc3514856e7d6f56d -Author: Gail Badner -Date: Tue Oct 30 19:44:27 2018 -0700 - - HHH-12436 - Attempted to assign id from null one-to-one property - -commit 925c7370960780bd7ba57b5e5c65dd84c14e746a -Author: Gail Badner -Date: Fri Oct 26 18:34:22 2018 -0700 - - HHH-12436 : Added test cases - -commit 8535adc05736e9ae93d818d9aff25bf9255a1bbd -Author: Jan-Willem Gmelig Meyling -Date: Thu Oct 25 12:22:19 2018 +0200 - - HHH-12842 : Remove invalid workaround from ea77c1f for isNullable regression from 2bfe300 - -commit bf6f105c41b08cba73e608abaeccd2a54bab4220 -Author: Jan-Willem Gmelig Meyling -Date: Fri Jul 20 14:19:24 2018 +0200 - - HHH-12842 - Test that shows @OneToOne will be lazily loaded again - -commit 662f6b2b533e6f3651a7d475859927f2d495e1e8 -Author: Jan-Willem Gmelig Meyling -Date: Wed Sep 26 18:16:18 2018 +0200 - - HHH-12842 - Pass OneToOne constrained to determine nullability of type - -commit 512dfa574d46a86b982a142c08c42ec0898d04a9 -Author: Barnaby Court -Date: Mon Sep 3 12:04:49 2018 -0400 - - HHH-12944 - MultiIdentifierLoadAccess ignores the 2nd level cache - -commit ac03494e7059803e058c8ea81043ce92e9388248 -Author: Guillaume Smet -Date: Wed Oct 31 18:24:13 2018 +0100 - - HHH-10891 Add a test case - -commit 64179673a332febe238db879e5cc911bed9654f3 -Author: Keshavan Santhanam -Date: Wed Oct 31 16:53:26 2018 +0530 - - HHH-10891 Support @Any in @Embedded - -commit eff27db90ac4b33ea9e8f874f93cce2fa2db7fa3 -Author: Chris Cranford -Date: Thu Oct 4 11:13:18 2018 -0400 - - HHH-12992 - Fix proper support for order-by annotation on audited entity associations. - -commit 334e064272f016220eb2111d3eb9e8f74280a382 -Author: Chris Cranford -Date: Thu Oct 4 11:11:59 2018 -0400 - - HHH-12992 - Added test cases. - -commit 10148324d169c7cc15fb3b387db725a42d4e8c2b -Author: Chris Cranford -Date: Tue Sep 4 14:07:10 2018 -0400 - - HHH-10201 - Fix element-collection attributes to always be audited if parent is audited. - -commit 42fe1680568dfea4257a0391f805da8f7e06d4b5 -Author: Chris Cranford -Date: Tue Sep 4 14:06:39 2018 -0400 - - HHH-10201 - Added test cases. - -commit 0d8db10fcb0bd9135c38ab0aaa63fdd1533a49ce -Author: Yoann Rodière -Date: Fri Oct 26 11:05:19 2018 +0200 - - HHH-12713 Restore backward compatibility for users of org.hibernate.metamodel.spi.MetamodelImplementor - - * Move the interface back from org.hibernate.metamodel.model.domain.spi to org.hibernate.metamodel.spi - * Restore method addNamedEntityGraph(String graphName, EntityGraph entityGraph) - * Make sure that findEntityGraphsByType returns List> once again, - and not List>. - -commit d0fb16dded115098c6ddde78fd120f22ed55dd8b -Author: Steve Ebersole -Date: Wed Oct 24 21:45:21 2018 -0500 - - HHH-12713 - Make EntityGraph creation more convenient - - - unify naming between 5.x and 6.0 wrt EntityGraph support added in 5.4 - -commit 3bf530d5e8784b5b46303ea75e027ace484d6b73 -Author: Vlad Mihalcea -Date: Thu Oct 25 17:39:42 2018 +0300 - - HHH-13062 - Migrate User Guide links from Java EE 7 to 8 - -commit 2517fbfe6f83b51b01dff72d35f16146f58fba7e -Author: Guillaume Smet -Date: Thu Oct 25 19:10:41 2018 +0200 - - HHH-13064 Fix Lock and LockModeType table - -commit 04fbabce2e51b79ee1d20b8093916113d450e903 -Author: Sanne Grinovero -Date: Tue Oct 16 17:24:54 2018 +0100 - - HHH-13061 Introduce a 'none' option for BytecodeProvider implementation choice - -commit 817e4637645ef725af831ef8260a8059ce3a1090 -Author: Vlad Mihalcea -Date: Thu Oct 25 11:02:33 2018 +0300 - - HHH-13060 - Throw an exception when two entities are declared with the same name - -commit 45083813bdc29585af3077eda0d792e48856823b -Author: Fabio Massimo Ercoli -Date: Tue Jul 31 11:12:07 2018 +0200 - - HHH-12751 Remove hibernate-infinispan OSGi feature - -commit 52e72f5d3829e519f79669cec6bb8196f091dc53 -Author: Vlad Mihalcea -Date: Thu Oct 18 10:30:17 2018 +0300 - - HHH-12979 - Setting hibernate.javax.cache.uri property value as relative path causes an error - - Resolve the hibernate.javax.cache.uri using the ClassLoaderService. - - Strip the classpath:// prefix if not resolved by new URL() in ClassLoaderService. - This way, if a framework (e.g. Spring) has installed a handler for classpath://, the resource is resolved with its handler and class loader. - If not, we remove the classpath:// prefix and we resolve the resource with our classloader. - -commit fecb12cff70b3bdcb749582106731d7bdf3b2f8d -Author: John Lin -Date: Wed Oct 17 13:09:08 2018 +0800 - - HHH-13041 - Move @Any and other association mappings to the association chapter - -commit 06b559e46ec81a0eee31f99d86af52c2741fe963 -Author: Sanne Grinovero -Date: Mon Oct 22 19:31:51 2018 +0100 - - HHH-13057 Prevent Byte Buddy's Advice helper to reload to many resources from the ClassLoader - -commit 1d62d4aaf03e24d03ed8962d196780acd0d1981b -Author: Guillaume Smet -Date: Mon Oct 22 17:44:28 2018 +0200 - - HHH-13039 Upgrade Agroal to 1.3 - -commit bf7f56e0047a599fd13055f2909421682165f4c6 -Author: Yoann Rodière -Date: Mon Oct 15 15:17:27 2018 +0200 - - HHH-13022 Allow to fall back to the OSGi-provided TCCL during bootstrap - - We previously erased that class loader, which is not a great idea, in - particular when we use libraries such as JAXB which rely on the TCCL, to - some extent. - - Without this patch, we cannot make the OSGi integration work correctly - with Java 9 and above, because the JAXB APIs won't find the JAXB - runtime. - -commit 6ef94f3ba7b05ab7117c6e31508fb1502591fc45 -Author: Yoann Rodière -Date: Mon Oct 15 13:37:47 2018 +0200 - - HHH-13022 Include karaf logs into test output files - -commit c3c46b501998c250e45da4a026a1dc7858ad7a85 -Author: Yoann Rodière -Date: Wed Oct 10 13:40:51 2018 +0200 - - HHH-13022 Re-enable OSGi tests when using JDK9/JDK10/JDK11 - -commit eaf77858779dcdb3484cc43169257b12770c50a1 -Author: Yoann Rodière -Date: Wed Oct 10 13:40:41 2018 +0200 - - HHH-13022 Upgrade to Apache Karaf 4.2.1 - -commit 0a13b8d640918eb49afbef7abc5d0c7d2f68e6e9 -Author: Yoann Rodière -Date: Tue Oct 16 10:19:32 2018 +0200 - - HHH-13022 Add missing versions to internal OSGi feature dependencies - -commit 9726fde68d747c4ba08addd0d229c77fe08103f1 -Author: Yoann Rodière -Date: Wed Oct 10 13:43:37 2018 +0200 - - HHH-13022 Fix indentation in hibernate-osgi.gradle - -commit fb2fd3ed4bf3fc543375d714cfd71381443d3f74 -Author: John Lin -Date: Mon Oct 22 15:56:06 2018 +0800 - - HHH-13056 Fix typo in documentation: "listner" should be "listener" - -commit c49ebe888a7a485b0ec04aa25aee680ee7810151 -Author: Steve Ebersole -Date: Sun Oct 21 16:15:37 2018 -0500 - - HHH-12713 - Make EntityGraph creation more convenient - - - documentation tests only run on H2Dialect - -commit 5e8781f8fa123d4e437f669b57cfa1456a169873 -Author: Steve Ebersole -Date: Wed Oct 3 18:01:26 2018 -0500 - - HHH-12713 - Make EntityGraph creation more convenient - -commit 526ebb4e0b0d5a24bde06a2fd36dfe1592ae61e1 -Author: Aleks <40366235+aleksandarsusnjar@users.noreply.github.com> -Date: Wed Jun 20 16:42:57 2018 -0400 - - HHH-12713 - Make EntityGraph creation more convenient - -commit 2a5f270d40e81f80f8ab9efdc00455033ef3c57c -Author: Yanming Zhou -Date: Fri Oct 19 11:30:56 2018 +0800 - - Remove duplicated "an" from javadocs - - Signed-off-by: Yanming Zhou - -commit 76274bf33e2bf644a9040f63d00a8b52032c2b86 -Author: Sanne Grinovero -Date: Thu Oct 18 13:49:39 2018 +0100 - - HHH-13048 Allow for parallel processing of entity enhancements via ByteBuddy - -commit aae9cd14a54eeeccf0a84f2e655b7d12dcc49325 -Author: Sanne Grinovero -Date: Tue Oct 16 16:36:48 2018 +0100 - - HHH-13047 Deprecate Environment#verifyProperties - -commit 1fb77629e2bd6048e5918f154a573ef0c7930c21 -Author: Vlad Mihalcea -Date: Tue Oct 16 17:04:30 2018 +0300 - - HHH-13040 - MetadataBuilderContributor should be applied before MetadataBuildingProcess.prepare - -commit b46a277619b6ccc06d18bc5c0455d96e09f053a4 -Author: Vlad Mihalcea -Date: Thu Oct 11 16:39:46 2018 +0300 - - HHH-13012 - JDBC default connection release mode does not match documentation - -commit 3fec3b930b78a702f34b5f0c6f5ad6ae6d694d1d -Author: Guillaume Smet -Date: Mon Oct 15 17:24:53 2018 +0200 - - HHH-12425 Move afterInitialize() phase after the collection initialization - -commit 05d538ee156c501061add547eaafd1a094fc3c06 -Author: Guillaume Smet -Date: Mon Oct 15 17:24:38 2018 +0200 - - HHH-12425 Fix a toString() implementation - -commit 738a6c55e09f342c514a8187efe48e8ab44eb8b7 -Author: Guillaume Smet -Date: Mon Oct 15 17:23:47 2018 +0200 - - HHH-12425 Fix a few issues in the enhancer - -commit 2c041447c2daaab683a81bd8ad9a2ddad78377eb -Author: Guillaume Smet -Date: Mon Oct 15 15:19:26 2018 +0200 - - HHH-12955 Avoid a warn message by updating SchemaAutoTooling values - - Some valid values of hibernate.hbm2ddl.auto were not present in this - class, whereas they should have been. - -commit 653b123276a21dbc3062d7257199b98b2a560e35 -Author: Yoann Rodière -Date: Wed Oct 17 09:05:13 2018 +0200 - - HHH-12990 Remove unnecessary dependencies to JSR-250 when generating JAXB classes - - It seems these dependencies were not necessary at all, even before the - previous patches. - -commit 165cc74fb5a30af46eb9764a9560994bd9b6efa1 -Author: Yoann Rodière -Date: Wed Oct 17 08:49:56 2018 +0200 - - HHH-12990 Remove now unnecessary dependencies to JSR-250 when using jpamodelgen - - The previous commit ensured we don't need them anymore. - -commit e436b316da08350a6af5998e97508cc60fd74435 -Author: Yoann Rodière -Date: Wed Oct 17 08:47:54 2018 +0200 - - HHH-12990 Auto-detect the fqcn of the Generated annotation in jpamodelgen - - It's "javax.annotation.Generated" in Java 8 and below, but - "javax.annotation.processing.Generated" in Java 9 and above. - -commit 5fd97472b97ca121b51ab8fc39dd756c099512af -Author: Yoann Rodière -Date: Mon Oct 15 12:15:41 2018 +0200 - - HHH-12946 Enable JAXB dependencies regardless of the JDK being used when building Hibernate ORM - - Previously we would only add the dependency when building with JDK9+, - and we built all releases using JDK8. - This means the dependencies were useless, because they would never be - mentioned in the actual POMs published to users. - -commit 68e20f4f8b8fb2a12b7f6970ce80595292f465bb -Author: Yoann Rodière -Date: Mon Oct 15 11:56:27 2018 +0200 - - HHH-12946 Target JDK11 instead of JDK10 in terms of JDK API compatibility - -commit 0924138b753a6c354a620694881e7b3a88566df6 -Author: Yoann Rodière -Date: Mon Oct 15 11:44:41 2018 +0200 - - HHH-12946 Upgrade to fobiddenapis 2.6 (compatible with JDK11) - -commit 2daa3811c6e1b27270ae2d4c543a3845af4a8ea3 -Author: Yoann Rodière -Date: Mon Oct 15 10:55:56 2018 +0200 - - HHH-12946 Remove unnecessary dependencies when building with JDK9+ - - We don't need to depend on JAXB's compiler (XJC) in our modules, - we just need the dependency in specific tasks during the build. - In particular we don't want users to transitively depend on XJC. - - Also, we don't need an explicit dependency to JAXB in every module, - having one in hibernate-core is enough. - -commit 51ab9f744d2f040cf24000509c4f3152803568ab -Author: Yoann Rodière -Date: Mon Oct 15 11:10:39 2018 +0200 - - HHH-12946 Add explicit dependencies to JAXB APIs where relevant - -commit 2b3a5e5a2ed0e8bee4435af3ca345e6707fdc939 -Author: Yoann Rodière -Date: Mon Oct 15 10:49:01 2018 +0200 - - HHH-12946 Depend on org.glassfish.jaxb:jaxb-runtime instead of the obsolete com.sun.xml.bind:jaxb-impl - - Apparently both sets of coordinates work, but the com.sun.xml.bind one - is older and deprecated. - -commit 530ab1569ebf0cf38a3bb74752e0d87150e3a1d8 -Author: Yoann Rodière -Date: Mon Oct 15 10:43:28 2018 +0200 - - HHH-12946 Use constants for JAXB dependencies instead of inline strings - - We may have to update these dependencies, let's make it easy. - -commit bb822aee31ea3d4e871746539da585734fac8cb0 -Author: Guillaume Smet -Date: Tue Oct 16 23:54:51 2018 +0200 - - HHH-12935 Make ExportIdentifierTests extend BaseUnitTestCase - -commit a09e6156f9efbac3e33a18f460cb758958857e12 -Author: Gail Badner -Date: Tue Oct 16 14:17:04 2018 -0700 - - HHH-13011 Fix the tests: use int column in where clause - -commit 66d9859813c4c7aea5797c19f3b577fba34721de -Author: Guillaume Smet -Date: Tue Oct 16 19:23:41 2018 +0200 - - HHH-12935 Require sequence support in ExportIdentifierTests - -commit 552c3da1b6213bed35492c0ede49479c407af853 -Author: Guillaume Smet -Date: Tue Oct 16 19:18:03 2018 +0200 - - HHH-13011 Fix the tests: use a boolean query - -commit 18f4ecfdfee39349a8754b4c61b4000c22944278 -Author: Guillaume Smet -Date: Tue Oct 16 18:24:29 2018 +0200 - - HHH-13011 Fix the tests: use a boolean query - -commit 17804ce4e7a46ff04692847c371f40a51efedbd1 -Author: Fabio Massimo Ercoli -Date: Mon Oct 15 19:13:10 2018 +0200 - - HHH-13013 Upgrade Arquillian versions - -commit 84259292b2897d3233754f8b43d02db1dba86014 -Author: Fabio Massimo Ercoli -Date: Mon Oct 15 19:00:10 2018 +0200 - - HHH-13013 Upgrade WildFly version - -commit aa586c117f254aa20f9332838194ad68dd405dfb -Author: Gail Badner -Date: Tue Oct 16 05:02:14 2018 -0700 - - HHH-13011 : Document hibernate.use_entity_where_clause_for_collections in the user guide - -commit d1a40af1b765da0bbb248b95e0ecb1c9b8a674df -Author: Gail Badner -Date: Tue Oct 16 03:51:34 2018 -0700 - - HHH-13011 : test cases - -commit 4735c2d5aa15a6d6e21be58b483574a222728fe0 -Author: Gail Badner -Date: Mon Oct 15 23:13:07 2018 -0700 - - HHH-13011 : Add option enabling/disabling use of an entity's mapped where-clause when loading collections of that entity - -commit 19dd186d11db98d44d7e47180497b72bf0f1dce6 -Author: Gail Badner -Date: Mon Oct 15 20:55:16 2018 -0700 - - HHH-12104 : Test cases using annotations and hbm.xml - -commit 7615df2ddfc27f8b6426e5374619f4562bcfc048 -Author: Guillaume Smet -Date: Tue Oct 16 15:10:00 2018 +0200 - - HHH-13038 Upgrade ByteBuddy to 1.9.2 - -commit 974ffdd4027c62d02b382e2183ef3a3efd706923 -Author: Fabio Massimo Ercoli -Date: Fri Oct 12 12:48:44 2018 +0200 - - HHH-13001 Add test case - - (cherry picked from commit 488916cca418e01365195ffa0b5d4572161596e3) - -commit a2b26b81b32abbcf6ba5a384bce2b19fa833ad31 -Author: Steve Ebersole -Date: Mon Oct 15 21:52:17 2018 -0500 - - HHH-13001 - NPE rendering nested criteria expressions - -commit 23c6565f72ab66132241fb655a51d194407fd2a2 -Author: Guillaume Smet -Date: Tue Oct 16 14:22:31 2018 +0200 - - HHH-12937 Only run the tests with H2Dialect - -commit 4d381457c570f6cb4fb45698d143dfec66ec52c3 -Author: Gail Badner -Date: Tue Aug 28 22:04:44 2018 -0700 - - HHH-12935 : Constraint and AuxiliaryDatabaseObject export identifiers are not qualified by schema or catalog - -commit 3806d27f08713b39f2c6971b055ae62b4138a4e4 -Author: Gail Badner -Date: Tue Aug 28 22:03:21 2018 -0700 - - HHH-12935 : test cases - -commit e4aecf7d4f95652985ca282be45e9ab3dba6ea88 -Author: Guillaume Smet -Date: Tue Oct 16 11:16:40 2018 +0200 - - HHH-13036 Upgrade HikariCP to 3.2.0 - -commit 1f27e1f45a38e7c96f5e36a9dcd4115f013d7e62 -Author: Guillaume Smet -Date: Tue Oct 16 11:16:10 2018 +0200 - - HHH-13037 Upgrade Vibur to 22.2 - -commit 8a6d5e711a3e11c24bdfff91f4b27517b5708c61 -Author: Guillaume Smet -Date: Tue Oct 16 11:15:41 2018 +0200 - - HHH-13035 Upgrade Agroal to 1.2 - -commit 8c00814dbe9c417b9bf9f410ad9980c72aa0b5f6 -Author: Guillaume Smet -Date: Tue Oct 16 10:28:44 2018 +0200 - - HHH-13033 Upgrade ByteBuddy to 1.9.1 - -commit 6dd6ac041d9e7e86ff7d38134e5708a72f5582f4 -Author: Guillaume Smet -Date: Tue Oct 16 10:26:29 2018 +0200 - - HHH-13034 Upgrade Hibernate Validator test dependency to 6.0.13.Final - -commit d4ad0df883a3d4708fe45ce7b024d9f3b7fbe0bd -Author: Jonathan Bregler -Date: Tue Oct 16 09:54:47 2018 +0200 - - HHH-12937 Fix tests on SAP HANA - - The following tests fail because of a DROP TABLE statement without CASCADE - - org.hibernate.test.where.annotations.LazyElementCollectionBasicNonUniqueIdWhereTest - - org.hibernate.test.where.annotations.LazyElementCollectionWithLazyManyToOneNonUniqueIdWhereTest - - org.hibernate.test.where.hbm.LazyElementCollectionBasicNonUniqueIdWhereTest - - org.hibernate.test.where.hbm.LazyElementCollectionWithLazyManyToOneNonUniqueIdWhereTest - -commit 9ead103044f5023348e72b34dbcff35f2b76a96c -Author: Guillaume Smet -Date: Mon Oct 15 15:51:12 2018 +0200 - - HHH-12978 Properly initialize the converters on deserialization - -commit ae2da95f556e08df96be6b630580f8e2522a4683 -Author: Gail Badner -Date: Thu Aug 30 11:42:33 2018 -0700 - - HHH-12937 : Remove duplicated line - -commit eb14b8de6ff724b0867e7b848b33e05723fe8c55 -Author: Gail Badner -Date: Wed Aug 29 23:12:13 2018 -0700 - - HHH-12937 : Where clause for collections of basic, embeddable and "any" elements is ignored when mapped using hbm.xml - -commit da50076afcc73fa1fb581aa34a4f4f986aafb41f -Author: Gail Badner -Date: Wed Aug 29 23:08:46 2018 -0700 - - HHH-12937 : test cases - -commit f2b82449da4e19bea8d4d264be90ef39efed2618 -Author: Baptiste Mathus -Date: Tue Dec 10 11:39:11 2013 +0100 - - HHH-9038 Fix HSQLDB dialect for non-existing constraints. - - This commits relates to https://hibernate.atlassian.net/browse/HHH-7002. - It basically removes the explicit constraints dropping, and uses - cascading instead. - - As HSQLDB requires to put CASCADE last, but fortunately accepts IF - EXISTS also before tablename, we just put the IF EXISTS *before* the - tablename, and CASCADE after it. And there you go. - -commit e55c3bbb7ea3cc1b765777f83611619f0748ca70 -Author: Vlad Mihalcea -Date: Wed Sep 19 15:04:44 2018 +0300 - - HHH-12978 - Enum value binding is not logged by BasicBinder - -commit dd6593390689282fce02cc261a055977f60275ff -Author: Bas van Schaik -Date: Thu Aug 23 13:34:24 2018 +0100 - - Add LGTM.com code quality badge - -commit e15a9080ea1dc478fea5f0d0f456dff207a92eb0 -Author: Sanne Grinovero -Date: Tue Jul 3 11:21:43 2018 +0100 - - HHH-12762 No longer needing to use port-offset in WildFly integration tests - -commit 1763bfb51f3248779304f155ec662f2226466aa7 -Author: Gail Badner -Date: Fri Oct 12 12:41:13 2018 -0700 - - HHH-13027 : org.hibernate.ejb.HibernatePersistence can no longer be used as a persistence provider name - -commit 6e7c1100a6fd7a5d566843206216ef2dd2cc9c67 -Author: Gail Badner -Date: Fri Oct 12 12:40:28 2018 -0700 - - HHH-13027 : test case - -commit fcd3b56fdd3cde78b70cdac25e9ddeca97c5bbfa -Author: Sanne Grinovero -Date: Fri Oct 12 16:54:15 2018 +0100 - - HHH-13029 Avoid static singletons to hold on Strategy Registration Implementations - -commit e3ae85f8c1d98e3ac90599e5ceac94eb66c234e1 -Author: Sanne Grinovero -Date: Fri Oct 12 22:06:12 2018 +0100 - - HHH-13028 Make ASTPrinter caches use less memory - -commit 109085cab8c2b269403c3fce3f9e7992e00070b9 -Author: Vlad Mihalcea -Date: Thu Oct 11 17:52:41 2018 +0300 - - HHH-13025 - Rename MetadataContext#getEmbeddableTypeMap to getEmbeddableTypeSet - -commit a5138621a69febf4f9ce9bd305a2f88775e4c5ae -Author: Vlad Mihalcea -Date: Fri Oct 12 11:31:44 2018 +0300 - - HHH-12368 - java.sql.SQLFeatureNotSupportedException in LobCreatorBuilderImpl - -commit e9e6b0573f85730427bf4a668acfca5c19562839 -Author: Vlad Mihalcea -Date: Fri Oct 12 12:55:25 2018 +0300 - - HHH-12973 - Inconsistent identity generation when using the default @SequenceGenerator with a database sequence having the increment size of 1 - - - add SQL Server JDBC Driver version upgrade note to migration guides - -commit 41e49725ae8e2dcb1c92c8d94b0fc404a0031b63 -Author: Chris Cranford -Date: Wed Oct 10 10:42:56 2018 -0400 - - HHH-12320 HHH-12975 - Make sure foreign key name/mode is set prior to building the constraint. - -commit 9022085f5c48467089e74f4354ee6716d1616e99 -Author: Chris Cranford -Date: Wed Oct 10 10:40:30 2018 -0400 - - HHH-12320 HHH-12975 - Added test cases. - -commit 20b39b9741d9f3b4343e35fbd5b3f3542195e022 -Author: Jonathan Bregler -Date: Wed Oct 10 15:35:42 2018 +0200 - - HHH-13021: Add support for SAP HANA full-text search functions - -commit 656b2737f90a008dbbeee995cbc6cfd371bad8c5 -Author: Vlad Mihalcea -Date: Thu Oct 11 08:50:34 2018 +0300 - - HHH-13009 - No documentation for "hibernate.javax.cache.cache_manager" - -commit d33b03e882ab4ed9e5666ebe5da51d6a9c86aa8b -Author: Karel Maesen -Date: Thu Oct 11 21:21:22 2018 +0200 - - HHH-12144 - Add note to migration guide - -commit ddac470a2c3cd98f1586014efa49236c6d0875f4 -Author: Sanne Grinovero -Date: Thu Oct 11 17:41:38 2018 +0100 - - HHH-13026 Documentation: fixing link to Infinispan documentation section regarding Hibernate 2LC - -commit b6b9468fd0947850b2673aff8b447ec9144adfd6 -Author: Vlad Mihalcea -Date: Wed Oct 10 20:41:26 2018 +0300 - - HHH-13020 - When proxying an entity having a private default constructor, the log message is not very clear about the problem - - Fix test failing with Javassist - -commit ceb83264fc96c0f9e6308d1649a833b97387b7b0 -Author: Vlad Mihalcea -Date: Wed Oct 10 17:45:34 2018 +0300 - - HHH-12934 - Exception handling documentation does not apply only to "Session-per-application anti-pattern" - - Fix section placement - -commit df3edbd7b7788c7fb7dcff5da00833f2f705811e -Author: Vlad Mihalcea -Date: Wed Oct 10 12:41:13 2018 +0300 - - HHH-13020 - When proxying an entity having a private default constructor, the log message is not very clear about the problem - -commit 4dac6dbe3b4926e4d7ee884f2228401256a86f15 -Author: Sanne Grinovero -Date: Mon Oct 8 23:24:19 2018 +0100 - - HHH-13018 Upgrade to Hibernate Commons Annotations 5.0.5.Final - -commit c3febcaaedfd3aab228234307fd41d8a5a2d955a -Author: Vlad Mihalcea -Date: Tue Oct 9 09:32:34 2018 +0300 - - HHH-12939 - Database name not quoted at schema update - - Restrict tests to H2, PostgreSQL and SQL Server only - -commit 1db476dbd5ec4f852472b953d50a8caa073efd6d -Author: Vlad Mihalcea -Date: Mon Sep 17 17:59:53 2018 +0300 - - HHH-12973 - Inconsistent identity generation when using the default @SequenceGenerator with a database sequence having the increment size of 1 - -commit ec21c6df5e0fa6435c18eab59e9da9bb0d3996db -Author: Sanne Grinovero -Date: Mon Oct 8 11:44:29 2018 +0100 - - HHH-13017 Exception on Service stop isn't logging the full stack - -commit 7ff7eec783a3fc45bf63e5e4d48e9d64e3963d6c -Author: Davide Angelocola -Date: Wed Aug 22 23:29:29 2018 +0200 - - HHH-12928 Remove vestigial 'naturalIdTypes' field - - naturalIdTypes is unused since 3800a0e6959d8f8ee18635ceb0b75c37ad8e0152 - -commit a189ac3220688ebd1ed06d1c7dfa454fd648f266 -Author: Fabio Massimo Ercoli -Date: Fri Oct 5 17:46:53 2018 +0200 - - HHH-13014 Expose resolveClassLoadingStrategy as spi - -commit cced0ad5686a78347f0d8154aa6f5f5e232a59e3 -Author: Sanne Grinovero -Date: Fri Oct 5 15:57:49 2018 +0100 - - HHH-13015 Optimise loading of EntityCopyObserver implementation - -commit 415fcfd04818d091dac489cbc49bde67be6e073a -Author: Jan-Willem Gmelig Meyling -Date: Sun Sep 30 18:24:39 2018 +0200 - - HHH-13000 - Fix for refreshing entities under PESSIMISTIC_WRITE lock - -commit 6f5b1e554386662e02d4ef3b91c23863258ff481 -Author: Gail Badner -Date: Thu Jul 26 16:00:22 2018 -0700 - - HHH-11209 : Test cases - - HHH-11209 : NullPointerException in EntityType.replace() with a PersistentBag - - HHH-11209 : Add test for merging a detached collection with queued operations - - HHH-11209 : Throw UnsupportedOperationException if a detached collection with queued operations is merged - - HHH-11209 : Ignore queued operations when merging a detached collection with queued operations; add warnings - - HHH-11209 : Fix typo in comment - -commit fcb65c075e59183ba70f7665a178c4c0d4c39dc5 -Author: Sanne Grinovero -Date: Tue Oct 2 12:08:13 2018 +0100 - - HHH-13006 Upgrade to Gradle 4.10.2 - -commit 439ce293dad84e8309837f111f66dbae535b6adb -Author: Guillaume Smet -Date: Fri Sep 28 18:05:26 2018 +0200 - - HHH-12989 Make the test prove that everything is really working as expected - -commit d92245230791ed81c0a8929e3d3b983369861b79 -Author: carnusj -Date: Fri Sep 28 11:30:11 2018 -0400 - - HHH-12989 Support heterogeneous collections passed to JPA's Expression#in() - -commit 297690bb0d847e765a9fb28a92bb019856ead1d1 -Author: Sanne Grinovero -Date: Tue Oct 2 14:55:30 2018 +0100 - - HHH-13007 No longer use net.bytebuddy.experimental=true when testing on JDK11 - -commit 63b5df4096a35126e1de868ace71381dcdebab28 -Author: Guillaume Smet -Date: Tue Oct 2 14:34:57 2018 +0200 - - HHH-13005 Upgrade to ByteBuddy 1.9.0 - -commit 97b49349ad331c80801401aa47f6c8b88088d9d6 -Author: Sanne Grinovero -Date: Mon Oct 1 22:57:23 2018 +0100 - - HHH-13003 Skip processing of empty resource names defined for hibernate.hbm2ddl.import_files - -commit 4b19bdc619d7d6e57d010504eadaf486d770453a -Author: Jonathan Bregler -Date: Thu Sep 27 13:17:09 2018 +0200 - - HHH-12995: Querying DECIMAL columns via Double fields can lead to precision loss on SAP HANA - - - add new configuration parameter hibernate.dialect.hana.treat_double_typed_fields_as_decimal - -commit 6e9c1893a12a5e29fcaed9263a93728bca166b31 -Author: Guillaume Smet -Date: Mon Sep 10 11:05:56 2018 +0200 - - HHH-12939 - Database name not quoted at schema update - -commit b1b6e524415b35ecef9313c6faf3a6cabb1f551b -Author: Vlad Mihalcea -Date: Wed Aug 29 12:02:16 2018 +0300 - - HHH-12934 - Correct documention about hibernate.native_exception_handling_51_compliance - -commit 01bf67e4b877e389b5c733b41ad4a2215a4bd87e -Author: Vlad Mihalcea -Date: Wed Sep 19 10:26:16 2018 +0300 - - HHH-12982 - Generify Hibernate#unproxy - -commit 340618c9a0cd566ef1a47f63888702f3534b32df -Author: Vlad Mihalcea -Date: Fri Sep 28 11:01:19 2018 +0300 - - HHH-12988 - DST is ignored when saving a LocalTime with hibernate.jdbc.time_zone=UTC - - - Add test to prove how the underlying JDBC Driver binds the Time for a given TimeZone - -commit 3c3b8f93751fcc84298dac5701167e2f0036ff6a -Author: Губанов Станислав -Date: Mon Sep 3 11:34:44 2018 +0300 - - HHH-11771 - @Id annotation ignored with @MappedSuperclass inheritance - -commit f21c8c292759466151a5adf1d11a445f2d5c4ba8 -Author: Vlad Mihalcea -Date: Mon Sep 24 20:40:37 2018 +0300 - - HHH-12968 - Flush is not flushing inserts for inherited tables before a select within a transaction - - Extract IdentityGenerator batch support validation logic - -commit 362630624f98729b0e0a2b7a757e3eb3e4a30094 -Author: Guillaume Smet -Date: Mon Sep 24 18:28:24 2018 +0200 - - HHH-12962 Fix a typo in the documentation - -commit 912225a76644361171ccf1ae6288b37ca8552562 -Author: Guillaume Smet -Date: Mon Sep 24 18:25:53 2018 +0200 - - HHH-12974 Fix a typo in the documentation - -commit 5a2f12a9a8c86f12a7ee129ba1d6cd374bffd6ab -Author: Vlad Mihalcea -Date: Mon Sep 24 17:28:50 2018 +0300 - - HHH-12653 - Throw MappingException if both @MappedSuperclass and @Inheritance are used - -commit 9dfdb2b471ce6c1d26c4a5cbb15586d961dcd627 -Author: Javad Alimohammadi -Date: Sun Sep 23 18:44:04 2018 +0330 - - HHH-12968 - Flush is not flushing inserts for inherited tables before a select within a transaction - -commit 519905b99bb747e8b67a02d55e8e53fe63dc1cbf -Author: Vlad Mihalcea -Date: Thu Sep 20 11:54:27 2018 +0300 - - HHH-12962 - Document how to tune the query plan cache size - -commit 48909896b69c983ff7234b1e1435a881dfb5746c -Author: Vlad Mihalcea -Date: Thu Sep 20 11:31:40 2018 +0300 - - HHH-12974 - Document @OnDelete behavior in regards to disabling the Persistence Context entity removal cascading event - -commit b3e56a5db71110d07a095762a788c53ef258bd01 -Author: Karel Maesen -Date: Wed Sep 19 20:06:56 2018 +0200 - - HHH-12144 - Upgrade JTS spatial library to 1.16 - -commit a9fd8efe3363ddd141b8add965a5f725ab9ff05c -Author: Yanming Zhou -Date: Fri Sep 14 16:52:18 2018 +0800 - - HHH-12977 - Update latest dialect for MySQL - -commit b25bfd79f446c2c968c3132665ae74d2716b0e89 -Author: Jan-Willem Gmelig Meyling -Date: Sun Jun 10 15:26:50 2018 +0200 - - HHH-12675 - Respect inverse property for JoinedSubclassEntityPersister - -commit 4bafeeecaeb96498013f45b1f538369ee811e876 -Author: Vlad Mihalcea -Date: Wed Sep 5 17:35:42 2018 +0300 - - HHH-12957 - Calling custom functions in JPQL with the function() is missing in the documentation - -commit 9d8cb3dbb7693e8afa8924a7d3b7e99882c05951 -Author: Vlad Mihalcea -Date: Mon Sep 10 13:40:59 2018 +0300 - - Add test to check if private constructors lead to meaningful error messages when using bytecode enhancement - -commit 69c03c63f38c0c9468ca2c05ccb02e4490bf9f31 -Author: Jonathan Bregler -Date: Fri Sep 7 12:40:52 2018 +0200 - - HHH-12963: HANA dialect doesn't set internal configuration for use_unicode_string_types correctly - -commit e66da8af0076c2fbca9c190e8e708441be5bfcd3 -Author: SirWayne -Date: Fri Sep 7 16:34:38 2018 +0200 - - HHH-12964 - Upgrade to dom4j 2.1.1 - -commit d8be295740dff2dc0d8ff38e9db80911ba479f73 -Author: Jonathan Bregler -Date: Fri Sep 7 10:39:43 2018 +0200 - - HHH-12961 Update HANA dialects Javadoc - - - Fix the links - - Add some more information - -commit 90b71f6895ae8a530986292887c743fd6831c798 -Author: del65 -Date: Fri Sep 7 14:22:26 2018 +0200 - - HHH-12966 Do not include loggers in statistics beans - - This way, you don't need to add the JBoss logging dependencies. - -commit 8293d6dce3669f58b5241fe0e8890764163e8a6f -Author: del65 -Date: Fri Aug 31 15:50:27 2018 +0200 - - HHH-12966 Make CacheableDataStatistics serializable - - This is necessary to access statistics over JMX. - -commit 83191633ecae7f48426feb47ad3232f9c972b064 -Author: Vlad Mihalcea -Date: Tue Jul 24 17:01:43 2018 +0300 - - HHH-12855 - Add query plan compilation statistics - -commit eab5fb28685c8aeb27164f96dceea27c777a1f96 -Author: Vlad Mihalcea -Date: Wed Sep 5 12:24:21 2018 +0300 - - HHH-12952 - Document the hibernate.statistics.query_max_size behavior and explain its implications - -commit 50990dd76b1f682adb997fd14f5bb83b055a53df -Author: Sanne Grinovero -Date: Tue Sep 4 11:07:58 2018 +0100 - - HHH-12954 Refactor boot/model/relational/Database to avoid holding references to MetadataBuildingOptions - -commit 4eb726ef4c7eb6ebcb3cabe63787501ee9ad815e -Author: Sanne Grinovero -Date: Tue Sep 4 23:02:26 2018 +0100 - - HHH-12950 Use the Annotation Processor specific scopes of Gradle - -commit 293acd048c715325bdc2f06c8feca9e2af82cc97 -Author: Sanne Grinovero -Date: Tue Sep 4 22:42:36 2018 +0100 - - HHH-12949 Upgrade to Gradle 4.10 - -commit 935601e29d1f77db5b41b54bb1fe393b2269e03f -Author: Sanne Grinovero -Date: Tue Sep 4 16:09:35 2018 +0100 - - HHH-12948 Allow using a custom SessionFactoryOptionsBuilder to create a SessionFactoryBuilderImpl - -commit 8cf00ad3fd10c322e1190da47f83ba34527b3cd0 -Author: Sanne Grinovero -Date: Tue Sep 4 13:35:50 2018 +0100 - - HHH-12947 Remove need for BootstrapContext where it's unused - -commit b3c2c2fe47ef5cf35c5ae1bf64e89efddbc716dc -Author: Vlad Mihalcea -Date: Tue Aug 28 17:18:18 2018 +0300 - - HHH-12933 - Generate_statistics grows QueryStatistics ConcurrentHashMap indefinitely - -commit 440a2ef49096ecd7051520c288256a264cbd6e73 -Author: Vlad Mihalcea -Date: Wed Aug 29 13:07:34 2018 +0300 - - HHH-12929 - Add AtomikosJtaPlatform implementation - -commit 04b3230e0fea29b34395b3962338eaa83f2f95e4 -Author: Guillaume Smet -Date: Thu Aug 23 00:10:27 2018 +0200 - - HHH-12920 Fix a debug message causing an exception at debug level - -commit 5e747b7057902d973f2571619e63ae189c49af46 -Author: Barnaby Court -Date: Fri Aug 24 08:29:33 2018 -0400 - - HHH-12927 - Immutable warning issued if immutable entities are referenced but not changed during update - -commit 361587c8584d0977308d667795ccfdab39b9313c -Author: Vlad Mihalcea -Date: Mon Sep 3 10:25:49 2018 +0300 - - HHH-12943 - SQL Server UNIQUEIDENTIFIER type uses an uppercase UUID String representation - -commit 4c5ab83756112a68d7b0089b0875d55877179a5c -Author: Guillaume Smet -Date: Mon Aug 27 17:41:57 2018 +0200 - - HHH-12932 Execute ByteBuddy code requiring privileges inside a privileged block - -commit d195ce03bc0a111afcb36dbdd5fd07eb45808c72 -Author: Guillaume Smet -Date: Tue Aug 28 17:34:32 2018 +0200 - - HHH-12931 Revert "HHH-12542 - Add necessary privileged action blocks for SecurityManager used on WildFly." - - This reverts commit 15a59a1a19f0d5272518cd1fd173543adc2a678d. - -commit fb54090329e7cdfcadd0576ee24dbcdca651367d -Author: Sanne Grinovero -Date: Fri Aug 17 12:59:34 2018 +0100 - - HHH-12919 Interning of strings for EntityReferenceAliases - -commit 096b436f3dd1bb2b3daf16bf3e82812bebde232c -Author: Sanne Grinovero -Date: Fri Aug 17 12:41:08 2018 +0100 - - HHH-12918 Interning of strings for Formula and Column exctraction templates - -commit 4fa04913411c839ffc3ef0337187c5b1dbe6800c -Author: Sanne Grinovero -Date: Fri Aug 17 12:26:29 2018 +0100 - - HHH-12917 Interning of strings for Filter definitions - -commit 6911efdfb71beff3a30162b663c308dbacca7c76 -Author: Carlos Aristu -Date: Wed Aug 22 14:24:49 2018 +0200 - - HHH-12921 - Hibernate Connection Pool Validation Thread should be defined as a daemon Thread - HHH-12922 - Hibernate Connection Pool Validation Thread should have a name - -commit 9f1fde71279afa1ddac1f006cc0eede29d9837c7 -Author: Vlad Mihalcea -Date: Tue Aug 21 17:45:58 2018 +0300 - - HHH-12915 - Concurrency issue within org.hibernate.internal.SessionFactoryImpl - -commit 710662200b0c88ab064e71c5ff98504a0e7be37e -Author: Sanne Grinovero -Date: Wed Aug 15 17:56:12 2018 +0100 - - HHH-12914 Avoid need to create a Proxy to implement org.hibernate.engine.jdbc.BlobProxy - -commit 7ee3001565c9e5d56078aa97347fb86f1874a128 -Author: Dmitry Matveev -Date: Wed Aug 15 18:07:02 2018 +0300 - - Fix a typo in a variable name - -commit fc667eca2d069ac2abe8bfb2414c35200fc6dbf6 -Author: Vlad Mihalcea -Date: Wed Aug 15 13:54:26 2018 +0300 - - HHH-12532 - JPA Native Query with ordinal parameter not working - - Add test to prove the issue does not replicate - -commit 7059146c2598ea5d805f42fb93597cef0e71d995 -Author: Guillaume Smet -Date: Tue Aug 14 17:01:21 2018 +0200 - - Fix the previous commit to reference #getMaxResults() - -commit be745cef98b3567ca7ffcac6fac3820669e6fceb -Author: Sande Gilda -Date: Tue Aug 14 10:47:29 2018 -0400 - - Fix Javadocs comments for Query.getHibernateMaxResults() method - -commit f7b75e4c62b37f48282a48386e3738795056b34f -Author: Sanne Grinovero -Date: Tue Aug 14 10:33:11 2018 +0100 - - HHH-12911 Removing unused field from org.hibernate.mapping.Collection - -commit 770ae50e8b9b84d5e64be3b7f6db78918588cba9 -Author: Gail Badner -Date: Mon Aug 13 23:26:37 2018 -0700 - - HHH-12875 HHH-12882 : Drop tables in proper order in test setup methods - -commit a5fa213658b393aa9f671779f5ca1518b40bf54a -Author: Gail Badner -Date: Mon Aug 13 21:49:45 2018 -0700 - - HHH-12875 : Remove "where" clause for Top used by MultiTableTest; - After HHH-12875 is fixed, the "where" clause causes - MultiTableTest to fail due to HHH-12016 - -commit a3cecf3411c09ccea598fac7761c0a54d39d7993 -Author: Gail Badner -Date: Mon Aug 6 22:25:21 2018 -0700 - - HHH-12875 : Add comments to clarify how Collection#setWhere and #setManyToManyWhere are used - -commit 27937e56278037fc4e7d0044cd87cc2b2a7c8e10 -Author: Gail Badner -Date: Fri Aug 3 01:25:34 2018 -0700 - - HHH-12875 HHH-12882 : Class level where="..." clause hbm.xml mappings is not enforced on collections of that class; add parentheses when where clauses get combined in a conjunction (hbm and annotations) - - HHH-12882 : correct assertions in ParentChildTest - -commit cdf5e45514e348f6eae196e3abe23ac60d899fd7 -Author: Gail Badner -Date: Fri Aug 3 01:22:48 2018 -0700 - - HHH-12875 HHH-12882 : test cases - -commit 10826d8f3aa6b4136f798771034f4c1ee832ddd8 -Author: Gail Badner -Date: Wed Aug 1 15:01:25 2018 -0700 - - HHH-12875 : Class level where="..." clause in hbm.xml mappings is not enforced on collections of that class - -commit eef897487733c18fc96d7f534e0c97fb19aadd7c -Author: Gail Badner -Date: Wed Aug 1 14:57:51 2018 -0700 - - HHH-12875 : test cases - -commit 8e6fcce523698018a1e9952a8cf3a78485458ac7 -Author: Guillaume Smet -Date: Tue Aug 14 00:41:44 2018 +0200 - - HHH-12905 Improve the error message and update the tests accordingly - - Also fix a loose end in the MySQL test: at least with MariaDB, using - a bit(1) as datatype for boolean does not work: it always return true - even if you set it to 0. Using either boolean or tinyint(1) solves - the issue. - - As I'm not sure older versions of MySQL supports a real boolean type I - used a tinyint(1). - -commit cac2cd057b6815cdbd5fb9e7ce7be59d62b51925 -Author: Guillaume Smet -Date: Tue Aug 14 00:33:55 2018 +0200 - - Uncomment MariaDB dialect in gradle/databases.gradle - - I don't know why it has been commmented out but it prevents from running - the tests with -Pdb=mariadb as no dialect is defined. - -commit 764b1826bbdf08b2b808c429feacafe51c4eb545 -Author: Guillaume Smet -Date: Mon Aug 13 18:43:25 2018 +0200 - - HHH-12905 Fix error message tested in MySQL and PostgreSQL tests - -commit cc1ffbaaa066df990d34aea6cb4ae59f3bbfbaf4 -Author: Roland Kurucz -Date: Sat Aug 11 20:27:51 2018 +0200 - - HHH-12905 - Bind value [null] was not of specified type in StoredProcedureQuery - -commit 4a4ecc434b8cbc65496b29f109d2f69413007130 -Author: Sanne Grinovero -Date: Fri Aug 10 20:32:25 2018 +0100 - - HHH-12904 Removing some dead code in InFlightMetadataCollectorImpl and MetadataImpl - -commit 35b4d81cf4338b30f9fbf0ab991c45dc9f321977 -Author: Vlad Mihalcea -Date: Mon Aug 13 17:41:18 2018 +0300 - - HHH-12892 - Fix spelling issues in the User Guide - -commit 954dd20be03f44a91a2c562de9e84bbad7159e40 -Author: Guillaume Smet -Date: Mon Aug 13 17:31:47 2018 +0200 - - HHH-12909 Upgrade ByteBuddy to 1.8.17 - -commit 34f58e91c6fae370dc3d546aaaab254c0ebe6fba -Author: Guillaume Smet -Date: Mon Aug 13 13:17:25 2018 +0200 - - HHH-12907 Avoid creating too many ByteBuddy objects - - This commit should reduce the garbage collection pressure as reported at - https://github.com/raphw/byte-buddy/issues/515. - -commit a934a03a20feef3508992ef133f2320d98bdd436 -Author: Guillaume Smet -Date: Mon Aug 13 11:48:39 2018 +0200 - - HHH-12906 Add tests - -commit 37d430df5e887477970247df74771e4610a4173d -Author: Florian Beaufumé <> -Date: Mon Aug 13 11:07:10 2018 +0200 - - HHH-12906 Used the correct attribute in getAllCollectionRoles() - -commit 0ab6c1178b0e09ad2f1065f4bc8bef46a49f6ae1 -Author: Fernando Guardiola -Date: Mon Jul 9 16:01:23 2018 +0200 - - HHH-12770 - Document @NotFound(action = NotFoundAction.IGNORE) and FetchType.LAZY behavior - -commit 6c5e1726093a5347551b61d9e84ae9dd9f08ece6 -Author: Vlad Mihalcea -Date: Wed Aug 8 13:29:16 2018 +0300 - - HHH-12892 - Fix spelling issues in the User Guide - -commit c55f3def031d3bf544dbe987420d83f97bdfcc0c -Author: Guillaume Smet -Date: Sun Aug 12 17:17:16 2018 +0200 - - HHH-12903 Add the column names to the proper @Column annotations - -commit 421fc53a8d0198aad2a19938f0b8e8ce6f530ed6 -Author: Chris Cranford -Date: Fri Aug 10 13:33:08 2018 -0400 - - HHH-12903 - Fix CommitFlushCollectionTest failing on Oracle. - -commit 89f954a5754f5f0121f6610e539a69c241304e08 -Author: Guillaume Smet -Date: Fri Aug 10 17:00:15 2018 +0200 - - Fix a typo - -commit 8dab6974ef266434d3cc0a8aff780f521097427f -Author: Chris Cranford -Date: Fri Aug 10 10:46:53 2018 -0400 - - HHH-12903 - Fix CommitFlushCollectionTest failing on Oracle. - -commit 430e3bf5655ca4597e1413ba31c9a61c2ef8f291 -Author: Sanne Grinovero -Date: Fri Aug 10 11:07:13 2018 +0100 - - HHH-12884 After upgrade to Gradle 4.9, also update the matching wrapper configuration - -commit 32906e214c94260dcc0791f769b8e1612149e644 -Author: Andrea Boriero -Date: Thu Aug 9 11:44:16 2018 +0100 - - HHH-12899 Enable integration tests for MS SQL Server on the AWS build slaves - -commit cd8b754494617e722097d3612f9bdde7a17710aa -Author: Sanne Grinovero -Date: Thu Aug 9 12:33:41 2018 +0100 - - HHH-12901 Enable loading of additional JDBC drivers from a local path, rename the Oracle dependency - -commit 20c6f15af25a5ab6f34d110c85f975a2333a77f4 -Author: Guillaume Smet -Date: Wed Aug 8 16:21:25 2018 +0200 - - HHH-10782 Add a comment about what clearing the query plan cache means - -commit 3c5a82bf7c2e8dea38545cb6c7d51d9632827090 -Author: Sanne Grinovero -Date: Thu Aug 9 11:34:31 2018 +0100 - - HHH-12898 Enable integration tests for Oracle Standard Edition Two 12.1.0.2.v12 on the AWS build slaves - -commit ea859736c2f847ed8396ff105308210ec4e39097 -Author: Guillaume Smet -Date: Wed Aug 8 16:22:18 2018 +0200 - - HHH-12896 Minor memory improvements in HQLQueryPlan - -commit fa5f592fb98512a8339f83a80bef8d9b305075a1 -Author: Sanne Grinovero -Date: Wed Aug 8 10:57:04 2018 +0100 - - HHH-12894 Simplify code of StandardSessionFactoryServiceInitiators - -commit 8a8685d98e7cfd45b125b8a2a34762eec014003b -Author: Sanne Grinovero -Date: Fri Aug 3 15:15:06 2018 +0100 - - HHH-12884 Upgrade to Gradle 4.9 - -commit 870a033a5226a78b7c47487f06b7fad9b0770c3e -Author: Vlad Mihalcea -Date: Mon Jul 30 15:11:46 2018 +0300 - - HHH-12361 - In the User Guide, omit constructors and equals/hashCode for brevity - -commit 8bd79b29cfa7b2d539a746dc356d60b66e1e596b -Author: Chris Cranford -Date: Tue Aug 7 09:30:38 2018 -0400 - - HHH-12871 - Fix test that uses dynamic-map entities which failed. - -commit b9e0449602fdfa490fdcf666b6f5c4ccf2832c34 -Author: Chris Cranford -Date: Tue Aug 7 09:29:00 2018 -0400 - - HHH-12871 - Fix metamodel to properly exclude dynamic-map based types when using ignoreUnsupported. - -commit 6a594712dbbc7cac8394c95ccb8a19a5ec760189 -Author: Chris Cranford -Date: Tue Aug 7 09:27:00 2018 -0400 - - HHH-12871 - Added test cases. - -commit d26eeabbeae425846e41b95b94713e5edd99b54e -Author: Emmanuel Bernard -Date: Tue Aug 7 16:22:22 2018 +0200 - - HHH-12890 Fix link to JPA metamodel generator documentation - -commit c1603f30c7407e071f23bbd2cd8c1273d5434998 -Author: Sanne Grinovero -Date: Mon Aug 6 22:40:50 2018 +0100 - - HHH-12887 Remove direct dependency on ASM - -commit b66df9a3521230ab8d7a1e04fea225ac2ca46f36 -Author: Guillaume Smet -Date: Wed Aug 1 17:37:29 2018 +0200 - - HHH-12196 Implement a naive limit handler for Sybase - - It doesn't manage all the corner cases but it should be safe enough as - only triggered in the simple cases. - -commit 5d965f8e15868bf014e724bf4d3a709df21caee3 -Author: Guillaume Smet -Date: Fri Aug 3 15:27:02 2018 +0200 - - HHH-12883 Fix NaturalIdDereferenceTest with Sybase - - With Sybase (and maybe others), the cross join operator is ", " so - only counting the " join " occurrences does not work. - -commit 8178d76ca50a1b87de451ba8cb57a3ad059fb4a7 -Author: Chris Cranford -Date: Thu Aug 2 11:05:12 2018 -0400 - - HHH-12834 - Disable test which fails on Sybase. - -commit 07e21cf66ebcb7f08f2cb8acefc96075c64896b5 -Author: Guillaume Smet -Date: Thu Aug 2 14:31:53 2018 +0200 - - HHH-12880 LockModeTest hangs indefinitely with Sybase due to HHH-12847 - -commit c108f48674e87bd5577468992b65c7afc877e418 -Author: Sanne Grinovero -Date: Wed Aug 1 19:09:56 2018 +0100 - - HHH-12879 Remove unnecessary constants in StandardDialectResolver - -commit 719e5d0c12a6ef709bee907b8b651d27b8b08a6a -Author: Guillaume Smet -Date: Mon Jul 23 17:10:22 2018 +0200 - - HHH-12847 Consider LockOptions for getting the LockMode - - Otherwise, it leads to null pointer exceptions. - -commit 0e2657d0bb1956061d574ecbdb1cc41b50ed4642 -Author: Guillaume Smet -Date: Thu Aug 2 00:00:29 2018 +0200 - - HHH-12877 Upgrade ByteBuddy to 1.8.15 - -commit 6a3ed33627fb37185e4646ed49aed1a07ec33cb9 -Author: Guillaume Smet -Date: Thu Jul 26 13:14:09 2018 +0200 - - HHH-12857 Reuse the TypePool created in EnhancerImpl - -commit dff202ded9efc06fb5904d31562e8b8b4e20c98b -Author: Guillaume Smet -Date: Wed Jul 25 15:44:13 2018 +0200 - - HHH-12857 Rewrite getDeclaredMethod() calls in static initializers - - We rewrite them to run them as privileged blocks. - -commit d95b36ffb6cea2337d6a0280c86d82912ae585c8 -Author: Guillaume Smet -Date: Wed Jul 25 11:53:32 2018 +0200 - - HHH-12857 Avoid using a static ByteBuddy object - - In the end, it does not change anything as the BytecodeProvider is still - static but it helps as a general cleanup for the following commits. - -commit 349bd2649c0859e63234aa3a4e4046abe5357172 -Author: Guillaume Smet -Date: Wed Aug 1 16:07:49 2018 +0200 - - HHH-12835 In the end, remove the assertion - - It's not really compatible with batch loading, padding and a couple of - other corner cases. - - And I don't think it has a lot of value by itself. - -commit 725da274fd7f65138f3f5d3ffc209c2ae447fdb8 -Author: Andrea Boriero -Date: Wed Aug 1 11:37:00 2018 +0100 - - HHH-12849 - QuotedIdentifierTest fails with ORA-04043 on Oracle12c - -commit fa77c29b3a685fe593fe9f45bf3be61ea0baad7a -Author: Guillaume Smet -Date: Tue Jul 31 16:37:35 2018 +0200 - - HHH-12869 Do not check the cacheManager is not null when creating it - -commit bee200a84cd7d5e23494d64af3ccf2e73d8c252a -Author: Guillaume Smet -Date: Tue Jul 31 17:11:24 2018 +0200 - - HHH-12835 Fix an incorrect assertion in BatchFetchQueueHelper - -commit d85831f5435a804e4a3654b9ced9c81c9b2f3222 -Author: Guillaume Smet -Date: Tue Jul 31 17:55:32 2018 +0200 - - HHH-12848 Restore the original Oracle LimitHandler - - Oracle does not support using the SQL 2008 standard limit handler with - FOR UPDATE clauses. Thus we need to get back to the old limit handler. - -commit e84aae23f0174859f492897c8f191646c01f5025 -Author: Guillaume Smet -Date: Tue Jul 31 18:34:27 2018 +0200 - - HHH-10603 Avoid doing distinct and comparisons on byte arrays - - They are stored as blobs starting with Oracle12cDialect and distinct and - comparisons on blobs are not supported. - - Some tests were adapted, some are now skipped with Oracle12cDialect. - -commit f43f668fb88578d1e16cd09e0f42d86c1e7d55fa -Author: Guillaume Smet -Date: Fri Jul 27 20:43:32 2018 +0200 - - HHH-12730 Remove the deprecated methods previouly added - - We don't need them as everything is now dealt with the transformer. - -commit 0ada11863545603a75a3c615579108bf0dc496db -Author: Guillaume Smet -Date: Fri Jul 27 18:31:50 2018 +0200 - - HHH-12730 Add missing @Overrides - -commit 6d7f7878e1ead4d42ee4224bdbab79ab2cef9def -Author: Guillaume Smet -Date: Wed Jul 25 18:08:24 2018 +0200 - - HHH-12730 Add deprecated constructors taking a SessionImplementor - -commit 19388972dce008b35b6cd9eeb3ce5762aeebd942 -Author: Gail Badner -Date: Tue Jul 10 23:47:29 2018 -0700 - - HHH-12730 : User types built using 5.1 are not binary compatible with 5.3 - -commit d30e461fa186c07173fd4408b1733d6af1a896d9 -Author: Guillaume Smet -Date: Mon Jul 30 12:45:57 2018 +0200 - - HHH-12868 Fix NPE when loading entity with CacheConcurrencyStrategy.NONE - -commit d67278a6d279ea1f2c6d674528da2c642a63410a -Author: Sanne Grinovero -Date: Mon Jul 30 14:17:43 2018 +0100 - - HHH-12872 Reduce memory consumption of XSD schema validations - -commit 7da105be0ab0a217f955858baaaec7940db4315f -Author: Andrea Boriero -Date: Thu Jul 26 15:20:05 2018 +0100 - - HHH-12861 SchemaUpdate doesn't work with Sybase - -commit dc42deafcb5267034f94b685a82f530d9c30a0af -Author: Yoann Rodière -Date: Wed Jul 18 18:39:39 2018 +0200 - - HHH-12492 Qualify references to columns from the target table in subqueries in DELETE/UPDATE queries - - Don't try to duplicate the logic from - org.hibernate.hql.internal.ast.tree.FromElementType#toColumns(java.lang.String, java.lang.String, boolean, boolean) - in other classes, it's complex enough and already seems to handle all - the cases we might encounter. - - In this specific case, we want the table name to be used to qualify - column names, because the target table doesn't have any alias (it's not - supported by every version of every RDBMS), and not qualifying columns - at all may lead to a confusing statement, in particular if tables - referenced in the subquery contain columns with the same name. - Since we use aliases for every other table in the query, referencing the - table should not lead to any conflict. - -commit 48f59e891fa0186bd8d2bd0e4b4ca5cdbf5bc3a0 -Author: Yoann Rodière -Date: Wed Jul 18 16:56:08 2018 +0200 - - HHH-12492 Test HQL Delete query with a subquery referencing the parent query's aliases - -commit 036ea775dadcf812c1b4d66b1b899f4d0fde5fb3 -Author: Martin Simka -Date: Fri Jul 27 10:24:45 2018 +0200 - - HHH-12863 SchemaUpdateTest should be skipped with Sybase - -commit ea77c1fb4b65905622e2ab74211c232e6dcac9b2 -Author: Jan-Willem Gmelig Meyling -Date: Wed Jul 4 10:50:16 2018 +0200 - - HHH-12775 - Avoid join on natural id property access - -commit b94b12614106ce78edb1c9c126e9fcd8393390cb -Author: Alvaro Esteban Pedraza -Date: Fri Jul 20 19:44:46 2018 -0300 - - HHH-12763 - Log which JtaPlatform implementation is used at startup on info level - -commit 5164d8b5b3140b4770b3c0cc3b6c617c04827277 -Author: Sanne Grinovero -Date: Thu Jul 19 22:09:31 2018 +0100 - - HHH-12841 DriverManagerConnectionProviderImpl: implement lazy Thread starting and fix visibility guarantees - -commit 8be7aaf1bea986e1349dea8ec6126fad005618db -Author: Martin Simka -Date: Mon Jul 23 16:16:38 2018 +0200 - - HHH-12851 ConverterTest fails with SQL Server depending on collation - -commit 333c190c826e1ad4058b85b6d98b8566b6c5fc36 -Author: Chris Cranford -Date: Mon Jul 23 10:33:51 2018 -0400 - - HHH-12846 - Merge cascade of collection fails when orphan removal enabled with flush mode commit. - -commit 2cd4608f9f110d96229f84ffcd8786c120415a3d -Author: Karel Maesen -Date: Mon May 21 15:03:18 2018 +0200 - - HHH-12608 Support for ST_Dwithin() in DB2 - -commit 89844c50de6e0f2e04ad77e3660b42570a34231b -Author: Martin Simka -Date: Fri Jul 20 13:54:24 2018 +0200 - - HHH-12844 Fix HbmWithIdentityTest with Oracle - -commit c03cb7c2c828af9712ecbf30b4ef41bcec13cb80 -Author: Martin Simka -Date: Fri Jul 20 13:11:27 2018 +0200 - - HHH-12843 Fix CreateDeleteTest and FlushIdGenTest with Oracle - -commit 628b23faaa45d8d1c2072c85898b00fd1e2289ea -Author: Sanne Grinovero -Date: Wed Jul 18 12:53:00 2018 +0100 - - HHH-12840 Simplify implementation of LocalObjectUuidHelper - -commit d08cc00628331d8b8feb4e99982a6618af0e5474 -Author: Martin Simka -Date: Fri Jul 20 10:37:05 2018 +0200 - - HHH-12839 Fix EntityProxySerializationTest with Oracle - -commit 5d350f19b417f948d912a788ea3b268a01dfee50 -Author: Guillaume Smet -Date: Fri Jul 20 11:27:32 2018 +0200 - - HHH-7404 HHH-6776 Add tests to prevent regressions - - The issues have apparently already been fixed but let's add the tests - present in the issue to prevent regressions. - -commit cae8c12bbc454a1e6625b55611002a64d1c39ba0 -Author: Guillaume Smet -Date: Fri Jul 20 11:26:25 2018 +0200 - - HHH-12666 Only run the tests with H2 - - We don't need to run them with all our dialects: we just need to check - the mechanism works correctly. - - At least TransactionExceptionHandlingTest fails with MariaDB so better - be safe. - -commit 9fde3e08f0de9c27cafa3e2ef90baad7ffa7b396 -Author: Guillaume Smet -Date: Fri Jul 20 10:37:06 2018 +0200 - - HHH-12832 Make SchemaUpdateHaltOnErrorTest use the CustomRunner - - Otherwise @SkipForDialect doesn't work. - -commit 188760250a90f834cb3c71b61e82838bd54973cb -Author: Martin Simka -Date: Fri Jul 20 09:38:51 2018 +0200 - - HHH-12838 Fix AndNationalizedTests with DB2 - - This is consecutive to the changes made in HHH-12753. - -commit 44ecb96e2d74fc60d1f9adf00f23ba6b9730b485 -Author: Gail Badner -Date: Thu Jul 19 23:13:29 2018 -0700 - - HHH-12666 : Add test - -commit a7900969657302950b1663996dcda3e70d191447 -Author: Gail Badner -Date: Thu Jul 19 17:52:31 2018 -0700 - - HHH-12666 : Add documentation - -commit 9bb9e4bc38f97f85f9b16d367e6b27e5c35de8ef -Author: Gail Badner -Date: Thu Jul 19 01:05:17 2018 -0700 - - HHH-12666 : Added more tests - -commit 88fb16e5c92c360b2663c60093078639e881b2fd -Author: Yoann Rodière -Date: Wed Jul 18 13:18:29 2018 +0200 - - HHH-12666 Test the current behavior of exception conversion on persist/save/merge/flush/etc. - - Original tests by Gail Badner: - https://github.com/gbadner/hibernate-core/commit/09aa6fbce2a9ba4fb82b6ce1075fd68fb09db510 - -commit 8ef0ca9a13f4f46db1051bb6d808207e5807e5dd -Author: Gail Badner -Date: Wed Jul 18 21:11:25 2018 -0700 - - HHH-12666 : Add an option for restoring 5.1 native exception handling - -commit 9286f9147b06eb64d6089b36b297578f8be96ec7 -Author: Martin Simka -Date: Thu Jul 19 15:39:02 2018 +0200 - - HHH-12833 Fix UniqueConstraintDropTest with DB2 - -commit ad5f96c613385c6d24f844563f66c63693164a50 -Author: Chris Cranford -Date: Thu Jul 19 10:01:16 2018 -0400 - - HHH-12753 - Remove an override that was not relevant to this jira. - -commit 005d5b7c748c4c03afddae43a6fc2299869ab0f9 -Author: Chris Cranford -Date: Thu Jul 19 09:54:02 2018 -0400 - - HHH-12753 - Fix Nationalized CLOB test failures on DB2. - Force column read/write to use non-nationalized driver methods since the driver does - not implement the nationalized equivalents. - -commit c17a83cc0df2bf1cb79d9495dfc83f0d8ffba819 -Author: nikowitt -Date: Thu Jul 19 12:15:31 2018 +0200 - - HHH-12830 Improve error message when a method is called in a non active - transaction - -commit cc600abf38afed99b4e9ce6f123f2e0582d6002a -Author: Guillaume Smet -Date: Thu Jul 19 13:55:58 2018 +0200 - - HHH-12832 Skip SchemaUpdateHaltOnErrorTest and al. with DB2 - - DB2 has no issue with reserved keywords in the CREATE TABLE clause so - let's skip these tests. - - There is very little value to test them for every dialect anyway. - -commit 2d318b76b2bd311b5e6385ca44c5a366ca612e6d -Author: Guillaume Smet -Date: Thu Jul 19 13:44:07 2018 +0200 - - HHH-12822 Skip "case when" tests requiring casts for DB2 - -commit de4c356189ec3747124e9b4fd81dd37ce1d8a21d -Author: Guillaume Smet -Date: Thu Jul 19 13:31:37 2018 +0200 - - HHH-12827 Define a numeric type as decimal for DB2 - - DB2 converts the numeric type to decimal and returns Types.DECIMAL for a - numeric. We change the type name used so that we have a match when - comparing the type names as last resort. - -commit 19d31ea94d7c8704ef6f2dd4465764ad48f93942 -Author: Guillaume Smet -Date: Thu Jul 19 13:26:52 2018 +0200 - - HHH-12815 Remove the zeroDateTimeBehavior option - - It's useless for this test and it causes compatibility issues. - -commit f8964847dd40f64e1f478eba47c767be98742125 -Author: Guillaume Smet -Date: Thu Jul 19 10:21:56 2018 +0200 - - HHH-12829 Update the Ehcache documentation to use the new short names - -commit 51c67310f7c3b491a6135af4790e702688dcde3b -Author: Guillaume Smet -Date: Thu Jul 12 19:03:04 2018 +0200 - - HHH-12791 Cache the Component type to avoid generating one proxy per call - - While Javassist only generates one proxy as the name is stable, - ByteBuddy uses random names and thus generates a new proxy for every - call, leading to the generation of 18 different proxies for the other - test of the test class. - - We can't do better than using a volatile/synchronized pattern as the - Component is not fully initialized in the constructor. - - Maybe we could take the risk of admitting that the getType() method is - called at least once before we pass the element to a multi-threaded - environment but that's a bet I don't want to take alone. - -commit ac11b7fd8cd8e44ac6bfec6dabac9b1ac3bba084 -Author: Guillaume Smet -Date: Thu Jul 19 09:57:57 2018 +0200 - - HHH-12828 Make ScannerTests more stable - - In a shared containerized environment like Travis, it's not obvious that - the second read will be faster than the first one. - - And indeed, the test often fails. - - There's no real value in testing that, we are just testing I/O, and the OS - cache. - -commit 3fe7d6e13ed6da80327cb9b145e0b5176fd3603a -Author: Chris Cranford -Date: Wed Jul 18 18:08:55 2018 -0400 - - HHH-12826 - Persist cascade of collection fails when orphan removal enabled with flush mode commit. - -commit 3d93073b83ce66b2cd76a3ab674eb2d26636ba2a -Author: Chris Cranford -Date: Wed Jul 18 18:06:58 2018 -0400 - - HHH-12826 - Added test case. - -commit 15a59a1a19f0d5272518cd1fd173543adc2a678d -Author: Chris Cranford -Date: Wed Jul 11 13:01:51 2018 -0400 - - HHH-12542 - Add necessary privileged action blocks for SecurityManager used on WildFly. - -commit 8df12b7d0a1b2597277488f57221dc108d3d3641 -Author: Martin Simka -Date: Wed Jul 18 15:45:17 2018 +0200 - - HHH-12825 CriteriaHQLAlignmentTest.testCountReturnValues fails on databases that don't support tuple distinct counts because it expects wrong exception - -commit 3f468facd0d54f5fe0a919de396c11d20d3951cf -Author: Martin Simka -Date: Wed Jul 18 14:57:00 2018 +0200 - - HHH-12824 ASTParserLoadingTest.testComponentNullnessChecks fails with DB2 because it uses legacy-style query parameter - -commit 393129fd1d0c05cf953a1b28f87c0a8b5553b445 -Author: Martin Simka -Date: Wed Jul 18 13:37:09 2018 +0200 - - HHH-12823 CompositeIdTest.testDistinctCountOfEntityWithCompositeId fails on databases that don't support tuple distinct counts because it expects wrong exception - - The SQLGrammarException is now wrapped in a PersistenceException, we - should take that into account. - -commit 2fd89dcc1ad04e69b91ad1cfefc068a17cc7a597 -Author: Guillaume Smet -Date: Wed Jul 18 11:40:12 2018 +0200 - - HHH-12820 Initialize the 5.4 migration guide - -commit 2733a3cb09cdb8d9592138ed9eabe49f51eac5c2 -Author: Guillaume Smet -Date: Tue Jul 17 19:33:06 2018 +0200 - - HHH-12816 Enable the experimental features of ByteBuddy when building with JDK 11 - -commit 92f475888962b563c4a0fb716f74ad54d08dec3a -Author: Guillaume Smet -Date: Tue Jul 17 11:56:50 2018 +0200 - - HHH-12718 Add a comment about the true meaning of interceptorHandledDirtyCheck - -commit 7134e8b968937f2fa0c58b47ade68d9b6790955b -Author: Yoann Rodière -Date: Thu Jul 12 16:37:32 2018 +0200 - - HHH-12718 Avoid double negations in DefaultFlushEntityEventListener#dirtyCheck - -commit 74aa03881ad2a031d25ab1c5f663c32c8d08ec3a -Author: Yoann Rodière -Date: Thu Jul 12 16:32:54 2018 +0200 - - HHH-12718 Compute dirtiness using whatever method is appropriate after a flush event interception - - We used to have a simpler version of the dirtyCheck() method after an - interception, but that's not enough. - -commit a9f743069b5e38e59645bf291c816f77d99018a1 -Author: Yoann Rodière -Date: Thu Jul 12 16:27:58 2018 +0200 - - HHH-12718 Test that dirtiness strategies are invoked a second time after a flush interceptor changes the entity state - - Bytecode enhancement is harder to test, so I didn't add a test for that, - but since bytecode enhancement dirty checking is called exactly at the - same place, if one works, the other should, too. - -commit c3c322d91b6fbbafc69b1364de8603927b046f43 -Author: Ulrich Bestfleisch -Date: Thu Jun 21 14:45:44 2018 +0200 - - HHH-12718 - Entity changes in @PreUpdate callback are not persisted when lazy loading is active for more than one field - -commit 523b29af0481b19b3b477eafbe04b854f7fc60da -Author: Yoann Rodière -Date: Thu Jul 12 10:45:48 2018 +0200 - - HHH-12795 Remove duplicate code from SessionImpl - - SessionImpl.initQueryFromNamedDefinition calls its super implementation - AbstractSharedSessionContract.initQueryFromNamedDefinition, which - already does a lot of the work performed in - SessionImpl.initQueryFromNamedDefinition. - The only difference is that SessionImpl uses hints to set values on the - query, whereas AbstractSharedSessionContract uses direct calls to - setters. But that should produce the same result, since setHint() just - delegates to the setters. - - Only one thing was done in SessionImpl but not in - AbstractSharedSessionContract: lock mode handling. - I left it in SessionImpl since moving it to the superclass would also - affect other subclasses such as StatelessSession or OGM sessions, and I - certainly don't want to change any behavior without further - investigation. - -commit a0e6d86052803bd4eae7c8abc968e7a92954c66f -Author: Yoann Rodière -Date: Thu Jul 12 09:43:09 2018 +0200 - - HHH-12795 Test the flushMode attribute of @NamedQuery and @NamedNativeQuery - -commit a9fdc1239a3a6cdacc86317f31158324fa6a3149 -Author: Yoann Rodière -Date: Thu Jul 12 09:44:46 2018 +0200 - - HHH-12795 Use the exact flush mode specified in @NamedQuery/@NamedNativeQuery when instantiating named queries - - ... instead of using an approximation in terms of JPA flush mode. - -commit fa02d1c65ff39206746e5bf3b780733a625cc387 -Author: Guillaume Smet -Date: Sun Jul 15 15:06:27 2018 +0200 - - HHH-12811 Add @Target annotations to @CreationTimestamp and @UpdateTimestamp - -commit 208e789bb107503a5df7a62531570ececaa4c0ed -Author: Guillaume Smet -Date: Thu Jul 12 18:51:06 2018 +0200 - - HHH-12786 Improve the basic proxy interceptor - - Apart from cosmetic changes, we were testing in the equals() method that the - instance == the proxied object which will always be true. - - We should use the argument of the equals() method instead to do the - comparison. - - And we can do the comparison on the instance, instead of requiring - passing the proxiedObject into the interceptor. - -commit f722db367ec3631a269188ba8e5952a3d6ef5f02 -Author: Guillaume Smet -Date: Thu Jul 12 18:44:29 2018 +0200 - - HHH-12786 Only define the default constructor - - We don't need the others, better not create them in the proxy. - -commit ed53fd534615e5c75a3937f6947d1387e57d7b91 -Author: Guillaume Smet -Date: Thu Jul 12 18:43:19 2018 +0200 - - HHH-12786 Allow to call methods when the interceptor is not set yet - - Typically, if the constructor calls instrumented methods, the - interceptor is not defined yet and we get a NPE. - -commit 3759f776ab85fb7e4a8b7860810c6279afe6ec4a -Author: Guillaume Smet -Date: Thu Jul 12 15:46:43 2018 +0200 - - HHH-12786 Properly indent the Bytebuddy DSL - - It helps to understand what exactly these calls do. - -commit 6e85dd82f326a9a4bc9fd97c611d91cba25c50b2 -Author: Guillaume Smet -Date: Sun Jul 15 15:03:40 2018 +0200 - - HHH-12807 Force to execute the release task with JDK 8 - - Considering hibernate-orm-modules tests are disabled with JDK 11, it's - safer to prevent us from running a release with it. And all in all, we'd - better release with JDK 8. - -commit 4d057eab2f2dd0ad6c5e3b4aaf458b95e07153c2 -Author: Guillaume Smet -Date: Sun Jul 15 15:02:50 2018 +0200 - - HHH-12813 Disable Asciidoclet in Javadoc generation - - We don't have the certainty that we don't use Asciidoctor Javadoc but - using Asciidoclet leads to malformed Javadoc if we are using HTML - Javadoc, which concerns the high majority of our files. - -commit 2b564d4046c435d97eb26f25b75f7ffa83e1415d -Author: Guillaume Smet -Date: Sat Jul 14 13:42:12 2018 +0200 - - HHH-12809 Use an HTTP link for the Javadoc link to our Bean Validation documentation - -commit 02da69d50aad95418e7bd82901016adb69290a9c -Author: Guillaume Smet -Date: Sat Jul 14 13:39:03 2018 +0200 - - HHH-12808 Upgrade Gradle to 4.8.1 - -commit 3577e8540fbc6d1b96d62a7ed1f3170d36068eb1 -Author: Guillaume Smet -Date: Sat Jul 14 13:34:52 2018 +0200 - - HHH-12807 Disable the hibernate-orm-modules tests for JDK 11 - -commit 3abb6805b66fa5e3d42202bea001a04131a4279d -Author: Guillaume Smet -Date: Sat Jul 14 11:59:53 2018 +0200 - - HHH-12805 Upgrade Mockito to 2.19.1 - -commit f274db28f632249e856d2ff6fd0b3f4dde1443d2 -Author: Guillaume Smet -Date: Sat Jul 14 11:45:56 2018 +0200 - - HHH-12804 Don't mock Map in CollectionBinderTest - - Apparently, Mockito + ByteBuddy are unable to mock Map on JDK 11. - - It might be solved in the future but there's no point in doing it so - let's avoid it. - -commit 972a79d4487c696506f327fc310d52634d741672 -Author: Guillaume Smet -Date: Sat Jul 14 11:43:28 2018 +0200 - - HHH-12803 Upgrade ByteBuddy to 1.8.13 - -commit 99b4f3c24a61ffdaeb43e024c1a699c4f7004b67 -Author: Guillaume Smet -Date: Fri Jul 13 14:39:01 2018 +0200 - - HHH-12801 Adjust the assertion to the new message generated by JDK 11 - -commit 5ec70ec22e37339d7fcb2c53d7a94a8f6387a78a -Author: Guillaume Smet -Date: Fri Jul 13 14:31:04 2018 +0200 - - HHH-12800 Use a class loading strategy suitable for the JDK used - - The previously chosen strategy used misc.Unsafe which is not possible - anymore with JDK 11. - -commit 9202a5a11d56ca6565963f3f9aa59b92421ec5fb -Author: Gail Badner -Date: Fri Jul 13 15:51:39 2018 -0700 - - HHH-12802 : Fix test case to recover from exception properly - -commit 926ad5a13335ae2b6408c68203bee5198fa8c4d1 -Author: Gail Badner -Date: Fri Jul 13 14:45:11 2018 -0700 - - HHH-12802 : Hibernate does not thrown an exception when more than entity is loaded with the same ID - -commit 2ef777e3fe398ed64bb69eeb48dfaa2d2e121a72 -Author: Gail Badner -Date: Fri Jul 13 14:43:53 2018 -0700 - - HHH-12802 : test case - -commit cf3622f64c9c5f19aaeb4bc9056b154150a76471 -Author: Vlad Mihalcea -Date: Wed Jul 11 13:07:36 2018 +0300 - - HHH-12771 - Caused by: java.lang.UnsupportedOperationException: Cache provider [org.hibernate.cache.ehcache.internal.EhcacheRegionFactory@3271ec2a] does not support `transactional` access - -commit c424583d8e678cb16427624b4905935e38523bc2 -Author: Sanne Grinovero -Date: Thu Jul 12 12:32:01 2018 +0100 - - HHH-12799 Enforce version alignment of Mockito and ByteBuddy dependencies - -commit 5b4f18390ee268cb809ff7dfb5823e456a0c8bbb -Author: Vlad Mihalcea -Date: Wed Jul 11 17:42:05 2018 +0300 - - HHH-12349 - User Guide documentation for @Filter is too verbose - -commit 4405bb5c152ccce9b9b112e6a9818c9e0dd5dfa0 -Author: Jonathan Bregler -Date: Thu Jul 12 12:32:16 2018 +0200 - - HHH-12798: Fix for nested spatial functions on SAP HANA - -commit 414a0dd75d5df62f536be068ace2cf53d27b12e5 -Author: Vlad Mihalcea -Date: Wed Jul 11 18:22:31 2018 +0300 - - HHH-12787 - SessionJdbcBatchTest hangs with DB2 - -commit 0449c1a79c6c34289974eca5668d9df3806f9bb6 -Author: Guillaume Smet -Date: Thu Jul 12 12:10:45 2018 +0200 - - HHH-12793 Fix preexisting indentation issues - -commit 9ebed55dd99673d9735e259a49bbcd1de662a2ee -Author: Guillaume Smet -Date: Thu Jul 12 12:09:35 2018 +0200 - - HHH-12793 Add a comment about why we ignore javax.activation for now - -commit 3d1d1d2d984d68e9d9cdb20e22d4c4a9197aa380 -Author: Fabio Massimo Ercoli -Date: Wed Jul 11 15:41:25 2018 +0200 - - HHH-12793 Upgrade Karaf, pax-exam and reenable the OSGi tests - -commit 535a33ea5de27068d4b63d2474693b9737dd7ce3 -Author: Diego Lovison -Date: Wed Jul 11 16:51:22 2018 -0300 - - HHH-12797 Fix cache modes relationships table layout - -commit 5f03b48edcb8a7e8f896f53e8a84dca67af2ab3b -Author: Galder Zamarreño -Date: Wed Jul 11 17:17:05 2018 +0100 - - HHH-12177 Update relocation of Infinispan provider for 5.3 - -commit 97b77bcde39dcd953170a4556c34ed61c00be1ca -Author: Vlad Mihalcea -Date: Wed Jul 11 18:17:15 2018 +0300 - - HHH-12768 - TimeAndTimestampTest fails with SQL Server and MYSQL - -commit 9035793987db708bc1dc2bdd967c00a2b92c8501 -Author: Guillaume Smet -Date: Wed Jul 11 10:15:03 2018 +0200 - - HHH-12774 Add missing jars to the distribution archives - -commit c063b310b482c4a96e2a9b413903dcb4854186de -Author: Sanne Grinovero -Date: Tue Jul 10 15:52:54 2018 +0100 - - HHH-12789 Upgrade to Mockito 2.19.0 - -commit 335f6232d91f27dae80591f7b3434612db516cfc -Author: Sanne Grinovero -Date: Tue Jul 10 15:51:55 2018 +0100 - - HHH-12788 Enable mockito-inline for the Agroal integration module - -commit 479975dcb3bb52e6b54ae98839d75f0fcaafc752 -Author: Yoann Rodière -Date: Wed Jul 4 09:40:10 2018 +0200 - - HHH-12695 Restore the getType method in ParameterRegistration - - It was removed in 5.3.0.Beta1, but this breaks backward compatibility - with 5.1. - -commit e9b8a80a99d2caee31345ef8943998054ec2e26b -Author: Yoann Rodière -Date: Wed Jul 4 09:36:18 2018 +0200 - - HHH-12695 Rename org.hibernate.query.QueryParameter#getType to getHibernateType - - Because it conflicts with the Class-returning getType method we want to - re-introduce in ParameterRegistration to restore backward compatibility. - -commit 99c0c320bbe45456b9fcb40dcf1deba6fb155f5c -Author: Yoann Rodière -Date: Wed Jul 4 09:32:18 2018 +0200 - - HHH-12695 Add missing @Overrides in subclasses of javax.persistence.Parameter - - Because we are in 2018 and Java 5 is now 14 years old. - -commit 66d123be75665d8c7db5d5fb8121358b751918eb -Author: Yoann Rodière -Date: Wed Jul 4 09:25:20 2018 +0200 - - HHH-12695 Explicitly mark contracts as @Incubating, since a comment in QueryParameter implies they are in fact incubating - - I did not mark ParameterRegistration as incubating, because it's a - pre-existing interface that we can't reasonably consider as incubating. - - It's a bit odd to have a non-incubating contract (ParameterRegistration) - extend an incubating one (ProcedureParameter), though... - -commit c5d97e4e23ed97c871f360152a7f3d6d4139b15f -Author: Guillaume Smet -Date: Tue Jul 10 13:16:32 2018 +0200 - - HHH-12781 Update Javassist dependency to 3.23.1 - -commit d32997a32da780907bc30efb1e23b0f1b87174e4 -Author: Guillaume Smet -Date: Tue Jul 10 13:15:28 2018 +0200 - - HHH-12784 Fix a regression in Javassist support - -commit 579ee65fd3e242e0c92af1e9e08df4696840d394 -Author: Gail Badner -Date: Tue Jul 10 16:24:34 2018 -0700 - - HHH-12740 : Subselect fetching doesn't work when multiLoad was used - -commit 831bff13be5d1d807889815b86ac9d856327bb64 -Author: Robert Rettig -Date: Mon Jul 9 19:54:01 2018 +0200 - - HHH-8805 - [SchemaUpdate] javax.persistence.ForeignKey doesn't respect ConstraintMode.NO_CONSTRAINT - -commit d4477ff5f876170072cedb56072637be10755876 -Author: Yoann Rodière -Date: Thu Jul 5 11:44:55 2018 +0200 - - HHH-7686 Add missing @Overrides in MapProxy - -commit f3e62ea795b8894fa96fc4f3bffd9355f6cba40f -Author: Yoann Rodière -Date: Wed Jul 4 13:05:45 2018 +0200 - - HHH-7686 Allow lazy loading outside of a transaction after dynamic map proxy deserialization if the proper settings were enabled - - In theory, trying to deserialize MapLazyInitializer instances that were - serialized before this patch should still work, although using such - instances (i.e. trying to access any method on the proxy) would still - fail, just like it used to before this patch. - -commit 1522efc0adddcdfb5820d1450b28ba9a36e162eb -Author: Yoann Rodière -Date: Wed Jul 4 13:05:09 2018 +0200 - - HHH-7686 Test dynamic map proxy serialization - -commit 677f3dffba3305dbd18df48d423edffe0f9451dd -Author: Yoann Rodière -Date: Thu Jul 5 09:41:04 2018 +0200 - - HHH-7686 Clarify and test initialization code in the writeReplace() method in proxies - - If we copy the behavior of "traditional" (non-map) proxies to the - "dynamic-map" proxies, we'd better know what this behavior is and be - sure it works correctly. - -commit 415f964a67397cbd6fcc78448072ec677cbd1c43 -Author: Yoann Rodière -Date: Wed Jul 4 16:12:05 2018 +0200 - - HHH-12720 Deprecate a useless constructor in AbstractSerializableProxy - - A no-arg constructor is only necessary for superclasses of serializable - classes that are not themselves serializable. Here the class is - serializable, so the constructor is useless. - -commit 41943fb920989502c99da6960da607faa6f96d2e -Author: Yoann Rodière -Date: Wed Jul 4 13:06:06 2018 +0200 - - HHH-12720 Allow lazy loading outside of a transaction after proxy deserialization if the proper settings were enabled - -commit 4699c73243dc67e2a22c1dd2437a6cf35c581743 -Author: Yoann Rodière -Date: Wed Jul 4 12:29:11 2018 +0200 - - HHH-12720 Test proxy serialization with hibernate.enable_lazy_load_no_trans = true - -commit dcf1f66b8ac82d15c80fdda8c07dabdabc7f494f -Author: Guillaume Smet -Date: Mon Jul 9 13:17:51 2018 +0200 - - HHH-12778 Register the cause when an exception occurs creating a proxy - -commit 8757ee41914ac9447cc97384c28013447aa555ec -Author: Andrea Boriero -Date: Mon Jul 9 09:44:38 2018 +0100 - - HHH-12776 Add test for issue - -commit daef4b7f08f518b075deea61b6a0761da44fb414 -Author: Guillaume Smet -Date: Mon Jul 9 13:27:55 2018 +0200 - - Revert "HHH-12670 - Allows native SQL queries that take a given resultClass to map the result set to the required type" - - This reverts commit 9fac6747ef22acff9c7350efca33286452a2c967. - -commit f708a75c4f607475e6c0d82476e883fdb45adacb -Author: Vlad Mihalcea -Date: Thu Jul 5 12:43:40 2018 +0300 - - HHH-12200 - Docs mention outdated APIs - -commit 35806c9dcbe017c11d84e94aa8c9af6d367ee554 -Author: Guillaume Smet -Date: Thu Jul 5 16:15:12 2018 +0200 - - master is now 5.4 - -commit 8814d4753f3477d2b548739eb6c11ee6e0a5dc69 -Author: Guillaume Smet -Date: Thu Jul 5 16:12:56 2018 +0200 - - Add vim swap files to .gitignore - -commit 3b5d71b3a765b3cbfb3569544cee9fc91454218a -Author: Guillaume Smet -Date: Thu Jul 5 15:54:01 2018 +0200 - - Prepare for next development iteration - -commit 84d702c43fae823b1ab70f2fcc4e0446ef6b2995 (tag: 5.3.2) -Author: Guillaume Smet -Date: Thu Jul 5 15:46:05 2018 +0200 - - Exclude the build directories from the files pushed to SourceForge - -commit 7b5ae68e13ea5a6f979e2400cf653abdd04ba15e -Author: Guillaume Smet -Date: Thu Jul 5 15:27:24 2018 +0200 - - Exclude the bin directories from the files pushed to SourceForge - -commit cc69b205041e1b687657c68c407ea1e009393979 -Author: Guillaume Smet -Date: Thu Jul 5 14:39:29 2018 +0200 - - Upgrade BinTray Gradle plugin to 1.8.3 - -commit bd08b65cccf630c22fd82e40a8ca92bca0fb3b62 -Author: Guillaume Smet -Date: Thu Jul 5 14:28:19 2018 +0200 - - 5.3.2.Final - -commit d66ea16bb53a6c3decef3eb541a03f7d10cc02c8 -Author: Guillaume Smet -Date: Thu Jul 5 14:26:05 2018 +0200 - - 5.3.2.Final - -commit aeb2f9e0b0da4a737a9c645e250d3a3e55fa4af2 -Author: Vlad Mihalcea -Date: Thu Jul 5 12:19:03 2018 +0300 - - HHH-12716 - Sample code is required for documentation of disabling polymorphism in queries - - Fix typo - -commit 9b0c3ba600f4f9fd3badab44369f6d6ea730c062 -Author: Gail Badner -Date: Wed Jul 4 15:55:30 2018 -0700 - - HHH-12746 : Remove assertion that hashCodes are not equal from test - -commit b4762fd52c639ca63b822f197340ed61509d54c2 -Author: Gail Badner -Date: Wed Jul 4 15:52:11 2018 -0700 - - Revert "HHH-12746 : CacheKeyImplementation objects with different entityOrRoleName and same id/tenantId have the same hashCode" - - This reverts commit 220f41dc3bcf88128cc78ddef8b463e788fede46. - -commit 8081aaec93e52846493fe6ce07ab62d7f8b83d16 -Author: Gail Badner -Date: Fri Jun 29 13:40:01 2018 -0700 - - HHH-12729 : Correct Javadoc comments - -commit c143e888d2b83137e7f5efda311c21352447b219 -Author: Gail Badner -Date: Mon Jun 25 23:51:58 2018 -0700 - - HHH-12729 : Binary and behavioral incompatibilities of org.hibernate.Query.getFirstResult(), setFirstResult(), getMaxResults(), setMaxResults() - -commit 02ff1484bee5673dc06b1b72e48e7f1306a5fb31 -Author: Gail Badner -Date: Wed Jul 4 15:20:09 2018 -0700 - - HHH-12687 : Update migration guide - -commit 8fff54d6ee7dd2b807c5d7560c0f29587609754e -Author: Vlad Mihalcea -Date: Wed Jul 4 21:00:11 2018 +0300 - - HHH-12769 - Rework LockTest#testContendedPessimisticLock so that it can work on Oracle without throwing exceptions - -commit 6b3e4e6f56771dd2955a42a4830a44bd56899e70 -Author: Vlad Mihalcea -Date: Wed Jul 4 14:13:54 2018 +0300 - - HHH-12767 - Fix tests failing on Oracle - -commit 88bfe7e66cf39527f9782537573ac2ba39d446aa -Author: Guillaume Smet -Date: Wed Jul 4 16:15:41 2018 +0200 - - HHH-12531 Make the legacy names public so that Infinispan can reuse them - -commit 3883abf0879a34525138afa301529a9cc8dd8e6f -Author: Yoann Rodière -Date: Wed Jul 4 12:12:00 2018 +0200 - - HHH-12649 Use the 'create-warn' missing cache strategy by default in hibernate-jcache - - In order to be consistent with hibernate-ehcache. - -commit 21eac287e9b558cb8f060c5c4399ff739fb14fc3 -Author: Yoann Rodière -Date: Tue Jul 3 18:48:18 2018 +0200 - - HHH-12531 Default to using legacy region names when default query caches do not exist in the EhCache and JCache integrations - -commit 63cc63b386a910d859f32329791d3e419f63a46c -Author: Yoann Rodière -Date: Tue Jul 3 18:57:08 2018 +0200 - - HHH-12531 Use short, simple names for the query result and update timestamps caching regions - -commit 2649e1372c09953affdcdbbf0113b1ffb39ba0d4 -Author: Yoann Rodière -Date: Tue Jul 3 16:53:29 2018 +0200 - - HHH-12649 Move the created cache warning to org.hibernate.cache.spi.SecondLevelCacheLogger - -commit 033203abc78ad318016246e071b56ffece2bfd8b -Author: Yoann Rodière -Date: Tue Jun 26 15:32:35 2018 +0200 - - HHH-12649 Document the behavior on missing caches - -commit e91a051465017853fc23f40c8a89bc0d78a8965d -Author: Yoann Rodière -Date: Tue Jun 26 14:44:41 2018 +0200 - - HHH-12649 Use the 'create-warn' missing cache strategy by default in hibernate-ehcache - - In order to be backward-compatible with ORM 5.1. - -commit dc8a0dc8df8d15457a8f5de5c159d2b9a2f6ad7a -Author: Yoann Rodière -Date: Tue Jun 26 14:29:57 2018 +0200 - - HHH-12549 Test the various missing cache strategies for hibernate-ehcache - -commit f70bb50412232a051567667f78f57757a84076f5 -Author: Yoann Rodière -Date: Tue Jun 26 13:50:07 2018 +0200 - - HHH-12549 Test the various missing cache strategies for hibernate-jcache - -commit c52ff4d06c95302fbf66b6c0dc2ac79f81819b81 -Author: Yoann Rodière -Date: Tue Jun 26 12:53:48 2018 +0200 - - HHH-12549 Allow the behavior when a cache is missing to be configured by users - -commit 432adb36d89b82a26b17850bbf83bd730490192c -Author: Yoann Rodière -Date: Tue Jun 26 09:26:32 2018 +0200 - - HHH-12549 Remove mentions of JCache in hibernate-ehcache - -commit e7145cfe72c5eb1de44245db9bcd174a480cfffa -Author: Guillaume Smet -Date: Tue Jul 3 17:40:21 2018 +0200 - - HHH-12727 Reduce the accesses to the statement -> result sets map - -commit 4c22b52f80f290ae14fd40882c4e56c52f12a670 -Author: Guillaume Smet -Date: Tue Jun 26 12:59:51 2018 +0200 - - HHH-12699 Resolve once and for all the method mapping in ResultSet proxy - -commit 377b3d1fbeb4f377af40c0cf859a98dc8eba4598 -Author: Guillaume Smet -Date: Tue Jun 26 12:59:38 2018 +0200 - - HHH-12699 Fix a typo - -commit a19fc84320d1ba2172ecb37f5c8c9cbcde616712 -Author: Yoann Rodière -Date: Mon Jun 25 16:07:20 2018 +0200 - - HHH-12594 Properly share AliasResolutionContextImpl between EntityLoadQueryDetails instances - - In particular, avoid contributing the aliases twice for the same - context: this would just trigger exceptions. - -commit 665110452e995a5f1129ec713105ee62348d693d -Author: Sanne Grinovero -Date: Tue Jul 3 23:39:43 2018 +0100 - - HHH-12692 Fixing style - -commit 5f0024feae5ec08965723dc3685f9e8a5c300b8b -Author: Walter White -Date: Sun Jun 10 07:37:47 2018 -0400 - - HHH-12692 SessionImpl#toString - add system identity hashcode - - show the instance id in addition to whether the session is open or closed (when trace is not enabled). - -commit a0633b84feae071dcf183a8aa1bdddba4bb83ff0 -Author: Walter White -Date: Wed Jun 6 23:22:44 2018 -0400 - - HHH-12692 SessionImpl#toString - remove overly verbose output - - Is toString used, if so, when do we need to see the actionQueue or persistenceContext? - TRACE? - -commit adb81781ca0c593c585c3fc0e86935eb363f11dc -Author: Sanne Grinovero -Date: Tue Jul 3 22:27:56 2018 +0100 - - HHH-12766 Upgrading to Byteman 4.0.3 - -commit a9538ef71040ae8ad5bf59c9e774cdd79011a0fb -Author: Andrea Boriero -Date: Wed Jun 27 11:57:39 2018 +0100 - - HHH-12247 Verify JPA bootstrap errors are propagated - -commit 2253fad19dfa0238e81640a16c72fa256767466f -Author: Sanne Grinovero -Date: Mon Jun 18 15:37:40 2018 +0100 - - HHH-12247 Propagate bootstrapping exceptions rather than logging them at DEBUG level - -commit d79d6267d008444edc2fa02b779d0d583c7185ea -Author: Martin Simka -Date: Tue Jul 3 15:53:00 2018 +0200 - - [HHH-12765] don't use SQL Server reserved keyword in test - -commit 2bd99e5f32d8eacd995799da71e8c89cf893a412 -Author: Rico Neubauer -Date: Tue May 8 16:23:13 2018 +0200 - - HHH-12553 - Prevent ConcurrentModificationException in OsgiClassLoader - -commit fcdb89302a63b80c59296a49f7a74856fd3557e1 -Author: Chris Cranford -Date: Tue Jul 3 13:17:18 2018 -0400 - - HHH-12757 - Fix test failure on Oracle. - -commit 212d8c01e593f557de2f7b7303fb416b76f3b7d0 -Author: Yoann Rodière -Date: Tue Jul 3 13:41:50 2018 +0200 - - HHH-11495 Update the javadoc of Metamodel#getImplementors to reflect the actual implementation - - In particular, the actual implementations may not return all persisted - subtypes if the given type is persisted and "explicit polymorphism" is - enabled. So this really is more about HQL queries than about a class - hierarchy. - -commit 600164869b0eb8f50289e21092c68c95631a4a1d -Author: Yoann Rodière -Date: Tue Jul 3 13:34:46 2018 +0200 - - HHH-11495 Add a missing @Override - -commit 6c5e71fc40a290f2689581ca04fc548b0ed63f65 -Author: Guillaume Smet -Date: Tue Jul 3 17:15:53 2018 +0200 - - HHH-11495 Only cache values if the class is mapped somehow - -commit 7067b191b7380b332fd9f2fb80ef0bd15286c99f -Author: Guillaume Smet -Date: Tue Jul 3 13:51:05 2018 +0200 - - HHH-11495 Change the logic to be more efficient - - We are optimistic about our chances to find the elements in the cache, - thus avoiding calling computeIfAbsent() if not necessary. - - We only store in the cache the elements for which we have a proper - class, thus avoiding filling the cache with random values. - -commit e17491a19874e53718e33203ac17b7c0ff38d946 -Author: Guillaume Smet -Date: Tue Jul 3 13:33:19 2018 +0200 - - HHH-11495 Return a defensive copy of the array - -commit 9684afda76e9a1d7c700d8cba6a076a546aa9a3c -Author: Carlos Aristu -Date: Fri Jun 29 12:15:47 2018 +0200 - - HHH-11495 Reduce criteria overhead by adding an implementors cache - -commit 35cd3a1c387fbe2bdc86808bc62808290e12b7d3 -Author: Chris Cranford -Date: Tue Jul 3 12:26:06 2018 -0400 - - HHH-12764 - Fix test failure with Oracle. - -commit 6dea02bac5f73abbea451dae7c2180236dc3d6cb -Author: Chris Cranford -Date: Tue Jul 3 12:09:26 2018 -0400 - - HHH-12754 - Fix broken envers tests on other database platforms. - -commit 58613cba7364862176a0325fa2f4431c069f208b -Author: Vlad Mihalcea -Date: Tue Jul 3 15:41:20 2018 +0300 - - HHH-12350 - User Guide documentation for @Any is too verbose - -commit 5b40dfca26b600973216523417562c1c09e53b7f -Author: Vlad Mihalcea -Date: Tue Jul 3 14:50:01 2018 +0300 - - HHH-12716 - Sample code is required for documentation of disabling polymorphism in queries - -commit 6c49f8ef5c714402262960f377ea273b93190e9a -Author: Vlad Mihalcea -Date: Tue Jul 3 14:27:17 2018 +0300 - - HHH-12351 - User Guide: document why Subselect always requires Synchronize - -commit a67c6b9cd4fd16b02c4af02e7691ee1dc2042a0a -Author: Sanne Grinovero -Date: Mon Jul 2 23:28:24 2018 +0100 - - HHH-12760 Remove no longer needed EqualsHelper and cleanup some equality checks - -commit f54949d28062ccbd9d28c7e67072e13422dd44ea -Author: Sanne Grinovero -Date: Tue Jun 19 15:41:25 2018 +0100 - - HHH-12759 Upgrade integration tests to WildFly 13.0.0.Final - -commit a3d39bbf962395a0d8cf94c9abac1029199206f5 -Author: Sanne Grinovero -Date: Mon Jul 2 19:30:28 2018 +0100 - - HHH-12758 Arquillian JVM configuration for integration tests is ignoring system properties - -commit c5d0bfb57df358c81cca46d958e759626d84f333 -Author: Guillaume Smet -Date: Mon Jul 2 16:29:07 2018 +0200 - - HHH-12663 Remove an outdated Karaf configuration - -commit 260ec8d3fa04eb156ef668effee07686cececdf1 -Author: Fabio Massimo Ercoli -Date: Wed Jun 27 13:02:00 2018 +0200 - - HHH-12663 Include hibernate-osgi bundle only in hibernate-orm feature - -commit 54722fc344163008034aa5480fff59a0da50503a -Author: Fabio Massimo Ercoli -Date: Tue Jun 26 20:05:24 2018 +0200 - - HHH-12663 Upgrade gradle-karaf-plugin - -commit fb39fc078a7869b46cc29661d7f41976a06b2dfc -Author: Fabio Massimo Ercoli -Date: Tue Jun 26 20:12:58 2018 +0200 - - HHH-12663 Update hibernate-matrix-testing to 2.0.0.Final - -commit 5716cecb559933b9e592c0ac18a28480681949f6 -Author: Vlad Mihalcea -Date: Mon Jul 2 17:42:06 2018 +0300 - - HHH-12353 - Document that Session.getReference not always returns a T - - Change to lowercase noun - -commit b7d92ed19b36464fc9569d5744274e08df168eac -Author: Chris Cranford -Date: Mon Jul 2 10:31:30 2018 -0400 - - HHH-12755 - Fix broken envers tests on Postgres and EnterpriseDB - -commit 75d65542a113d22372b0fdf81c249e04b74810cf -Author: Vlad Mihalcea -Date: Fri Jun 29 09:27:26 2018 +0300 - - HHH-12353 - Document that Session.getReference not always returns a T - -commit c33000d7adaf02b70d2bbe33986cf1fd5886490b -Author: Chris Cranford -Date: Mon Jul 2 10:08:33 2018 -0400 - - HHH-12754 - Fix broken envers tests on other database platforms. - -commit 387bbc51c1f7631e352ffb54f0042661b9a47c1d -Author: Vlad Mihalcea -Date: Mon Jul 2 14:15:50 2018 +0300 - - HHH-12749 - Avoid setting the isolation level to the same value in C3P0ConnectionProvider - - Fix checkstyle issues - -commit 6f336b850cdd8f718676f73af926405b9ac6b0e0 -Author: Vlad Mihalcea -Date: Mon Jul 2 10:48:56 2018 +0300 - - HHH-12749 - Avoid setting the isolation level to the same value in C3P0ConnectionProvider - -commit 220f41dc3bcf88128cc78ddef8b463e788fede46 -Author: Gail Badner -Date: Thu Jun 28 17:35:59 2018 -0700 - - HHH-12746 : CacheKeyImplementation objects with different entityOrRoleName and same id/tenantId have the same hashCode - -commit f166b044a616d78d70d143aea5ea0650e2e40e11 -Author: Gail Badner -Date: Thu Jun 28 17:35:18 2018 -0700 - - HHH-12746 : test case - -commit 6b0ef0a5c4351f7e8801ffcd07bb9c5ef7015fac -Author: Guillaume Smet -Date: Thu Jun 28 18:17:15 2018 +0200 - - HHH-12685 Fix a few warnings - -commit 989ff9509fb104cb6ac5c44c1b486a8c95ecfc3b -Author: Guillaume Smet -Date: Thu Jun 28 18:14:36 2018 +0200 - - HHH-12685 Move the test where it should have been - - Add an additional test for getParameters() - -commit 673e4f7d01801c8cb74ce98d81809dcc6312e20e -Author: Andrea Boriero -Date: Tue Jun 26 10:03:53 2018 +0100 - - HHH-12685 - Add tests - -commit d64a9a90002a788017cde13e6e16f0ec98ecf67c -Author: Andrea Boriero -Date: Fri Jun 29 11:48:25 2018 +0200 - - HHH-12685 - Fix CriteriaQueryTypeQueryAdapter parameters type validation issues - -commit d4a46fa93e9c8ba80a412c4b8d3df4d57d32506b -Author: cristhiank -Date: Tue Jun 12 12:03:57 2018 -0500 - - HHH-12685 Add test case - - Signed-off-by: cristhiank - -commit 27409b27a336159b896b1001ca14dcde696f17e0 -Author: Guillaume Smet -Date: Wed Jun 13 11:11:33 2018 +0200 - - HHH-12685 Convert the parameters to JPQL ones before calling isBound() - -commit 07738c4d890bbce1222c8df72e40998a9541d581 -Author: Vlad Mihalcea -Date: Wed Jun 27 14:55:48 2018 +0300 - - HHH-12738 - Session/EntityManager is closed in ForeignGenerator (JTA setup) - -commit c69038d4760ad8f5a3c2be519214920004498e30 -Author: Vlad Mihalcea -Date: Fri Jun 29 10:25:10 2018 +0300 - - HHH-12341 - Documentation refers to nonexistent "image clob" - -commit 723e0289e9348e3c4594adc335ebbea7d81c7f9a -Author: Vlad Mihalcea -Date: Thu Jun 28 17:44:25 2018 +0300 - - HHH-12660 - Missing verb in reference documentation - HHH-12715 - Error in documentation sample code about JPQL and HQL - HHH-12691 - Code block is broken in documentation about AUTO flushing - -commit 4539be09c29592eba21d6092f580d5af49015d46 -Author: Vlad Mihalcea -Date: Thu Jun 28 14:47:51 2018 +0300 - - HHH-12697 - Headings problem in Hibernate Documentation 5.3.1 - Proxool configuration - HHH-12698 - Headings problem in Hibernate Documentation 5.3.1 - Transation Patterns - -commit 3dcf69c6870e38c6de501325e7444cd44e351bc9 -Author: Gail Badner -Date: Fri May 25 14:48:34 2018 -0700 - - HHH-12637 : Improvement to fix for HHH-12592 - - HHH-12637 : Rename/add new tests; remove sequences from IDs - -commit 463937fcec08b0f203a3fa108271eded7dd5f559 -Author: Guillaume Smet -Date: Wed Jun 27 17:37:02 2018 +0200 - - Fix typo in OSGi gradle script - -commit 06174d8433232e7ddf3ab95db67a5d1ca42006d2 -Author: Sanne Grinovero -Date: Mon Jun 18 15:38:41 2018 +0100 - - HHH-12743 Cleanup some deprecated code from ProviderChecker - -commit 57ba794a625015b7ae642bb01ebc42e8ccfd872a -Author: Sanne Grinovero -Date: Mon Jun 25 14:56:49 2018 +0100 - - HHH-12744 Remove no longer necessary jboss-deployment-structure.xml from integration tests - -commit 09aa12496f913da014bbc87300c07d18c8f0a8c7 -Author: Guillaume Smet -Date: Wed Jun 27 13:28:47 2018 +0200 - - HHH-12741 Add a comment to explain why we add the new keywords here - -commit 0a4a609a42060f5e36a515ae7795c306e10b079d -Author: Yanming Zhou -Date: Wed Jun 27 17:28:36 2018 +0800 - - HHH-12741 Register new reserved words added in MySQL 8.0 - - https://dev.mysql.com/doc/refman/8.0/en/keywords.html#keywords-new-8-0-A - -commit b3e0d363bde0f610b26e4a705755ee9e259947aa -Author: Vlad Mihalcea -Date: Wed Jun 27 11:45:02 2018 +0300 - - HHH-12738 - Session/EntityManager is closed in ForeignGenerator (JTA setup) - - Add test case proving the issue does not replicate for either RESOURCE_LOCAL or JTA transactions - -commit 163cab99e2f0d4a497bb5953727ec3f259a7fc81 -Author: Guillaume Smet -Date: Tue Jun 26 14:20:46 2018 +0200 - - HHH-12630 Keep the original starting exception and use it as a cause - -commit d0087948ef353ff51c27e464b3258fc6646369c2 -Author: Sanne Grinovero -Date: Tue Jun 26 15:44:17 2018 +0100 - - HHH-12640 Do not fully deprecate the WildFlyStandAloneJtaPlatform so to allow an explicit user choice - -commit 1a89a167b46b8d5a851d746b0c3363565793439f -Author: Scott Marlow -Date: Thu May 31 12:13:20 2018 -0400 - - HHH-12640 deprecate WildFlyStandAloneJtaPlatform but still allow apps to reference it until we remove it in the future - -commit 9fac6747ef22acff9c7350efca33286452a2c967 -Author: Vlad Mihalcea -Date: Thu Jun 7 17:40:06 2018 +0300 - - HHH-12670 - Allows native SQL queries that take a given resultClass to map the result set to the required type - -commit 83e4384c3e4d21cf73839f4778c132ca9a7df95b -Author: Florian Lopes -Date: Tue Jun 26 06:44:59 2018 +0200 - - HHH-12734 Add original exception when selected strategy could not be loaded - -commit ed34a25769513d4600c85836c80c64af89280746 -Author: Vlad Mihalcea -Date: Tue Jun 26 13:49:42 2018 +0300 - - HHH-12684 - Hibernate fails when mapping one-to-many collections by non-primary key - - Fix indentation issue due to multi-line formatting - -commit e6ea4828dba252cb09de6c2c78a25ab8068506c4 -Author: Vlad Mihalcea -Date: Mon Jun 18 13:15:06 2018 +0300 - - HHH-12124 - The JPA Metamodel does not allow to retrieve the actual EmbeddableType since all instances are registered by the associated Java type - -commit 84439af05338c44e6b798cc077dfc8d0f5e1b512 -Author: Vlad Mihalcea -Date: Tue Jun 26 13:13:02 2018 +0300 - - HHH-12684 - Hibernate fails when mapping one-to-many collections by non-primary key - - Fix indentation issues - -commit 7ead344f0b4798f2c58035dc7f06bf78bbaad339 -Author: Guillaume Smet -Date: Tue Jun 26 10:51:46 2018 +0200 - - HHH-12732 Remove an out of date task - - The mapping guide has been injected into the user guide. - -commit b45e921b5c92ffff4a672ed6792cc4f6a10628ac -Author: Guillaume Smet -Date: Tue Jun 26 10:49:57 2018 +0200 - - HHH-12732 Only generate the main document for each guide - -commit bee6ed5c374ff5417bd5922604ef20796f3edeef -Author: Guillaume Smet -Date: Tue Jun 26 10:22:39 2018 +0200 - - HHH-12731 Do not hide the TOC when not using jstree - -commit 8ee24ee8d50a27f345fddf75fc2ea91850d28964 -Author: Guillaume Smet -Date: Mon Jun 25 17:48:18 2018 +0200 - - HHH-12725 Upgrade the Asciidoctor plugin to 1.5.7 for JDK 9 compatibility - -commit afbec8856cd83c7eb84e10ee97a49b9378dbef15 -Author: Guillaume Smet -Date: Mon Jun 25 17:47:36 2018 +0200 - - HHH-12724 Add javax.activation as a dependency - - It is required by JAXB now that JDK 9 does not provide it anymore. - -commit 97286943868bbadb43e892e517a07bf232702058 -Author: Peter Holvenstot -Date: Tue Jun 12 12:12:02 2018 -0400 - - HHH-12684 - Hibernate fails when mapping one-to-many collections by non-primary key - -commit 9b106cf59c0a374952e9b06d716de1f67d612a17 -Author: Vlad Mihalcea -Date: Tue Jun 26 12:37:28 2018 +0300 - - HHH-12688 - Duplicated Error Information Displayed in the Log - - Restrict test case to H2 only - -commit bcb71fcdd6e105289f98b135fc2fb7cc3cefc7ba -Author: Vlad Mihalcea -Date: Tue Jun 19 14:43:31 2018 +0300 - - HHH-12688 - Duplicated Error Information Displayed in the Log - -commit 62b2af760ee4a917bbaf2bd8c9a88f0daee93345 -Author: Vlad Mihalcea -Date: Thu Apr 12 17:20:44 2018 +0300 - - HHH-12476 - NativeQuery with EntityGraphs cause a ClassCastException to be thrown - -commit e5dc635a52362f69b69acb8d5b166b69b165dbbd -Author: Yoann Rodière -Date: Mon Jun 25 14:22:11 2018 +0200 - - HHH-12594 Un-ignore BatchFetchBootstrapTest - -commit e1bcfc12cf8904e15e4ca8519d61dd99a8184fa8 -Author: Yoann Rodière -Date: Mon Jun 25 15:17:25 2018 +0200 - - HHH-12594 Do not share AliasResolutionContextImpl between EntityLoadQueryDetails instances - - Sharing it results in some tables being aliased twice for the same query - space, but with different aliases, resulting in exceptions. - - Ideally we should try to generate the aliases once, and then share the - AliasResolutionContextImpl between EntityLoadQueryDetails instances, - but I'm really not comfortable enough with this code to make that kind - of changes. - -commit 80360b131793df287d8322c0f89478ad8116ee63 -Author: Yoann Rodière -Date: Mon Jun 25 14:15:35 2018 +0200 - - HHH-12594 Trim down BatchFetchBootstrapTest to the simplest possible configuration - - So that we can investigate without unnecessary complexity getting in the - way. - -commit 337646de132e770fbbd1496ec3def3488b4cbf71 -Author: Andrea Boriero -Date: Mon Jun 25 10:16:05 2018 +0100 - - HHH-12723 - Revert the changes applied by HHH-12585 to the DefaultFlushEntityEventListener#invokeInterceptor() method - - This reverts commit 9b00aaf9a55f9879a512b34c13dd25425264494b. - -commit a30635f14ae272fd63a653f9a9e1a9aeb390fad4 -Author: Vlad Mihalcea -Date: Fri Jun 22 14:30:48 2018 +0300 - - HHH-12704 - MSSQL executing StoredProcedure on different DB using dot notation throws error - - Make base class abstract - -commit ffa5eb0e1d8c716ed4b9cf8c65314c0be4d9f8cd -Author: Vlad Mihalcea -Date: Thu Jun 21 17:48:51 2018 +0300 - - HHH-12704 - MSSQL executing StoredProcedure on different DB using dot notation throws error - - Add test case proving the issue is caused by the SQL Server JDBC Driver - -commit cdef29b09ba2766a249915affa6b20d403487e1c -Author: Sanne Grinovero -Date: Thu Jun 21 16:26:52 2018 +0100 - - HHH-12603 Move and reuse the "idea" Gradle plugin declaration - -commit cd963b1e83db3ca931b0c993c4c56f629b59985e -Author: Alvaro Esteban Pedraza -Date: Wed Jun 13 00:34:54 2018 -0300 - - HHH-12603 - Removed Gradle eclipse plugin - -commit 333e0d6078287cfd1b5acf2bd8506241de57b4b5 -Author: Alvaro Esteban Pedraza -Date: Tue May 29 18:04:13 2018 -0300 - - HHH-12603 - Added Notes section to CONTRIBUTING.MD - - Clarification about gradle eclipse plugin usage - -commit e457b7f33759ddd1c4138a549229635c58511c80 -Author: Alvaro Esteban Pedraza -Date: Mon May 28 11:32:09 2018 -0300 - - HHH-12603 - Unified allprojects blocks - -commit 03a2ad669e4abf6d597bfd6c636cd034a17c25ff -Author: Alvaro Esteban Pedraza -Date: Fri May 25 15:04:17 2018 -0300 - - HHH-12603 - Removed comments in build.gradle to enable plugins - -commit e41e5445f895b25ab93d37dd5352155bb980f01a -Author: Chris Cranford -Date: Wed Jun 20 11:42:58 2018 -0400 - - HHH-12607 - Reworked and introduced more test cases. - -commit 0b7c1e2fcb948bfa7e99a93de76423e0171a8982 -Author: Chris Cranford -Date: Wed Jun 6 14:54:24 2018 -0400 - - HHH-12607 - Support map-based collections without equals/hashcode implementations. - -commit 00a56a188b599ca0e243bbb0b141ccfca06e6e52 -Author: Chris Cranford -Date: Wed Jun 6 14:54:01 2018 -0400 - - HHH-12607 - Added test case. - -commit 8bbd22967ed8db600d2529295df9fe2295079b2b -Author: Vlad Mihalcea -Date: Wed Jun 20 17:47:47 2018 +0300 - - HHH-12710 - BaseCoreFunctionalTestCase opens an InputStream for mapping files but never closes it - -commit ebca36a76851c9b0b7ea406e1b1428225891de2f -Author: Vlad Mihalcea -Date: Wed Jun 20 17:03:04 2018 +0300 - - HHH-12654 - Throw MappingException if both @Inheritance and @AttributeOverride are used - -commit f2238ec089d139270ff151771692fa4dcc4d7256 -Author: Vlad Mihalcea -Date: Tue Jun 19 17:56:22 2018 +0300 - - Upgrade Oracle library to JDBC 4.2 - -commit 3c0d04331314c3ecbaa53ac86dd3355ae830cb65 -Author: Henri Tremblay -Date: Mon Jun 18 14:09:50 2018 -0400 - - HHH-12702: Make JCacheRegionFactory easier to subclass - -commit 39cd150ae525ef738c800afd06e37458867f73d5 -Author: Chris Cranford -Date: Mon Jun 18 13:04:54 2018 -0400 - - HHH-12683 - Add note about CriteriaUpdate/CriteriaDelete not captured by Envers. - -commit d4861fed9f395455465c7d7cc9a0916d74e9f4c7 -Author: Vlad Mihalcea -Date: Mon Jun 18 16:41:24 2018 +0300 - - HHH-12700 - Missing property in sample code in documentation of bulk-id strategies - -commit f0a31fbc3dc14e5007b9c71715a101bd72619fbc -Author: Sanne Grinovero -Date: Mon Jun 18 13:25:50 2018 +0100 - - HHH-12701 Upgrade to Jandex 2.0.5.Final - -commit fb473e6a60588eecb32be6ba83e4e2362efe2282 -Author: Sanne Grinovero -Date: Mon Jun 18 13:29:00 2018 +0100 - - Whitespace fixes required by checkstyle - -commit dab7616db261f4d9d654b4f78aeed4c70148f313 -Author: Sanne Grinovero -Date: Mon Jun 18 12:03:18 2018 +0100 - - HHH-12677 One more javadoc link still pointing to Java SE 7 javadocs - -commit 2211e61b04493fc09f49ecf960b2c258e9a1dc2e -Author: Jan-Willem Gmelig Meyling -Date: Thu Jun 7 18:51:11 2018 +0200 - - HHH-12671 - Fix persisting generated properties on identity insert - -commit 607e51617e9740e683598b5d2c0f4cbaa5d26923 -Author: Gail Badner -Date: Tue Jun 12 22:26:13 2018 -0700 - - HHH-12687 : ManyToOne associations in embeddable collection elements and composite IDs are always eagerly loaded - -commit 8b28248d3dcd2d81ba17ef799bbbd33b3945ca42 -Author: Sanne Grinovero -Date: Fri Jun 15 10:21:10 2018 +0100 - - HHH-12694 Upgrade to Hibernate Commons Annotations 5.0.4.Final - -commit 35b908167ed60698e3bb6d8df7b253c43a7a3f03 -Author: Gail Badner -Date: Wed Jun 13 19:44:18 2018 -0700 - - HHH-12651 : org.hibernate.Session.*Query(Ljava/lang/String) methods return different types in 5.1 and 5.3 - -commit 30fec4be79df9fe99b9c6071fd30610f1f246cf8 -Author: Vlad Mihalcea -Date: Tue Jun 5 14:10:29 2018 +0300 - - HHH-12662 - JPQL queries fail when using the Java attribute type which has an associated AttributeConverter (only the DB column type works) - -commit bff9e2e45067ad4f62e0b4b9a5372ecd270d8b97 -Author: Vlad Mihalcea -Date: Thu Jun 14 08:23:11 2018 +0300 - - Fix test failing on MariaDB - -commit 7f983adb50e00e13cdb38661656d40e9e199c894 -Author: Sanne Grinovero -Date: Wed Jun 13 19:35:45 2018 +0100 - - HHH-12677 Update javadoc API links from EE7 to EE8 - more links - -commit 5089a818e295cd309a073486a513ad16b96d7714 -Author: Philippe Marschall -Date: Wed Jun 13 07:11:58 2018 +0200 - - HHH-12686 Replace EmptyIterator with emptyIterator - -commit 4c52764c412be2ebecbe11f5dc5014a390f86a67 -Author: Philippe Marschall -Date: Sat May 19 10:49:01 2018 +0200 - - HHH-12604 Replace EqualsHelper.equals with Objects.equals - -commit 7022adfb2be0455147927c2a7e7ae322a55dfab1 -Author: Sanne Grinovero -Date: Wed Jun 13 10:45:41 2018 +0100 - - HHH-12674 Fixing build dependency order - -commit cb9baa1728cf1998014f55e6a9135debb7ba0b12 -Author: Sanne Grinovero -Date: Wed Jun 13 10:46:15 2018 +0100 - - HHH-12674 Use new approach to define pom.xml metadata - -commit 2dbfcc7135bc3e4dffa469e9500288a27cc1895e -Author: Sanne Grinovero -Date: Mon Jun 11 11:57:20 2018 +0100 - - HHH-12674 Upgrade Gradle wrapper to version 4.8 - -commit f52e999690d2a4a34212d85eedcaf956a84debb7 -Author: Sanne Grinovero -Date: Mon Jun 11 16:40:09 2018 +0100 - - HHH-12674 Avoid using deprecated Gradle methods - -commit da91b1e39dbf6a4477e1da0729f06c55c71ce90c -Author: Sanne Grinovero -Date: Tue Jun 12 17:05:16 2018 +0100 - - HHH-12689 Upgrade to Gradle WildFly build tools 0.0.9 - -commit c1eaf011ad94ddacda7927e33ad239166a796661 -Author: Jonathan Bregler -Date: Mon Jun 11 12:47:30 2018 +0200 - - HHH-12661 - Hibernate types (e.g. NumericBooleanType, YesNoType and any implementations of UserType) cannot bind value in StoredProcedureQuery - - Fix tests for HANA, Oracle - -commit fe38c5aaeeee0abd14ba681d2a2d26da68196bf3 -Author: Sanne Grinovero -Date: Mon Jun 11 11:57:38 2018 +0100 - - HHH-12677 Update javadoc API links from EE7 to EE8 - -commit 22973c355ad219e2deed11d77e81fe40b86f4948 -Author: cristhiank -Date: Sun Jun 10 16:23:51 2018 -0500 - - HHH-9403 - AssertionFailure: Fail to process type argument in a generic declaration - -commit 566a23736d8e9463800490645ec58a16bea12e49 -Author: Vlad Mihalcea -Date: Mon Jun 4 14:07:34 2018 +0300 - - HHH-12561 - bulk_id_strategy does not work with globally_quoted_identifiers - -commit b6a16a36782edc1c343c1d70f0d6e6e21f8d4e83 -Author: Roland Kurucz -Date: Wed Jun 6 20:53:09 2018 +0200 - - HHH-12661 - Hibernate types (e.g. NumericBooleanType, YesNoType and any implementations of UserType) cannot bind value in StoredProcedureQuery - -commit 9ad030aee66f9ece98df2c968c76778b21a39024 -Author: Chris Cranford -Date: Thu Jun 7 13:43:51 2018 -0400 - - HHH-12668 - Fix JPA 2.2 xsds so they properly validate. - -commit 0ed516e11370e07f27526000c349d06dadac2433 -Author: Vlad Mihalcea -Date: Thu Jun 7 10:29:01 2018 +0300 - - HHH-12348 - Hibernate ORM Document user guide, architecture of Hibernate class is out of date - -commit 736c913f1428e16a5a3ef26b52d9ec91ff323f25 -Author: Chris Cranford -Date: Thu May 31 22:43:43 2018 -0400 - - HHH-12396 - Fix problem with EnumType resolution on GlassFish platforms. - -commit 19d59dac71227ef31a623b546d06f31d595e89b4 -Author: Sanne Grinovero -Date: Fri Jun 1 22:28:47 2018 +0100 - - HHH-12659 Configure ForbiddenAPIs for JDK10 as intended target compatibility - -commit 7a4b38c6b73b5e4575a9e8d410a19a2eccbb1773 -Author: Guenther Demetz -Date: Fri Jun 1 10:22:54 2018 +0200 - - HHH-12657 - Fix ClassCastException for cached natural-id entity with subclasses - -commit 292a4e4337b336dd7c3a54a90c0582734eff07d4 -Author: Sanne Grinovero -Date: Fri Jun 1 12:31:42 2018 +0100 - - HHH-12658 Upgrade to Gradle 4.7 - -commit 964602557f97f294f35de296706b495ca5072af1 -Author: Vlad Mihalcea -Date: Fri Jun 1 08:56:13 2018 +0300 - - HHH-12656 - Document how contributors can run tests on different databases - -commit b98c02c5036cd45ba9d41eeb4b3a6db6ea86aaa1 -Author: Vlad Mihalcea -Date: Thu May 31 11:35:09 2018 +0300 - - HHH-12609 - Cannot override constaints when using @AttributeOverride annotation - - Add test cases to prove the issue does not replicate for @MappedSuperclass - -commit dfecae09c52ca9b4f66cb3fa8854c9b1e3ef824b -Author: Gail Badner -Date: Wed May 30 18:22:27 2018 -0700 - - HHH-11979 : Invalid SQL when force increment version of inherited entity - -commit cc9b3eb183fba6e605c6f3e7dcb84d11691abae7 -Author: Gail Badner -Date: Wed May 30 18:21:14 2018 -0700 - - HHH-11979 : test case - -commit 6a04d7836cbde17a4a1c0c5c0389babdf105b541 -Author: Guillaume Smet -Date: Mon May 28 12:13:10 2018 +0200 - - HHH-12633 Fix model definition in the test to be PostgreSQL compatible - -commit de5bf278f6a1928e620f78f86234018bda282ff6 -Author: Guillaume Smet -Date: Fri May 25 18:02:26 2018 +0200 - - HHH-12633 Fix dirty tracking when previous state is unfetched - -commit 0c52195a7d72be049c78d06b4c2c511b8e3252d2 -Author: Scott Marlow -Date: Sun May 27 10:10:33 2018 -0400 - - Revert "HHH-12620 Update JBossStandAloneJtaPlatform to use org.wildfly.transaction.client.* TM/UT" - - This reverts commit c886111a7955f64e7f035059fa3a20bf6f05b6d3. - -commit 558cbdd97db0575ac2468c9db4529ebe8470a21c -Author: Scott Marlow -Date: Sun May 27 10:10:00 2018 -0400 - - HHH-12640 Update to JBossStandAloneJtaPlatform should be backward compatible attempting old names as well - -commit bb5ab3881c85f3c37180bde882e4212addd3421f -Author: Chris Cranford -Date: Sat May 26 15:48:58 2018 -0400 - - Fix typo in toString() method. - -commit 6e00051f9d3abfc01b6ef767eaff5edb3251c83e -Author: Chris Cranford -Date: Fri May 25 18:48:14 2018 -0400 - - post 5.3.1 - -commit 7430cdafcf520d6d7d40d362fdc42c6a5d8b141e (tag: 5.3.1) -Author: Chris Cranford -Date: Fri May 25 17:43:43 2018 -0400 - - 5.3.1 - -commit 83c6b56fc8dfad74ee01025be0dc68e4cdfdbebd -Author: Philippe Marschall -Date: Sat May 19 22:44:21 2018 +0200 - - HHH-12606 Container contents are never accessed - - https://hibernate.atlassian.net/browse/HHH-12606 - -commit 3489f75e1d455049cffd45694f025b97487b429f -Author: Philippe Marschall -Date: Sat May 19 22:53:07 2018 +0200 - - HHH-12605 Boxed variables never null - - https://hibernate.atlassian.net/browse/HHH-12605 - -commit e88b5d37d11e96e5626c76f3d3cd8f9f067f1713 -Author: Sanne Grinovero -Date: Fri May 25 21:59:56 2018 +0100 - - HHH-12636 Upgrade to ByteBuddy 1.8.12 to fix issue with entities having no package - -commit 01caa5f2b4d5dfee04016d6628a529e437894dcb -Author: Gail Badner -Date: Fri May 25 01:41:55 2018 -0700 - - HHH-12592 - Fix merging detached enhanced entities with orphan-removal collections. - -commit 6aa8301499577746ff66ecd735a6330e3e373e38 -Author: Gail Badner -Date: Fri May 25 01:39:24 2018 -0700 - - HHH-12592 : Add more tests - -commit e1b08967d947f12ee774ebbbc5b9e1a38a360603 -Author: Gail Badner -Date: Thu May 24 23:56:26 2018 -0700 - - Revert "HHH-12592 - Fix merging detached enhanced entities with orphan-removal collections." - - This reverts commit 4f119105f887855d6baecb0ac8837d984b40b4b7. - -commit c3c0cd550fb9ad13ace8ed9ba5645a9231053f6d -Author: Gail Badner -Date: Thu May 24 18:26:26 2018 -0700 - - HHH-12592 : add assertions to ensure that the detached and merged collection are not the same, which currently fails - -commit 80bf92e32a0d2a87ec7d178b60f4230a6082d171 -Author: Andrea Boriero -Date: Fri May 25 15:46:12 2018 +0100 - - HHH-12620 fix test dependencies - -commit b34f6152000d1b07c3cf3902786f6c4550ba52e4 -Author: smarlow -Date: Thu May 24 21:33:09 2018 -0400 - - HHH-12620 some test dependencies - -commit c886111a7955f64e7f035059fa3a20bf6f05b6d3 -Author: smarlow -Date: Wed May 23 13:48:47 2018 -0400 - - HHH-12620 Update JBossStandAloneJtaPlatform to use org.wildfly.transaction.client.* TM/UT - -commit 38552103cc149276a12a9d85f4460c307974e6c7 -Author: Guillaume Smet -Date: Fri May 25 15:21:01 2018 +0200 - - HHH-12634 Make EntityPrinter more permissive regarding the parameters passed - -commit 9d4d0ae63b3611f94f0858fcb62b705e57aca93f -Author: Guillaume Smet -Date: Fri May 25 10:29:13 2018 +0200 - - HHH-12584 In fact, we can provide a ReflectionOptimizer, just without the fast class instantiator - - The fast class instantiator don't make sense for an abstract class or an - interface. I checked the code and we can indeed instantiate a - ReflectionOptimizer without a fast class instantiator. - -commit 9a3aa99e830fcbe9295a18a5d2bebca4f878fec5 -Author: Guillaume Smet -Date: Fri May 25 13:13:40 2018 +0200 - - HHH-12631 Fix invalid tracev calls in DefaultResolveNaturalIdEventListener - -commit b96af61566abfafbc233ddb9bb190647a25e6efd -Author: nikowitt -Date: Fri May 25 12:22:17 2018 +0200 - - HHH-12629 Make some methods protected in DefaultLoadListener - - And some nice dead code removal. - -commit 7c1a737c2aed64cf30bbc4567685a51f32b17650 -Author: Guillaume Smet -Date: Fri May 25 10:51:36 2018 +0200 - - HHH-12627 Fix a debug level message - -commit eee04e2e9abd8a3d291385e2299f2c2dfa2838c2 -Author: Gail Badner -Date: Fri May 25 02:16:21 2018 -0700 - - HHH-12599 : Add Javadoc indicating that region names do not include a prefix - -commit 83283218dc44ca1e54f9e6425992391bfcd22424 -Author: Andrea Boriero -Date: Fri May 25 00:26:02 2018 +0100 - - HHH-12540 - Fix test - -commit 4f119105f887855d6baecb0ac8837d984b40b4b7 -Author: Chris Cranford -Date: Thu May 24 16:30:09 2018 -0400 - - HHH-12592 - Fix merging detached enhanced entities with orphan-removal collections. - -commit e7b338a109f22fed63177e79fb0d67a815bd7b1d -Author: Chris Cranford -Date: Thu May 24 16:29:43 2018 -0400 - - HHH-12592 - Added test case. - -commit 0d79bc06cfdf4c804b2bb1dd9be12520de162364 -Author: Chris Cranford -Date: Thu May 24 17:00:39 2018 -0400 - - HHH-12612 - Added embeddable TYPE_USE test case coverage. - -commit 5674eae3aec09f66f8d580b39f53162b51c6fa61 -Author: Chris Cranford -Date: Thu May 24 17:00:10 2018 -0400 - - HHH-12612 - Use getQualifiedName rather than toString. - -commit d5244de697b3ee01d294236200249a5f57951c07 -Author: Sanne Grinovero -Date: Thu May 24 20:49:45 2018 +0100 - - HHH-12626 Avoid high CPU contention by not allocating Session UUIDs eagerly - -commit dc29e45af32e1860a59e128f951525369e8c5f4c -Author: Guillaume Smet -Date: Thu May 24 16:27:13 2018 +0200 - - HHH-12621 Copy the query spaces when initializing a new NativeQueryImpl - - This could ultimately lead to ConcurrentModificationException. - -commit 9081aaf23bc8ba2d71cce06aea3fd68436f84eed -Author: Steve Ebersole -Date: Thu May 24 12:20:30 2018 -0500 - - HHH-12622 - ignore markRollbackOnly on inactive transactions - -commit 6be40010225493f750dd7940691858d4d1e6fa78 -Author: Guillaume Smet -Date: Thu May 24 12:34:47 2018 +0200 - - HHH-12579 Rename a variable for consistency with FieldReaderAppender - -commit c0652a5359fc5166d6f9f67b1f54992dae212225 -Author: Guillaume Smet -Date: Thu May 24 14:17:12 2018 +0200 - - HHH-12579 Use the field description with type variables resolved to cast the return value of the $$_hibernate_read_() method - -commit b4c720871f2bf8d49dcad9a55e67c63ba8e3f197 -Author: Guillaume Smet -Date: Thu May 24 14:24:21 2018 +0200 - - HHH-12579 Rename variable in preparation of a subsequent commit - -commit ea8ec69bacdddb18a44b0e925f6a3a88fba17bea -Author: Guillaume Smet -Date: Thu May 24 15:32:06 2018 +0200 - - HHH-12584 Do not try to create a reflection optimizer for interfaces and abstract classes - - It's already the behavior of the Javassist bytecode provider but the - ByteBuddy one was failing with an exception. - -commit 5c6183066eda0d856766057faf7eecbd70bd5289 -Author: Guillaume Smet -Date: Wed May 23 16:34:16 2018 +0200 - - HHH-12618 Use MethodHandle lookup when available - -commit 562661e0a2eed5efbfb0b6d5a539b3e7e3448d1a -Author: Guillaume Smet -Date: Wed May 23 16:33:48 2018 +0200 - - HHH-12618 Make sure the proxy classes are created in the right package - -commit c9f5bc920aa65b8c684cc650edb647430a02783c -Author: Guillaume Smet -Date: Wed May 23 16:07:15 2018 +0200 - - HHH-12614 Respect the protection domain when proxying classes - -commit 20bdd991c553f23ea81ff1091cde5d124a66aeda -Author: Steve Ebersole -Date: Thu May 24 05:55:51 2018 -0500 - - HHH-12611 - revert - -commit 8dfdf8d22bc2f0621951ac909c266fe8a0b9cca1 -Author: Guillaume Smet -Date: Wed May 23 16:56:19 2018 +0200 - - HHH-12615 Make a few AbstractEntityPersister methods protected final - - This is useful for OGM. I made them final so that we don't have to - account for child classes overriding them in the future. - -commit 45a3b39c401bc3a72eed474af06deff2d143a9ac -Author: Chris Cranford -Date: Tue May 22 09:07:21 2018 -0400 - - HHH-12612 - Fix JDK9 compatibility with TYPE_USE on collection fields. - -commit 895b0bb75d281dde5e96a1dd56c39783cf41186e -Author: Chris Cranford -Date: Tue May 22 09:04:22 2018 -0400 - - HHH-12011 HHH 12612 - Remove unnecessary output from test case. - -commit df6d44f646d05f0fa3460887d0d05e9717031209 -Author: Chris Cranford -Date: Wed May 23 13:54:29 2018 -0400 - - HHH-12581 - Revert original fix for HHH-12338 to address regression. - -commit 3b05e92f402345a45b7090895717538e440e6d24 -Author: Chris Cranford -Date: Wed May 23 13:53:46 2018 -0400 - - HHH-12581 - Added test case. - -commit 367cc4c33d6a9d905fb61e86f70f8a5fa513392a -Author: Chris Cranford -Date: Wed May 23 11:32:13 2018 -0400 - - HHH-12586 - Fix CI failure with column names on postgres. - -commit 5919000dc894405ca4abf26eefbb765b03201bdc -Author: Chris Cranford -Date: Wed May 23 10:12:54 2018 -0400 - - HHH-12617 - Fix checkstyle issues with prior commit. - -commit 2cce4ea9185f3fb8a8212714f6e11efda592c214 -Author: Steve Ebersole -Date: Wed May 23 09:01:46 2018 -0500 - - HHH-12611 - revert - -commit ae890b46234d615675dcef00093a72531482b822 -Author: Chris Cranford -Date: Wed May 23 09:34:59 2018 -0400 - - HHH-12617 - Improved cache warning on non-root entity configurations. - -commit 898f900a87d1e22aa86d7e8c5b9875fd6eb217af -Author: Sanne Grinovero -Date: Wed May 23 13:47:00 2018 +0100 - - HHH-12616 Clarify ambiguity in License name - -commit 97c88a7f11f21e9954758f33579a534435bfb7ca -Author: Sanne Grinovero -Date: Wed May 23 12:14:13 2018 +0100 - - HHH-12591 Reverting the changes to the logging messages - -commit 33e9031791ae1eadcd349e1a9af75565d1cfc787 -Author: Chris Cranford -Date: Tue May 22 22:37:58 2018 -0400 - - HHH-12586 - Added test case. - -commit 37467554e7d5b584757b0f5a90e40d5597907450 -Author: Philippe Marschall -Date: Fri May 18 18:00:34 2018 +0200 - - HHH-12586 Strange date type confusion in JdbcDateTypeDescriptor - - https://hibernate.atlassian.net/browse/HHH-12586 - -commit 21bd9a6a9f2357376fb44c7de63760b18738652b -Author: Chris Cranford -Date: Tue May 22 17:45:03 2018 -0400 - - HHH-12587 - Fix NullPointerException when flushing entity with CacheConcurrencyStrategy.NONE. - -commit 3aac27d369f86a9639e38eec63683b3b67dad1cb -Author: Chris Cranford -Date: Tue May 22 17:44:19 2018 -0400 - - HHH-12587 - Added test case. - -commit a37960a23d40b7de5c00b88b3800006e1fab7b41 -Author: Chris Cranford -Date: Tue May 22 11:08:53 2018 -0400 - - HHH-12577 - Remove unnecessary warning for AttributeConverter implementations. - -commit 1a91a38cbd3c9f5274f95864e51a9372fd940cea -Author: Vlad Mihalcea -Date: Tue May 22 17:56:10 2018 +0300 - - HHH-12602 - Bytecode Enhancement documentation refers to removed property hibernate.ejb.use_class_enhancer - -commit 5edb2e441f3a935fe46551c0cead2835cb0749f5 -Author: Yoann Rodière -Date: Tue May 15 10:48:21 2018 +0200 - - HHH-12576 Upgrade to jboss-transaction-api 1.1.1.Final - -commit 9a1083a88d9bb843a60ed32a228da8370706c821 -Author: Yoann Rodière -Date: Tue May 15 10:46:21 2018 +0200 - - HHH-12575 Upgrade to Classmate 1.3.4 - -commit 47dff86a883863a66e8cb4eda3b0ef1ae7f0c5a9 -Author: Vlad Mihalcea -Date: Tue May 22 09:58:01 2018 +0300 - - HHH-12611 - Add mavenLocal() to Gradle repositories as otherwise we can't test on Oracle or DB2 - -commit 5cfb0a508cf74448c18e2646a13722c26e3a29d9 -Author: Vlad Mihalcea -Date: Thu May 10 14:04:12 2018 +0300 - - HHH-12559 - Add support for MySQL 8 SKIP LOCKED and NOWAIT - -commit 2d55060ff62feb7c521dd93dfa17f870c7693b83 -Author: Sanne Grinovero -Date: Mon May 21 16:39:22 2018 +0100 - - HHH-12610 Upgrade to Byte Buddy 1.8.11 to improve JDK compatibility - -commit 89305c994e17d90455601ea12d0d06f5470efee3 -Author: Sanne Grinovero -Date: Mon May 21 16:39:40 2018 +0100 - - Cleanup duplicate license header - -commit 4a8951a6b430a83fbc9c031833ff9c84044c60a0 -Author: Vlad Mihalcea -Date: Thu May 17 11:59:08 2018 +0300 - - HHH-12589 - Add support for registering custom SQL functions when bootstrapping via JPA - -commit de44e4180d56f4688da4db01b5d8eb6b60008e3f -Author: Chris Cranford -Date: Thu May 17 15:58:06 2018 -0400 - - HHH-12569 - Fix ordered inserts constraint violation when using a OneToOne with a JoinColumn. - -commit 3c3dc8828378847aaf88bb0f833f0e65d3393095 -Author: Chris Cranford -Date: Thu May 17 15:56:11 2018 -0400 - - HHH-12569 - Added test case. - -commit ae8930e19fe270abc4367289258948f9e586d62b -Author: Vlad Mihalcea -Date: Thu May 17 17:41:14 2018 +0300 - - HHH-12594 - Using property "hibernate.default_batch_fetch_size" crashes bootstrapping - - Fix test failing in spite of @FailureExpected - -commit e1cdad36d02630d659e4ce0fb03e274e35cc099d -Author: Vlad Mihalcea -Date: Thu May 17 15:32:19 2018 +0300 - - HHH-12594 - Using property "hibernate.default_batch_fetch_size" crashes bootstrapping - -commit 99d630bcc2c20f5f7cc582b2da985712fd41c830 -Author: Andrea Boriero -Date: Wed May 16 22:03:46 2018 +0100 - - HHH-12591 - Remove second call to Scope#setSessionFactory(SessionFactoryImplementor) from TypeConfiguration#scope(SessionFactoryImplementor,BootstrapContext) - -commit 9b00aaf9a55f9879a512b34c13dd25425264494b -Author: Andrea Boriero -Date: Tue May 15 20:51:46 2018 +0100 - - HHH-12585 - Improve DefaultFlushEntityEventListener#invokeInterceptor method execution - -commit ec75e9a26f4293b66f00528c8e652f8f47ace4ba -Author: Andrea Boriero -Date: Tue May 15 18:16:14 2018 +0100 - - HHH-12583 - Deprecate hibernate.proc.param_null_passing setting - -commit 8cddc8c46c06241c7216652a399aa6d5aa5df87a -Author: Sanne Grinovero -Date: Tue May 15 13:11:55 2018 +0100 - - HHH-12580 The WildFly module of ByteBuddy should be marked as private API - -commit 4bae1ca8104f4deefeb744f97a2601e4aa0b79a0 -Author: Steve Ebersole -Date: Mon May 14 17:45:35 2018 -0500 - - HHH-12572 - Exclude LockMode.WRITE from loader creation loop - -commit 24cfffeec41aa1cb2ab6f5e5f42a3fddf7d1ba98 -Author: Steve Ebersole -Date: Mon May 14 17:40:41 2018 -0500 - - post 5.3.0.Final - -commit bdad25abfe3e7e8fdfc2b369be5b3216965fd950 (tag: 5.3.0.Final) -Author: Steve Ebersole -Date: Mon May 14 17:39:13 2018 -0500 - - prep 5.3.0.Final - -commit 60f46450368d5e7c7a13025951a9037ae8c9d849 -Author: Steve Ebersole -Date: Mon May 14 16:01:02 2018 -0500 - - HHH-12558 - Lazy load EntityLoaders to improve memory usage - -commit 7943fe3fc28578848385a48c4052c8d1214604cf -Author: Steve Ebersole -Date: Mon May 14 14:48:17 2018 -0500 - - minor migration guide change - -commit 98cab7aefb10c6569d2660bca48bf3e15a937903 -Author: Guillaume Smet -Date: Wed May 9 14:36:59 2018 +0200 - - HHH-12558 Lazy load entity loaders for the less common lock modes - -commit d5d68dcec5cc1620ace4ed52228d7e41e5df0a3c -Author: Sanne Grinovero -Date: Mon May 14 21:38:08 2018 +0100 - - HHH-12316 Document usage of the new Feature Packs - -commit 26bf33abdc8587912e07eac26d82dfe33047a526 -Author: Steve Ebersole -Date: Mon May 14 13:19:27 2018 -0500 - - HHH-12529 - Some StatisticsImpl methods throw an exception instead of returning null - -commit e2ac4eb22f4dd30453765787a8aa6bb5da6912bd -Author: Steve Ebersole -Date: Mon May 14 12:24:46 2018 -0500 - - HHH-12565 - checkstyle - -commit f62cecc62bb9e8d011dd61dcd57688bc0dcb664e -Author: Christian Beikov -Date: Fri May 11 21:02:42 2018 +0200 - - HHH-12565 Fix that returns the discriminator constant instead of column reference for leaf subtypes - -commit f972dd4d290af3c8d4f686eedd0c797d81f1857f -Author: Christian Beikov -Date: Fri May 11 20:42:36 2018 +0200 - - HHH-12565 Test showing TYPE for a TPC hierarchy leaf subtype fails - -commit ecd6f503f8480be3b6b9370ed0f581169cd1d434 -Author: Andrea Boriero -Date: Fri May 4 09:44:09 2018 +0100 - - HHH-12540 - Reusing same EntityTransaction with JTA enabled - -commit ca866333709a54f8f77e2a80bb3952a8afdca1d1 -Author: Andrea Boriero -Date: Thu May 3 14:32:26 2018 +0100 - - HHH-12540 - Add test for issue - -commit 9f4ff8ae9097077d3a711c7de649f21ec11436ab -Author: Steve Ebersole -Date: Mon May 14 12:08:06 2018 -0500 - - HHH-8786 - find, refresh, lock should throw LockTimeoutException or PessimisticLockException when lock problems occur - HHH-12570 - MariaDB 10.3 adds support for lock timeouts via WAIT plus NOWAIT - -commit 1570c71833a575ca46ab042f1ea6084c8a70d2fd -Author: Steve Ebersole -Date: Mon May 14 07:52:15 2018 -0500 - - HHH-12472 - WildFly (IronJacamar) - EntityManager#find with roll-back-only leads to exception rather than return null - -commit f8ffbd03ff8073b921e6b48e9ecf45a1ef570ef2 -Author: Chris Cranford -Date: Sun May 13 15:14:33 2018 -0400 - - HHH-12011 - Fix JDK9 compatibility with TYPE_USE on array primitive-based fields. - -commit 9f293b113b574d2d74a98d2c21715a3696a8210a -Author: Steve Ebersole -Date: Sat May 12 21:22:42 2018 -0500 - - HHH-12519 - Use Forbidden APIs library (Gradle plugin) to check our use of APIs - - - fixing failures in non-core projects - -commit ad5f63bf64ed8c94dfcfe8b3ded836414ff8aff3 -Author: Steve Ebersole -Date: Sat May 12 20:38:00 2018 -0500 - - HHH-12519 - Use Forbidden APIs library (Gradle plugin) to check our use of APIs - - - linked `forbiddenApis` task with the `check` task - -commit 56f44399a4f253366060ce51cfd80e5ed678b71a -Author: Steve Ebersole -Date: Sat May 12 20:31:05 2018 -0500 - - HHH-12519 - Use Forbidden APIs library (Gradle plugin) to check our use of APIs - - - minor cleanup - -commit 0695b3ff6e8a11b72a0b478e87615d6c1edd6607 -Author: Steve Ebersole -Date: Sat May 12 20:29:50 2018 -0500 - - HHH-12519 - Use Forbidden APIs library (Gradle plugin) to check our use of APIs - - - initial support; implicit usage of default Locale is a major problem - -commit 4208ca0a2f9369c9e3596049e2ce7e49eb1d99b5 -Author: Steve Ebersole -Date: Sat May 12 17:58:40 2018 -0500 - - HHH-12463 - Delegate CustomType#equals/hashCode to wrapped UserType - -commit 1a4577d1f0baaaa2ad5dedc9a518a5bed365f63d -Author: Steve Ebersole -Date: Fri May 11 15:38:47 2018 -0500 - - HHH-12560 - Make sure only one Service registration (initiator/provided) exists per role - - - additional test - this one needed a minor change.. all tests implicitly use values defined in `hibernate.properties`, which hibernate-core has. This lead to `#getFallback` being called, which was the intended solution. The fix for that was simply the next point. - - added the ability to clear the settings contained on StandardServiceRegistryBuilder. This is used in the test to make sure that no explicit RegionFactory is set. - -commit 87c7915a5cba6cedf7a152b6423c45faf8ce79ef -Author: Steve Ebersole -Date: Fri May 11 14:57:22 2018 -0500 - - HHH-12560 - Make sure only one Service registration (initiator/provided) exists per role - - - added test (passed without changes) - - added "graceful shutdown" of services already bound during construction of a registry - -commit 2ad6bf67241aa03cd26966aae1b2d35ffd227c62 -Author: Chris Cranford -Date: Mon May 7 12:38:41 2018 -0400 - - HHH-12011 - Use TypeVisitor rather than string parsing for array types. - -commit 67096ce54745057ffb320eac933f96263e5011a5 -Author: Chris Cranford -Date: Fri May 4 14:57:29 2018 -0400 - - HHH-12011 - Fix metamodel generation with TYPE_USE targeted annotations. - -commit 7162bf26ec9898dc58c6a4faa51860db333371c2 -Author: Chris Cranford -Date: Fri May 4 14:56:43 2018 -0400 - - HHH-12011 - Added test case. - -commit 9b98e61e7fb8c7bdd3a21f186bfd32443a5aa154 -Author: Gail Badner -Date: Thu May 10 16:05:56 2018 -0700 - - HHH-12562 : Remove DefaultSchemaNameResolver#delegate since the value should not be cached - -commit 8eeeb19119bf9be67348f7d8e4d8bad28b9be2c4 -Author: Guillaume Smet -Date: Thu May 10 20:37:25 2018 +0200 - - Travis - Raise the travis_wait timeout to 45 minutes - -commit c283349f3fd9dc30f6de10e602c07f6b7142423c -Author: Andrea Boriero -Date: Thu May 10 12:08:24 2018 +0100 - - HHH-12539 - Fix PostgreSql test failure - -commit 6e3f9629c94cd1aaaa83125ad7b82f0f9dc6f67f -Author: Guillaume Smet -Date: Thu May 10 12:07:33 2018 +0200 - - Travis - Delete more files before caching - -commit fdb31045b9fb2137e4c172897f00c8ff7782129c -Author: Andrea Boriero -Date: Tue May 8 13:44:30 2018 +0100 - - HHH-12539 - NPE in AbstractPropertyMapping.getCommonPersistentClass when creating UnionSubclassEntityPersister for dynamic-map - -commit 118e7dc1f2210a26b88d341a51f53c1ab5b577b5 -Author: Andrea Boriero -Date: Tue May 8 13:43:44 2018 +0100 - - HHH-12539 - Add test for issue - -commit a93d6d9854ffef2df914fc8d23995a4b311c6727 -Author: Guillaume Smet -Date: Thu May 10 00:30:34 2018 +0200 - - Try stabilizing the Travis build with travis_wait - -commit 3834c4d149fc3f73c2fd7fb5af254608e4556204 -Author: Guillaume Smet -Date: Wed May 9 12:14:13 2018 +0200 - - HHH-12556 Share data structures between similar LoadPlan based EntityLoaders - -commit 1c1cd47c083541876e5f7429f161c2b683a7c335 -Author: Vlad Mihalcea -Date: Tue May 8 22:03:25 2018 +0300 - - HHH-12470 - Batching statements fails for delete - -commit d3ee9c6ca1ea668b0c1b35c2f4e4483aa9dfef9e -Author: David M. Lloyd -Date: Tue May 8 10:11:13 2018 -0500 - - HHH-10435 Create class loaders in a privileged block - -commit 207a8f03afc1c99d280af58b172cba28af6cd51b -Author: Sanne Grinovero -Date: Tue May 8 16:50:07 2018 +0100 - - HHH-12554 Make EnhancerImpl more closely match the semantics described in Enhancer javadoc - -commit 2fa5d3ccb85493a0d5ed5163caa4eef16c2a7cc8 -Author: Sanne Grinovero -Date: Tue May 8 14:20:32 2018 +0100 - - HHH-12545 ByteBuddy based enhancer not accepting special character in description names - -commit ed136d5f52a1fb015c895bd8686cb73e78928dd3 -Author: Steve Ebersole -Date: Tue May 8 10:55:26 2018 -0500 - - HHH-12544 - Add jipijapa hook to plug in specialized caching and transaction services - -commit 350d3301592a7f7c39b26f2e80a76c509c2a9c07 -Author: Steve Ebersole -Date: Fri May 4 11:22:21 2018 -0500 - - HHH-12544 - Add jipijapa hook to plug in specialized caching and transaction services - -commit 14a9c0a56dd2aa9002298ef0e3d89a2b558a1876 -Author: Rodrigo Turini -Date: Sat May 5 09:26:26 2018 -0300 - - HHH-12090 - PropertyAccessBuildingException: Could not locate setter for property named XXX for Java 8 default methods - -commit db259df4576c4e950445b92ccf0828070b31ed85 -Author: Jonathan Bregler -Date: Fri May 4 14:43:51 2018 +0200 - - HHH-12546: locate function doesn't work on SAP HANA - -commit a01c282288bcc0f5d2c5ce04438f20a02fbf033b -Author: Jonathan Bregler -Date: Thu May 3 13:28:23 2018 +0200 - - HHH-12541: Test for SAP HANA calculation views - -commit 8816c5afb2bf197e3ae00623fffb0f0f1ee697da -Author: Jonathan Bregler -Date: Wed May 2 13:06:00 2018 +0200 - - HHH-12537: Query hint test for SAP HANA - - - add org.hibernate.test.queryhint.QueryHintHANATest - -commit f17513f8c5b96c2f12d8085a1992f1391cb78535 -Author: Jonathan Bregler -Date: Wed May 2 13:02:18 2018 +0200 - - HHH-12362 - Allow both SQL query hints and comments - - - org.hibernate.test.queryhint.QueryHintTest uses - assertNotNull(String#contains(String)) which always evaluates to true - -commit da14797ba83c4f2be7040b2615e714c506d8bc8d -Author: Jonathan Bregler -Date: Mon Apr 30 21:56:04 2018 +0200 - - HHH-12534: SAP HANA dialects use unqualified dummy table in queries - -commit 2b18e0efa5100b6175d7b93800fe2868ee1c1a9b -Author: Jonathan Bregler -Date: Mon Apr 30 21:49:55 2018 +0200 - - HHH-12535: SAP HANA dialect doesn't support circular cascade delete constraints - -commit 8b190dbbd0b3df842d697cc74ed668af712504a3 -Author: Vlad Mihalcea -Date: Thu May 3 08:24:02 2018 +0300 - - HHH-12470 - Batching statements fails for delete - - Add replicating test case - -commit 82f2aa0d5d4447cbb3c7f28fbe7c5e3b51ab1810 -Author: Steve Ebersole -Date: Mon Apr 30 10:38:09 2018 -0500 - - HHH-12474 - Make sure the JPA version is defined by a single property across build files - - added HibernateVersion following pattern of JpaVersion - -commit 7938918518aca96cd3844e1119fedd006397f0c2 -Author: Chris Cranford -Date: Mon Apr 30 09:36:00 2018 -0400 - - HHH-12530 - Fix checkstyle concerns. - -commit f4e83e3a10a955162962fd7caec58a558d6d5c08 -Author: Chris Cranford -Date: Mon Apr 30 09:34:25 2018 -0400 - - HHH-12530 - Fix checkstyle concerns. - -commit db1d2d177bd6c90cfde33585936353e7ffdfa7ce -Author: Sergey Chernolyas -Date: Sun Apr 29 21:53:36 2018 +0300 - - HHH-12530 add processing of unknown hints - -commit 15791a84fbd0b3e4f7c5ab68355d6c47a077938e -Author: Petteri Pitkänen -Date: Fri Apr 20 07:25:16 2018 +0200 - - HHH-12505 - Add tests - -commit cb68d60ce313ea3736d7af1894f9b5861c4485b5 -Author: Petteri Pitkänen -Date: Thu Apr 19 09:02:43 2018 +0200 - - HHH-12505 - Add possibility to disable metadata scanning - -commit 83b2780482478cca6e1c2bea8b5230b5cbe492d8 -Author: Klauswk -Date: Fri Apr 27 18:24:07 2018 -0300 - - Fix Typo in PersistEvent - - Just fixing a typo i found while using Hibernate, feel free to accept or just fix in master. - - Cheers. - -commit bb91924a9e1ea5f343a1169113bd38442a8f45b7 -Author: asutosh936 -Date: Sat Apr 28 17:49:46 2018 -0500 - - HHH-12517 - Updated Javadocs with correct parameter methods - -commit 1d945493940a001f44dbc70d94dfaeb0fd8a5dd8 -Author: Chris Cranford -Date: Fri Apr 27 16:08:36 2018 -0400 - - HHH-12199 - Ignore static fields when resolving property types via reflection. - -commit b44001c644963bc911d85851acda7c780ff2411b -Author: Chris Cranford -Date: Fri Apr 27 16:07:45 2018 -0400 - - HHH-12199 - Added test case. - -commit 6fb4ec0e029b0d8a626401640a49081ea5f3d715 -Author: Chris Cranford -Date: Fri Apr 27 14:42:07 2018 -0400 - - HHH-11859 - Fix PropertyAccessException on update of detached audited entity. - -commit adb9024c28ae960854d574f893f13d13d3591adf -Author: Chris Cranford -Date: Fri Apr 27 14:42:02 2018 -0400 - - HHH-11859 - Added test case. - -commit a80dc5e62d2ba256d3d616befa9bb37b37897ea1 -Author: Steve Ebersole -Date: Fri Apr 27 10:15:26 2018 -0500 - - post 5.3.0.CR2 - -commit 4bb183b33a435b6a99c7388fa4708d2e8a89f9f9 (tag: 5.3.0.CR2) -Author: Steve Ebersole -Date: Fri Apr 27 09:48:06 2018 -0500 - - prep 5.3.0.CR2 - -commit c6dc398fc51fd897c156e381ad1fd6d3304d7530 -Author: Steve Ebersole -Date: Fri Apr 27 09:41:44 2018 -0500 - - HHH-8786 - find, refresh, lock should throw LockTimeoutException or PessimisticLockException when lock problems occur - -commit f7aef1cdf82ef532644d62c8c97ee3a430acdcdf -Author: Steve Ebersole -Date: Fri Apr 27 08:51:45 2018 -0500 - - prep 5.3.0.CR2 - -commit 43d15578dc75256522fa290e841ad81cdae52ece -Author: Vlad Mihalcea -Date: Fri Apr 13 11:31:31 2018 +0300 - - HHH-12469 - Add support for IN clause parameter padding to better reuse cached statements - -commit 676aebdf5101396de0df1b023830879c44e110e3 -Author: Steve Ebersole -Date: Fri Apr 27 08:32:22 2018 -0500 - - HHH-8786 - find, refresh, lock should throw LockTimeoutException or PessimisticLockException when lock problems occur - -commit 12b79a59383d1b647c9957815ef53861f0752dad -Author: Steve Ebersole -Date: Thu Apr 26 13:17:41 2018 -0500 - - HHH-12257 - Refreshing an entity clears the lock mode returned from EntityManager.getLockMode - -commit a286232da374cbccefddbf406830dbb598b6c824 -Author: Gail Badner -Date: Tue Feb 27 21:41:37 2018 -0800 - - HHH-12257 : Refreshing an entity clears the lock mode - -commit 712bc4af8968071f91ae38b34fb33d53ca1427f9 -Author: Sanne Grinovero -Date: Thu Apr 26 12:16:55 2018 +0100 - - HHH-12526 WildFly integration tests no longer need to override the Javassist module - -commit 89b8bb5372d5a7613d73e6b6790368e1fafe76d4 -Author: Sanne Grinovero -Date: Thu Apr 26 12:11:21 2018 +0100 - - HHH-12525 Allow JBoss module definition to eventually import an Infinispan 2LC module - -commit 898667772c9db459aa8499a74f662d3e516f7641 -Author: Sanne Grinovero -Date: Thu Apr 26 12:06:22 2018 +0100 - - HHH-12524 Rename JBoss modules from hibernate-core-jbossmodules to hibernate-orm-jbossmodules - -commit 90b058507e57fbbd39cecc3e60e49e554b2c9301 -Author: Sanne Grinovero -Date: Wed Apr 25 21:52:14 2018 +0100 - - HHH-12521 Take advantage of Java 8 improvements to optimise Statistics - -commit fb7c1a4598edae753e23c4cfa5e74e4fcc6cc9d0 -Author: Radim Vansa -Date: Wed Apr 18 09:52:31 2018 +0200 - - HHH-12523 - Invoke CacheTransactionSynchronization.transactionCompleting - -commit 9f0c1a751ada44361a39da557289e1e184b4671e -Author: Gail Badner -Date: Thu Apr 19 17:14:33 2018 -0700 - - HHH-12508 : SessionFactoryOptions#isSecondLevelCacheEnabled returns true by default with NoCachingRegionFactory - -commit 66d719616849fe74c48f492631b30e653d9a1dc4 -Author: Gail Badner -Date: Thu Apr 19 16:44:29 2018 -0700 - - HHH-12508 : test cases - -commit 80ce45e86c5f2313abab6a9a39688101759e1be4 -Author: Chris Cranford -Date: Tue Apr 24 09:54:02 2018 -0400 - - HHH-12373 - Improve javadoc to avoid confusion about method expectations. - -commit 5367a1c8a691048bcf76fab3ad0bbc2f2718b2ca -Author: Sanne Grinovero -Date: Mon Apr 23 09:59:38 2018 +0100 - - HHH-12515 LocalXsdResolver should attempt local resource loading before attempting it via URL - -commit 2d1bec72c996e8a1d8e5163d53c7ce2d62b1b570 -Author: Sanne Grinovero -Date: Mon Apr 23 10:34:18 2018 +0100 - - HHH-12514 Micro style polishing of XsdDescriptor - -commit 1c14f1a1dbeb8a38e1413baa68db5de1e31a6677 -Author: Sanne Grinovero -Date: Mon Apr 23 10:12:33 2018 +0100 - - HHH-12514 Avoid repeated creations of costly Xsd definitions and definition lookups - -commit 01ba7d956553065a2c5860a1283d6ee861637883 -Author: Gail Badner -Date: Tue Apr 17 22:48:21 2018 -0700 - - HHH-11766 : Accessing lazy basic property on entity loaded from 2nd level cache throws exception - -commit 1c151f956ddac68ec338277adae82003c71fe2c4 -Author: Gail Badner -Date: Tue Apr 17 22:38:35 2018 -0700 - - HHH-11766 : test case - - HHH-11766 : Renamed and updated test to be more comprehensive; added another test with a lazy basic value - -commit d2e38f8a0de552fdc957151385a0c11581c356d4 -Author: Andrea Boriero -Date: Fri Apr 20 12:07:31 2018 +0100 - - HHH-12510 - Update PostgreSQL driver - -commit 0546eaac3b6a71eb834f80b75d83b6bf19d58a4e -Author: Sanne Grinovero -Date: Thu Apr 12 18:40:31 2018 +0100 - - HHH-12511 Make ASTPrinter threadsafe and have code reuse their instances - -commit 782f023a5a16aba08dc1429f094f1048be434617 -Author: Sanne Grinovero -Date: Thu Apr 19 14:17:19 2018 +0100 - - HHH-12509 Reduce memory usage of PreparedStatementSpyConnectionProvider - -commit c7ea49a0b3d72cf3a81b16fc4aa24cebf5db4e8b -Author: Gail Badner -Date: Thu Apr 19 14:14:41 2018 -0700 - - HHH-12507 : InsertOrderingWithCompositeTypeAssociation test fails on Oracle due to reserved word - -commit c0c0ae1c386240d305da6602dae5d05efdb6c27d -Author: Steve Ebersole -Date: Thu Apr 19 12:47:00 2018 -0500 - - document changes to EnhancementTask in 5.3 migration log - -commit 385cf9a23c3fc30a236fb625fca6025465383c51 -Author: Steve Ebersole -Date: Thu Apr 19 12:31:53 2018 -0500 - - HHH-12504 - SessionBuilder / SharedSessionBuilder (binary compatibility) - -commit e7130605f0bb36bb4c2ac957430cf1ef7c673d60 -Author: Steve Ebersole -Date: Thu Apr 19 12:31:41 2018 -0500 - - HHH-11356 - Adjust the 2nd-Cache SPIs to better reflect supported uses - -commit 291d4a3eeaa2ade32a42cfbcad5868b2114c34fe -Author: Andrea Boriero -Date: Sun Apr 15 18:57:57 2018 +0100 - - HHH-12487 - Calling getTransaction() on a closed EntityManager - -commit 19f78bbd3d1c824f5781f0c7fdf57a5858fb6117 -Author: Andrea Boriero -Date: Sun Apr 15 18:56:06 2018 +0100 - - HHH-12487 - Add test for issue - -commit 27a6b5d14348820192cbd0da73bcf65402ca15d5 -Author: Chris Cranford -Date: Wed Mar 14 09:54:38 2018 -0400 - - HHH-10667 - Fix Envers allowing @IdClass mappings using entity primary keys. - -commit 1ae930ef6993814da5d9e1aa2da370622be5685f -Author: yinzara -Date: Fri Apr 1 19:47:41 2016 -0700 - - HHH-10667 - Added test case. - -commit 432d3a29fa6886f83e3eeaa3c480a9f0ff3b77cb -Author: Sanne Grinovero -Date: Tue Apr 17 12:15:40 2018 +0100 - - HHH-12384 Introduce new hibernate.bytecode.enforce_legacy_proxy_classnames configuration property - -commit 1f7457133c3b60684888b571b21fe85eba072c05 -Author: Sanne Grinovero -Date: Tue Apr 17 12:03:56 2018 +0100 - - HHH-12501 Fallback implementation for BytecodeProvider should match the default - -commit d3218581e8020db739a5a5b032d1757ca9b7a397 -Author: Steve Ebersole -Date: Tue Apr 17 18:59:00 2018 -0500 - - HHH-12495 - Cache statistics (binary compatibility) - -commit a63c4fe1d2684b013cdb8c60445549424c8ca767 -Author: Steve Ebersole -Date: Tue Apr 17 18:57:12 2018 -0500 - - HHH-12495 - Cache statistics (binary compatibility) - -commit e508d6bee8da08cee1f864c1e69a1cf19e317e90 -Author: Steve Ebersole -Date: Tue Apr 17 18:44:06 2018 -0500 - - HHH-12499 - SQLQuery (binary compatibility) - -commit 11456a98920a83145afb1bd65b1d313247de0a7c -Author: Chris Cranford -Date: Tue Apr 17 17:23:52 2018 -0400 - - HHH-12498 - Fix NPE when audited entity composite-key references non-audited entity. - -commit d9cdd580686dcc1d5842b4bdd4f0dfdc8ddce91f -Author: Steve Ebersole -Date: Tue Apr 17 14:56:58 2018 -0500 - - ProcedureCallMemento (binary compatibility) - -commit 57543a447ed58485af3ed76a139413db8ef97e85 -Author: Steve Ebersole -Date: Tue Apr 17 14:10:53 2018 -0500 - - HHH-12494 - BasicQueryContract (binary compatability) - -commit 231dd064a4bc50808de9c8415963e7a257913cb3 -Author: Chris Cranford -Date: Tue Apr 17 14:02:33 2018 -0400 - - HHH-12448 - Fix potential memory leak with Envers and JTA when after-completion callbacks did not fire. - -commit 83cd43d26b41ce56d57e360940db0cc374436767 -Author: Sanne Grinovero -Date: Tue Apr 17 18:12:05 2018 +0100 - - HHH-12493 Missing final keyword in Bytebuddy EnhancerImpl - -commit f89e82a020202604d168fdd893b7e7be6b8b50d2 -Author: Steve Ebersole -Date: Tue Apr 17 06:43:20 2018 -0500 - - HHH-8944 - ColumnTransformer handling is too aggressive in qualifying "column names" - - Limited to H2 because getting a good expression to use for `Staff#kooky` that works on all databases is challenging and really what happens on the "database side" here is not relevant - the issue being tested is how Hibernate applies the table aliases to column references in the expression. - -commit cf2c6235fd61ede1c9911b1b8ea0db911c47c868 -Author: Sanne Grinovero -Date: Mon Apr 16 14:13:12 2018 +0100 - - Amend an out of date javadoc comment referring to CGLIB - -commit 24613014676267840ff6de94557c85b63ce74af6 -Author: Sanne Grinovero -Date: Mon Apr 16 12:24:14 2018 +0100 - - HHH-12493 Further reduce allocations of ByteBuddy engines - -commit 6d853b582e8e14e6e4758574ee8babe988a73503 -Author: Rodrigo Turini -Date: Sun Apr 15 22:12:02 2018 -0300 - - HHH-12451 - Fixing JDBC and Java Type order for CurrencyType - -commit 84614aa4058aa4d051ff11d9b691df97653729b0 -Author: Rodrigo Turini -Date: Sun Apr 15 21:30:29 2018 -0300 - - HHH-12365 - User Guide: call_key should change to call_timestamp_epoch - -commit 2bb1c8419c6379e4fd67c79082635343311520fd -Author: Anthony Richir -Date: Mon Apr 16 22:28:08 2018 +0200 - - HHH-12491 - Document the usage of the maven-compiler-plugin for hibernate-jpamodelgen - -commit 6d54383ca919b50eb7211a07327b0fa94297c261 -Author: Vlad Mihalcea -Date: Tue Apr 17 10:02:28 2018 +0300 - - HHH-12407 - order_inserts: StackOverflowError when flushing a session - - Add test that proves the issue does not replicate anymore - -commit 683d1e492a1b69ef1eecc1a828067915b113909b -Author: Steve Ebersole -Date: Mon Apr 16 11:07:24 2018 -0500 - - HHH-8944 - ColumnTransformer handling is too aggressive in qualifying "column names" - -commit 2bf323f01f9787660c4f2a54119293c7e23fef2c -Author: Christian Beikov -Date: Fri Apr 13 15:42:07 2018 +0200 - - HHH-12485 - Avoid unnecessary exceptions during import class name lookup of metamodel - -commit 2de4277c34258f35992000267fefe806e58d8f2b -Author: Christian Beikov -Date: Fri Apr 13 15:55:24 2018 +0200 - - HHH-12486 - Avoid unnecessary exceptions during entity persister lookup during query compilation - -commit 5803ad58391238ae76f50afba44afc261d63ad03 -Author: Steve Ebersole -Date: Thu Apr 12 08:53:19 2018 -0500 - - HHH-8944 - ColumnTransformer handling is too aggressive in qualifying "column names" - -commit 6c0c44f7d01cde79b950854f9c9e7fb5c30a163a -Author: Vlad Mihalcea -Date: Mon Apr 16 17:50:45 2018 +0300 - - HHH-12484 - Improved error output for LazyInitializationException to include entity-related info - - Use predefinied entity identifiers - -commit d8d5bf99da84d75b86383f9046d7e4e5c031a07b -Author: Steve Ebersole -Date: Mon Apr 16 09:46:21 2018 -0500 - - HHH-12454 - Offer flag to consider id generator with local scope (legacy non JPA behavior) - -commit b6ee633c53ff17cb288f7708e559198f0f3f91f2 -Author: Andrea Boriero -Date: Mon Apr 9 16:43:01 2018 +0100 - - HHH-12454 - o.h.boot.spi.SessionFactoryOptions#getJpaCompliance() returns an immutable copy - -commit 6cefa865b0635a71eb85e20f6255491439ecb6da -Author: Andrea Boriero -Date: Fri Apr 6 12:27:33 2018 +0100 - - HHH-12454 - Offer flag to consider id generator with local scope (legacy non JPA behavior) - -commit b463c809d67830850d7361ab7d232510ae538d59 -Author: Andrea Boriero -Date: Fri Apr 6 12:27:19 2018 +0100 - - HHH-12454 - Add tests for issue - -commit c7c919f54a5bc7c75f945dc0918a7852079f0665 -Author: Chris Cranford -Date: Mon Apr 16 10:26:24 2018 -0400 - - HHH-12424 - Fix unintended binary compatibility breaks between 5.1 and 5.3 - HHH-11737 - Remove dependency upon org.hibernate.criterion package. - -commit 8061e812ad5ac72599004730eb4d75ec15cdf69a -Author: nikowitt -Date: Mon Apr 16 07:55:40 2018 +0200 - - HHH-12484 - Improved error output for LazyInitializationException to include entity-related info - -commit dba91ab8fe1663b8d1ccb98bf022140be09b3d6a -Author: Sanne Grinovero -Date: Tue Apr 10 18:05:28 2018 +0100 - - HHH-12467 ByteBuddy TypeCache stale entries should be cleared to avoid references to application classloader - -commit 85adc9ca2705f1e90e724226e9d84243d3709a52 -Author: Andrea Boriero -Date: Fri Apr 13 15:25:24 2018 +0100 - - HHH-12464 - Fix HANA db failing test - -commit 0a4f02801d7a186ed044548bfc379393641e0340 -Author: Andrea Boriero -Date: Sat Apr 7 12:40:52 2018 +0100 - - HHH-12464 - NPE upon insert & delete with identity generated id - -commit 2bf85ffd2a3c3f21dacce095a1c6cb3e40eb0227 -Author: Andrea Boriero -Date: Sat Apr 7 12:40:23 2018 +0100 - - HHH-12464 - Add test for issue - -commit e11d09d1dde61571785e2471e6cffdd9c8d3120d -Author: Vlad Mihalcea -Date: Thu Apr 12 12:38:10 2018 +0300 - - HHH-12479 - Document the converted:: prefix for HBM type mappings - -commit e316649fd6c24b8487535bebb28df41846300e2a -Author: Sanne Grinovero -Date: Thu Apr 12 11:55:36 2018 +0100 - - HHH-12482 Avoid logging overhead within CallbackBuilderLegacyImpl loops - -commit cf75861c0e939decff9acc9a6b5027b1059af98f -Author: Sanne Grinovero -Date: Thu Apr 12 11:49:46 2018 +0100 - - HHH-12481 Reduce the visibility of internal implementations of Callback - -commit 5e34f82c729a1611f4e6daaafef5f2673e9af604 -Author: Vlad Mihalcea -Date: Thu Apr 12 10:02:43 2018 +0300 - - Fix intermitent failures due to modification time being assigned after 1ms after creation time - -commit af4fb456e12af2e5e78219f5cb338943bf3a42ee -Author: Sanne Grinovero -Date: Wed Apr 11 22:55:38 2018 +0100 - - Updating link in generated POM file metadata - -commit 4bbb5668d6e1aca553a825120f377dcbc6cd55b3 -Author: Sanne Grinovero -Date: Mon Mar 5 19:31:03 2018 +0000 - - HHH-12478 Upgrade to Mockito 2.18.0 to improve memory utilization of tests - -commit a99fecca29c60bcf3d8b3b3dc4a452f8f1fde700 -Author: Steve Ebersole -Date: Wed Apr 11 16:02:03 2018 -0500 - - HHH-12473 - EntityManager.close() should throw an ISE if called on already closed EntityManager - -commit e2b7317560bdb3248d9f5ec9f254a7bcecb31fb8 -Author: Andrea Boriero -Date: Wed Apr 11 19:18:19 2018 +0100 - - HHH-12474 - Make sure the JPA version is defined by a single property across build files - -commit 11d28db2f3575c2f6cbbd615e48fa90f730d697c -Author: Steve Ebersole -Date: Wed Apr 4 14:30:38 2018 -0500 - - HHH-12424 - Fix unintended binary compatibility breaks between 5.1 and 5.3 - -commit 374c6d6a360ac81c1939cb7016c37dd6544bc34f -Author: Sanne Grinovero -Date: Wed Apr 11 16:36:49 2018 +0100 - - HHH-12477 Javassist no longer needed in the JBoss Module for Hibernate Envers - -commit d26a2adb5451525394bdb26010877d3b959c7fe3 -Author: Chris Cranford -Date: Wed Apr 11 11:10:21 2018 -0400 - - HHH-12327 - Remove javassist from jar manifest and explicitly exclude it from the build. - -commit 4cfdbaaf1ff106dbc658e0abebd9a68263aabb63 -Author: Chris Cranford -Date: Wed Apr 11 11:05:05 2018 -0400 - - HHH-12475 - Remove unnecessary dependencies from hibernate-envers build. - -commit ec2f8e9ba5573628adf3fd9a356c8956d717f69d -Author: Sanne Grinovero -Date: Tue Apr 10 18:05:28 2018 +0100 - - HHH-12471 Avoid using a TypeCache in the ByteBuddy BytecodeProvider - -commit 69000ddc165ca0aba13ac950b2637974e018c4fb -Author: Jonathan Bregler -Date: Wed Apr 4 10:57:25 2018 +0200 - - HHH-12462 - Use SAP HANA JDBC driver from Maven Central - -commit 62347cde01920b49f3f7918d8ffb6b9d03ffe010 -Author: Christian Beikov -Date: Wed Mar 21 08:08:20 2018 +0100 - - HHH-12413 Made ParameterTranslationsImpl public again so that it can be instantiated - -commit 6b3bbfcd1970aa394978e147bdcbea673662cff8 -Author: Vlad Mihalcea -Date: Wed Feb 28 17:13:14 2018 +0200 - - HHH-12326 - PreUpdate/PrePersist not working for @Embeddable entities - -commit 75ea23cab35868f9001dad93aeb4ee56db207350 -Author: Steve Ebersole -Date: Tue Apr 3 14:40:13 2018 -0500 - - Improved @Where + query testing - -commit 15f8a629dd2150afb57ac7a8b66ff6c874d81c7b -Author: Sanne Grinovero -Date: Tue Apr 3 18:38:56 2018 +0100 - - HHH-12455 WildFly provisioning build helpers should not implicitly change repository configurations - -commit 66881848396651acfee4a9f06dd11fb5510fabba -Author: Andrea Boriero -Date: Tue Apr 3 18:04:40 2018 +0200 - - HHH-12444 - Introduce BootstrapContext HHH-12443 - Introduce TypeConfiguration - -commit b0e591f01d1c8a469b496892f853cb6dbae7fcae -Author: Vlad Mihalcea -Date: Thu Mar 22 12:14:29 2018 +0200 - - HHH-12387 - Immutable entities can be updated via bulk update queries - -commit ae0dfdc779c573d88573cba12915b30cec465bae -Author: barreiro -Date: Wed Mar 14 17:41:11 2018 +0000 - - HHH-12389 - Remove usage of javax.script.ScriptEngine in MixedAccessTest - -commit d736c3fa62d62401a230dda2bb61825e8771dc5c -Author: simeonmalchev -Date: Sun Apr 1 08:31:54 2018 +1000 - - HHH-12453 - Update Vibur dependency from 22.0 to 22.1 - -commit 9e46dd86a5b13c5f08f5289c490daff4e5f40ab8 -Author: Vlad Mihalcea -Date: Mon Apr 2 09:06:21 2018 +0300 - - Fix checkstyle issues - -commit 3af728b42c622266f27bade0805565d7a1b396af -Author: Steve Ebersole -Date: Sun Apr 1 12:50:56 2018 -0500 - - HHH-12379 - Add support for persistence_2_2.xsd and orm_2_2.xsd - -commit b072981054af01e83121e377fa263e3d176383e9 -Author: Steve Ebersole -Date: Fri Mar 30 08:27:44 2018 -0500 - - HHH-12410 - Cannot use AttributeConverter with spatial types - HHH-12443 - Introduce TypeConfiguration - -commit c14180ea5b16b69cdd06eb5bb159f7da1ff4db54 -Author: Steve Ebersole -Date: Thu Mar 29 23:16:12 2018 -0500 - - HHH-12410 - Cannot use AttributeConverter with spatial types - HHH-12443 - Introduce TypeConfiguration - -commit 216ad13e6caa26f31c44019b945eace96ae4e5e8 -Author: Gail Badner -Date: Thu Mar 29 17:29:53 2018 -0700 - - HHH-12166 : AbstractCompositionAttribute#getAttributes throws NPE for nested CompositeCustomType - -commit 05404eff0f861cf624b7cbad41c49a7a08cada72 -Author: Gail Badner -Date: Thu Mar 29 17:28:07 2018 -0700 - - HHH-12166 : test case - -commit 7bcfa0d90d8563024d6b7f70a7467ddd47e90186 -Author: helloztt <347871727@qq.com> -Date: Sat Aug 19 18:05:05 2017 +0800 - - HHH-12338 - Incorrect metamodel for basic collections - -commit 80e1fb68841b644b45b27a89f0671b953368b86c -Author: Steve Ebersole -Date: Wed Mar 28 21:20:36 2018 -0500 - - HHH-12432 - Upgrade to Hibernate Commons Annotations 5.0.3.Final - -commit ed575e44a94e9ab0e4f49be34ef92e1dd5c994fa -Author: Bruno P. Kinoshita -Date: Sat Mar 3 18:57:24 2018 +1300 - - HHH-12346: Replace StringHelper#join by Java's String#join - -commit ed5afc0877c38a69c22f4fbdb167db12b79ae465 -Author: Steve Ebersole -Date: Wed Mar 28 21:05:48 2018 -0500 - - HHH-12443 - Introduce TypeConfiguration - - added StandardBasicTypeTemplate - -commit b228a2bc83cd63d9fb71fab342bdb2b7842d7fb3 -Author: Steve Ebersole -Date: Wed Mar 28 20:47:31 2018 -0500 - - HHH-12443 - Introduce TypeConfiguration - -commit 67210052080ad767df9d3ae8bc955c21c949ed83 -Author: Andrea Boriero -Date: Wed Mar 28 19:47:45 2018 +0100 - - HHH-12444 - Introduce BootstrapContext - HHH-12443 - Introduce TypeConfiguration - -commit 0d82dc7c8387a954edfa971af99c16a66e33c65a -Author: Andrea Boriero -Date: Mon Mar 26 16:05:20 2018 +0100 - - HHH-12444 - Introduce BootstrapContext - HHH-12443 - Introduce TypeConfiguration - -commit cb6871ff40d9b4aad56bcaf694d26787cc260745 -Author: Andrea Boriero -Date: Fri Mar 23 13:45:10 2018 +0000 - - HHH-12444 - Introduce BootstrapContext - HHH-12443 - Introduce TypeConfiguration - - Fix checkstyle errors - -commit 6f798598a2eb46872b9a3d5e8d2bcda5cdf4215a -Author: Andrea Boriero -Date: Fri Mar 23 13:41:09 2018 +0000 - - HHH-12444 - Introduce BootstrapContext - HHH-12443 - Introduce TypeConfiguration - -commit 170caf0076dd7c25fb474b40f94a7afcccc7a75c -Author: Andrea Boriero -Date: Thu Mar 22 13:35:22 2018 +0000 - - HHH-11263 - Deprecate o.h.type.TypeResolver - -commit ce36b3bb084e8952de7e4df47f9a0533d7a46da8 -Author: Andrea Boriero -Date: Thu Mar 15 15:34:53 2018 +0000 - - HHH-12444 - Introduce BootstrapContext - HHH-12443 - Introduce TypeConfiguration - -commit 11462e786007f65f3cf9c2539e5b8259b05feaf3 -Author: Andrea Boriero -Date: Wed Mar 14 18:59:15 2018 +0000 - - HHH-12444 - Introduce BootstrapContext - HHH-12443 - Introduce TypeConfiguration - -commit 9229514ed407b1610a52ab7ba97806c435352ad2 -Author: Andrea Boriero -Date: Tue Mar 6 09:22:40 2018 +0000 - - HHH-12444 - Introduce BootstrapContext - HHH-12443 - Introduce TypeConfiguration - -commit 55e73c7202da1155754bc12edb41121d0330b303 -Author: Andrea Boriero -Date: Sat Mar 3 16:58:55 2018 +0000 - - HHH-11264 - Unify native and JPA implementations of Hibernate event listeners - -commit 8f889e95d76f47945c9ec072fd08cb045767578c -Author: Andrea Boriero -Date: Fri Mar 2 19:38:22 2018 +0000 - - HHH-12444 - Introduce BootstrapContext - HHH-12443 - Introduce TypeConfiguration - -commit 1a75fb3bbbe1db67237a6f0d6efe604ab8a01be2 -Author: Steve Ebersole -Date: Wed Mar 28 14:39:49 2018 -0500 - - HHH-7809 - ehcache region factory should set a name for the CacheManager - -commit a35139ec3e7dd942f68211588c01750f96bed193 -Author: Alex Snaps -Date: Wed Mar 28 09:24:55 2018 -0400 - - Style - -commit 97dd42cfa6b84c9905a689ecbac6953c030d07e7 -Author: Alex Snaps -Date: Wed Mar 28 08:12:18 2018 -0400 - - HHH-7809 override or set cachemanager name - -commit 01ea47bd920be30acbaf53a4a86e35043e0f24d1 -Author: Alex Snaps -Date: Wed Mar 28 07:51:02 2018 -0400 - - HHH-11356 Unused const - -commit 048f1423513f8ffb739eaa6a477fc64184730839 -Author: Steve Ebersole -Date: Wed Mar 28 14:37:31 2018 -0500 - - HHH-12440 - Manage the SessionFactory's UUID on SessionFactoryOptions - wider availability - -commit 9ba05c1e6b69b10dcb9f20bf4ac7471c9da88cdc -Author: Steve Ebersole -Date: Wed Mar 28 14:04:13 2018 -0500 - - HHH-12441 - Deprecate hibernate-ehcache - -commit c10dbe9d9c26a28b605228d8f42232722305023f -Author: Gail Badner -Date: Wed Mar 28 11:36:52 2018 -0700 - - HHH-12439 : Merging of new entities can fail depending on cascade order - -commit 9d958291d8247e5694493ae8e69ad04534365a9d -Author: Steve Ebersole -Date: Wed Mar 28 11:09:04 2018 -0500 - - HHH-11356 - Adjust the 2nd-Cache SPIs to better reflect supported uses - - - Fix-ups from Radim's review - - Better Javadoc - -commit b87be0cc252c9464eb582d83ae8ede9dbedba796 -Author: Romain Fromi -Date: Wed Mar 28 11:08:43 2018 +0200 - - HHH-1268 - Unidirection OneToMany causes duplicate key entry violation when removing from list - - Add replicating test case - -commit 84757b12c36d020c558906e7bbed25a5ffcef206 -Author: Christian Beikov -Date: Sat Mar 17 23:02:39 2018 +0100 - - HHH-3930 Test and fix for unnecessary query that is issued when fetching inverse one-to-one - -commit b8674563d27611c09ed50086b2b4534031f07204 -Author: Steve Ebersole -Date: Tue Mar 27 15:38:00 2018 -0500 - - HHH-11356 - Adjust the 2nd-Cache SPIs to better reflect supported uses - - - Fix-ups from Radim's review - - Better Javadoc - -commit 94e8ba7ba52faf42cc54909999fe28e56fe6cdab -Author: Vlad Mihalcea -Date: Tue Mar 27 18:14:43 2018 +0300 - - HHH-11806 - Add support for MariaDB 10.3 - HHH-11769 - New MariaDB Dialect for MariaDB >= v10.1 - - Add support for IF EXISTS in constraint clauses - -commit f6aa8abd11914766dc607441bcfc4ea7d375f35f -Author: Philippe Marschall -Date: Sun Jun 11 20:37:10 2017 +0200 - - HHH-11806 - Add support for MariaDB 10.3 - HHH-11769 - New MariaDB Dialect for MariaDB >= v10.1 - -commit 8c661baea2d930855ed6431671b3e19108e12832 -Author: Jonathan Bregler -Date: Fri Mar 23 12:11:49 2018 +0100 - - HHH-12426 - SAP HANA spatial dialect should support all SAP HANA spatial functions - -commit fbe32f162a2d5722bd533095088b81e08a637254 -Author: Steve Ebersole -Date: Mon Mar 26 14:37:56 2018 -0500 - - HHH-11356 - Adjust the 2nd-Cache SPIs to better reflect supported uses - - Fix-ups from Radim's review - -commit 93d9162243996f9e4860efd369ee43eef102d76a -Author: Steve Ebersole -Date: Mon Mar 26 11:41:35 2018 -0500 - - HHH-12390 - Add hibernate-jipijapa for integrating with WildFly - - - checkstyle fixups - - adjust checkstyle to allow up to 5 newlines at the end of the file (1 to 5) - - fixed bad 4.6 Gradle wrapper version (cant load builds) - -commit f5bb8a1f934aa27c9febe0c9b0560d7c66d166d1 -Author: Steve Ebersole -Date: Fri Mar 23 13:43:24 2018 -0500 - - HHH-12390 - Add hibernate-jipijapa for integrating with WildFly - - - formatting changes - - clean up - - still todo investigate JtaPlatformProvider approach - -commit 6f48fa1a49a670792a735368c280aa9ce533a261 -Author: Steve Ebersole -Date: Fri Mar 23 13:03:18 2018 -0500 - - HHH-12390 - Add hibernate-jipijapa for integrating with WildFly - - - functional changes - building, all tests passing - - formatting changes coming in next commit to isolate them - - removed Infinispan dependencies (not compile/test failures in any subproject as a result) - -commit 9c97b987e12f5d1100c1a024b69f1a87a850cd7f -Author: Scott Marlow -Date: Thu Mar 15 12:53:32 2018 -0400 - - HHH-12395 hibernate-jipijapa should set new defaults for JPA 2.2 specification compliance - -commit 2a1a85383e4d4de34d8859ea27ad05d703280f97 -Author: Scott Marlow -Date: Tue Mar 6 16:41:42 2018 -0500 - - HHH-12390 add hibernate-jipijapa - -commit 9cc9a6882a2d5b3698112412863831363c4c30ac -Author: Andrea Boriero -Date: Fri Mar 16 11:54:56 2018 +0000 - - HHH-12391 - with IronJacamar an EntityTransaction.rollback() with a non active Transaction that was marked for rollback only causes a failure - -commit 0a42a5273d4b69e47ee4d06e090042fc5e945f2d -Author: Andrea Boriero -Date: Fri Mar 16 09:23:26 2018 +0000 - - HHH-12391 - Add test for issue - -commit 1915ba780fabce861dc74a69880d0de5b993808d -Author: Jonathan Bregler -Date: Mon Mar 26 13:44:34 2018 +0200 - - HHH-12357 - NamingHelper uses system default encoding - - Fix failing tests on SAP HANA - -commit c863d12fd20dff2bd3a146d566d714b933ceaec2 -Author: Vlad Mihalcea -Date: Mon Mar 26 12:41:59 2018 +0300 - - HHH-12430 - Query Cache does not store eagerly fetched associations via JOIN FETCH - - Add replicating test case - -commit 9fe24e7e6dec7735dcba896f1be7aa7d4ebdc814 -Author: Gail Badner -Date: Fri Mar 23 00:38:00 2018 -0700 - - HHH-12226 : ObjectNotFoundException thrown when @NotFound(action = NotFoundAction.IGNORE) used with enhancement - -commit e7bd213c9e32dbb5456f43a6350e54055df73221 -Author: Sanne Grinovero -Date: Fri Mar 23 15:33:36 2018 +0000 - - HHH-12427 Prevent classloader leak in ByteBuddy based BasicProxyFactoryImpl - -commit 511a5a3618114bfaac47af6b2cf1404e48af08bb -Author: Vlad Mihalcea -Date: Thu Mar 22 16:12:45 2018 +0200 - - HHH-12423 - SecondaryTable is not taking into account the schema while mapping the entity - -commit a2a52c32e5d5112302d57c7e88b998f36ff71142 -Author: Vlad Mihalcea -Date: Wed Mar 21 18:23:33 2018 +0200 - - HHH-12357 - NamingHelper uses system default encoding - - Fix issue by allowing an explicit charset to be used - -commit 1ae38f27a7d41637dc45549cef625c838eb86246 -Author: Steve Ebersole -Date: Thu Mar 22 23:25:08 2018 -0500 - - HHH-11356 - Adjust the 2nd-Cache SPIs to better reflect supported uses - HHH-12323 - Update Statistics API and SPI based on changes to 2nd level caching changes - HHH-12416 - set up relocation for hibernate-ehcache - HHH-12417 - default strategy based on registrations with StrategySelector - - test failure - -commit 7f12e2a1617555cc4806ec730665b4f7c5b0d28c -Author: Steve Ebersole -Date: Thu Mar 22 22:51:07 2018 -0500 - - HHH-11356 - Adjust the 2nd-Cache SPIs to better reflect supported uses - HHH-12323 - Update Statistics API and SPI based on changes to 2nd level caching changes - HHH-12416 - set up relocation for hibernate-ehcache - HHH-12417 - default strategy based on registrations with StrategySelector - - Basically reverted HHH-12416 and added basic support for Ehcache 2 again - -commit 84897f0ad0dbe158ec2acefb9acb21834bbd2cc8 -Author: Steve Ebersole -Date: Thu Mar 22 13:53:17 2018 -0500 - - HHH-12424 - Fix unintended binary compatibility breaks between 5.1 and 5.3 - - checkstyle fixes - -commit 1174cdad654e74959ec2be8de7599a81dd3840c7 -Author: Steve Ebersole -Date: Wed Mar 21 19:23:38 2018 -0500 - - HHH-12417 - default strategy based on registrations with StrategySelector - - ConnectionProviderInitiator and tests - -commit 953f9569893dec80b85ca435f354ab2b34ea243a -Author: Steve Ebersole -Date: Wed Mar 21 15:01:42 2018 -0500 - - HHH-12417 - default strategy based on registrations with StrategySelector - -commit dae31640a8af3577334aaf5404cc1d6cb7227560 -Author: Steve Ebersole -Date: Wed Mar 21 14:57:57 2018 -0500 - - HHH-11356 - Adjust the 2nd-Cache SPIs to better reflect supported uses - HHH-12323 - Update Statistics API and SPI based on changes to 2nd level caching changes - HHH-12416 - set up relocation for hibernate-ehcache - -commit eea22fad1712ad781f22404da917294930cbfa24 -Author: Steve Ebersole -Date: Tue Mar 20 19:01:53 2018 -0500 - - HHH-11356 - Adjust the 2nd-Cache SPIs to better reflect supported uses - HHH-12323 - Update Statistics API and SPI based on changes to 2nd level caching changes - - - initial work on migrating hibernate-jcache to new SPIs including a more template-style approach to writing a RegionFactory (o.h.cache.spi.support) - -commit 638ebf01dfa8bfe85922ed43466159450a238a61 -Author: Steve Ebersole -Date: Fri Mar 16 08:54:03 2018 -0500 - - HHH-11356 - Adjust the 2nd-Cache SPIs to better reflect supported uses - HHH-12323 - Update Statistics API and SPI based on changes to 2nd level caching changes - - - initial work on migrating hibernate-jcache to new SPIs including a more template-style approach to writing a RegionFactory (o.h.cache.spi.support) - -commit f432ecea687ce606144c8fca1f4fc7f1937e1c2a -Author: Steve Ebersole -Date: Tue Mar 13 17:54:24 2018 -0500 - - HHH-11356 - Adjust the 2nd-Cache SPIs to better reflect supported uses - HHH-12323 - Update Statistics API and SPI based on changes to 2nd level caching changes - -commit 24a078732c25c9dec92fe7ff3e1c40f19fb5ecfa -Author: Steve Ebersole -Date: Thu Mar 22 13:01:34 2018 -0500 - - HHH-12424 - Fix unintended binary compatibility breaks between 5.1 and 5.3 - -commit bf0741caf4d10abd4b7c10cb0a450561fd8aa263 -Author: Steve Ebersole -Date: Thu Mar 22 11:57:39 2018 -0500 - - HHH-12424 - Fix unintended binary compatibility breaks between 5.1 and 5.3 - -commit c22540ab65739d5ef5de40c30e90fbca0010ee5a -Author: Vlad Mihalcea -Date: Thu Mar 22 14:22:51 2018 +0200 - - HHH-12419 - Incorrect batch inserts example - -commit a8a9bde70b50b867eebcef808eefbfd808e758f3 -Author: Sanne Grinovero -Date: Wed Mar 21 14:48:52 2018 +0000 - - HHH-12415 Update Gradle wrapper to Gradle 4.6 - -commit 00be50331f155d0cc769c7ed3bff992199e877a8 -Author: Andrea Boriero -Date: Thu Mar 15 12:09:47 2018 +0000 - - HHH-12392 - Caching SchemaResolver delegate with multiple data sources - -commit 3a2ab40314c1f66456cb3481ed31f029a1814c01 -Author: Andrea Boriero -Date: Fri Mar 16 19:40:20 2018 +0000 - - HHH-12375 - HHH-12383 - Remove path from AbstractPropertyMapping#typesByPropertyPath for imcompatible type properties - -commit 3dd67f7d6a6864908d795dce56f18c8ab145d1bb -Author: Andrea Boriero -Date: Fri Mar 16 19:37:53 2018 +0000 - - HHH-12375 - Add more tests - -commit 56d3ce4c2f9886db7b688f9b61e49435029e34ec -Author: Christian Beikov -Date: Tue Mar 13 19:47:34 2018 +0100 - - HHH-12383 - Type check existing type to avoid class cast exceptions related to type incompatible same named attributes being used in subtypes - -commit 7dd640a65e65bcab6e4eaf52a7a38f48d7b25579 -Author: Christian Beikov -Date: Fri Mar 9 21:18:50 2018 +0100 - - HHH-12375 Fix for eager loading same named properties with conflicting types - -commit f030e7f39f04d10b57654081d40c82970d51550e -Author: Andrea Boriero -Date: Mon Mar 19 17:13:24 2018 +0000 - - HHH-11867 - @UpdateTimestamp not working with @Inheritance( strategy = JOINED ) - -commit 3f666feb4470cbd28577dfc7e16b56b7f49697b3 -Author: Andrea Boriero -Date: Fri Feb 23 13:31:55 2018 +0000 - - HHH-11867 - Add test for issue - -commit 56532628125ac96f1b1794c7f2448cdb8f6534f4 -Author: Roland Illig -Date: Mon Mar 5 18:15:49 2018 +0100 - - HHH-12357 - NamingHelper uses system default encoding - - Add replicating test case - -commit b599c770af818fef9b3ccc9d945266f38ac5a973 -Author: Vlad Mihalcea -Date: Tue Mar 20 18:31:13 2018 +0200 - - HHH-12362 - Allow both SQL query hints and comments - - Fix broken tests - -commit 3ebb949dcc18672643dd860dab7be9ed614dc728 -Author: Vlad Mihalcea -Date: Thu Mar 15 10:51:12 2018 +0200 - - HHH-12362 - Allow both SQL query hints and comments - -commit 6e912cec0f3b90f3fb63b3d9bbff10f54d934dae -Author: asutosh936 -Date: Tue Mar 20 01:08:52 2018 -0500 - - HHH-12364 : Removed @MapKeyJoinColumn with name phone_id as its not needed - -commit 83e95d76816ccff30c9a7e64e318ee340d822ec4 -Author: Gail Badner -Date: Mon Mar 19 18:06:32 2018 -0700 - - HHH-12406 : Add a test for HHH-11440 - -commit de2e4a829f292eab54961f5d016dc4798b2ac7d0 -Author: Etienne Miret -Date: Sat Feb 7 16:29:51 2015 +0100 - - HHH-3813 Fix flush of the join table before a criteria query. - -commit c6ea7fd3591ab8c869e535602575e29e7d0eb0db -Author: Sanne Grinovero -Date: Fri Mar 16 23:25:25 2018 +0000 - - HHH-12399 Re-introduce Environment#jvmHasTimestampBug as deprecated method - -commit c8bd65646111775db24b96709e47c8be2cb0a56c -Author: Sanne Grinovero -Date: Fri Mar 16 20:09:35 2018 +0000 - - HHH-12398 Upgrade to Byte Buddy 1.8.0 to support JDK10 and preliminary support for JDK11 - -commit 748c521d71ed1076b2df61f78cf017b8b3e96e4b -Author: Chris Cranford -Date: Fri Mar 16 13:32:24 2018 -0400 - - HHH-12314 - Fix ClassCastException when using a NegatedPredicateWrapper on a Criteria Join. - -commit b0cd713ac72550b9b88cb1f5665ad889c26142d5 -Author: Andrea Boriero -Date: Fri Mar 16 17:02:55 2018 +0000 - - HHH-12290 - Fix tests - -commit 1ac6218f5d645eb3ff9e4229208a7281c42574a9 -Author: Andrea Boriero -Date: Fri Mar 16 16:29:43 2018 +0000 - - HHH-12397: commit transactions in org.hibernate.jpa.test.query.QueryTest - -commit f9dc014a792e1a6a2baddc0244ef8eb62015b3b1 -Author: Lars Storm -Date: Mon Mar 5 13:39:35 2018 +0100 - - HHH-11924: ElementCollection ignore converter for XML mapping - -commit 7a47be8d9bb76f2373de370a160d60c18154cd46 -Author: Andrea Boriero -Date: Fri Mar 16 15:57:07 2018 +0000 - - Revert "HHH-12391 - attempt to create test reproducing error; no luck" - - This reverts commit 6e82e4fd53b357602238aaf83fb235ba502fba67. - -commit 6e82e4fd53b357602238aaf83fb235ba502fba67 -Author: Steve Ebersole -Date: Thu Mar 15 14:09:35 2018 -0500 - - HHH-12391 - attempt to create test reproducing error; no luck - -commit 7358944b974e4051a4b727ba24a91aba5fa60c39 -Author: Dmitrii Bocharov -Date: Thu Mar 1 15:32:23 2018 +0100 - - HHH-12221: incorrect formatting of SQL Server statements when escaping - -commit 86da00d66f9d7a9f73556f9716b346c4276de581 -Author: Steve Ebersole -Date: Wed Mar 14 10:38:43 2018 -0500 - - HHH-12290 - Failure with JPQL positional queries with collection parameter (IN statement for example) - -commit 4d9fb70114e8a3cd67a403901915a1e380a08377 -Author: Guillaume Smet -Date: Fri Mar 9 17:51:12 2018 +0100 - - HHH-12290 Expand ordinal parameters to ordinal parameters - - They used to be expanded to named parameters which causes problem with - strict JPA compliance as named and positional parameters cannot be - mixed. - - The first value is replaced by the very same initial parameter position to avoid - gaps (these are not supported), then we replace the other values with max position - + increment. - -commit 0c8779e1ee6a8e93c44bc1969fc9cdafcc3b3757 -Author: Guillaume Smet -Date: Fri Mar 9 17:39:23 2018 +0100 - - HHH-12290 Be stricter in how we find the first occurrence of a parameter - - Currently, when looking for ?1, if would find the ?1 in ?13 if ?13 is - placed before ?1 in the parameter list. - -commit 7e77a6032b97633d2ca66cbd3b16bb9b55590902 -Author: Dmitrii Bocharov -Date: Mon Feb 19 17:13:28 2018 +0100 - - HHH-12290 Add jpa compliance check for parameters mixture - -commit 2a0b8f24a9a706329fbdb3a0781601cd3cbb5929 -Author: Laurent Almeras -Date: Tue Feb 13 15:05:18 2018 +0100 - - HHH-12290 JPQL collection and positional broken - -commit 07a0e1243a6008e9e5626102af52926007346349 -Author: Andrea Boriero -Date: Mon Mar 12 17:41:41 2018 +0000 - - HHH-12380 - Stackoverflow when order_inserts=true - -commit 08fa07442b57fbc5ce640ccf2e9b40a8e7478d0e -Author: Roland Illig -Date: Mon Mar 5 16:04:16 2018 +0100 - - HHH-12388 - User Guide and Javadoc typo fixes - - Fix adoc typo in "Using table identifier generator" User Guide section. - -commit a17a8df9e3b3dd5527c9fbd2b19a5be0e8ca3cbe -Author: Roland Illig -Date: Mon Mar 5 17:09:14 2018 +0100 - - HHH-12388 - User Guide and Javadoc typo fixes - - Fix SQL for bidirectional OneToMany The documented SQL didn't match what the test actually produces. - -commit 069222cf58eaa20d83cc128d95d0cb7f45437358 -Author: Vlad Mihalcea -Date: Wed Mar 14 14:22:57 2018 +0200 - - HHH-12388 - User Guide and Javadoc typo fixes - - Fix inconsistency between User Guide content and the associatted test case - -commit 8b11d5ecf9a71ae70e3f7c837ed3de1b55ec096d -Author: Roland Illig -Date: Fri Mar 9 20:11:14 2018 +0100 - - HHH-12388 - User Guide and Javadoc typo fixes - - Fix a/an grammar in code and documentation, and other typos - -commit 8b601072f3c3951ee719fa7f2c5acbdb25232d7e -Author: Kirill Marchuk <62mkv@mail.ru> -Date: Sun Mar 11 15:45:48 2018 +0700 - - HHH-12388 - User Guide typo fixes - - Getting Started guide seems to be consistently using the term "Developer Guide", which is nowhere to be found in the "current" documentation, thus I propose this change. - -commit f44555fd6a6d338c9950a86e79be949fff8968fb -Author: Asier Lostalé -Date: Tue Mar 13 13:30:47 2018 +0100 - - HHH-12388 - User Guide typo fixes - -commit 884569f9ccc48f90c728f0d9e0d6d49f47680966 -Author: Réda Housni Alaoui -Date: Sun Mar 11 21:22:18 2018 +0100 - - HHH-12378 JDK 9 support: Remove javax.annotation.Generated usage - -commit 0c7e29b4d30e66974f1b9893603f1b5779eb76ac -Author: Steve Ebersole -Date: Tue Mar 13 17:51:00 2018 -0500 - - HHH-11356 - Adjust the 2nd-Cache SPIs to better reflect supported uses - - Adding tests on 5.2 branch asserting specific expectations of Cache and Statistics API and SPI to ensure we maintain seamless upgradeability to 5.3 in terms of region name expectations (region-name-prefix handling) - - * RegionNameTest - old API/SPI methods expected prefixed region name - make sure we continue to support that - * ConcurrentStatisticsTest - added cache prefix - * RefreshUpdatedDataTest - removed inaccurate assertions - -commit 097112353e4afaa1aad4e1d9de19951ed0875860 -Author: Vlad Mihalcea -Date: Tue Mar 13 15:28:06 2018 +0200 - - HHH-12374 - Order inserts sorting code gives up too soon - -commit 83760bb55a5291db8bceef69ba0c5c542f125064 -Author: Sanne Grinovero -Date: Mon Mar 12 22:31:14 2018 +0000 - - HHH-12382 TypeTest is creating a Proxy which is not necessary - -commit c1fbee79ae01fa2344e521c79e55a25a3436590a -Author: Sanne Grinovero -Date: Fri Mar 9 14:09:00 2018 +0000 - - HHH-12376 Apply some ThreadLocal optimisations made possible by new Java 8 API - -commit 0daa2400dd91c36407f1d734b98119694231e26d -Author: Sanne Grinovero -Date: Fri Mar 9 00:08:07 2018 +0000 - - Simplify SessionImpl code handling of ENTITY_MANAGER_SPECIFIC_PROPERTIES - -commit 0bc7aecb6cb3d4a67c5eb0d69f837d37738bd28e -Author: Sanne Grinovero -Date: Wed Mar 7 23:26:40 2018 +0000 - - HHH-12370 Lazily-initialized byte[] LOB gets turned into a String, resulting in poor performance - -commit 0719c48540274335302bfff00037fa44001b438b -Author: Sanne Grinovero -Date: Wed Mar 7 17:41:00 2018 +0000 - - Remove redundant copies of the license header - -commit 58af371440568090779959cdc44dbd4ab50c53ea -Author: Christian Beikov -Date: Wed Mar 7 17:53:33 2018 +0100 - - HHH-12369 Fix for integer overflow in limit handler when using Integer.MAX_VALUE for maxResults on DB2 - -commit 5aaabb0f037d2ede5230289f73169b1b20c446d7 -Author: Christian Beikov -Date: Wed Mar 7 18:44:50 2018 +0100 - - HHH-12369 Testcase that ensures the max rows don't overflow - -commit 690fb6c3349547de06261ebbd233b90193c3dcd1 -Author: Andrea Boriero -Date: Wed Mar 7 17:04:02 2018 +0000 - - HHH-12332 - Add more tests - -commit 2f4fa36f9bc07bc69be452662a4fc0dd532c5dc3 -Author: Christian Beikov -Date: Wed Mar 7 13:34:21 2018 +0100 - - HHH-12332 - Test and fix for unrelated same named singular attributes in subtypes - -commit 95464bd21a5b15c403caaccf1fd9d84ebb16c119 -Author: Christian Beikov -Date: Tue Mar 6 12:12:59 2018 +0100 - - HHH-12332 - Test and fix for unrelated same named collection attributes in subtypes - -commit 05770331933cb783d4c5e9f944188d2b161d4ce7 -Author: Guillaume Smet -Date: Mon Mar 5 23:55:11 2018 +0100 - - HHH-12332 Fix a couple of formatting issues - -commit 1e5a8d3c434c6791b89281c4ebf04ef08181fcd7 -Author: Christian Beikov -Date: Mon Mar 5 18:45:04 2018 +0100 - - HHH-12332 - Fix for NPE in AbstractPropertyMapping.getSuperCollection - -commit 249f847acd91a4ac4244628c349247b8617ce014 -Author: Christian Beikov -Date: Fri Mar 2 01:11:43 2018 +0100 - - HHH-12332 - Testcase for reproducing NPE in AbstractPropertyMapping.getSuperCollection - -commit 12724033692d83e2e8a1c1af7f51f1636bf8449a -Author: Sanne Grinovero -Date: Tue Mar 6 23:32:39 2018 +0000 - - HHH-12367 Create a separate JBoss Module for Hibernate Envers - -commit dc272128a129612c11c15e1cbdc65083d56a814e -Author: Arturas Sirvinskas -Date: Tue Mar 6 17:31:53 2018 +0000 - - HHH-7119 - Hibernate filter's parameters are not populated when an entity's Collection is populated using a fetch mode of subselect - -commit 020dd7f9da5fadcb75f93b2522c5c649ce54b776 -Author: Andrea Boriero -Date: Tue Mar 6 16:26:18 2018 +0000 - - HHH-7119 - Add test for issue - -commit 15fc1aa697ea2ca13a27438e1fea5c233d953181 -Author: Sanne Grinovero -Date: Thu Feb 22 18:56:59 2018 +0000 - - HHH-11528 Rename the core feature pack to hibernate-orm-jbossmodules - -commit fdde4d7060280afe19837f41cd19ff987ead1d84 -Author: Sanne Grinovero -Date: Tue Mar 6 22:45:30 2018 +0000 - - HHH-12366 Enable EE8 preview mode on WildFly 12 for integration tests - -commit 676784d28149b3ef22032b4f672ddf11e69e346d -Author: Chris Cranford -Date: Fri Jan 26 11:43:03 2018 -0500 - - HHH-8382 - Fix ordering of lob columns when using HBM mappings. - -commit a0b94f057ab88640da80d0ede10ac8fb8247f21c -Author: Chris Cranford -Date: Fri Jan 26 11:42:16 2018 -0500 - - HHH-8382 - Added test case. - -commit 33159c13a6983e42dbe8fc574f55315a4d32bc4f -Author: Chris Cranford -Date: Tue Mar 6 13:09:46 2018 -0500 - - HHH-8058 - Document enable querying entity revisions with property change indicators. - -commit 664c652a250bc3fff1c7777a5c96e4436a39d798 -Author: Chris Cranford -Date: Wed Feb 21 13:50:59 2018 -0500 - - HHH-8058 - Enable querying entity revisions with property change indicators. - (backport from wip/6.0) - -commit 79354bab9f988aca9f49a1773ad89f99ebb2e078 -Author: Chris Cranford -Date: Wed Feb 21 14:14:34 2018 -0500 - - HHH-7555 - Update documentation to document the new revision information entity query api. - (backport from wip/6.0) - -commit fea7f348eefcaf5e99d8a67532c4b3b6ef473068 -Author: Chris Cranford -Date: Wed Feb 21 14:10:47 2018 -0500 - - HHH-7555 - Add ability to query revision entity instances of an entity class without instantiating the entity instances. - (backport from wip/6.0) - -commit 4a3f7c19c0af376af42bdfffb9f9c7a282099e06 -Author: Chris Cranford -Date: Fri Mar 2 12:40:34 2018 -0500 - - HHH-12327 - Remove the Envers dependency on Javassist. - -commit 493c9681414862efdb4ad88d50f44bd3678f89be -Author: Chris Cranford -Date: Tue Mar 6 10:40:04 2018 -0500 - - HHH-12355 - Fix ordered insert failures with composite types having associations. - -commit ebfab7cb077da74d575e4fa83771be089c00c010 -Author: barreiro -Date: Mon Mar 5 19:01:43 2018 +0000 - - HHH-12358 Upgrade Agroal dependency to 0.4 - -commit 8a613014873bab80b4fb6c0ea1f9bb67650c7c62 -Author: Sanne Grinovero -Date: Mon Mar 5 11:36:27 2018 +0000 - - HHH-12352 The new ByteBuddy module for WildFly 12 is not working on JDK9 - -commit 0e597a03b548188fa8c0fccf0cc84d1cc4dbdc91 -Author: Sanne Grinovero -Date: Fri Mar 2 16:46:41 2018 +0000 - - HHH-11253 Revert dependency change on Javassist: still needed - -commit 186f980d3df8c1d38c5144a13db7b5d45ed552ea -Author: Sanne Grinovero -Date: Fri Mar 2 14:29:29 2018 +0000 - - HHH-12344 Upgrade to JBoss Logging 3.3.2.Final - -commit b8130d01779c83ec1effbcbc7c25f3abb1e2366b -Author: Sanne Grinovero -Date: Fri Mar 2 14:29:15 2018 +0000 - - HHH-12343 Upgrade to WildFly 12.0.0.Final - -commit 0a75278f9019af91e1d282fe382050be4d61f085 -Author: Sanne Grinovero -Date: Fri Mar 2 14:28:59 2018 +0000 - - HHH-12342 Upgrade to Byteman 4.0.1 - -commit 66d3232eb671f9482f4c300f29d23d83b80cdaff -Author: Sanne Grinovero -Date: Fri Mar 2 14:15:18 2018 +0000 - - HHH-11253 Running all tests with Byte Buddy will require more memory - -commit 0f5c3a0abc10323f08305387320e00f228620e87 -Author: Sanne Grinovero -Date: Tue Feb 27 16:59:41 2018 +0000 - - HHH-11253 Make Byte Buddy BytecodeProvider impl the default - -commit a77c4081f758ebfc4faa38692a4b46a037b2b75a -Author: Sanne Grinovero -Date: Thu Mar 1 20:31:56 2018 +0000 - - HHH-12340 BasicTypeRegistry would benefit from string interning - -commit f31e4acc03998b110ae2d098570647e40dd49f32 -Author: Sanne Grinovero -Date: Thu Mar 1 20:31:19 2018 +0000 - - HHH-12339 Optimise TypeNames for memory consumption: avoid autoboxing - -commit 333f7476b46b125ebea699e98d92ef8769fa8579 -Author: Steve Ebersole -Date: Thu Mar 1 13:12:08 2018 -0600 - - HHH-12323 - Update Statistics API and SPI based on changes to 2nd level caching changes - - added test of regionName expectations (prefixed or not) in various API and SPI calls. They all expect prefixed names - -commit 4e484af398726557b2c6f0f3ee5f88937cd5609e -Author: Sanne Grinovero -Date: Wed Feb 28 21:42:21 2018 +0000 - - HHH-12336 Avoid unnecessary invocations of fillInStackTrace() in the tests - -commit 0b24f333c99e5f782036663d7e6b95d8157084a1 -Author: Sanne Grinovero -Date: Wed Feb 28 17:57:18 2018 +0000 - - HHH-12335 StrategySelectorImpl can avoid some unnecessary String formatting during bootstrap - -commit c3e5390048a38dc609199d2337409109bb8c5841 -Author: Sanne Grinovero -Date: Thu Mar 1 13:45:37 2018 +0000 - - HHH-12334 ASTUtil improvements in Map usage - -commit 5806d6639ab88afe7d3f54ace90fb3522db6d6cf -Author: Sanne Grinovero -Date: Wed Feb 28 18:06:02 2018 +0000 - - HHH-12331 Avoid swallowed instances of PropertyNotFoundException - -commit e25cf6d76bd1df3840f2a48fcce4c44552af8deb -Author: Sanne Grinovero -Date: Tue Feb 27 18:12:16 2018 +0000 - - HHH-12328 ByteBuddyInterceptor#intercept should not wrap Exception types - -commit 0fc4294fed06db412ce299539288343d18670f1f -Author: Vlad Mihalcea -Date: Wed Feb 28 13:20:51 2018 +0200 - - HHH-12328 - ByteBuddyInterceptor#intercept should not wrap Exception types - -commit af6a69645c9bde5160c2b4de088c4b943b6131f5 -Author: Vlad Mihalcea -Date: Wed Feb 28 12:35:00 2018 +0200 - - HHH-12297 - Relations are not loaded when using Fetch Profiles - - Rename entities to prevent using DB reserved words - -commit 01111f7463c0e86960aabbc612b96b0eeeb99dc7 -Author: Vlad Mihalcea -Date: Wed Feb 28 12:06:16 2018 +0200 - - HHH-12297 - Relations are not loaded when using Fetch Profiles - - Fix wrong import - -commit 93c475f7e2bb23f42f148b0a4364c728609e43f5 -Author: Ladislav Kulhanek -Date: Fri Feb 16 09:08:20 2018 +0100 - - HHH-12297 - Relations are not loaded when using Fetch Profiles - -commit 229839b14aee125fbb0039b0e8549c4b7da7c497 -Author: Felix Feisst -Date: Tue May 20 09:59:03 2014 +0200 - - HHH-9186 - ORM wrongly assumes that an element of a set has a primary key - -commit cecfc63bc0ad088e06adcb1ab1366896699ad212 -Author: Piotr Bobinski -Date: Fri Feb 23 17:05:12 2018 +0100 - - HHH-12092 Bad PrimitiveCharacterArrayNClobType INSTANCE typo - -commit 865c159bff91c55bf9dfb708eada681b25dcf5e1 -Author: Christian Beikov -Date: Sat Mar 4 00:52:14 2017 +0100 - - HHH-11544 - Joins over type variable defined relations is non-deterministic - - Fix single table inheritance issues and improve polymorphic join condition - -commit fb0957fa1290c70c0c0b3afbb3562cceaa03fc60 -Author: Sanne Grinovero -Date: Thu Feb 22 15:42:31 2018 +0000 - - HHH-12321 Separate the Wildfly module for ByteByddy to make it private API - -commit 8f670c5f81b506deed378ab97b88d72bc80dd5cb -Author: Andrea Boriero -Date: Thu Feb 22 12:58:05 2018 +0000 - - HHH-12225 - Fix test failing on PostgreSql - -commit 0c17ef47b3656ccb071cd17b8299c1a7e188a136 -Author: Sanne Grinovero -Date: Wed Feb 14 16:43:17 2018 +0000 - - HHH-12296 Upgrade to Byte Buddy 1.7.10 to support JDK10 - -commit 91274811b6d429187baec3e8654adcd071637c2d -Author: randymay -Date: Fri Nov 3 16:22:22 2017 -0400 - - HHH-12225 - NullPointerException When Using type() in HQL - -commit aa4303d5c5063f0367aca245d9b96436f7e86f95 -Author: Sanne Grinovero -Date: Thu Feb 22 00:23:47 2018 +0000 - - HHH-12317 Move module path of the new Feature packs to org.hibernate.orm - -commit a7a9170e4e20274ec2c7e0f94ff5303a6fe56240 -Author: Karel Maesen -Date: Wed Feb 21 21:25:21 2018 +0100 - - HHH-11790 - Update code style for spatial module - -commit 2072ac0d0d50700c750268d5135bde49082b90f3 -Author: Karel Maesen -Date: Wed Feb 21 20:43:20 2018 +0100 - - HHH-11790 - Documenting DB2 Spatial Extender support - -commit 0c5c7178b8caa90b710507aefada1e55f7cca2a5 -Author: Karel Maesen -Date: Wed Feb 21 20:42:45 2018 +0100 - - HHH-11790 - Support for DB2 Spatial Extender - -commit 69ed07217e3890030a05baafbf7beaba748c4371 -Author: Sanne Grinovero -Date: Mon Feb 5 23:10:02 2018 +0000 - - Produce an Hibernate ORM feature pack, use Wildfly Provisioning to test it - -commit 46254184647edfdcd2601817338251fbfc28017a -Author: Cody Lerum -Date: Wed Jan 24 12:32:35 2018 -0700 - - HHH-9296 - Query by @MapsId property fails with missing parameter exception - - Add test case to replicate the issue - -commit 2bfe30009c15ea59c587d11714d4be78b14f9ad9 -Author: Vlad Mihalcea -Date: Tue Jan 23 10:19:52 2018 +0200 - - HHH-9460 - Removing non-optional bidirectional @OneToOne association with cascade - -commit bac853c548efba237a813b739672f4c30b6bcf0b -Author: Guillaume Smet -Date: Wed Feb 21 12:29:07 2018 +0100 - - HHH-12313 Fix a typo in a log message - -commit b322999393b7fadd8baff014d5157895b3079c7c -Author: Jonathan Bregler -Date: Wed Feb 21 09:37:48 2018 +0100 - - HHH-12313: org.hibernate.jpa.test.transaction.TransactionCommitFailureTest fails on HANA - -commit 291e3dd00452142884754c2b77d85874f9ce88a7 -Author: lukawski-adrian -Date: Sat Jan 20 20:57:19 2018 +0100 - - HHH-12230 - SelectCase does not work when simultaneously exists in select and group by sections - -commit f0e0355ad832fe688ec9986d565f21c45b9770e0 -Author: Vlad Mihalcea -Date: Mon Feb 5 14:47:31 2018 +0200 - - HHH-12273 - Load Proxy by its identifier should consider the Session UUID - -commit 684cfe6383e100b8eefcc7a5439f0d9ce700ea4b -Author: Jonathan Bregler -Date: Tue Jan 30 14:57:47 2018 +0100 - - HHH-12260: refactor org.hibernate.event.internal.EvictVisitor#evictCollection - -commit f972bc017f9da5ea3eae42db7b2f8ce779294a6a -Author: Andrea Boriero -Date: Mon Feb 12 11:42:47 2018 +0000 - - HHH-12285 - DB connection exception on rollback causes connection leak - -commit 745be880da8fb756ada7afa3ea73c2276fafeadd -Author: Yordan Gigov -Date: Tue Feb 13 17:39:33 2018 +0200 - - HHH-12292: nulls are valid values for Objects inside array - -commit a2c677620ce123d3a7de81c85019ed0b972b3453 -Author: Chris Cranford -Date: Mon Feb 19 16:17:10 2018 -0500 - - HHH-11981 - Fix QueryException thrown for association queries using EntitiesModifiedAtRevision queries. - -commit 2977d8f468a59a86c030ee56df0869f4a1bab304 -Author: Chris Cranford -Date: Thu Feb 8 11:29:12 2018 -0500 - - HHH-11901 - Fix audited collections that contain null values. - -commit b0ca1c54acbcf44752b94d91a93cf99c40a57197 -Author: Jonathan Bregler -Date: Tue Feb 13 16:57:23 2018 +0100 - - HHH-12306 - Fix org.hibernate.envers.test.integration.manytomany.MappedByEmbeddableAttributeTest on HANA - - - The order of the elements in Container#bList is undefined on the database - side. This fix adds a hasItem matcher instead of explicitly checking each item - of the list which depends on the order of the elements. - -commit ffb2ac0a9df4ed7ac9ef57778568afac44f00411 -Author: Jonathan Bregler -Date: Fri Feb 16 12:42:41 2018 +0100 - - HHH-12302: Schema creation uses non-unicode string types on SAP HANA - - - add Parameter hibernate.dialect.hana.use_unicode_string_types that allows - switching the database string types to unicode (nvarchar, nchar, nclob) - -commit 7a29fca061b20f89db0ce92af7c2dd9c386eaa85 -Author: Vlad Mihalcea -Date: Mon Feb 19 17:02:19 2018 +0200 - - Revert "HHH-12132: Schema creation uses non-unicode string types on SAP HANA" - - This reverts commit da3047b0abd0a6874171178aa910fe46e3e8063a. - -commit da3047b0abd0a6874171178aa910fe46e3e8063a -Author: Jonathan Bregler -Date: Fri Feb 16 12:42:41 2018 +0100 - - HHH-12132: Schema creation uses non-unicode string types on SAP HANA - - - add Parameter hibernate.dialect.hana.use_unicode_string_types that allows - switching the database string types to unicode (nvarchar, nchar, nclob) - -commit 3875cc688d8814b9763f6e335fd8054fc190e030 -Author: Andrea Boriero -Date: Thu Feb 15 10:15:37 2018 +0000 - - HHH-12059 HHH-11440 HHH-11286 HHH-10333 - hbm2ddl.auto=validate and hbm2ddl.auto=update do not work with Oracle and SQLServer when Jdbc driver Connection implementation does not implement getSchema() - -commit 1e9056fb03d9c5ae349ebc0b922cb64f1e82c657 -Author: Chris Cranford -Date: Fri Feb 16 13:29:33 2018 -0500 - - HHH-12304 - Fix MappingException when audited property uses a custom EnumType. - -commit 8516e31d9892ccc1799faba6b2a04bce40f53ec1 -Author: Steve Ebersole -Date: Thu Feb 15 12:08:03 2018 -0600 - - 5.3 cr1 - version back to SNAPSHOT - -commit 9e1bf7e7622ee55e2e39118a8b7ac84f15c6c34d -Author: Steve Ebersole -Date: Thu Feb 15 12:06:01 2018 -0600 - - 5.3 cr1 - prep release : fixed problem in release task dependencies - -commit 2636c1e2f060bc6b52a3617266469ee1eae2e8d3 -Author: Steve Ebersole -Date: Thu Feb 15 10:28:21 2018 -0600 - - 5.3 cr1 - prep release - -commit 0f18df1c0b072c713e682855a143f8cd82f0f660 -Author: Vlad Mihalcea -Date: Thu Feb 15 12:24:58 2018 +0200 - - HHH-12291 - PersistentBag throws NullPointerException when deleting an entity via Cascade - - Add example for Embeddable Composite Identifier too - -commit 23caf415f7ef1fe34b4e69f053d26d1decc95d68 -Author: Vlad Mihalcea -Date: Thu Feb 15 10:55:40 2018 +0200 - - HHH-12291 - PersistentBag throws NullPointerException when deleting an entity via Cascade - - Add another test for regular idbased Parent-Child associations - -commit c12a4423a7eb69e232a40efe60bfe0431ebcf30f -Author: Vlad Mihalcea -Date: Thu Feb 15 10:36:52 2018 +0200 - - HHH-12291 - PersistentBag throws NullPointerException when deleting an entity via Cascade - - Rename test case and spot the problem - -commit a42d176ccda58bb739643ba58369e32da4ddaed0 -Author: Steve Ebersole -Date: Wed Feb 14 11:13:16 2018 -0600 - - 5.3 cr1 - added back JBoss public Nexus repo as HCANN is not resolvable from Central (even 6 hours after release) - -commit 096217816e9860dce28afd661cc51f50ac4a60a6 -Author: Vlad Mihalcea -Date: Tue Feb 13 17:50:29 2018 +0200 - - HHH-12294 - Regression after fixing HHH-12064 - - Add test case and fix - - HHH-12291 - NullPointerException when deleting subentity with @ManyToOne to other Entities - - Add a replicating test case - -commit 5fe1297c145bf3174b1666e6bd0f925e9eea4e70 -Author: Sanne Grinovero -Date: Wed Feb 14 11:58:28 2018 +0000 - - HHH-12293 Upgrade to Hibernate Commons Annotations 5.0.2.Final - -commit c6e3577a133fecb251a748aeac0e0cfaefaf2d4d -Author: Sanne Grinovero -Date: Wed Feb 14 11:25:06 2018 +0000 - - HHH-10961 Update address of Free Software Foundation - -commit 8cfe4126f144a5f590be70f223c05e79ff383b5f -Author: Steve Ebersole -Date: Tue Feb 13 14:28:03 2018 -0600 - - HHH-12282 - Allow disabling of invalidation of second-level cache entries for multi-table entities - -commit 5e397e9cb3465902ddbb700490169a0eaa20b928 -Author: Andrea Boriero -Date: Tue Feb 13 15:09:47 2018 +0000 - - HHH-12141 - Fix test failing on PostgreSQL - -commit d54b2688ea2b4e59efe645353f9421954900057e -Author: Andrea Boriero -Date: Tue Feb 13 13:53:58 2018 +0000 - - HHH-12289 - One call of the SessionImpl#listeners( ) method from SessionImpl#autoFlushIfRequired() is useless. - -commit 0ba1c4a2f312961e0c0ea422cc238de6009db4f1 -Author: Vlad Mihalcea -Date: Thu Jan 18 12:17:01 2018 +0200 - - HHH-12141 - SQL insert in stateless session causes javax.persistence.TransactionRequiredException - -commit d2866620f23df4ad8c0940a870578066f5294bd7 -Author: Chris Cranford -Date: Sun May 21 04:31:12 2017 -0400 - - HHH-8916 - Allow CTE queries to be translated by SQL Server LimitHandler impl. - -commit c2351bb74b3a56d1a129b365ad825e0760885ca2 -Author: Yanming Zhou -Date: Fri Feb 9 16:33:10 2018 +0800 - - HHH-12280 - Resolve {alias} in @Formula like Restrictions.sqlRestriction() - -commit 993a2295867b1ca31d5f2a1d56ffa799f85f523c -Author: Vlad Mihalcea -Date: Thu Feb 8 14:56:25 2018 +0200 - - HHH-12236 - Document 5.3 changes - - - add missing configuration properties - -commit 7eba71411d2707610213343b616e44c53307faf4 -Author: simeonmalchev -Date: Fri Feb 9 08:39:53 2018 +1100 - - Updated Vibur dependency from 21.3 to 22.0 - -commit e50371fdd7ee7dc63722147c39257965d37bc26b -Author: Peter Holvenstot -Date: Fri Jan 19 18:29:01 2018 -0500 - - HHH-11686 - Improve TREAT handling - -commit da51a0dd9a7b0df1bd93eff5c15c6a94063fe452 -Author: Andrea Boriero -Date: Mon Feb 5 13:35:41 2018 +0000 - - HHH-12271 - SchemaDropperImpl does not drop constraints with IF EXISTS - -commit 84c50855efc9bb6b5e3220c2c9c2f7153b3e4e8a -Author: Andrea Boriero -Date: Mon Feb 5 12:17:05 2018 +0000 - - HHH-12271 - Add test for issue - -commit 6120aa2b6aea5bb26c0c1438e6fc482edec9c53e -Author: Peter Holvenstot -Date: Fri Jan 19 15:42:04 2018 -0500 - - HHH-12114 - Union-select aliases not injected before "clazz_" conditions in HQL query - -commit 3501c09db64c23149ea3c7d6fcffaa4e85e682a6 -Author: Steve Ebersole -Date: Thu Feb 1 14:51:08 2018 -0600 - - 5.3 beta2 - -commit 01ea48e68b964d154e2c40257e193c0548522078 -Author: Steve Ebersole -Date: Thu Feb 1 14:12:40 2018 -0600 - - 5.3 beta2 - -commit f28e037a5865f327e9c36a0b561dd3f3f88b72ee -Author: Steve Ebersole -Date: Thu Feb 1 14:00:37 2018 -0600 - - 5.3 beta2 - -commit 21794a29fcddd9b9bb14ca4306420979d28714be -Author: Steve Ebersole -Date: Thu Feb 1 13:26:51 2018 -0600 - - 5.3 beta2 - -commit 16d9736569ef6480e9aa54042fabd9d85de27518 (tag: 5.3.0.Beta2) -Author: Steve Ebersole -Date: Thu Feb 1 13:23:17 2018 -0600 - - 5.3 beta2 - -commit dc7ed28865643c17b7e55f9459b24d81c9db62b5 -Author: Steve Ebersole -Date: Thu Feb 1 13:19:08 2018 -0600 - - 5.3 beta2 - -commit a6e6f829448225f0ee0c99ad808b2d89c2b0cd91 -Author: Steve Ebersole -Date: Thu Feb 1 11:43:45 2018 -0600 - - HHH-12172 - Move to BinTray for publishing artifacts - -commit 867d66848271c9ef7048a6a1417b4d6053869dfb -Author: Steve Ebersole -Date: Thu Feb 1 11:39:40 2018 -0600 - - HHH-12172 - Move to BinTray for publishing artifacts - -commit 2c6caaa6846d8a8a2676042e6725283c4779c87d -Author: Steve Ebersole -Date: Thu Feb 1 11:36:04 2018 -0600 - - 5.3 beta2 - -commit 992fdbcf3c76b73a54198b666daf34849b6a59d4 -Author: Vlad Mihalcea -Date: Tue Nov 28 17:25:00 2017 +0200 - - HHH-12107 - ClassCastException when using L2Cache with "structured_cache"=true - -commit 63e4702629bf1258edc36ef307ac46cde395bded -Author: lrcuhuh -Date: Thu Jul 16 14:15:23 2015 +0200 - - HHH-9933 - Uninitialized PersistentSet with lazy="extra" doesn't respect added elements - -commit cd4a6e9a49c21e15a55c0d3dfbb1da79f4ea7997 -Author: Andrew Guibert -Date: Sat Jan 27 15:25:52 2018 -0600 - - HHH-11571 - JTA platform for WebSphere Liberty and OpenLiberty - -commit 795055de5153084d0967dc420abd6ed646e5bb3a -Author: Vlad Mihalcea -Date: Mon Jan 22 18:19:51 2018 +0200 - - HHH-12034 - According to JPA, a Proxy should be loaded even when accessing the identifier - -commit b6c6029edbfc13f2f3b763c96be15689afa960f6 -Author: Vlad Mihalcea -Date: Wed Jan 31 16:33:39 2018 +0200 - - HHH-12266 - The release task does not upload the documentation - -commit 39fb2c89a17259addb9b058bc6dd21c8be05c5d8 -Author: Andrea Boriero -Date: Mon Jan 29 16:14:05 2018 +0000 - - HHH-12267 - Update migration guide to cover Generators name scope changes - -commit 25735b453bf003bb647e9a9b462a08d17a8eb941 -Author: Andrea Boriero -Date: Wed Jan 31 10:28:47 2018 +0000 - - HHH-1268 - Add test - -commit 39f761b250f374f97e32eae3d261a9ff0d4a28ed -Author: Andrea Boriero -Date: Wed Jan 31 09:29:02 2018 +0000 - - HHH-11587 - Reordering items in List throws a constraint violation - -commit f8c1417e3c70f260a0e108a08b0a9e725a04197a -Author: Gail Badner -Date: Wed Apr 12 19:12:40 2017 -0700 - - HHH-11587 : Added FailureExpected test case - -commit aaa6df26e1439e2d64577fbcbf94ff55b7c36b64 -Author: Andrea Boriero -Date: Wed Jan 31 09:28:29 2018 +0000 - - HHH-11587 - Add test for issue - -commit c488e8e081ceb684a958b69d472a8b87da2b0081 -Author: Bruno P. Kinoshita -Date: Fri Jan 26 22:09:20 2018 +1300 - - HHH-12258: mask JPA JDBC properties and Hibernate properties related to credentials - -commit 85cdbc76e5561a078006fab71038bde1855f6458 -Author: simeonmalchev -Date: Sun Jan 28 22:27:44 2018 +1100 - - HHH-12264 - Updated Vibur dependency from 21.2 to 21.3 - -commit 1b2424c2113e114aa956fda6147991f4e57143af -Author: barreiro -Date: Wed Sep 6 00:49:17 2017 +0100 - - HHH-12252 - Add Agroal to ConnectionProviderInitiator - -commit d29e710c78ff92fab05c63abfce048844b560298 -Author: Andrea Boriero -Date: Thu Jan 25 18:19:40 2018 +0000 - - HHH-12256 - org.hibernate.test.lazyload.JtaLazyLoadingTest is not using JTA - -commit 4f12de7e1838746e56e29b5d85f63ffdc749560f -Author: Vlad Mihalcea -Date: Wed Jan 24 17:20:00 2018 +0200 - - HHH-12251 - Entity with @IdClass containing a @ManyToOne association cannot be merged anymore - - - add replicatting test case - -commit 101038fe48f3c4763c78e57c080da3a3160d1733 -Author: Chris Cranford -Date: Wed Jan 24 15:29:37 2018 -0500 - - HHH-12440 - Fix audited associations that use mapped-by references to embeddable attributes. - -commit 09cd41e3822868a57cabd0fc5de54a0d244917ea -Author: Chris Cranford -Date: Wed Jan 24 11:05:41 2018 -0500 - - HHH-12440 - Fix audited associations that use mapped-by references to embeddable attributes. - -commit 8f6800e97fba0a647cc6f7b6743392ccd08addda -Author: Chris Cranford -Date: Wed Jan 24 11:04:18 2018 -0500 - - HHH-12440 - Added test case. - -commit 7c40ce1ed3e47de14166f285ab0b01edd63cd903 -Author: Sanne Grinovero -Date: Wed Jan 24 14:58:14 2018 +0000 - - HHH-12250 Avoid WildFly thin servers as they require Maven settings - -commit 9704b564f3cbee3afeb3b44f6894015a8ff2f58c -Author: Andrea Boriero -Date: Tue Jan 16 20:28:25 2018 +0000 - - HHH-12246 - Fix failing test - -commit 9d335961b8605462940880080acc329d92726901 -Author: Andrea Boriero -Date: Mon Jan 22 18:37:23 2018 +0000 - - HHH-12246 - Gradle build fails with Java 9 - -commit fda63bfbe57d66f2db40d0c8eefd37ebd4d5896c -Author: David Tombs -Date: Mon Jan 22 16:24:01 2018 -0500 - - HHH-12238 - aliasToBean throws confusing ClassCastException if class lacks setters - -commit 48eb6804960f720d4469a32912ad81c6bc5390bb -Author: Sanne Grinovero -Date: Wed Jan 24 10:58:49 2018 +0000 - - HHH-12249 Wrong format in debug message of CollectionBinder - -commit 203575865cac1756c80658878ea52f785875eb10 -Author: Guillaume Smet -Date: Tue Jan 23 18:55:57 2018 +0100 - - HHH-12245 Don't use the toString() of primitive type to detect the type - - Better use getKind(). - -commit b8c1a1ff35c891f0a39f2a2777f8e83a7d637fea -Author: Guillaume Smet -Date: Tue Jan 23 18:55:20 2018 +0100 - - HHH-12244 Upgrade validation-api to 2.0.1.Final - - It should be consistent with the version of Validator used. - -commit faae3745eee6463ec28462982acb80de45843cbb -Author: Mykhaylo Gnylorybov -Date: Fri Jan 19 18:03:57 2018 +0200 - - HHH-12227 {h-schema} is not replaced in @Formula - -commit f565abb8d81da7bced595ee260d9c311e3b48b30 -Author: Vlad Mihalcea -Date: Tue Jan 23 18:12:44 2018 +0200 - - HHH-11845 - Warn user when multiple persistence-units use the same name - - Fix checkstyle issues - -commit 7f5191b5c6955a3a33e65f64f3e102eac8c97e22 -Author: Vlad Mihalcea -Date: Tue Jan 23 15:38:45 2018 +0200 - - HHH-12241 - BinderHelper:644 logdebugf FAILS - -commit dd5e25fe9c162c785e6ac86e964fae3800112116 -Author: Sanne Grinovero -Date: Mon Jan 22 02:07:59 2018 +0000 - - HHH-12231 Have the provisioned WildFly server apply an override to JPA 2.2 API - -commit a185c3a33d5617d0cd2bc150286dd4d3905df495 -Author: Sanne Grinovero -Date: Sat Jan 20 23:05:40 2018 +0000 - - HHH-12231 Use the org.wildfly.build.provision Gradle plugin to fetch WildFly instances for integration testing - -commit b5e3b59136eb62cc06d31cb159e3fc7908e88a7b -Author: Vlad Mihalcea -Date: Tue Jan 23 08:56:05 2018 +0200 - - HHH-12239 - @ManyToMany throws a ConstraintViolationException when removing entity from the mapped-by (inverse) side - - Add replicating test case - -commit 7d3158625e7b4119f87dc6cc5aa96b4ef9ff15ab -Author: Steve Ebersole -Date: Mon Jan 22 11:43:16 2018 -0600 - - HHH-12172 - Move to BinTray for publishing artifacts - -commit 9e20eece554ad82095315c427cfb3953802c5d6c -Author: Steve Ebersole -Date: Mon Jan 22 11:28:24 2018 -0600 - - HHH-12190 - General tidying of Gradle scripts - - - adding `ciBuild` task, standardizing `release` task - -commit 3e5556216c549d8ce071cb7cc6e502f2564fc233 -Author: Steve Ebersole -Date: Fri Jan 19 09:56:35 2018 -0600 - - HHH-12190 - General tidying of Gradle scripts - - - only run the ci build tasks for SNAPSHOT versions - otherwise CI build is triggered for push with non-SNAPSHOT version which publishes the non-SNAPSHOT to Nexus. In fact this was a proof that we could automate release if we wanted to - -commit 091f292b5ae630ae0cdec1d51a7f8c5a978665a9 -Author: Vlad Mihalcea -Date: Mon Jan 22 15:33:30 2018 +0200 - - HHH-11845 - Warn user when multiple persistence-units use the same name - -commit 925cf5fb7fedc6d217ff97af4cd6f7819411cd66 -Author: Vlad Mihalcea -Date: Mon Jan 22 15:32:48 2018 +0200 - - Add SAP settings for local testing - -commit 9543697ea3c0a0ebf68b4edce54bfe6640e7bdcd -Author: Steve Ebersole -Date: Thu Jan 18 10:40:43 2018 -0600 - - prepare for 5.3.0.Beta1 - -commit 538039fe20f5fb058c8a15c86566baea9684b1b3 (tag: 5.3.0.Beta1) -Author: Steve Ebersole -Date: Thu Jan 18 10:22:34 2018 -0600 - - prepare for 5.3.0.Beta1 - -commit a426068b2dc2fbb0036dcde4a998ce0e2f80869a -Author: Steve Ebersole -Date: Thu Jan 18 10:17:28 2018 -0600 - - HHH-12133 - Create ManagedBeanRegistry and ManagedBean - - - minor name change - -commit 12d73ee092a4ace50c16e3d79b5922578b3abbbe -Author: Andrea Boriero -Date: Thu Jan 18 13:21:11 2018 +0000 - - HHH-12190 - General tidying of Gradle scripts - -commit 2f92109c48fb487870af6d93ba8dc884838179d0 -Author: Vlad Mihalcea -Date: Thu Jan 18 15:56:47 2018 +0200 - - Revert "HHH-11845 - Warn user when multiple persistence-units use the same name" - - This reverts commit 1242fd9580fdfb2a8b14ebb419ccc5d40ae01a01. - -commit 1242fd9580fdfb2a8b14ebb419ccc5d40ae01a01 -Author: Andrea Boriero -Date: Sun Oct 15 13:01:03 2017 +0100 - - HHH-11845 - Warn user when multiple persistence-units use the same name - -commit 8e6332a96462a445bc316124cd24d7394dbf5aab -Author: Steve Ebersole -Date: Wed Jan 17 22:47:31 2018 -0600 - - HHH-12190 - General tidying of Gradle scripts - -commit ed2f17722f28ff2c362147bf2189b083e8a4d15b -Author: Steve Ebersole -Date: Wed Jan 17 22:32:45 2018 -0600 - - prepare for 5.3.0.Beta1 - -commit 350b9d2184b8ad5b6809ba183ac57ad6ebcb7761 -Author: Steve Ebersole -Date: Wed Jan 17 22:02:35 2018 -0600 - - prepare for 5.3.0.Beta1 - -commit ee0c8305e9195d28950b669448feed8d9028ce8d -Author: Andrea Boriero -Date: Wed Jan 17 15:55:02 2018 +0000 - - HHH-12190 - General tidying of Gradle scripts, add maven local to HANA matrix script - -commit 4172e9ca0659862f8746b433fbc1407e091604c6 -Author: Andrea Boriero -Date: Wed Jan 17 17:00:36 2018 +0000 - - HHH-12136 - Various improvements for ProcedureCall/StoredProcedureQuery - -commit f1263f8c7ca59f01a5df3ce675908886b6f6ee5e -Author: Steve Ebersole -Date: Wed Jan 17 11:43:59 2018 -0600 - - HHH-12133 - Create ManagedBeanRegistry and ManagedBean - - - addressed concerns discussed with Yoann - -commit 521ee44f8e0c4040546b9ce14d04b7bf4eebf1b4 -Author: Andrea Boriero -Date: Mon Mar 6 11:45:59 2017 +0000 - - HHH-5757 - OneToOne SQL missing parameter - -commit c52b8389f23b92a7fa50d7b8edc6c3e2ab098c91 -Author: Yoann Rodière -Date: Wed Jan 17 13:11:02 2018 +0100 - - HHH-12133 - Create ManagedBeanRegistry and ManagedBean - - - Add non-regression tests related to the fallback bean instance producer - - Fix a bug where we would call beanInstanceProducer.produceBeanInstance(Class) even when a named bean was requested. - - Do not call Instance#destroy on bean instances produced by the fallback bean producer. We used to, because we expected the Instance resolution to fail when a bean could not be found. But Instance resolution will never fail in that case, it will just return an Instance whose #isUnsatisfied() method returns true. It happens that calling Instance#destroy did not fail with Weld, because Weld just ignores the call in that case, but other CDI implementations may behave differently: the javadoc, and probably also the CDI spec, are not explicit about what happens in that case. - -commit df101b0b2e544a61977c3acaa8de3248c1caef54 -Author: Andrea Boriero -Date: Wed Jan 17 14:45:24 2018 +0000 - - HHH-12203 - Fix failing test on MariaDB - -commit 5387ffc7179d1ba5e2f7573119aa697daa0b8215 -Author: Andrea Boriero -Date: Wed Jan 10 09:41:59 2018 +0000 - - HHH-12136 - Fix REF_CURSOR StoredProcedure Hibernate Type not known issue - -commit 7edddae8dbbef7527370413149750099f8a1780d -Author: Jonathan Bregler -Date: Tue Jan 9 14:53:11 2018 +0100 - - HHH-12203: NUMERIC column type is not handled correctly on HANA - - https://hibernate.atlassian.net/browse/HHH-12203 - -commit 856f99244d8f771cc12025805259df3be25eb5f6 -Author: Vlad Mihalcea -Date: Wed Jan 17 11:12:07 2018 +0200 - - Fix db property resolving issue - -commit 762092cee1953c3d74206bf7ba2ce0ff804a2cf4 -Author: Steve Ebersole -Date: Tue Jan 16 16:14:11 2018 -0600 - - HHH-12190 - General tidying of Gradle scripts - - - fixed missing dependency hibernate-vibur - -commit 84f8b1d4791a1588b99c5bd6d91b1e66158fedf6 -Author: Steve Ebersole -Date: Tue Jan 16 15:47:05 2018 -0600 - - HHH-12190 - General tidying of Gradle scripts - - - simple tidying - -commit 65f42761d6744f657044b6d6532eec7a1a20a5e0 -Author: Steve Ebersole -Date: Tue Jan 16 15:45:06 2018 -0600 - - HHH-12133 - Create ManagedBeanRegistry and ManagedBean - - - reapplied backwards compatibility wrt ExtendedBeanManager for WildFly - -commit 04aaf6cf55c47dce6413f87838f79e123650132e -Author: Steve Ebersole -Date: Tue Jan 16 14:01:23 2018 -0600 - - HHH-12190 - General tidying of Gradle scripts - - - applied to new Vibur module - -commit 644c74d470d6fe4a5ce9dda55479d54ed8fb32dd -Author: Steve Ebersole -Date: Wed Jan 10 21:30:45 2018 -0600 - - HHH-12190 - General tidying of Gradle scripts - -commit e1a970aa1125dcec5439a2c66b80abd354d70282 -Author: Steve Ebersole -Date: Wed Jan 10 16:52:28 2018 -0600 - - HHH-12190 - General tidying of Gradle scripts - -commit 6e25c30812bb0c623861c6d5a531c097ae927ce9 -Author: Steve Ebersole -Date: Wed Jan 10 16:37:49 2018 -0600 - - HHH-12190 - General tidying of Gradle scripts - -commit d806eff91282007e06df53cbb6f3f72dee721294 -Author: Steve Ebersole -Date: Wed Jan 10 15:06:58 2018 -0600 - - HHH-12190 - General tidying of Gradle scripts - -commit 2e541f3b15c7db27d6c3ba23d1c839886e423655 -Author: Steve Ebersole -Date: Tue Jan 16 14:30:09 2018 -0600 - - HHH-12133 - Create ManagedBeanRegistry and ManagedBean - - - reapplied backwards compatibility wrt ExtendedBeanManager for WildFly - -commit 3fbe7ff5b7b5567556282cfb8d764258842511e0 -Author: Andrea Boriero -Date: Fri Jan 12 11:56:12 2018 +0000 - - HHH-12212 - Derived Identifiers component column size not applied - -commit bda13bf6d84a03e0a8261c8f5c47459204e6f0e7 -Author: Andrea Boriero -Date: Fri Jan 12 11:55:57 2018 +0000 - - HHH-12212 - Add test for issue - -commit ba95ac842a76654dcbcd46ab0f67755e008d9e06 -Author: Andrea Boriero -Date: Sat Jan 13 18:44:05 2018 +0000 - - HHH-12116 - Positional parameters report position as name HHH-12101 - Remove support for legacy HQL-style positional parameters - -commit 5460acd63a5d3105d126924efd6ee81059d1d497 -Author: Steve Ebersole -Date: Tue Jan 16 13:25:10 2018 -0600 - - HHH-12133 - Create ManagedBeanRegistry and ManagedBean - - - Various restructing on top of Yoann's work as well as adding tested support of "mixed access" (mix of hosted and non-hosted beans) - -commit ce93f2cdd273af2377de1c08f6a28276dcefea67 -Author: Yoann Rodière -Date: Mon Jan 8 13:10:39 2018 +0100 - - HHH-12133 Add tests for uses of ManagedBeanRegistry with shouldRegistryManageLifecycle = false - -commit be6ac17d1e42487969477914592982c428ee493d -Author: Yoann Rodière -Date: Mon Jan 8 13:07:18 2018 +0100 - - HHH-12133 Ignore managed bean release errors related to already released beans - -commit bc304235a67081c7c0167410e0a780410dfe28a6 -Author: Yoann Rodière -Date: Tue Dec 19 15:52:52 2017 +0100 - - HHH-12133 Use the BeanManager-provided ambiguous dependency resolution when possible - - This should take care of @Alternative in particular. - -commit edc0039afc62078171c1270dd2eaec8fb944c7e3 -Author: Yoann Rodière -Date: Mon Dec 18 18:27:12 2017 +0100 - - HHH-12133 Comply with API docs with respect to lifecycle management depending on the 'shouldRegistryManageLifecycle' parameter - - The registry should not manage the bean lifecycle when - 'shouldRegistryManageLifecycle' is false. The easiest way to do so is to - use BeanManager.createInstance to retrieve beans in the Standard CDI lifecycle - strategy: it correctly retrieves singletons from the CDI context instead - of instantiating them again. - - Also, fix javax.enterprise.inject.spi.Bean-based instance destructions: - we used to only request destruction to the creational context, which is - wrong because it may skip the execution of @PostDestroy methods in - particular. - -commit b3ac2feddf57794b34a1fcd08c0bf768124ca3c3 -Author: Yoann Rodière -Date: Mon Dec 18 18:20:38 2017 +0100 - - HHH-12133 Move CDI lifecycle management code to dedicated strategies - - This commit should not change the current behavior, it is only about - moving code to separate classes to make the following changes clearer. - -commit c03fdf84d47518a257938595c4fc67acd76f02f9 -Author: mnachmia31 -Date: Mon Jan 15 12:49:05 2018 -0500 - - HHH-12216 - Improve logging for when Hibernate throws the "illegally attempted to associate a proxy with two open Sessions" Exception - -commit f54b75fc03aef6740090fb2b78e7720e350f884b -Author: Andrea Boriero -Date: Tue Jan 16 10:30:49 2018 +0000 - - HHH-1830 - Fix checkstyle error - -commit f07cdde352f22a32e6aadbdc2becb7b696f31d79 -Author: Gail Badner -Date: Thu Aug 25 22:06:46 2016 -0700 - - HHH-1830 - Error during parse query on MS SQL - -commit 3d27fa88f51f4377dc674b3b141fad77dab575d1 -Author: Andrea Boriero -Date: Mon Jan 15 11:02:48 2018 +0000 - - HHH-10541 - Fix checkstyle errors - -commit 0d9b1c54cd6644509c364fc6f59d4e50c61e7878 -Author: simeonmalchev -Date: Sat Jan 13 23:48:46 2018 +1100 - - HHH-10541 - Create Vibur DBCP connection pool module - -commit 794c784c0de6439f25c25cd96ffad601dde9f11d -Author: Gail Badner -Date: Fri Jan 12 18:04:32 2018 -0800 - - HHH-12151 HHH-10575 : Add test for HHH-10575; add @TestForIssue to tests - -commit 8b980c4e7bdf17c55bba1be8bb801cda872d92c3 -Author: Andrea Boriero -Date: Wed Jan 10 17:48:16 2018 +0000 - - HHH-12211 - Test failure on MariaDB when the database charset is configured to UTF8 - -commit f0ed669bc1bf5955c3e018c715e9217e8fb393f9 -Author: Steve Ebersole -Date: Wed Jan 10 15:04:23 2018 -0600 - - HHH-12129 - Fix expected exceptions on various Query methods - -commit f8f1241c2bfd69e7ae24f71bcbb04904cbe386a8 -Author: Andrea Boriero -Date: Wed Jan 10 15:03:39 2018 +0000 - - HHH-12135 - Support for AttributeConverters as CDI beans, fix method o.h.type.descriptor.java.EnumJavaTypeDescriptor#fromName(String) - -commit 803b29fc1ac493e38e54746f2a67c182dd12be78 -Author: Andrea Boriero -Date: Wed Jan 10 12:42:42 2018 +0000 - - HHH-12192 - Fix tests failing on PostgreSQL - -commit e9c387090960fa12a5bcbcee250223a5a7e12d3f -Author: Steve Ebersole -Date: Tue Jan 9 14:33:03 2018 -0600 - - HHH-12146 - Support enabling caching at any level within a mapped hierarchy - - explicit test for Cacheable inheritance - -commit 67874eb2db84c9d6f298c84c4f43b587d7449bc3 -Author: Steve Ebersole -Date: Thu Dec 21 09:57:11 2017 -0600 - - HHH-12185 - Simplify SessionFactoryBuilder / SessionFactoryOptions handling - - Option #2 - SessionFactoryOptionsBuilder as SessionFactoryOptions - -commit 7baa9e4e0665905e7f07f62a8c8ef40b62ffcdca -Author: Steve Ebersole -Date: Thu Dec 21 09:14:44 2017 -0600 - - HHH-12185 - Simplify SessionFactoryBuilder / SessionFactoryOptions handling - - Option #1 - still building a stand-alone, immutable options object - -commit 829b33822f259d553e87b13bb34278e01790590c -Author: Andrea Boriero -Date: Tue Jan 9 16:16:49 2018 +0000 - - HHH-5797 HHH-2558 - Fix tests failing on PostgreSQL and MariaDB - -commit e68986bf57528f9256d9c31cc6f39ad0b964208c -Author: Vlad Mihalcea -Date: Tue Jan 9 15:56:41 2018 +0200 - - HHH-12197 On commit, Hibernate reopens and closes additional connection - -commit 59ec7c9f234a24c6b106c20024edb710625d46b9 -Author: Vlad Mihalcea -Date: Tue Jan 9 17:56:35 2018 +0200 - - HHH-12192: include the causing DDL-statement into the message of org.hibernate.tool.schema.spi.CommandAcceptanceException - - Fix another broken test - -commit 66c799bbab25ee7a052023fc6b4654b984cc20f7 -Author: Vlad Mihalcea -Date: Tue Jan 9 16:48:36 2018 +0200 - - HHH-12192: include the causing DDL-statement into the message of org.hibernate.tool.schema.spi.CommandAcceptanceException - - Fix broken test - -commit 7854ffe5b77fe4a6106af81729456ffa19cd1387 -Author: bbodnar -Date: Wed Dec 27 22:46:47 2017 +0100 - - HHH-12192: include the causing DDL-statement into the message of org.hibernate.tool.schema.spi.CommandAcceptanceException - -commit 712fb477e731671c54ae557c632c2bd18efa5bf1 -Author: Gail Badner -Date: Mon Jan 8 22:47:07 2018 -0800 - - HHH-12075 : SQLQuery.executeUpdate() ignores SQLQuery.setTimeout() - -commit 489bdcd6faef689a6871cbfef46585e6166ca739 -Author: Gail Badner -Date: Mon Jan 8 22:44:32 2018 -0800 - - HHH-12075 : test case - -commit 510f91ff307316783220fa0ad1e4307519f0c4fa -Author: Vlad Mihalcea -Date: Mon Jan 8 18:47:35 2018 +0200 - - Update documentation link to match new URL structure - -commit 50070eabddd9106681c729a56c5bfcdeddb69d4b -Author: dcebotarenco -Date: Mon Dec 4 12:55:21 2017 +0200 - - HHH-2558 - Allow batching inserts for multi-table entities - HHH-5797 - Improve batching for entity updates or deletes that use secondary tables - -commit 6f83e4b9482566a078c31f35f574fe24299e6c93 -Author: Vlad Mihalcea -Date: Mon Jan 8 17:13:00 2018 +0200 - - HHH-12171 - Fix tests for hibernate-orm-modules - - Add support for Windows as well when executing JBoss CLI - -commit 675890134f46ce71cb7981ca9b3781d9d5f5c729 -Author: Steve Ebersole -Date: Wed Aug 3 15:08:42 2016 -0500 - - HHH-11019 - Extend DelayedPostInsertIdentifier support to include checks for FlushMode (EXTENDED PC) - -commit 570c74a8c2993124040127c544a16495d2e6f664 -Author: Steve Ebersole -Date: Wed Jan 3 11:25:08 2018 -0600 - - HHH-12188 - Add Java 9 automatic module name hinting - - dropped Java 9 dues to javadoc issue - -commit a625452fe92af64e83c2ef37203017d0e803b0f0 -Author: Steve Ebersole -Date: Wed Jan 3 11:23:37 2018 -0600 - - HHH-9641 - Resume uploading Javadoc JARs to Maven - HHH-12187 - Drop custom javadoc css - - - dropped "package groups" - -commit 7faf1c4d43bca93c55bd2867bc9482927a558c2e -Author: Steve Ebersole -Date: Tue Jan 2 17:13:07 2018 -0600 - - HHH-12177 - Drop hibernate-infinispan module - relocated - HHH-12171 - Fix tests for hibernate-orm-modules - -commit da80ad1a72c9d9f68ee6bcebfa4798121d07756d -Author: Brett Meyer -Date: Tue Jan 2 14:11:00 2018 -0500 - - HHH-11366 made javax.inject optional in OSGi manifest - -commit 554817bacaa95885d1047eb055b113ce4a428727 -Author: Steve Ebersole -Date: Tue Jan 2 13:47:29 2018 -0600 - - HHH-12171 - Fix tests for hibernate-orm-modules - -commit 4f23cb1ffecf11f9d7cdd9668c1a5fe4c2e1aed7 -Author: Steve Ebersole -Date: Sat Dec 30 17:30:17 2017 -0600 - - HHH-12194 - Deprecate Environment-scoped settings - -commit ec211b9699e2e4d04c150ba8fd8c940e1832bad3 -Author: barreiro -Date: Fri Nov 17 14:54:48 2017 +0000 - - HHH-12095 - do not fork execution of hibernate-maven-plugin as it causes compilation to run twice - -commit c490e94755d84855d9f715ab0327bf04ec6dbc3c -Author: Steve Ebersole -Date: Fri Dec 29 11:47:11 2017 -0600 - - HHH-2188 - Add Java 9 automatic module name hinting - -commit 46a98138157cb535aa6bb8361f9fb237457c1871 -Author: Steve Ebersole -Date: Thu Dec 28 10:55:11 2017 -0600 - - HHH-12101 - fix CME on Java 9 introduced by changes for HHH-12101 - -commit abbf1fdbbefdb8f62bda98167cf15e6581d26aa7 -Author: Steve Ebersole -Date: Fri Dec 22 21:08:14 2017 -0600 - - HHH-12188 - Add Java 9 automatic module name hinting - - aligned OSGi symbolic name with Java 9 module name; - cleaned up jar/osgi manifest configuration block - -commit 78bc62fe1e277452533229c03cd49abafb0e433b -Author: Steve Ebersole -Date: Wed Dec 27 20:19:46 2017 -0600 - - HHH-12098 - prep 5.3 - - odd Java 9 build failures - -commit 5b25a2a5615700ce3df488a3af00119ab7167a1a -Author: Steve Ebersole -Date: Wed Dec 27 20:19:02 2017 -0600 - - HHH-12098 - prep 5.3 - - disable tests for hibernate-orm-modules - no WF release supporting EE 8 technologies - -commit 5f4f4642a2ec6102f76ef6659f6ffc4a71357880 -Author: Steve Ebersole -Date: Wed Dec 27 15:24:16 2017 -0600 - - HHH-12191 - Add Travis CI support - -commit 300fa800161c6a11614bdad812fa2d8b659e730e -Author: Steve Ebersole -Date: Wed Dec 27 09:53:07 2017 -0600 - - HHH-12189 - Only call setAccessible() when member is not accessible - -commit d7d55f4e87f0a1f17f88e0ac762134eb426168fa -Author: Steve Ebersole -Date: Wed Dec 27 09:20:18 2017 -0600 - - HHH-9641 - Resume uploading Javadoc JARs to Maven - HHH-12187 - Drop custom javadoc css - - - disable all "publish artifacts" (except relocation pom) for hibernate-infinispan - -commit 8c13488c5d23a8086e5e7ad460dc99b9e100818a -Author: Steve Ebersole -Date: Tue Dec 26 11:27:58 2017 -0600 - - HHH-9641 - Resume uploading Javadoc JARs to Maven - HHH-12187 - Drop custom javadoc css - - - delay package group calculations until execution (doFirst) - - exclude internal packages from javadoc - -commit 6ccbd98bc378cb0682d18edeee0e584679b672c0 -Author: Steve Ebersole -Date: Fri Dec 22 11:49:07 2017 -0600 - - HHH-12187 - Drop custom javadoc css; - HHH-9641 - Resume uploading Javadoc JARs to Maven - -commit 1da748ed282f56482ac0bf03e537d0cd74126bf9 -Author: Steve Ebersole -Date: Fri Dec 22 12:07:18 2017 -0600 - - HHH-12177 - Drop hibernate-infinispan module - relocated - -commit 02e8b95f5bf06dc6002222025dd03ad85bc68eec -Author: Andrea Boriero -Date: Wed Dec 20 15:21:16 2017 +0000 - - HHH-12177 - Update migration guide - -commit 1e4d483e73d6e4b3fd56c95c4d97c0f86786a116 -Author: Andrea Boriero -Date: Mon Dec 18 19:23:25 2017 +0000 - - HHH-12177 - Disable generation of hibernate-infinispan jar - -commit 25854433ac02d2d09a0ac1afddabdefe068a674e -Author: Andrea Boriero -Date: Mon Dec 18 17:19:13 2017 +0000 - - HHH-12177 - Drop hibernate-infinispan module - -commit 8e25e7f3509a5ba54ad3fc6994b95cb161ee926c -Author: Guillaume Smet -Date: Thu Dec 14 10:20:02 2017 +0100 - - HHH-12164 Upgrade Hibernate Validator used for testing to 6.0.7.Final - -commit 574378dc6fddf4753c720f303696fa82bc8abc15 -Author: Andrea Boriero -Date: Wed Dec 20 15:40:11 2017 +0000 - - HHH-12106 - Fix Test - -commit dbda3c19deb4733b44ba71d706e5949cb0bce11c -Author: Vlad Mihalcea -Date: Wed Nov 29 21:11:24 2017 +0200 - - HHH-12106 - Database name not quoted at schema update - -commit 5c43ad571fd3dff3fc09ae53ad4305f1d1beda61 -Author: Sanne Grinovero -Date: Tue Dec 19 10:02:43 2017 +0000 - - Fix checkstyle violations - -commit 981eb41d79dba3e4a26b54d9c596f763b00ada27 -Author: Steve Ebersole -Date: Mon Dec 18 10:56:30 2017 -0600 - - Update to Gradle 4.4 - -commit 86cde1296bc6a40fd06a006d997c79de9621764d -Author: Steve Ebersole -Date: Mon Dec 18 09:45:21 2017 -0600 - - HHH-12133 - Create ManagedBeanRegistry and ManagedBean - - - mostly just backporting this work from 6.0 - -commit b711e14a6c1897ae95263eed21e697644b876489 -Author: Réda Housni Alaoui -Date: Mon Dec 18 15:05:39 2017 +0100 - - HHH-10294 EntityGraph improvement: For each jpa attribute, generate also a String constant holding the attribute field name - -commit b1775c2502e8939b2af0f2db7b658ff8852fc837 -Author: Jonathan Bregler -Date: Fri Dec 8 15:41:12 2017 +0100 - - HHH-11798: Provide method for overriding delete statement in GlobalTemporaryTableBulkIdStrategy - -commit 5a5bd474934833408b489dee4926a311e8d4a7e0 -Author: benoit -Date: Tue Nov 28 13:50:03 2017 +0100 - - HHH-12131 Avoid allocating unneeded byte array when parsing or - transforming UUID. - -commit 4efac1369ac00e6c25619c94c527a9efaa4ca596 -Author: Réda Housni Alaoui -Date: Mon Dec 18 13:16:08 2017 +0100 - - HHH-10294 EntityGraph improvement: For each jpa attribute, generate also a String constant holding the attribute field name - -commit b7c02356973ca4904c2ecfe7337edfed44764716 -Author: Steve Ebersole -Date: Sat Dec 16 20:24:54 2017 -0600 - - HHH-11532 - load by natural-id and WrongClassException - -commit 9529f4f0a281ba4b19bfba6622735d2440731fd2 -Author: Steve Ebersole -Date: Sat Dec 16 13:18:31 2017 -0600 - - HHH-12098 - prep 5.3 - - fix test failures for mysql, mariadb, cockroachdb - -commit 30db0f0a248eab3e516140ee8c11cc932d833e10 -Author: Steve Ebersole -Date: Sat Dec 16 10:27:20 2017 -0600 - - HHH-12098 - prep 5.3 - - fix test failures for mysql, mariadb, cockroachdb - -commit 8eaf649aa37b3e4609e1d64312423e74b5498144 -Author: Jonathan Bregler -Date: Fri Dec 15 15:32:30 2017 +0100 - - HHH-12175: ParameterParser doesn't handle JPA positional parameters correctly - -commit 90cabb43ad8b186d73cb6b310fb2fd6774ffe44f -Author: Steve Ebersole -Date: Fri Dec 15 18:24:57 2017 -0600 - - HHH-12135 - Support for AttributeConverters as CDI beans - - initial work to get AttributeConverter support to be able to integrate with ManagedBeanRegistry. There is a lot of "infrastructure" changes because the old code assumed we could instantiate the converter as soon as we knew the class which precludes lookup in the registry later. - -commit 173184e26d62a96df281093e6277da813bbcc22c -Author: Chris Cranford -Date: Fri Dec 15 16:23:37 2017 -0500 - - HHH-12176 - Relax the checkstyle requirement for file headers. - -commit cb61bfa52ff5178aba03331bd8982115310a052d -Author: Chris Cranford -Date: Fri Dec 15 16:18:34 2017 -0500 - - HHH-11259 - Improved CDI support including support for other types of managed beans; - HHH-12133 - Create ManagedBeanRegistry and ManagedBean; - HHH-12134 - Convert entity listener CDI support to use ManagedBean/MenagedBeanRepository - - Checkstyle fixes. - -commit d0267a5445d805cd77b31c32fbe598dd3819516b -Author: Sanne Grinovero -Date: Fri Dec 15 13:06:32 2017 +0000 - - HHH-12171 Fix tests for hibernate-orm-modules - - Apply the JPA 2.2 patch to WildFly before running integration tests - -commit c24dc512f002f04f80747e1c47e0b71b26e064b2 -Author: Sanne Grinovero -Date: Fri Dec 15 13:05:24 2017 +0000 - - Revert "HHH-12171 - Fix tests for hibernate-orm-modules" - - This reverts commit 5176828e2af72e4cc6e9b7cad3aa76bb3d9eb801. - -commit bb204ba0dc948fdab87c760c9930178f981970d4 -Author: Sanne Grinovero -Date: Wed Dec 13 16:01:24 2017 +0100 - - Revert "Fix CDI tests failing due to migrating to JPA 2.2" - - This reverts commit dc91f76c4bd7b31e0ec5efb0e2d09a20e1842119. - - Solution dc91f76c4bd7b31e0ec5efb0e2d09a20e1842119 is not acceptable: - it will have the tests seem to pass but the modules we produce would - not actually work for other people as the published modules won't - include the proposed workaround. - -commit c873b13be81040714904687f12d8ea2ffb89e9de -Author: Yoann Rodière -Date: Fri Dec 15 13:52:59 2017 +0100 - - HHH-12173 Restore backward compatibility in ExtendedBeanManager - -commit 5176828e2af72e4cc6e9b7cad3aa76bb3d9eb801 -Author: Steve Ebersole -Date: Thu Dec 14 12:25:37 2017 -0600 - - HHH-12171 - Fix tests for hibernate-orm-modules - -commit 735da4347d705fc92416a8caca6ef924e6761ce8 -Author: Chris Cranford -Date: Thu Dec 14 13:40:41 2017 -0500 - - HHH-12169 - Document support for dependency injection for Envers revision listeners. - -commit a5bce26262a152b44b60046dea14aaa33eebbc53 -Author: Chris Cranford -Date: Thu Dec 14 13:03:46 2017 -0500 - - HHH-12169 - Support dependency injection for Envers revision listeners. - -commit ddc1f03abc675a27ed025b8c00495d39bca7fb60 -Author: Steve Ebersole -Date: Thu Dec 14 11:36:54 2017 -0600 - - HHH-11259 - Improved CDI support including support for other types of managed beans; - HHH-12133 - Create ManagedBeanRegistry and ManagedBean; - HHH-12134 - Convert entity listener CDI support to use ManagedBean/MenagedBeanRepository - - Initial support for named CDI beans and the option to not cache bean references - -commit 9f50157a607727adb23a078f60d0a65777e8ad79 -Author: Chris Cranford -Date: Thu Dec 14 11:37:45 2017 -0500 - - HHH-12146  - Support enabling caching at any level within a mapped hierarchy - -commit 58e6235c6bb77cf731997d28b108cd46221a6691 -Author: Andrea Boriero -Date: Thu Dec 14 14:36:08 2017 +0000 - - HHH-12148 - Fix tests - -commit decac7f6864af3afaabdbbded39a6d3e1de7f356 -Author: Andrea Boriero -Date: Thu Dec 14 14:35:54 2017 +0000 - - HHH-12147 - Fix tests - -commit bd2106d6f8356e4ad719a3c96ec04bec298cbbe0 -Author: Andrea Boriero -Date: Wed Dec 13 17:13:25 2017 +0000 - - HHH-12167 - Add matrix testing configuration for HANA database - -commit 564ec55ca10c0d5d2afd73243dc0aa31759e8f5b -Author: Steve Ebersole -Date: Thu Dec 14 06:50:47 2017 -0600 - - HHH-11259 - Improved CDI support including support for other types of managed beans; - HHH-12133 - Create ManagedBeanRegistry and ManagedBean; - HHH-12134 - Convert entity listener CDI support to use ManagedBean/MenagedBeanRepository - - Initial ManagedBeanRegistry and ManagedBean impl; - Conversion of JPA event Listeners to use ManagedBeanRegistry - -commit b0c27562f492117929aae72cd7182db5e76e3f7e -Author: Vlad Mihalcea -Date: Wed Dec 13 20:39:45 2017 +0200 - - Fix User Guide tests failing and triggereing other 2nd-level cache tests to fail as well - -commit 814d0c260b43c2127677074703f6c2168aa70ab2 -Author: Andrea Boriero -Date: Wed Dec 13 17:47:18 2017 +0000 - - fix checkstyle errors - -commit 37df2bac74164934c1280d3f0f72432889581d8c -Author: Andrea Boriero -Date: Wed Dec 13 11:11:41 2017 +0000 - - HHH-12147 - Code improvement - -commit 00a07caf5bd3861701bb4214fdb4ae323ecd01f3 -Author: Andrea Boriero -Date: Wed Dec 13 10:25:42 2017 +0000 - - HHH-12098 - Fix licence checkstyle error - -commit 283750afd0e904487c4c1e8b5e65de5a09a811e3 -Author: Andrea Boriero -Date: Wed Dec 13 10:21:58 2017 +0000 - - HHH-12136 HHH-12166 HHH-12101 - Fix licence checkstyle errors - -commit 919b17bfa75d693c1e28d4179b6bdf8bde063e69 -Author: Andrea Boriero -Date: Wed Dec 13 10:04:38 2017 +0000 - - HHH-12146 - Fix checkstyle error - -commit 84eec71ba637e11aaa72d2e1cb9b3af0fecc8a69 -Author: Andrea Boriero -Date: Wed Dec 13 17:38:25 2017 +0000 - - exclude document userguide/model from checkstyle - -commit b1a9c816a7e1159d6ae75898a8f455e425f94d4e -Author: Andrea Boriero -Date: Mon Dec 11 14:59:48 2017 +0000 - - HHH-12157 - TableGenerator defined on one class is not visible on another - - (cherry picked from commit 8ae3dc4078597c69588ca8237591f1eab64c6bd7) - -commit 9fe921db5230c6c83fee63bdc80201360a57cf9a -Author: Andrea Boriero -Date: Mon Dec 11 14:59:05 2017 +0000 - - HHH-12157 - Add test for issue - - (cherry picked from commit f40a6cc0f8fd0ccb03387beb5dac9d9bde846c4d) - -commit d5d3b080f94ca2f498bada7747bbda1e0e3160a2 -Author: Steve Ebersole -Date: Wed Dec 13 09:15:22 2017 -0600 - - HHH-12098 - prep 5.3 - -commit 447f3d57c77f274e0f7b64e8fb0bb06898cd4e50 -Author: Steve Ebersole -Date: Wed Dec 13 09:15:12 2017 -0600 - - HHH-12146 - Support enabling caching at any level within a mapped hierarchy - -commit d454ab0edcfe2011052b12abd24c88160ca20e4b -Author: Steve Ebersole -Date: Wed Dec 13 07:40:20 2017 -0600 - - HHH-12146 - Support enabling caching at any level within a mapped hierarchy - -commit 59c3baae3271247bed516fe50952b65be1a27e5b -Author: Steve Ebersole -Date: Tue Dec 12 21:22:43 2017 -0600 - - HHH-12146 - Support enabling caching at any level within a mapped hierarchy - -commit 6edff69101a6c5dbd71f3c30efe33a863c6e704f -Author: Chris Cranford -Date: Tue Dec 12 13:14:02 2017 -0500 - - Fix Envers test failure. - -commit 91387adcc83ed87fb12b3c36bce51f8060e57677 -Author: Steve Ebersole -Date: Tue Dec 12 08:10:42 2017 -0600 - - JPA TCK challenge - -commit a94faa9280810701d4c713042514f7657ab81821 -Author: Vlad Mihalcea -Date: Tue Dec 12 14:56:48 2017 +0200 - - Fix CDI tests failing due to migrating to JPA 2.2 - -commit da8e13c45366081a7d7158c7cd5945b42cb8b408 -Author: Vlad Mihalcea -Date: Mon Dec 11 14:00:02 2017 +0200 - - HHH-12155 - Update documentation regarding limitation of defining caching on just root entity - -commit c4067f611c6d7be3896b084d297835e9364ec2d3 -Author: Sanne Grinovero -Date: Mon Dec 11 21:17:11 2017 +0000 - - Resolve whitespace formatting issues spotted by Checkstyle - -commit a7f1173e653b43b249bf7412966647dde6d22f7d -Author: Steve Ebersole -Date: Mon Dec 11 13:56:51 2017 -0600 - - JPA TCK challenge - -commit 7c6b8cbd4e312f1834e512dab9322c0810e9dc0d -Author: Steve Ebersole -Date: Mon Dec 11 13:56:41 2017 -0600 - - JPA TCK challenge - -commit 7fc5d3e85647a4ede4a4c11a65a8c41b1bf2073f -Author: Steve Ebersole -Date: Mon Dec 11 13:56:28 2017 -0600 - - HHH-12098 - prep 5.3 - -commit 8c2a68335616d1cbefc499276a08d42b316dec60 -Author: Gail Badner -Date: Fri Dec 8 15:22:31 2017 +0100 - - HHH-12150 - @MapKeyColumn referring to otherwise non-mapped column - -commit 9af565510064635dba7e48087ab4e8f5ef439f0d -Author: Andrea Boriero -Date: Thu Dec 7 14:24:06 2017 +0000 - - HHH-12148 - Add setting indicating if the value stored in the table used by the @TableGenerator is the last value used or the next value to be used - -commit 2b7c2c883cb6d4ac575d8b25d9f9257aec4b9fdf -Author: Andrea Boriero -Date: Wed Nov 22 11:51:56 2017 +0000 - - HHH-12148 - Add test for issue - -commit 6818275376639c2a0d64674c4bd0320d64e86d89 -Author: Andrea Boriero -Date: Wed Dec 6 08:14:46 2017 +0000 - - HHH-12147 - Add support for JPA2.2 @TableGenerators and @SequenceGenerators - -commit 37e918d1d46d956879bc1457c87b709719991fdb -Author: Andrea Boriero -Date: Wed Dec 6 08:14:31 2017 +0000 - - HHH-12147 - Add test for issue - -commit 42b8e778018f047756ad8485a50dbd7b112ac889 -Author: Steve Ebersole -Date: Wed Dec 6 03:17:23 2017 -0600 - - HHH-12150 - @MapKeyColumn referring to otherwise non-mapped column - -commit 42c8c8f2e3288632c011a490a0f1bde084a0e83d -Author: Steve Ebersole -Date: Wed Dec 6 03:16:36 2017 -0600 - - HHH-12146 - Support enabling caching at any level within a mapped hierarchy - -commit 09a15ac68e9db69c2eb33bd1c1d20c9ad99ae371 -Author: Steve Ebersole -Date: Wed Dec 6 01:02:23 2017 -0600 - - HHH-12097 - EntityManagerFactory open/closed checks per JPA spec - -commit 6dc94ff7f7f1806df29aaa8094a607a7c832f8bd -Author: Steve Ebersole -Date: Tue Dec 5 16:51:58 2017 -0600 - - HHH-12129 - Fix expected exceptions on various Query methods - -commit bb19c30679e54a89a988935784d076c278d965e3 -Author: Steve Ebersole -Date: Mon Dec 4 09:17:23 2017 -0600 - - Test illustrating TCK assertions regarding query results with fetches - -commit d1fb1525aa4e373706479994e388d66144ec3982 -Author: Steve Ebersole -Date: Fri Dec 1 15:09:08 2017 -0600 - - HHH-12125 - Support @GeneratedValue without explicit generator definition - -commit 888ade01066aead0517bd6e81250a962a30b028a -Author: Steve Ebersole -Date: Fri Dec 1 15:08:47 2017 -0600 - - HHH-12098 - prep 5.3 - -commit e960f17a7bd640c51ddfd991e7337d216b8c4963 -Author: Steve Ebersole -Date: Fri Dec 1 15:05:42 2017 -0600 - - HHH-12139 - Allow Hibernate's Transaction act like JPA's EntityTransaction - -commit 4b3a18a5b47dbaf3cf166d82f75bb4d5c086975f -Author: Steve Ebersole -Date: Fri Dec 1 15:05:21 2017 -0600 - - HHH-12098 - prep 5.3 - -commit ad0aa213bc860520842f7c61e0de9223e04a2bef -Author: Steve Ebersole -Date: Thu Nov 30 20:16:01 2017 -0600 - - Allow Hibernate's Transaction act like JPA's EntityTransaction - -commit 3a1eb3382b99d1247b9cc8b22d371d5555fb6392 -Author: Steve Ebersole -Date: Wed Nov 29 22:00:06 2017 -0600 - - Allow Hibernate's Transaction act like JPA's EntityTransaction - -commit dced921456936a16a27a729a065d6dd4320e7174 -Author: Steve Ebersole -Date: Wed Nov 29 21:27:18 2017 -0600 - - HHH-12097 - EntityManagerFactory open/closed checks per JPA spec - -commit f669c4bcdfbb1fa1cf669d241e6086b83109fd35 -Author: Steve Ebersole -Date: Wed Nov 29 21:09:45 2017 -0600 - - HHH-12139 - Allow Hibernate's Transaction act like JPA's EntityTransaction - -commit 6ba328e7a03d2faaf648e85310e903f11211cbd8 -Author: Steve Ebersole -Date: Wed Nov 29 12:33:00 2017 -0600 - - HHH-12136 - Various improvements for ProcedureCall/StoredProcedureQuery - -commit 15bf44e4e9575002e55de134ffbe71107318e020 -Author: Steve Ebersole -Date: Wed Nov 29 12:32:28 2017 -0600 - - HHH-12098 - prep 5.3 - -commit 2dd23e143eadef25197ee9541ee42e9c6b22f624 -Author: Steve Ebersole -Date: Tue Nov 28 09:27:09 2017 -0600 - - not all of them were intended to be pushed - -commit 58781056a9b71cc3802b9dd701733a377678bfec -Author: Steve Ebersole -Date: Tue Nov 28 09:27:00 2017 -0600 - - HHH-12129 - Fix expected exceptions on various Query methods - -commit a4d98419158802ea8db71bc79020c5367192dca4 -Author: Steve Ebersole -Date: Mon Nov 27 15:29:52 2017 -0600 - - challenge - -commit 99428251c4e2c3d11dce7d87e71b63bf9604127d -Author: Steve Ebersole -Date: Sat Nov 25 12:13:12 2017 -0600 - - HHH-12125 - Support @GeneratedValue without explicit generator definition - -commit 9a75fa8d979185b6014a814bf3ffd09e32143939 -Author: Steve Ebersole -Date: Fri Nov 24 18:29:38 2017 -0600 - - HHH-12125 - Support using generator name as implicit sequence/table name - -commit f49efc7864ad2809e2cc42ec0185c2b07b8c4b83 -Author: Steve Ebersole -Date: Fri Nov 24 11:12:22 2017 -0600 - - HHH-12122 - Checking @OrderBy for special cases should perform case-insensitive checking - -commit 65e44267d6940888f49ac2c1335cb9a6956d7a18 -Author: Sanne Grinovero -Date: Fri Nov 17 12:37:23 2017 +0100 - - HHH-12118 Removing handling of old JVM_HAS_TIMESTAMP_BUG - -commit 29d5b417004c07e50df29c23a0d8abb52f934104 -Author: Steve Ebersole -Date: Wed Nov 22 15:27:45 2017 -0600 - - HHH-12101 - Make sure Hibernate returns null on failed attempt to create EMF - -commit 447dc1d44e5759667f484eceee6d424fb45671a0 -Author: Gail Badner -Date: Wed Nov 22 11:47:30 2017 -0800 - - HHH-12098 - prep 5.3 - -commit 5e0274adbbd3e0aa3092c29a765fd203c8279126 -Author: Steve Ebersole -Date: Wed Nov 22 11:21:39 2017 -0600 - - HHH-12116 - Positional parameters report position as name - HHH-12101 - Remove support for legacy HQL-style positional parameters - -commit 8308e4252cd930a43cfc0ea983b5c4524455b328 -Author: Gail Badner -Date: Mon Nov 20 21:37:32 2017 -0800 - - HHH-12110 : IllegalStateException should be thrown for some methods when called on a closed EntityManager - -commit dd561e5f9fe5fc5c0a9d6e850dc9956b11013c68 -Author: Gail Badner -Date: Mon Nov 20 12:07:53 2017 -0800 - - HHH-12098 - prep 5.3 - -commit d1f54b976ef86efa7f4839a7e873c0849810c8e1 -Author: Steve Ebersole -Date: Thu Nov 16 13:46:25 2017 -0600 - - HHH-12099 - Query#getLockMode ought to throw exception for non-SELECT - -commit 409596235cd83e440af17f2ae44873e143959699 -Author: Steve Ebersole -Date: Thu Nov 16 13:46:14 2017 -0600 - - HHH-12097 - EntityManagerFactory open/closed checks per JPA spec - -commit 25ba7bd60d059e14a92dbaa6750bf4f33e0d5031 -Author: Steve Ebersole -Date: Thu Nov 16 13:46:03 2017 -0600 - - HHH-12096 - Problem finding correlated getter-method for field access - -commit 4688d4412fcf48c70a31fc31d5daa775e957f8f7 -Author: Steve Ebersole -Date: Thu Nov 16 11:32:26 2017 -0600 - - HHH-12098 - prep 5.3 - -commit dedc9ef8eb8832cf7820c0c826ac85e90c1df5ed -Author: Steve Ebersole -Date: Thu Nov 16 10:57:11 2017 -0600 - - HHH-12098 - prep 5.3 - -commit 5111a468c49f9ff7db56356d60765162fe489120 -Author: Andrea Boriero -Date: Tue Nov 21 16:56:07 2017 +0000 - - HHH-11913 : Schema generation ignores index DESC/ASC order - -commit 8b313976d927b4c59bfc5e0cd5c453ea6cf08d42 -Author: Andrea Boriero -Date: Tue Nov 21 16:50:26 2017 +0000 - - HHH-11913 : Add test for issue - -commit 7b59cb2f8d57c145050982e0330e4add4266ddbd -Author: Jonathan Bregler -Date: Tue Nov 28 16:46:36 2017 +0100 - - HHH-12132: HANA boolean type mapping doesn't work for existing schema definitions - - - introduce parameter hibernate.dialect.hana.use_legacy_boolean_type to enable - switching between new and legacy behavior. - -commit a0f430a94d7c695b050dc64f6b7e1c99da00e472 -Author: Chris Cranford -Date: Tue Dec 12 13:40:29 2017 -0500 - - Checkstyle fixes. - -commit 6c1948b6b36ed97e0209dbb14cfb2e5c9ca114b6 -Author: Chris Cranford -Date: Mon Dec 11 18:03:45 2017 -0500 - - HHH-12159 - Fix Warning HHH000274 when using Formula with a string-based size constrained property. - -commit 2296ee776872f535acdd3a161605766ccc2e8ac4 -Author: Sanne Grinovero -Date: Mon Dec 11 20:40:25 2017 +0000 - - HHH-12158 No longer need a custom repository to fetch geolatte 1.2 - -commit e3cc2d78e94dc1fb446a601be5a379f00f142a41 -Author: Chris Cranford -Date: Mon Dec 11 12:08:38 2017 -0500 - - HHH-12119 - Fix NameQueryTupleTransformer discarding alias name case. - -commit db2e3906abb6c95d546af116b94948189d907e53 -Author: Jonathan Bregler -Date: Thu Nov 30 13:29:11 2017 +0100 - - HHH-12138: HANA dialect doesn't support procedure parameter mode REF_CURSOR - -commit 55ab0d56774e991959ff64ec42e1fdf5fdb8e5b1 -Author: Vlad Mihalcea -Date: Wed Dec 6 11:56:58 2017 +0200 - - Add test to check if persisting a @OneToOne child entity which has @MapsId works when referencing a parent entity - -commit 494639708288a77bc08209820bc2a9520f5cdd72 -Author: Chris Cranford -Date: Tue Dec 5 10:56:33 2017 +0100 - - HHH-12063 - Enable Envers to work with AttributeAccessor annotation. - -commit d7da90f9cc47a19fafb3f435ab5429cca403e77c -Author: Chris Cranford -Date: Tue Dec 5 10:55:33 2017 +0100 - - HHH-12063 - Added test case. - -commit 0dc788f42f1c159b67ad84c0e1c05861520c57e7 -Author: Chris Cranford -Date: Tue Dec 5 09:41:55 2017 +0100 - - HHH-12062 - Make sure AttributeAccessor annotation is read. - -commit 80f315c32872ed889bd76ab2c43a9a08b03bea0f -Author: Chris Cranford -Date: Tue Dec 5 09:41:19 2017 +0100 - - HHH-12062 - Added test case. - -commit 9ebd56e762b7bb8ecef52d4fa903831da400ef58 -Author: Vlad Mihalcea -Date: Thu Nov 30 13:52:22 2017 +0200 - - HHH-12120 - Update StandardDialectResolver to reflect the latest Dialects of PostgreSQL and MySQL - - - add License header to Database class - -commit 7011347b9a4d31ad6e31e6c5179a3336a82b6057 -Author: Edward.Wilson -Date: Tue Nov 28 14:12:08 2017 +0000 - - HHH-12140 - Allow session scoped interceptors to be managed by DI providers (e.g Spring) - -commit 5415d635dd64ec86b1629b4477070df41c9b05a7 -Author: graemerocher -Date: Mon May 8 11:36:12 2017 +0200 - - HHH-11721 - PreInsertEventListener that just vetoed ends up throwing NullPointerException because the entity is still managed - -commit 304a0a89daaf7b1e3cab31cdc7c6c03c927228cb -Author: Yanming Zhou -Date: Mon Nov 20 16:21:10 2017 +0800 - - HHH-12120 - Update StandardDialectResolver to reflect the latest Dialects of PostgreSQL and MySQL - -commit 400a4bc24ef9bfcd92e526654c4a181c6ceb1454 -Author: Steve Ebersole -Date: Mon Nov 27 11:11:59 2017 -0600 - - HHH-12115 - No Dialect mapping for JDBC type: 1899073220 in Wildfly (AttributeConverter and Short) - - Improved JavaDocs pointing to the exact parts of the JDBC spec that the JdbcTypeJavaClassMappings mappings come from; - Added mapping for BigInteger as well - -commit 6b1f3e51a99bfd4f3a367eddc7913722c8bcf79b -Author: Tiger Wang -Date: Mon Nov 27 10:15:56 2017 +0800 - - HHH-12115 - attribute converter add mapping of Java Short type to JDBC SMALLINT type - -commit f0d49c5be46710cf76060488525762b44cd19f46 -Author: Andrea Boriero -Date: Mon Nov 27 14:48:35 2017 +0000 - - HHH-12113 - Fix Checkstyle error - -commit 47382f69cc282a3df1bc373300eeeeee5237b81f -Author: Vlad Mihalcea -Date: Tue Nov 21 17:40:45 2017 +0200 - - HHH-12113 - The JDBC batch sorting algorithm can be simplified due to latest modifications - -commit 7f70dccc71a51e08d97f9e42ec97d71c0d61587b -Author: Vlad Mihalcea -Date: Mon Nov 20 17:51:32 2017 +0200 - - HHH-12108 - Fix tests failing on Oracle - -commit 5b710533f7acbd9b484ef8d59109cad6edbbb913 -Author: Vlad Mihalcea -Date: Tue Nov 21 15:46:36 2017 +0200 - - HHH-11028 - {h-schema} is not replaced in SQLDelete, SQLInsert and SQLUpdate - - Trim the sQL query before checking it for {h-schema} placeholders - -commit 88c2bda8370c87787ec1d1b13673ada6dbbbf131 -Author: Vlad Mihalcea -Date: Tue Nov 21 15:13:06 2017 +0200 - - HHH-12112 - The query optimizer hint fails on Oracle - -commit 26041f49e1278b31d45daa9460627f13efe1f298 -Author: Vlad Mihalcea -Date: Tue Nov 21 15:02:45 2017 +0200 - - HHH-12111 - Oracle does not support positive/negative initial sequence values for descending/ascending sequences unless MAXVALUE/MINVALUE is defined as well - -commit 9b062e4a6baa0c1efda48f91c55dc51875e8dfc3 -Author: Vlad Mihalcea -Date: Tue Nov 21 14:03:59 2017 +0200 - - HHH-11028 - {h-schema} is not replaced in SQLDelete, SQLInsert and SQLUpdate - - Skip substitute brackets for stored procedures - -commit 44a31550c40d34aec3a0ed8484e7c9a7988fbf39 -Author: Vlad Mihalcea -Date: Tue Nov 21 12:26:59 2017 +0200 - - HHH-12087 - Pagination does not work with Oracle views - - Roll back change because it breaks the follow-on-locking mechanism - -commit 779dcc4078ecb554e271f4b12b8d2e584a8a0a71 -Author: Vlad Mihalcea -Date: Mon Nov 20 19:21:09 2017 +0200 - - Change log file to log.txt because otherwise it's ingored by git - -commit d6441b7081ebf89008e98933149bf1e5804ba483 -Author: rustem.yagudin -Date: Mon Nov 20 13:26:10 2017 +0300 - - HHH-12087 - Pagination does not work with Oracle views - -commit 8aa8485a54f5411a1520b0de595e08e0c8da344f -Author: Andrea Boriero -Date: Fri Oct 20 11:48:07 2017 +0100 - - IntelliJ created out folder should not be included into distribution artifacts - -commit 877e790995fe81cd3d20b6c51483545d203f4644 -Author: Andrea Boriero -Date: Mon Nov 20 11:48:44 2017 +0000 - - HHH-5645 - Fix Checkstyle errors - -commit d330fdcfca3a76eb5424e5668f14b8009190957b -Author: Andrea Boriero -Date: Mon Nov 20 11:43:56 2017 +0000 - - HHH-12086 - Fix Checkstyle error - -commit 7a32ea62b610e3a0fb4580471f37730791d452c7 -Author: Anders Wallgren -Date: Sun Nov 19 19:59:41 2017 -0800 - - HHH-12105 - Batch order_inserts: flush during transaction causes incorrect insert ordering and subsequent constraint violation - -commit c4010d0af016eab67bc51d3da8204b256755a1b3 -Author: Gary LosHuertos -Date: Fri May 2 17:33:07 2014 -0400 - - HHH-9158 - cascade-persist in orm.xml does not apply to annotation-based relationships - -commit abb3590d33cd54146e114d8afbad9ee7e411a893 -Author: Vlad Mihalcea -Date: Wed Nov 15 09:44:48 2017 +0200 - - HHH-11117 - LazyPropertyInitializer$1 cannot be cast to [B when calling Session.merge() on compile time enhanced composed entities - - Add a test case to prove it works after HHH-12054 got fixed - -commit ae8c365bf5f18f3820e2e6d381105c6e6f759fd4 -Author: barreiro -Date: Mon Oct 30 13:53:37 2017 +0000 - - HHH-12054 - Handle UNFETCHED_PROPERTY in CollectionType.replace() - -commit d2a19c9a7794df7e2f4367e8d86a9cda05a0d978 -Author: Gail Badner -Date: Mon Oct 2 16:48:33 2017 -0700 - - HHH-12007 : Executing JPA query results in persistence of new/unmanaged entity - -commit a9f1caf998531126717ca86e396742d610dda3fa -Author: Vlad Mihalcea -Date: Wed Nov 15 12:37:17 2017 +0200 - - HHH-9331 - Aggregate functions for subqueries not working - -commit 5a91673ef2caa0d142c579a146bdb402ce2bd4e1 -Author: Vlad Mihalcea -Date: Wed Nov 15 11:27:17 2017 +0200 - - HHH-5274 - HQL-Insert with Select and Sub-Select fails - -commit fe60239301be84d681011024148b3871200e8145 -Author: Vlad Mihalcea -Date: Wed Nov 15 08:46:01 2017 +0200 - - HHH-5645 - Criteria.createAlias with specified criterion results in wrong parameters passed into SQL statement - - Roll back changes since the test passes even without them - -commit dbd5f81f79edc23c19c957f9dbce10cfa57ef532 -Author: Eric Haas -Date: Mon Jul 21 18:26:37 2014 -0500 - - HHH-5645 - Criteria.createAlias with specified criterion results in wrong parameters passed into SQL statement - -commit eaeda2f41d2cf364a5bf47019f7e8054c5e6c5ae -Author: Vlad Mihalcea -Date: Mon Nov 13 20:33:58 2017 +0200 - - HHH-12086 - Batch order_inserts: flush during transaction causes incorrect insert ordering and subsequent constraint violation - - Add a maximum iteration threshold, to avoid a stack overflow error in case there will be circular dependency that's not properly detected - -commit a5d50c3bd5ae615e97311132291d1ce713216ff0 -Author: randymay -Date: Fri Nov 3 16:22:22 2017 -0400 - - HHH-12076 - Query not built properly when joining a table based on class - - Add replicating test case for HBM mappings - -commit 26ae3c6726fbf70a58b65af4018c4be152b35570 -Author: randymay -Date: Fri Nov 3 16:22:22 2017 -0400 - - HHH-12076 - Query not built properly when joining a table based on class - - Add test case that proves the issue does not replicate for annotation mappings - -commit 427bba4212d96e6b3df86286e02db2e2330b63cd -Author: Vlad Mihalcea -Date: Mon Nov 13 11:04:40 2017 +0200 - - HHH-12086 - Batch order_inserts: flush during transaction causes incorrect insert ordering and subsequent constraint violation - - Fix indentation. - -commit 9ae9810f855daa2a65a589c5a431f9ab47e635b5 -Author: Anders Wallgren -Date: Thu Nov 9 20:09:04 2017 -0500 - - HHH-12086 - Batch order_inserts: flush during transaction causes incorrect insert ordering and subsequent constraint violation - -commit 7c57d11406de65acc37ac32cb7a6ac4f40ac8dba -Author: Steve Ebersole -Date: Fri Nov 10 20:19:01 2017 -0600 - - HHH-12085 - @NaturalId not working on inherited field - -commit e9263758fe8c5466f27c632d409595aa973b39d3 -Author: Steve Ebersole -Date: Fri Nov 10 17:20:49 2017 -0600 - - HHH-12085 - @NaturalId not working on inherited field - -commit f92bffae43d14840d2add28647b8c4c16e9f6687 -Author: Andrea Boriero -Date: Mon Oct 23 11:40:23 2017 +0100 - - Add gradle task to copy resources to out folder - -commit 20422cd76a6f5263157f92eca7c0d0d75b7676f4 -Author: Vlad Mihalcea -Date: Thu Nov 9 09:46:36 2017 +0200 - - HHH-11986 - @LazyGroup is ignored on LazyToOne association with 'mappedBy' - - Fix tests failing on MariaDB - -commit 4531b22e9210416c96848b28ad6ad7450c7fc20f -Author: Viefhaus -Date: Wed Sep 20 10:11:08 2017 +0200 - - HHH-11986 - @LazyGroup is ignored on LazyToOne association with 'mappedBy' - - HHH-11986 - Re-format fix code to follow code conventions - -commit 3292a83223662d54b4e177ac519d8abbafc8d115 -Author: Viefhaus -Date: Thu Sep 14 10:05:55 2017 +0200 - - Testcase for HHH-11986 added - - HHH-11986 : Changed test code to follow conventions of other bytecode enhancement tests; reformatted test code - -commit 1616b3de37d9e4c34fb4a02382d724a313508067 -Author: Jonathan Bregler -Date: Tue Nov 7 14:31:49 2017 +0100 - - HHH-12074 - order_inserts: flush during transaction causes incorrect insert ordering and subsequent constraint violation - - - "TOP" is a reserved key word in same database systems. - -commit 0b04430fdd60251b1c15f56b9ac375e0005ca4d7 -Author: shen dongsheng -Date: Tue Nov 7 11:11:38 2017 +0800 - - HHH-12082 - Fix some errors and formatting issues in the User Guide - -commit 8530584fadaf4f65f22e3ac77e53a674fca179e8 -Author: Anders Wallgren -Date: Wed Nov 1 16:34:55 2017 -0400 - - HHH-12074 - order_inserts: flush during transaction causes incorrect insert ordering and subsequent constraint violation - -commit 3ab1974d66204c56511e64d15c6cb7380174c983 -Author: Vlad Mihalcea -Date: Mon Nov 6 17:02:05 2017 +0200 - - HHH-11871 - Skip Metamodel attribute generation for non-Java Bean property methods - - Fix indentation issue - -commit 95ecd7c43a15f88c558377ac230a16a6f5f45fba -Author: Sanne Grinovero -Date: Mon Nov 6 14:09:05 2017 +0000 - - HHH-12081 Update to JBoss Logger 3.3.1.Final and related tooling 2.1.0.Final - -commit 7c81de98775524b4b3a881e817f8328dfea4ab2f -Author: Sanne Grinovero -Date: Mon Nov 6 13:54:51 2017 +0000 - - README updates and typos - -commit 164178330a92ce1b064b44306c5d9408e86cefdf -Author: Vlad Mihalcea -Date: Wed Nov 1 18:16:29 2017 +0200 - - HHH-12073 - Change BaseUnitTestCase Logger to protected - -commit 310eb69b6ef38caae6a8abcc0f1fd0021518dd14 -Author: ageery -Date: Tue Oct 31 16:08:08 2017 -0400 - - HHH-12072 - BasicFormatterImpl throws a NPE if native SQL begins with a parentheses - -commit f20fe860c9ece9bc001d7ddd8bd416062b89ca1b -Author: Bogdan Stirbat -Date: Thu Jul 20 21:42:57 2017 +0300 - - HHH-11871 - Skip Metamodel attribute generation for non-Java Bean property methods - -commit 20d17ec0f2e982a0c95d004aa126a9e71bb054cd -Author: Guillermo González de Agüero -Date: Sun Jun 11 13:45:01 2017 +0200 - - HHH-11805 Fix JACC cannot be enabled - -commit f2c83c9653c6a2c0bdc55d63305cef3c2241c8c2 -Author: Vlad Mihalcea -Date: Tue Oct 31 15:29:27 2017 +0200 - - HHH-10179 - Fetching an already loaded entity with an EntityGraph does not initialize previously lazy loaded attributes - - Add replicating test case - -commit 280474e9cd21090e72f53a3848abf2412fea410b -Author: barreiro -Date: Wed Oct 25 18:22:46 2017 +0100 - - HHH-12051 - Filter dirty but non-updatable atributes - -commit 1965a9bcaf7295c490f5db9562b974cccb2b8a0f -Author: Radim Vansa -Date: Fri Oct 27 17:19:15 2017 +0200 - - HHH-10677 Local Timestamp cache is not updated right after cache.put - -commit 5d2c353437dca12f16469bf9e8469488d0e8631f -Author: Radim Vansa -Date: Wed Oct 18 13:11:42 2017 +0200 - - HHH-12036 Use cache.clear() for bulk removal on non-tx cache - -commit 4b8cfe0c1f1bfeee0e773c31c48e165cef5ce4c6 -Author: msymonov -Date: Sat Oct 28 11:52:07 2017 +0300 - - HHH-12067: NativeQueryTupleTransformer doesn't handle null values in returned ResultSet - -commit c3f61c73dd702e9f28875c8f44c8602ea99b37ef -Author: Archie L. Cobbs -Date: Sat Oct 28 10:59:49 2017 -0500 - - HHH-12068 - Fix generated @SuppressWarnings to work for all compilers - -commit b8a3baa5c1c063ecf20c9c77b143b8278aec41a9 -Author: Giovanni Lovato -Date: Tue Aug 23 21:14:03 2016 +0200 - - HHH-10485 : Lazy collections fetched with EntityGraph load with JOIN - -commit ef6ddd98bc08fc38032b1dfb4ce9fd26da518168 -Author: Marcello -Date: Thu Feb 9 13:41:10 2017 -0500 - - HHH-12064 - Issue with unidirectional one-to-many association with a join column that references a column that is not the primary key - -commit 88b1e33d72d3843556a3ce043ad603c4746f2283 -Author: Archie L. Cobbs -Date: Mon Oct 23 15:30:05 2017 -0500 - - HHH-12046 - Don't consider static methods for isFoo()/getFoo() conflicts. - -commit ce21f133d2518ede2777635c94efae8936c864af -Author: Vlad Mihalcea -Date: Wed Oct 25 08:42:05 2017 +0300 - - HHH-11028 - {h-schema} is not replaced in SQLDelete, SQLInsert and SQLUpdate code enhancement - - Remove isCallable attribute since it causes failures on MariaDB - -commit bcbb6d099469f6a7aa6bee91ccb6a925b977793f -Author: Sanne Grinovero -Date: Tue Oct 24 17:12:36 2017 +0100 - - HHH-12060 Update to WildFly 11.0.0.Final - -commit 401936f94e6de39460225b9ff50ebda8d8f1d769 -Author: Sanne Grinovero -Date: Mon Oct 23 15:06:09 2017 +0100 - - HHH-12055 Revert to using the Javassist version included in WildFly 11 - -commit 090d18dcc82a9db8895b387757a8a5900680bef4 -Author: Laabidi Raissi -Date: Mon Aug 8 23:25:37 2016 +0200 - - HHH-11028 - {h-schema} is not replaced in SQLDelete, SQLInsert and SQLUpdate code enhancement - -commit 1cb10729b05f480a81b04605b8f391d4b3f9db54 -Author: Vlad Mihalcea -Date: Tue Oct 24 15:06:07 2017 +0300 - - HHH-12058 - Criteria LiteralHandlingMode can only be configured programatically. We need to support String-based configurations as well. - -commit 29fc5903e3e8adb11033a421b957708864e0ff84 -Author: Vlad Mihalcea -Date: Mon Oct 23 15:38:15 2017 +0300 - - HHH-12052 - Move PooledConnections inside DriverManagerConnectionProviderImpl - -commit 9ed4438f172bf28d9fb3ab7278c3c04393c60ac4 -Author: Sanne Grinovero -Date: Fri Oct 20 13:28:00 2017 +0100 - - HHH-12048 Upgrade to Javassist version 3.22.0-GA - -commit 686b2e1fcd8d33c05242e0c77ee4b9358e68bf82 -Author: Andrea Boriero -Date: Thu Oct 19 21:02:52 2017 +0100 - - 5.2.12 - -commit 1c915087a1231688c9745336492e24965aaaf1cf (tag: 5.2.12) -Author: Andrea Boriero -Date: Thu Oct 19 13:44:47 2017 +0100 - - 5.2.12 - -commit 884bfc1cc69fbcf6572c90bfa9bd2a272faab7b7 -Author: Andrea Boriero -Date: Thu Oct 19 11:57:14 2017 +0100 - - HHH-2897 - Fix checkstyle error - -commit 86f310e4cb2ab48b4ad9f9d327a172b08b86281f -Author: Gail Badner -Date: Tue Sep 26 22:10:48 2017 -0700 - - HHH-11970 : @NotFound(IGNORE) and @BatchSize - -commit 19087d9f15ca84b98cc32821fc41936ff8419235 -Author: Gail Badner -Date: Fri Sep 22 18:10:19 2017 -0700 - - HHH-11970 : @NotFound(IGNORE) and @BatchSize - -commit 87a37b02f4b0ad205dde49f4ca62e8bc1fdd6408 -Author: Gail Badner -Date: Thu Oct 19 01:33:43 2017 -0700 - - HHH-11615 : Avoid wrapping an AuditException in another AuditException - -commit ed69c7c5b675d5f217be625c428fbd89c704330a -Author: Chris Cranford -Date: Fri Apr 7 00:08:15 2017 -0400 - - HHH-11615 - Fix Envers to run under WildFly's SecurityManager. - -commit dd2bf67ac992a8fc66b4d38896f5425f8463efd9 -Author: Chris Cranford -Date: Thu Oct 19 01:51:19 2017 -0400 - - HHH-12018 - Revert fix for HHH-11841: Audit query QueryException on maps using entity-types as keys. - -commit 2ace60ea79c74824b8c9ca34d915006b7956d1e7 -Author: Chris Cranford -Date: Thu Oct 19 01:50:11 2017 -0400 - - HHH-12018 - Added test case. - -commit aba202c71a712a38f0ae160e7aa6b7eb05ab86b8 -Author: Chris Cranford -Date: Tue Oct 17 13:54:09 2017 -0400 - - HHH-11988 - Avoid adding unnecessary audit rows for basic types. - -commit 4883e9981848407073ef06a2a91fe7748e5aec6b -Author: Chris Cranford -Date: Tue Oct 17 13:52:12 2017 -0400 - - HHH-11988 - Added test case. - -commit 4cf7f6e406b78ac6f0fcef66f160589a3e9b5e61 -Author: Chris Cranford -Date: Wed Oct 18 12:58:20 2017 -0400 - - HHH-12010 - Improve Envers documentation on computeAggregationInInstanceContext. - -commit d7a87b3d5a02fa09b122bb08281013ca495ddee0 -Author: Karel Maesen -Date: Wed Oct 18 21:30:03 2017 +0200 - - HHH-11969 - Update postgresql driver to latest version (42.1.4) - -commit 36bf5c4be390c461a171ffa4e208ee3d24002397 -Author: Karel Maesen -Date: Wed Oct 18 21:14:08 2017 +0200 - - HHH-12042 - Update geolatte-geom to 1.2.0 - -commit 47eebc5d865d09b448803c26ac28d6527f2f4803 -Author: fernando -Date: Sun Mar 20 15:33:34 2016 -0700 - - HHH-12037 - Remove unused code in ArrayHelper - -commit ed61fc9a8ea9ceab754b49f8fe2f9f4c7c54670b -Author: Lemongrass3110 -Date: Tue Feb 10 11:52:26 2015 +0100 - - HHH-2897 - Adding support for use of sequence objects in DB2 V8 OS390 - -commit 61ee2d22329a145eef60d77513047cc7357f33a4 -Author: Andrea Boriero -Date: Mon Oct 16 20:58:23 2017 +0100 - - HHH-12034 - Fix tests hanging on PostgrSQL - -commit 07eec26d67299018a9e799b2495b3e1bc147f780 -Author: Andrea Boriero -Date: Sat Oct 14 17:30:36 2017 +0100 - - HHH-11971 - QueryParameterBindingValidator does not handle primitive types - -commit 4979241a1d82fd8f574513af32e4149624455152 -Author: Andrea Boriero -Date: Sat Oct 14 17:23:23 2017 +0100 - - HHH-11971 - Add test for issue - -commit a77c48dc111132eba0b5c64b339c144abebe4b5f -Author: Gail Badner -Date: Mon Sep 25 11:30:35 2017 -0700 - - HHH-12034 - According to JPA, a Proxy should be loaded even when accessing the identifier - -commit dff74a157576263cfa3a539acc672eeb2df6d600 -Author: Oliver Kopp -Date: Fri Oct 13 06:57:38 2017 +0200 - - HHH-12033 - README.md links should use Markdown notation instead of AsciiDoc - -commit b51dac6e39659314fbfd8a8d56e4f60fe244c3d1 -Author: marko-bekhta -Date: Wed Oct 11 13:57:57 2017 +0200 - - HHH-12026 Setting correct font family for search input in TOC. Fixing a typo - -commit 8de0f9e2a19a7dab8fbad1a59953199ed9abcd12 -Author: Jonathan Bregler -Date: Mon Oct 9 09:36:35 2017 +0200 - - Fix Hibernate Spatial test on SAP HANA - -commit 54b506ecf47497403392f618eefd3faa5e1eff34 -Author: Jonathan Bregler -Date: Fri Sep 22 13:25:44 2017 +0200 - - HHH-12021 - Fix tests failing on SAP HANA - - - skip testLoad() of org.hibernate.jpa.test.ops.GetLoadTest - - change the result comparison to set-based instead in testRevisionsGtWithPropertyQuery() - -commit 1fc4ce23ac97eb02eb992238e19cffe87e79b599 -Author: Jonathan Bregler -Date: Thu Oct 5 14:04:31 2017 +0200 - - HHH-12020 - Add SAP HANA to the list of provided dialects - - - Update documentation - - Update org.hibernate.boot.registry.selector.internal.StrategySelectorBuilder - -commit 62e691c38aa66f4523cba12ece4d59671f022055 -Author: Jonathan Bregler -Date: Mon Sep 18 15:02:35 2017 +0200 - - HHH-11816 - JoinProcessor considers table names with colons dynamic filter parameters - -commit 00492a3707b9128b34646166f6eff402a8169011 -Author: Chris Cranford -Date: Fri Sep 29 16:47:14 2017 -0400 - - HHH-11965 - Fix cascade of one-to-one associations with proxies. - -commit 5a49cdc3ce7b3deaa221b2d896273f42f8a5511d -Author: Chris Cranford -Date: Fri Sep 29 16:46:43 2017 -0400 - - HHH-11965 - Added test case. - -commit 7b04a0238b621e3703d9df9fc84f5f236f176d20 -Author: Chris Cranford -Date: Fri Sep 29 12:52:31 2017 -0400 - - HHH-11999 - Correct Envers documentation problems. - -commit 05f8e7306e340e68e9afa0d39984516f2c38f00e -Author: Chris Cranford -Date: Fri Sep 29 11:27:34 2017 -0400 - - HHH-11656 - Added test case. - -commit 85016e0bca0ac37718d638c125c76b33103c264a -Author: Andrea Boriero -Date: Wed Sep 27 18:45:35 2017 +0100 - - HHH-11640 - Fix test failing on MariaDB - -commit 72506a6eacc367297a3205f6e1fec7ccbc153799 -Author: Ivo Hradek -Date: Mon Jul 31 15:19:44 2017 +0200 - - HHH-11640 - NamedQuery doesn't log comment when UPDATE/DELETE - HHH-11906 - Add support for MySQL query optimizer hints - -commit 08cd580067f53923a51f5141cdf1505313eb252f -Author: Andrea Boriero -Date: Wed Sep 27 13:26:50 2017 +0100 - - HHH-11980 - Fix test failing on PostgreSQL - -commit 47d2515f99e30e134b9e3e803d5eed3d93560c49 -Author: Andrea Boriero -Date: Wed Sep 27 11:48:09 2017 +0100 - - HHH-12001 - Revert mockito to 2.7.5 - -commit 5e132a46ebbb9a6312a6c1b275c862ef8db68137 -Author: Vlad Mihalcea -Date: Tue Sep 26 18:37:39 2017 +0300 - - HHH-12006 - Make User Guide sections bookmark-able - -commit e391d8577e4fd94c330119dc54747c3f226f9313 -Author: msvticket -Date: Mon Sep 25 13:26:25 2017 +0200 - - HHH-11980 MultiTenantConnectionProvider is required for MultiTenancyStrategy.DISCRIMINATOR - - Instead of checking that multiTenancyStrategy is NONE start using MultiTenancyStrategy.requiresMultiTenantConnectionProvider to distinguish whether MultiTenantConnectionProvider is to be used. - -commit 5be294506d447959e339c9a80993a39a0e6d12be -Author: Thomas Reinhardt -Date: Fri Sep 22 22:59:46 2017 +0200 - - HHH-7842 - Hibernate Criteria does not respect fetch mode, when alias is used - -commit b48dfe0d118c72318cee3905085848fdda023438 -Author: Vlad Mihalcea -Date: Tue Sep 26 15:43:29 2017 +0300 - - Fix test leaking connections - -commit f9ec55d56bfab8f9786ed1e512a7efe7e23142c1 -Author: Vlad Mihalcea -Date: Tue Sep 26 12:42:13 2017 +0300 - - HHH-9576 - Use JDBC bind variables for handling JPA Criteria query numeric literals - - Document the new setting in the Configurations chapter - -commit 56947f28dc0325eadb2585316afbfe0160675660 -Author: Vlad Mihalcea -Date: Mon May 29 15:32:41 2017 +0300 - - HHH-9576 - Use JDBC bind variables for handling JPA Criteria query numeric literals - -commit 81f4ab8f062e3df565537ecb41017cdd93805547 -Author: Andrea Boriero -Date: Thu Sep 21 20:59:05 2017 +0100 - - HHH-112001 - upgrade Byteman version and disable findbugs for JDK 9 - -commit 132767b4fbee0065cf66af9cf90c4892849e201f -Author: Andrea Boriero -Date: Thu Sep 21 11:54:35 2017 +0100 - - HHH-12001 - Allow ORM to be built with Java 9 - -commit 85dcac95d0064590f0a3527654e714b9038c1ac0 -Author: Jonathan Bregler -Date: Tue Sep 19 12:05:06 2017 +0200 - - Improved Hibernate support for SAP HANA part 2 - - - implement PR comments - -commit 3aad752b0449ccfe2f77ae692befb3749ab9e103 -Author: Jonathan Bregler -Date: Thu Sep 14 12:03:41 2017 +0200 - - Improved Hibernate support for SAP HANA - - - Identity column support - - Spatial support - - Various minor improvements in HANA dialects - -commit 7a897d5285675dbea9acf9a6522ad14a6127c01e -Author: Andrea Boriero -Date: Thu Sep 21 16:24:42 2017 +0100 - - HHH-11651 - Fix checkstyle errors - -commit 5566b423e3391696ecc912fc490e857aa6d29ff8 -Author: Andrea Boriero -Date: Thu Sep 21 16:20:04 2017 +0100 - - HHH-3870 - Fix checkstyle errors - -commit ca368f85a6c42c471465444c2f4b870fb866be33 -Author: Andrea Boriero -Date: Thu Aug 17 13:04:39 2017 +0200 - - HHH-11507 - Upgrade to Gradle 4.2 - -commit f8b78bcad0df43bd9b69fa5ee9d3bf10a3202318 -Author: Igor Dmitriev -Date: Mon Jun 26 00:21:42 2017 +0300 - - HHH-11838 - Id retrieving from proxy with FK leads to query execution - -commit af080884d120bb300fd7e448a1cfb916cc4e1606 -Author: Vlad Mihalcea -Date: Mon Sep 4 18:21:11 2017 +0300 - - HHH-3870 - Hibernate proxies Groovy's getMetaClass method breaking proxies when used with Groovy - -commit 6379a42a583a31a5c3960a15b8e584bc5aa11549 -Author: Andrea Boriero -Date: Thu Apr 20 14:24:23 2017 +0200 - - HHH-11651 - unwrapping error in AbstractMultiTenantConnectionProvider - -commit 442f5e60ddcbbefc16cd7eb076a895774dca4143 -Author: Vlad Mihalcea -Date: Wed Sep 20 19:02:03 2017 +0300 - - HHH-11863 - Implement REF_CURSOR support for StoredProcedureQuery.getOutputParameterValue(4); - -commit 287221e26e1ce7bfcf537b4f0c6d9476f0d5b1ca -Author: Vlad Mihalcea -Date: Wed Sep 20 10:42:39 2017 +0300 - - HHH-11996 - order_inserts causing constraint violation - -commit 6866f5eb4d0506e2f281d59627e54f78191bac13 -Author: Vlad Mihalcea -Date: Tue Sep 19 14:51:39 2017 +0300 - - HHH-11997 - EntityManager.createNamedQuery throwing illegalstateexception - -commit 9fa7959020700657af905140539e3be7674630f8 -Author: Vlad Mihalcea -Date: Mon Sep 18 16:51:21 2017 +0300 - - HHH-9662 - IllegalArgumentException when composite ID has IDENTITY generated value - - Add replicating test case - -commit 5b50d91b2dedf284e42d389099503a0645858bd3 -Author: Vlad Mihalcea -Date: Mon Sep 18 15:53:35 2017 +0300 - - Change Informix Docker IP - -commit 1e2c0f5ed597601b0b654f8ae2ed7ca32c4945b7 -Author: Vlad Mihalcea -Date: Mon Sep 18 15:53:21 2017 +0300 - - HHH-11144 - orphanRemoval not working when other same-table-relations are initialized - - Remove test since it was duplicated - -commit 428e0b771884dd300c0a0bc81a19d9d6eb4168dd -Author: Vlad Mihalcea -Date: Mon Sep 18 15:00:46 2017 +0300 - - HHH-11144 - orphanRemoval not working when other same-table-relations are initialized - - Add test to prove that the issue does not replicate - -commit 7c2a58861341f1404b4974f1ed9809f40c1da8f6 -Author: Alexey Nesterov -Date: Sat Aug 12 10:17:39 2017 +0100 - - HHH-6382: Allow to use @OnDelete annotation on unidirectional @OneToMany associations - -commit 1392b43852f82cbf5a11a7889ef19863fca996fb -Author: Vlad Mihalcea -Date: Thu May 11 16:28:03 2017 +0300 - - HHH-11732 - HHH000352: in StatelessSession on rollback with JDBC batch - -commit becc1d7473dbecf75f3d6db95303286f0a2b4ec1 -Author: Gail Badner -Date: Thu Sep 14 12:18:47 2017 -0700 - - HHH-11989 : Deprecate LogicalConnectionImplementor#makeShareableCopy - -commit 0b046885c5d3ecf32876f3e058bf6c6a62819231 -Author: Vlad Mihalcea -Date: Thu Sep 14 12:39:43 2017 +0300 - - Fix tests faiiling on Jenkins - -commit bd4908449f7552fb7b5b098bf89d72e3cf9873b7 -Author: Vlad Mihalcea -Date: Wed Sep 13 18:03:39 2017 +0300 - - HHH-11984 - Add support for navigating between different doc versions - -commit 61932bbeb778d77b1673810191b238ab8b94b4e3 -Author: Gail Badner -Date: Wed Sep 13 12:21:11 2017 -0700 - - 5.2.11 - -commit 921ab8357231ebea54ecde421d06e5ac5abf74e4 (tag: 5.2.11) -Author: Gail Badner -Date: Wed Sep 13 11:34:35 2017 -0700 - - 5.2.11 - -commit 0148ede6381fa0d3761f3889604b3c767984f677 -Author: Vlad Mihalcea -Date: Tue Sep 12 15:40:34 2017 +0300 - - HHH-11411 - Two column navigation and search box for documentation - -commit e9707461eec1ce80ea1aa229df4894fcfd21ffbc -Author: Chris Cranford -Date: Tue Sep 12 23:40:17 2017 -0400 - - HHH-11841 - Fix audit query QueryException on maps using entity-types as keys. - -commit 6f8968e58a00d9552d6e771909824f984b9589c8 -Author: Chris Cranford -Date: Tue Sep 12 23:38:12 2017 -0400 - - HHH-11841 - Added test case. - -commit 3080e819d1461087add1152d75f7624698b43665 -Author: barreiro -Date: Thu Apr 13 15:24:14 2017 +0100 - - HHH-10747 - Instead of the method, use the field directly in the EnhancedSetter - -commit 66f11130ca10ddc21f26ce8af1983473360cee90 -Author: barreiro -Date: Fri Apr 21 18:03:14 2017 +0100 - - HHH-11624 - Test case - -commit d0e7fab351eea4f9271d6945816abe595ad2b908 -Author: barreiro -Date: Tue Jul 25 02:45:00 2017 +0100 - - HHH-11820 - Simplify dirty tracking on entities without collections [bytebuddy] - -commit c392d20decc34f555012df50d7da418398f07ebd -Author: barreiro -Date: Tue Jul 25 02:44:41 2017 +0100 - - HHH-11820 - Simplify dirty tracking on entities without collections [javassist] - -commit e99eb2b7a2cd6c760055b67c29de3d0db165cd45 -Author: Andrea Boriero -Date: Fri Sep 1 14:27:46 2017 +0200 - - HHH-11756 - Typo in public API method name: requiresPostCommitHanding on PostInsertEventListener - -commit c7e5174786e0f3ad346da83cebf11e997b0043ec -Author: Vlad Mihalcea -Date: Tue Sep 12 14:21:04 2017 +0300 - - HHH-11884 - wrong class in returnedClass() in UserType example - -commit d7f7a1baea346b3e8830e12fe90fe5132aa0085f -Author: Gail Badner -Date: Mon Sep 11 23:06:51 2017 -0700 - - HHH-11982 : AbstractSharedSessionContract#getInterceptor should not call checkTransactionSynchStatus() - -commit a9b0305004159bfe646ddb15aa8bc2d31fe99339 -Author: Gail Badner -Date: Fri Sep 8 21:36:05 2017 -0700 - - HHH-11614 : Update migration guide with example for converting variable-length strings to PostgreSQL Large Objects - -commit cf89391e062bd53145478fadf4e2a9a3422f5fee -Author: Gail Badner -Date: Fri Sep 8 17:38:34 2017 -0700 - - HHH-11614 : Add test case using PostgreSQL Large Object functions in native queries; add test case showing how varchar data can be changed to Long Object. - -commit d04a4093358dfa5a17e0726b52cad5a383dd10bc -Author: Gail Badner -Date: Thu Sep 7 22:04:02 2017 -0700 - - HHH-11614 : Update migration guide - -commit 9f2edb654dd55cee67d1b0445bdc0f6ae716f5e9 -Author: Gail Badner -Date: Thu Sep 7 22:01:17 2017 -0700 - - HHH-11614 : Revert "HHH-11477 - HQL query against field marked with @Lob fails on PostgreSQL" - - This reverts commit f0016db20190c3f4dc014486c2f6e64428939f33. - -commit 31942cb3e487193292e52e4c451d6b36ef2654ad -Author: Vlad Mihalcea -Date: Mon Sep 11 09:57:09 2017 +0300 - - Add local MySQL Docker connection config - -commit 0ddc7d32ad9c2af1a00e9e4b1f35b423d2bc65aa -Author: Gail Badner -Date: Fri Sep 8 00:05:28 2017 -0700 - - HHH-11655 : SessionImpl does not load EntityPersister by entity name - -commit 97e7dc59e68eb70366c32819fe321c46e02d1901 -Author: Gail Badner -Date: Fri Sep 8 00:00:14 2017 -0700 - - HHH-11655 : test case - -commit 7c4bc03c3a50373071ae2edf66e0eb2a8d4647a7 -Author: barreiro -Date: Wed Jun 21 17:59:14 2017 +0100 - - HHH-11795 - Improve Ant task for bytecode enhancement - -commit f653e26a49b357788713245bed21eaeafcf619ca -Author: Steve Ebersole -Date: Thu Sep 7 12:01:51 2017 -0500 - - improve documentation (Javadoc) of org.hibernate.cfg.AvailableSettings.CDI_BEAN_MANAGER - -commit 6ba742074097ea3dc3a1d80a6199863a10ddb6e2 -Author: Vlad Mihalcea -Date: Thu Sep 7 16:58:41 2017 +0300 - - HHH-11886 - Elaborate Envers documentation and switch to actual source code examples - - Fix typos. Move schema to external extras files. - -commit ab98bcbe9b4be51d98d60ac72fa31e942f9ab460 -Author: Vlad Mihalcea -Date: Thu Sep 7 11:53:56 2017 +0300 - - HHH-11886 - Elaborate Envers documentation and switch to actual source code examples - - Migrate code snippets to test cases for Join relations queries with multiple predicates - -commit 742d8be69ca81b4e3f8c687f81712f4f932e40a9 -Author: Vlad Mihalcea -Date: Wed Sep 6 12:51:32 2017 +0300 - - HHH-11886 - Elaborate Envers documentation and switch to actual source code examples - - Migarte code snippets to test cases for Join relations queries - -commit 02c59965711768de8fc80dd770e86952d0e98de0 -Author: Guillaume Smet -Date: Fri Sep 1 11:31:26 2017 +0200 - - HHH-11962 Unmark deprecated the NativeQuery methods - -commit 97bc63223639ace8b9a11422413aa174f844e30c -Author: Vlad Mihalcea -Date: Mon Jul 17 12:42:51 2017 +0300 - - HHH-11864 - AutoCommit mode not reset after use by SchemaValidator - -commit 886e1bcc300c3cc617e46d39b1831d127bc6c9d1 -Author: Vlad Mihalcea -Date: Tue Sep 5 18:22:12 2017 +0300 - - HHH-11886 - Elaborate Envers documentation and switch to actual source code examples - - Migrate getCrossTypeRevisionChangesReader example to Junit tests - -commit 80937ee5839891cc08ef617cbf3fc031548e34e6 -Author: Gail Badner -Date: Fri Sep 1 15:34:30 2017 -0700 - - HHH-11957 : DB2 substring method needs to be exposed in DB297Dialect - -commit 385a18b11b0a7bbe6ec4530184e2ae31e9f6cdf7 -Author: Gail Badner -Date: Fri Sep 1 15:28:57 2017 -0700 - - HHH-11957 : DB2 substring method needs to be exposed in DB297Dialect - -commit 1e25a1a99b9317421430eebdc517f400aeb13c25 -Author: Guillaume Smet -Date: Thu Aug 31 15:47:51 2017 +0200 - - HHH-11956 Add createCustomLoader() to the NativeQueryInterpreter contract - -commit 9fd9f623cb31925afe15f2e1629bba14c4e91e51 -Author: Guillaume Smet -Date: Wed Aug 30 14:27:23 2017 +0200 - - HHH-11944 Rename getDelegate() methods to delegate() following a - discussion with Steve. - - They are all new in 5.2.11 so it shouldn't raise any compatibility - issues. - - Note that we still have a getDelegate() method in - SessionDelegatorBaseImpl as it is the one coming from EntityManager. - -commit 12dd8522bebcbeaa2ea7cac13a4b44d9e6a8e4a7 -Author: Guillaume Smet -Date: Wed Aug 30 14:01:12 2017 +0200 - - HHH-11944 Fix preexisting typos in log messages - -commit de1642ba93370106db3d2df7a19ae8f62a1746c6 -Author: Guillaume Smet -Date: Mon Aug 28 15:32:45 2017 +0200 - - HHH-11944 Add AbstractDelegatingSessionFactoryBuilderImplementor - - This is missing from the set of delegating classes available. - -commit 8de187594dd5283278fcf1ca2bafbbbebe3ed7bf -Author: Guillaume Smet -Date: Mon Aug 28 15:16:28 2017 +0200 - - HHH-11944 Add test classes for delegating classes - -commit 13bb0a3f220d52f634cd19a9fac4afbf1d73c01b -Author: Guillaume Smet -Date: Mon Aug 28 15:15:35 2017 +0200 - - HHH-11944 Add missing methods to delegating class - -commit 08cbe1a33f64d79bc1c95dcb3aa53a4f0920bfaf -Author: Guillaume Smet -Date: Mon Aug 28 15:15:09 2017 +0200 - - HHH-11944 Fix typo in comment - -commit 123ef45975e8d695af047bb466a390447e113992 -Author: Guillaume Smet -Date: Fri Aug 25 18:11:22 2017 +0200 - - HHH-11944 Make the AbstractDelegatingSessionBuilder hierarchy generic - -commit 3620e1e47e9f9597e86a0e0d7b8a873379f1ee54 -Author: Guillaume Smet -Date: Fri Aug 25 17:59:20 2017 +0200 - - HHH-11944 The getDelegate() method here is the method from EntityManager - - It should not return the delegate but the current Session impl proper. - - The name is a bit misleading but it comes from JPA so we cannot do - anything about it. - -commit 626c8abc714d47ec54712f52ba92f39f6abcc66f -Author: Guillaume Smet -Date: Fri Aug 25 17:58:26 2017 +0200 - - HHH-11944 Add missing methods to AbstractDelegatingSessionFactoryBuilder - -commit e8441e5313f52c563d1ab4573144b766bb8ff19d -Author: Guillaume Smet -Date: Fri Aug 25 17:54:58 2017 +0200 - - HHH-11944 Fix added but not implemented delegating methods - -commit 5feff3b2c6336be3b3e8a4cb1d1d5eb8b17240c4 -Author: Andrea Boriero -Date: Fri Sep 1 12:16:15 2017 +0200 - - HHH-11942 - ANTLR parser should fail when providing an extra parenthesis - -commit e9cc8867affd7b2569644877896067c4f20c5105 -Author: Vlad Mihalcea -Date: Thu Aug 24 17:26:22 2017 +0300 - - HHH-11942 - ANTLR parser should fail when providing an extra parenthesis - - Fix issue by parsing the whole statements until the EOF instead of stopping at any unexpected right closing paranthesis - -commit e950957b89dcc8f77fb29e11065044eacc9f211c -Author: Andrea Boriero -Date: Thu May 11 21:11:59 2017 -0500 - - HHH-11739 - globally_quoted_identifiers_skip_column_definitions property does the opposite of what the doc describes - -commit 3f60619f3fde22d949283e051a5f1b9cb1ebf073 -Author: Andrea Boriero -Date: Thu May 11 21:07:38 2017 -0500 - - HHH-11739 - Fix tests - -commit c25a859adeca1b4bee8719dc199b3e715d41b78c -Author: Vlad Mihalcea -Date: Thu Aug 31 17:12:49 2017 +0300 - - HHH-11886 - Elaborate Envers documentation and switch to actual source code examples - - Move code snippets to actual test cases for queries using modified flags - -commit e7c239d57fbfa468ce346a88ef3f3c1b90b145dc -Author: Vlad Mihalcea -Date: Thu Aug 31 15:44:45 2017 +0300 - - HHH-11886 - Elaborate Envers documentation and switch to actual source code examples - - Move code snippets to actual test cases for entity revision queries - -commit 23752fe16969cbe1af2d49af76abbc7500c9b67f -Author: Guillaume Smet -Date: Fri Aug 25 17:46:18 2017 +0200 - - HHH-11945 Make ExceptionConverterImpl use SharedSessionContractImplementor instead of AbstractSharedSessionContract - -commit 345c0cce17b6b4fac9ae0486633553b2af71b2e2 -Author: Guillaume Smet -Date: Fri Aug 25 17:51:16 2017 +0200 - - HHH-11946 Configure the Configurable services in SessionFactoryServiceRegistryImpl - -commit 67ccdae0f5feba4e2c22a6e0d8603d1646e63239 -Author: Sanne Grinovero -Date: Sun Aug 27 17:13:49 2017 +0100 - - HHH-11950 Target WildFly 11 for produced hibernate-orm-modules - -commit 2d52a38e519937fffcba1d735dcb5a61195afacd -Author: Bogdan Stirbat -Date: Mon Aug 28 00:35:16 2017 +0300 - - HHH-8955 - added HSQL dialect support for database trunc function - -commit 3ed4bfe83026cfa8d91b67f89d754452f9e39488 -Author: Guillaume Smet -Date: Mon Aug 28 15:41:46 2017 +0200 - - HHH-11951 Improve TransactionStatus javadoc - -commit e1faed4b89e67f064ba21a4bfc554460ecd243da -Author: Andrea Boriero -Date: Wed Aug 16 15:46:16 2017 +0200 - - HHH-11815 - @org.hibernate.annotations.Index and NullPointerException in IndexOrUniqueKeySecondPass - -commit cd7611e511ac44d5c5386793a05ebe6d2e3ebf39 -Author: Gail Badner -Date: Mon Aug 7 17:39:50 2017 -0700 - - HHH-11914 : SchemaUpdate.setHaltOnError(true) does nothing - -commit 1f7aac997915797032500f8792c1cf980e6f92f7 -Author: Guillaume Smet -Date: Thu Aug 17 14:34:01 2017 +0200 - - HHH-11934 Make the delegate field accessible to child classes - -commit 6390471d55bba89e18250137621642e7472abe36 -Author: Vlad Mihalcea -Date: Thu Aug 24 14:07:02 2017 +0300 - - HHH-11942 - ANTLR parser should fail when providing an extra parenthesis - - Add replicating test case - -commit fcefe7f3b8a659cb1bb3ccb797ef61129cb08eb0 -Author: Lukas Eder -Date: Thu Aug 24 10:26:39 2017 +0200 - - Fixed trivial typo in Javadoc - -commit e992ff04c9cc020aab3c7430c13592132e728e4e -Author: Chris Cranford -Date: Tue Aug 22 15:53:44 2017 -0400 - - HHH-11892 - Fix loading audit history when using a map with entity-type keys. - -commit 39196915f1161ce2cc95bb77dddd8bcd5f2e1947 -Author: Chris Cranford -Date: Tue Aug 22 15:53:29 2017 -0400 - - HHH-11892 - Added test case. - -commit 843cce998f9de9ccd416ec6b0904bbc2c246105b -Author: Chris Cranford -Date: Mon May 15 17:11:28 2017 -0400 - - HHH-11748 - Fix relatedId queries against associated entities in entity identifier mappings. - -commit ac15d45da2932af15fdae041f5f54194f9b96388 -Author: Chris Cranford -Date: Mon May 15 17:10:55 2017 -0400 - - HHH-11748 - Added test cases - -commit 9a22960c3edc1589b4e12dade3a72f8c1d93e325 -Author: Andrea Boriero -Date: Mon Aug 21 10:27:35 2017 +0200 - - HHH-11897 - Fix checkstyle errors - -commit 407360d95784d1216b530a44ffcbe023470f3f00 -Author: Gail Badner -Date: Thu Aug 17 21:44:17 2017 -0700 - - HHH-11935 : Log a warning and update documentation that enabling "empty" composites is an experimental feature - -commit 12616d44e2a2e2017a7824c28de0bce15fe4c2b7 -Author: Vlad Mihalcea -Date: Mon Jul 31 16:58:27 2017 +0300 - - HHH-11886 - Elaborate Envers documentation and switch to actual source code examples - - Refactor section about queries - -commit 6ad8302a3cb36ef54f02a69a1719f4b2ba758aa5 -Author: Bruce Brown -Date: Tue Aug 15 22:56:47 2017 -0500 - - HHH-11929 removed excessive toLowerCase() and substring() from SQLServer2012LimitHandler.hasOrderBy(). Also reversed the direction for scanning the sql string for "order by " to start at the end of the string - -commit 9394fadc9ac1b5fb710d77302b69e6e9657991bb -Author: Arnold Galovics -Date: Sat Jul 29 21:23:09 2017 +0200 - - HHH-11897: Fix support for Tuple results for native queries - -commit 4235d756107d00bd4007c53eaa8d85fd1382cc55 -Author: Viefhaus -Date: Tue Aug 8 09:57:33 2017 +0200 - - HHH-11916 - Unnecessary initialization of lazy collection on PERSIST cascade - -commit 65c6964c962344c728f5a680f7f6e1e246208446 -Author: Gail Badner -Date: Tue Aug 15 22:17:56 2017 -0700 - - HHH-11928 : Empty left join fetched collection is uninitialized when collection key is composite with hibernate.create_empty_composites.enabled=true - -commit 310a43e5e7f3773cb0d98902dd1443bd775aa749 -Author: Gail Badner -Date: Tue Aug 15 22:13:34 2017 -0700 - - HHH-11928 : test cases - -commit ef81e39d199f64ce3fad946657853d6a43937c9b -Author: Gail Badner -Date: Tue Aug 15 21:53:29 2017 -0700 - - HHH-11922 - Entity with null many-to-one cannot be loaded when associated entity has composite ID with hibernate.create_empty_composites.enabled=true - -commit eafc5fe105dde67b7cfa87f935d56d9005b10609 -Author: Gail Badner -Date: Tue Aug 8 14:28:56 2017 -0700 - - HHH-11922 : Added test cases - -commit 203793be63d39a79a63ec9128017bf21ce9eeebe -Author: jcibik -Date: Mon Aug 14 15:24:27 2017 +0200 - - HHH-11927 - CascadeMergeToChildBeforeParentTest should not assume the persisted entity has the id with a value of 1 - -commit 8d29a4d5886c886bcb848421dc1c1d56c060cd25 -Author: Vlad Mihalcea -Date: Thu Aug 3 11:15:53 2017 +0300 - - HHH-11907 - Add the getResultStream() default method in org.hibernate.query.Query - -commit ce8aa0407821968a675d5b8973bcd4b893f805bb -Author: Andrea Boriero -Date: Thu Aug 10 13:00:02 2017 +0200 - - HHH-11882 - Fix tests - -commit d85327a5e73b364966cf65f657d53dc309d9eac1 -Author: barreiro -Date: Wed Aug 9 18:08:10 2017 +0100 - - HHH-11882 - Fix tests - -commit cfb910fb375f2acff2ac9c1f2783ffbe683e6517 -Author: barreiro -Date: Wed Aug 9 18:07:35 2017 +0100 - - HHH-11882 - Use CustomRunner as the runner for tests with BytecodeEnhancerRunner - -commit ab09adb6cfa97cd8f04ba177054bba4978b98318 -Author: Steve Ebersole -Date: Wed Aug 9 11:48:16 2017 -0500 - - Update CONTRIBUTING.md - - Use markdown link syntax to refer to lgpl.txt and dco.txt - have had no luck getting GitHub to understand asciidoctor - -commit 0995688d767ccd97bdd5df1a368f580d28435659 -Author: Steve Ebersole -Date: Wed Aug 9 11:42:18 2017 -0500 - - Update README.md - -commit d42e24ce3facd3c2d03d035f49ed4bec877c266e -Author: Steve Ebersole -Date: Wed Aug 9 11:22:08 2017 -0500 - - Update README.md - - Revert section markers so GitHub renders this correctly :( - -commit bb905dcb00d96570ba5327926d2aa5535fe17a1b -Author: Gail Badner -Date: Tue Aug 8 13:47:39 2017 -0700 - - HHH-11915 - DatabaseMetaData#getIndexInfo can return column names enclosed in quotes on PostgresPlus - -commit 65b5e6445b993d1c23c64c567b4268000b6f7bad -Author: Andrea Boriero -Date: Tue Aug 8 11:05:50 2017 +0200 - - HHH-11915 - DatabaseMetaData#getIndexInfo can return column names enclosed in quotes on PostgresPlus - -commit fd2dab3297f5d7afd031bd4e67b26b17420ceaac -Author: Steve Ebersole -Date: Tue Aug 8 11:44:45 2017 -0500 - - CONTRIBUTING.md changes + README.md changes - -commit ba6cc06810bfe065889786ddffc025c3dd3258d9 -Author: Andrea Boriero -Date: Tue Aug 8 17:04:30 2017 +0200 - - HHH-11176 - Fix CheckStyle errors - -commit b8c6bc220470b7f0d3b1b2ee8aa8873893c68904 -Author: Steve Ebersole -Date: Tue Aug 8 09:27:12 2017 -0500 - - CONTRIBUTING.md changes to add Legal section + adding dco.txt - -commit bc05ff24bc415978240f50874553074d8620ea6f -Author: Andrea Boriero -Date: Tue Aug 8 14:35:29 2017 +0200 - - HHH-11882 - Fix test causing failures - -commit af4f63aff75af6cd0019b8fee48e9d9a7deccd2b -Author: Gail Badner -Date: Mon Aug 7 21:27:22 2017 -0700 - - HHH-11898 : added @FailureExpected to test reproducing the error - -commit a2803d7703b76893a0ec3259dcb90fa808f5d6e0 -Author: barreiro -Date: Tue Jul 11 16:38:57 2017 +0100 - - HHH-11882 - Remove old bytecode enhancer testing infrastructure - -commit d3ce7ded3742fd4460d84b0a19e3f5febbc6a169 -Author: barreiro -Date: Wed Jul 12 20:03:05 2017 +0100 - - HHH-11882 - Fix TestLazyPropertyOnPreUpdate - -commit eca2c6001e50baef4079b6bba6a249496ae3da12 -Author: barreiro -Date: Tue Jul 11 16:34:04 2017 +0100 - - HHH-11882 - Remove old bytecode enhancer tests - -commit fb6a7a376fee5b681ec0ff135dabfe64e8baeeb6 -Author: barreiro -Date: Tue Jul 11 16:20:28 2017 +0100 - - HHH-11882 - Bytecode enhancer tests with the new JUnit runner - -commit 168a47bdae90a26fb27c4a64adba22edbc9ef7dc -Author: barreiro -Date: Tue Jan 31 18:51:56 2017 +0000 - - HHH-11882 - Bytecode enhancer JUnit runner - -commit cc342dc0720f6340df4eb5ae6c04ee750b523bc1 -Author: Gail Badner -Date: Fri Aug 4 16:37:34 2017 -0700 - - HHH-11910 : SchemaUpdateTest fails on databases using case-insensitive identifiers - -commit a8fcdffc50915724b3bdc3ada1bdb881927bac00 -Author: Gail Badner -Date: Wed Aug 2 16:38:23 2017 -0700 - - HHH-11898 : test case - -commit 019cd397fb223e0620ef7dc70ac75b21a51618c8 -Author: jcibik -Date: Wed Aug 2 13:07:34 2017 +0200 - - HHH-11905 - AbstractLobTest Fails on Sybase - -commit af4a76e6a996e818e79edf1e1d295aa6939495b1 -Author: jcibik -Date: Wed Aug 2 09:39:08 2017 +0200 - - HHH-11904 - EnumExplicitTypeTest test assert fails on mariadb clusters - -commit 2fe8e5e340a1019b1c0f44bc0a30889ad0d89e04 -Author: Gail Badner -Date: Tue Aug 1 21:36:03 2017 -0700 - - HHH-11903 : test case - -commit 47f8a679907789dd68f13cfd81a6c6caf232a81b -Author: Bogdan Stirbat -Date: Sun Jul 30 19:54:44 2017 +0300 - - HHH-11539 - when foreignKey is added to an @JoinColumn, and not @CollectionTable directly, consider it as well - -commit 742df1f3fa13d8e6acff763b2f5e3b7ea9cd05a3 -Author: Vlad Mihalcea -Date: Mon Jul 31 16:25:18 2017 +0300 - - HHH-11886 - Elaborate Envers documentation and switch to actual source code examples - - Add example for property-based changes - -commit 28758f7d53f4a254a624ea12813b964f73161049 -Author: Vlad Mihalcea -Date: Mon Jul 31 12:29:20 2017 +0300 - - HHH-11886 - Elaborate Envers documentation and switch to actual source code examples - - Extend the Revision log example with actual test cases and SQL statement snippets - -commit e56ecc24ff30c50fc8a71c0f70e7e6767723f7ce -Author: Vlad Mihalcea -Date: Fri Jul 28 09:43:30 2017 +0300 - - HHH-11886 - Elaborate Envers documentation and switch to actual source code examples - - Provide two examples for the entity type change revision tracking - -commit fa81aafb285eb482be5e856112811a0b812a6c7c -Author: Vlad Mihalcea -Date: Fri Jul 28 08:22:35 2017 +0300 - - HHH-11891 - Clarify documentation about Hibernate support for basic array types - - Apply Steve suggestions - -commit f0ccd7126a123d78e19083e24f80bd0474b73b65 -Author: Vlad Mihalcea -Date: Thu Jul 27 16:08:49 2017 +0300 - - HHH-11886 - Elaborate Envers documentation and switch to actual source code examples - - Refactor the Revision log example with actual test cases - -commit 582bd945303a41bfb0d69e91ef90d6efadf022a3 -Author: Vlad Mihalcea -Date: Thu Jul 27 11:26:57 2017 +0300 - - HHH-11886 - Elaborate Envers documentation and switch to actual source code examples - - Add example to demonstrate the audit log query difference for ValidityAuditStrategy - -commit 871722dc08ec131cd1f5238e1b48df8db2dcc402 -Author: Vlad Mihalcea -Date: Thu Jul 27 09:56:40 2017 +0300 - - HHH-11891 - Clarify documentation about Hibernate support for basic array types - -commit a260006d7697bd271452020db22dcd7ff177b15f -Author: Vlad Mihalcea -Date: Wed Jul 26 17:26:41 2017 +0300 - - HHH-11886 - Elaborate Envers documentation and switch to actual source code examples - - Add example to configure the ValidityAuditStrategy - -commit 7c5213171b75736249362be2d749240ccdc124e8 -Author: Vlad Mihalcea -Date: Tue Jul 25 14:28:14 2017 +0300 - - HHH-11886 - Elaborate Envers documentation and switch to actual source code examples - - Add examples about reading revisions and reconstructing entity state - -commit d671fe1391945726e3a8ce1577904b42dda80a4b -Author: Vlad Mihalcea -Date: Tue Jul 25 11:16:03 2017 +0300 - - HHH-11890 - Remove old docbook folder from the documentation module - -commit ba2e273e9ec7368716d38540c5279c43666c84ac -Author: Vlad Mihalcea -Date: Mon Jul 24 17:29:12 2017 +0300 - - HHH-11886 - Elaborate Envers documentation and switch to actual source code examples - -commit 4477baf53bb8592800115e0ce1d1c4cd48434338 -Author: echunca -Date: Fri Jul 21 17:26:24 2017 +0800 - - HHH-11826: ImplicitNamingStrategyComponentPathImpl generates invalid SQL for Entity with Embedded ElementCollection - -commit df3a248c9b409f381e47adb86fd000a7d951ca91 -Author: Freek de Bruijn -Date: Wed Jul 19 22:19:07 2017 +0200 - - HHH-11878 - Minor typo in CascadeStyles.java - -commit 3553efa05f3ca455dd88202df1684334e9526994 -Author: Gail Badner -Date: Thu Jul 20 16:48:56 2017 -0700 - - HHH-11881 : Null Set collection elements are inserted into collection table - -commit 240492f940f2b7466ea86e39a60a2d8627011a2f -Author: Gail Badner -Date: Thu Jul 20 16:45:29 2017 -0700 - - HHH-11881 : Added tests - -commit 1afbdadd6709373cc9089419bfbb36fb55d06916 -Author: Vlad Mihalcea -Date: Wed Jul 19 12:58:57 2017 +0300 - - Minor documentation changes for Envers - -commit 68a40425b188d07d0faee21e087b5b5bacf632e5 -Author: Arnold Galovics -Date: Mon Jul 17 23:00:14 2017 +0200 - - HHH-11176: Add support for Tuple results for native queries - -commit 1347ee62506626254b96484ceb898aaa2a7e8764 -Author: András Eisenberger -Date: Tue Jun 13 16:47:53 2017 +0200 - - HHH-11465 - @AttributeOverride does not work for CompositeUserType inside of @Embeddable - -commit 2bb041423e481735f781beb7ffd31440ad1a1bca -Author: jonathan -Date: Sun Jul 2 21:59:41 2017 -0500 - - HHH-11726 - PASS_DISTINCT_THROUGH hint is ignored when used in conjunction with maxResults/firstResult limiters - -commit 60f2ac8534c8b4680924efd68e66d43c8948e8a6 -Author: Guillaume Husta -Date: Thu Jul 13 11:42:51 2017 +0200 - - FIX HHH-11868 - -commit 7f94320cec4e8a6a49d7df2cd34c22ee89dc4037 -Author: Vlad Mihalcea -Date: Wed Jul 5 19:59:55 2017 +0300 - - HHH-9864 - foreign key violation with order_inserts=true and batches with mixed subclass entities - - Add extra check for executeBatch which should prove that batching works as expected - -commit 175e0dae34b41ae4fe741cbad4b122d7cc0156cd -Author: Vlad Mihalcea -Date: Wed Jul 5 17:44:14 2017 +0300 - - Fix test failing in Envers and for MariaDB - -commit 4b672a214f84627fe872e015a87f0a4963c1947d -Author: Vlad Mihalcea -Date: Wed Jul 5 16:24:09 2017 +0300 - - HHH-9864 - foreign key violation with order_inserts=true and batches with mixed subclass entities - - Add test for @ManyToOne association - -commit 6ed1303349dec77285a0bbe8c23b7dea2d84190e -Author: Vlad Mihalcea -Date: Wed Jul 5 14:25:13 2017 +0300 - - HHH-11526 - Documentation for custom collection types - -commit c87253575dd443da989c99e1af3bc86585e8a025 -Author: Vlad Mihalcea -Date: Wed Jul 5 12:39:03 2017 +0300 - - HHH-11290 - Migrate all documentation snippets that derive the source code from extras instead of actual Unit Tests - - Fixed in the OSGI chapter - -commit ceaeb81e3362ff187004ea3479b2afeeba5aa8a6 -Author: Vlad Mihalcea -Date: Tue Jul 4 18:03:06 2017 +0300 - - HHH-11290 - Migrate all documentation snippets that derive the source code from extras instead of actual Unit Tests - - Fixed in the Identifier chapter - -commit b9b956cd2c1ab5067301fb74c7f51bff7c7b27d6 -Author: Vlad Mihalcea -Date: Tue Jul 4 15:43:33 2017 +0300 - - HHH-11290 - Migrate all documentation snippets that derive the source code from extras instead of actual Unit Tests - - Fixed in the Dynamic entity mapping chapter - -commit 87ce2670e72273ac9925e3f2cf2d1c1b5072d39f -Author: Vlad Mihalcea -Date: Tue Jul 4 12:05:12 2017 +0300 - - HHH-11290 - Migrate all documentation snippets that derive the source code from extras instead of actual Unit Tests - - Fixed in the Entity chapter - -commit f9cb1d5cb4a918c3a41b44baefd50052a60ed218 -Author: Vlad Mihalcea -Date: Mon Jul 3 18:29:52 2017 +0300 - - HHH-11290 - Migrate all documentation snippets that derive the source code from extras instead of actual Unit Tests - - Fixed in the Access chapter - -commit 0d5f9c16ff2eb044ebb2989ba43e4e44dfe26a30 -Author: Chris Cranford -Date: Mon Jul 3 11:16:06 2017 -0400 - - HHH-11851 - Fix for native envers test cases to execute against validity and default audit strategies. - -commit c42df6a11b032ea454a44e32e7f38b8ba3902029 -Author: Vlad Mihalcea -Date: Thu Jun 29 10:55:22 2017 +0300 - - HHH-11290 - Migrate all documentation snippets that derive the source code from extras instead of actual Unit Tests - - Fixed in the Embeddable chapter - -commit c39a3374187e5735e47c8585c37aec765779cf71 -Author: Vlad Mihalcea -Date: Wed Jun 28 16:45:19 2017 +0300 - - HHH-11290 - Migrate all documentation snippets that derive the source code from extras instead of actual Unit Tests - - Fixed in the Natural Id chapter - -commit 64b16fdf5e8c1c778a4475d3f6adb4c39adf97dd -Author: Vlad Mihalcea -Date: Wed Jun 28 15:28:53 2017 +0300 - - HHH-11290 - Migrate all documentation snippets that derive the source code from extras instead of actual Unit Tests - - Fixed in the Locking chapter - -commit 1d0a44ab92a1dd090fc26a3ea2ab649e93529a09 -Author: Shawn Clowater -Date: Tue Jun 20 14:47:31 2017 -0600 - - HHH-11830 - Shared Session memory leak via TransactionObserver reference - -commit 0a24f4d6bdc5eb69e38adbc1ca87e3796bd677f9 -Author: Vlad Mihalcea -Date: Tue Jun 27 12:09:41 2017 +0300 - - HHH-11837 - MapsId and PrimaryKeyJoinColumn examples in the documentation should use OneToOne rather than ManyToOne - - Replace many-to-one with one-to-one as illustrated by the actual entity maappings - -commit 7728d23c9f5b08d263049a61e161e05cf1a0f7e3 -Author: Vlad Mihalcea -Date: Tue Jun 27 11:13:31 2017 +0300 - - HHH-5538 - Postgres: fix dialect to work in databases with mutiple schema and search_path set - - Move test to a more appropriate package - -commit 9159b8efd57fda1e5b57a229bba1aa668ca31512 -Author: Vlad Mihalcea -Date: Tue Jun 27 11:09:32 2017 +0300 - - HHH-5538 - Postgres: fix dialect to work in databases with mutiple schema and search_path set - - Add a test case to prove that the issue does not replicate - -commit bbcab0f75c9c2fb6f3e94de6fc61d7f408b2bc16 -Author: Andrea Boriero -Date: Thu Jun 22 12:47:44 2017 +0100 - - HHH-11808 - Update migration guide and documentation - -commit 664a9d568ac22b7654f78cefca3acc35f7d1cac5 -Author: Vlad Mihalcea -Date: Mon Jun 26 14:47:43 2017 +0300 - - HHH-11837 - MapsId and PrimaryKeyJoinColumn examples in the documentation should use OneToOne rather than ManyToOne - -commit 3d2baa8d568a6b4e8badb697a2333dfd184b8e2d -Author: Vlad Mihalcea -Date: Thu Jun 22 18:00:14 2017 +0300 - - HHH-11186 - Add examples for all Hibernate annotations - - Document @Persister annotation - -commit a53e11822bb70238ec5e269b9d3d0f3286944706 -Author: Vlad Mihalcea -Date: Thu Jun 22 17:33:29 2017 +0300 - - HHH-11186 - Add examples for all Hibernate annotations - - Document @Proxy annotation - -commit 2353697a03be820d7102697df4611dd89dd7c186 -Author: Vlad Mihalcea -Date: Thu Jun 22 12:44:38 2017 +0300 - - Add fetch as well for LocalDateTime test - -commit 385f6d056cffd34ca9fef8ea3a13ef5473fa1b20 -Author: Vlad Mihalcea -Date: Thu Jun 22 12:20:45 2017 +0300 - - HHH-11186 - Add examples for all Hibernate annotations - - Document @Tuplizer annotation - -commit 027ca97090c24d43f57e105d03dc1a9002006785 -Author: Gail Badner -Date: Wed Jun 21 20:23:29 2017 -0700 - - Fix broken test on pgsql Jenkins pipeline - -commit 9584b16089ea41f5e621c4bd21e7411ca922e5a3 -Author: Gail Badner -Date: Wed Jun 21 20:23:29 2017 -0700 - - HHH-11832 : ManyToManyWithDynamicFilterTest fails on Sybase due to reserved word - -commit b28a38fb41fa63e0d02d30ce3b824aea300158f7 -Author: Vlad Mihalcea -Date: Wed Jun 21 18:01:48 2017 +0300 - - HHH-11186 - Add examples for all Hibernate annotations - - Document @SqlFragmentAlias annotation - -commit 7f010569e5f9f9306a257df38c757a1278b51574 -Author: Vlad Mihalcea -Date: Wed Jun 21 16:48:48 2017 +0300 - - HHH-11827 - JPA entity native query not eagerly fetching associations as suggested by documentation. - -commit 7362a4947782604962f15adcf32cdccd3a14c074 -Author: Vlad Mihalcea -Date: Tue Jun 20 17:26:06 2017 +0300 - - HHH-11186 - Add examples for all Hibernate annotations - - Document @Polymorphism annotation - -commit 5d49468acfea670b6f945ada9d7b7620cec557cb -Author: Richard Yhip -Date: Mon Jun 19 13:34:02 2017 -0400 - - fixed exception message spacing - -commit dda0c4c37e358a651275ca2070abeba7cbdccf68 -Author: Philippe Marschall -Date: Mon Jun 19 15:50:03 2017 +0200 - - HHH-11824 Remove Types.REF_CURSOR reflection - - https://hibernate.atlassian.net/browse/HHH-11824 - -commit 67b01b50044767e719bb6330dcaf64f0073c7be5 -Author: Vlad Mihalcea -Date: Mon Jun 19 17:16:26 2017 +0300 - - HHH-11186 - Add examples for all Hibernate annotations - - Document Hibernate @NativeQuery and @NamedNativeQuery annotation - -commit e5044c51c1fc7b042a7e1c0e957bfa7fa7cd4558 -Author: Vlad Mihalcea -Date: Mon Jun 19 15:36:14 2017 +0300 - - HHH-11186 - Add examples for all Hibernate annotations - - Document @LazyToOne annotation - -commit e50809e631824d412eceb015def28127d0983d5a -Author: Vlad Mihalcea -Date: Fri Jun 16 11:58:13 2017 +0300 - - Fix failing test on MariaDB - -commit a7fc440e4c533a32b956044c9c421727d70afa79 -Author: Karel Maesen -Date: Wed Jun 14 21:45:43 2017 +0200 - - HHH-11764 - Fix PGGeometryTypeDescriptor - -commit 216e61fc9bc99cd4958fff9696aab14ac81a04cb -Author: Vlad Mihalcea -Date: Tue May 23 16:10:00 2017 +0300 - - HHH-11764 - JTS geometry being bound to byte array instead of PGgeometry - -commit 3f2c36ab698e658b576676d38c99745e58b9768d -Author: Gail Badner -Date: Wed Jun 14 12:57:41 2017 -0700 - - HHH-11818 : ClassCastException when binding a MaterializedNClobType as NClob - -commit 515e45e38237a88ecf76e57b0404d5e6955af7ea -Author: Gail Badner -Date: Wed Jun 14 12:45:22 2017 -0700 - - HHH-11818 HHH-11296 : Added tests - -commit 475746ae7324974e75cd9610646b0695579dbb6a -Author: Andrea Boriero -Date: Tue Jun 13 13:07:07 2017 +0100 - - HHH-11707 - README.md claims Java 6 compatibility - -commit 03053502e1a3829d0f989922c1960b3628b05723 -Author: Chris Cranford -Date: Mon Jun 12 11:40:38 2017 -0400 - - Checkstyle fixups. - -commit 699b50725d1cab1378cc7617bf92920bd7888b5a -Author: Chris Cranford -Date: Mon Jun 12 11:37:56 2017 -0400 - - HHH-11768 HHH-11714 Apply code suggestions. - -commit c6135f2db3acb51dbbda65543647c6a7e8a566f7 -Author: Chris Cranford -Date: Fri Jun 9 11:41:34 2017 -0400 - - HHH-11714 - Fix ordered inserts with secondary tables and inheritance. - -commit f4cd82a2652a019c0bf8807c54066b8dda4ee739 -Author: Chris Cranford -Date: Fri Jun 9 11:41:09 2017 -0400 - - HHH-11714 - Added test case. - -commit 234849d33bae8fe1588d1c74f4eb76027c169bb2 -Author: Chris Cranford -Date: Fri Jun 9 10:40:43 2017 -0400 - - HHH-11768 - Fix FK ConstraintViolationException with ordered inserts enabled and cascade persist. - -commit e7e6cc53ab28f4694f1963f6ae4b2641cb3fe8ec -Author: Chris Cranford -Date: Fri Jun 9 10:40:06 2017 -0400 - - HHH-11768 - Test case - -commit 8343a3f647aa8ff05857dadc2ce0002536661e96 -Author: Utku Gultopu -Date: Sun Jun 11 11:26:42 2017 +0300 - - HHH-11804 - Make embeddable class' name consistent - -commit 3f35cd18e0d1908fae793ea7ba577330e66d0915 -Author: Vlad Mihalcea -Date: Fri Jun 9 14:11:11 2017 +0300 - - HHH-11186 - Add examples for all Hibernate annotations - - Document @WhereJoinTable annotation - -commit 9c53bfdd736e8e8e0686eedda519b0189f2cbba7 -Author: Vlad Mihalcea -Date: Thu Jun 8 17:23:08 2017 +0300 - - HHH-11186 - Add examples for all Hibernate annotations - - Document default entity listeners, @ExcludeDefaultListeners, and @ExcludeSuperclassListeners - -commit 43f74be58e2448d241dd50268c879cc4fc9fddf3 -Author: Vlad Mihalcea -Date: Thu Jun 8 11:46:32 2017 +0300 - - HHH-11186 - Add examples for all Hibernate annotations - - Document @AssociationOverride and @AttributeOverride - -commit 60491312187b26f89ed435c276903295e4f3d624 -Author: Vlad Mihalcea -Date: Thu Jun 8 08:53:17 2017 +0300 - - HHH-11793 - Change docs to point out that EAGER associations cannot be turn to LAZY with entity graphs - -commit 2867e070eae3f6d7793d058dac3bcee20328e498 -Author: MilovanderZee -Date: Wed May 10 16:45:21 2017 +0200 - - HHH-10934 - Check ForeignKey on function instead of only the name - -commit 736da3247cf6b34abd414185f9724b91555168de -Author: MilovanderZee -Date: Wed May 17 22:09:52 2017 +0200 - - HHH-10934 - Initial unit test - -commit 6307a47c13e524a6142193050f95f91c01984d33 -Author: Vlad Mihalcea -Date: Wed Jun 7 17:24:00 2017 +0300 - - HHH-11186 - Add examples for all Hibernate annotations - - Document @NamedSubgraph - -commit 90392912881bbeaa11ec02546394a73847017d1b -Author: Vlad Mihalcea -Date: Tue Jun 6 12:43:36 2017 +0300 - - HHH-11186 - Add examples for all Hibernate annotations - - Document @PersistenceUnit - -commit 6082f1975dc1edf845247f0a71e8f67950285129 -Author: Vlad Mihalcea -Date: Tue Jun 6 12:24:56 2017 +0300 - - HHH-11186 - Add examples for all Hibernate annotations - - Document @PersistenceContext and @PersistenceProperty - -commit 7ae52fa65ecfee2962f22fb250c8b501be78ce87 -Author: Vlad Mihalcea -Date: Tue Jun 6 08:43:47 2017 +0300 - - HHH-11186 - Add examples for all Hibernate annotations - - Document @QueryHint - -commit 5e23b7fd025e4bc8c564a71681efcd3ce0f3889f -Author: Vlad Mihalcea -Date: Mon Jun 5 17:27:23 2017 +0300 - - HHH-11186 - Add examples for all Hibernate annotations - - Document @TableGenerator - -commit e10653e3a7506424fd11b6afff65712e51560646 -Author: Vlad Mihalcea -Date: Mon Jun 5 16:45:10 2017 +0300 - - HHH-11186 - Add examples for all Hibernate annotations - - Document @SequenceGenerator - -commit 80860065e5cc5b69651b3d6f2602753f8a5653e9 -Author: Vlad Mihalcea -Date: Mon Jun 5 14:59:55 2017 +0300 - - HHH-11186 - Add examples for all Hibernate annotations - - Document @NamedStoredProcedureQuery and @StoredProcedureParameter annotations - -commit 91f4deebacb73cfdfb276ee8191345be68290646 -Author: Oleksandr_Ierenkov -Date: Tue May 23 18:17:08 2017 +0300 - - HHH-3924 - Use intern() to reuse strings and reduce memory usage - -commit 46f8302219b379bac8e98dbc45d2d2fb43ef738d -Author: Robert Richter -Date: Sat Jun 3 12:46:06 2017 -0500 - - HHH-11788 - Unignore annotations.target test dir - - The current project `.gitignore` file ignores `/*/target`, which - inadvertently ignores the test package - `org.hibernate.test.annotations.target`. The test files are checked-in - despite the gitignore, so some tools complain about editing ignored - files, and any new tests might not get checked in. - - This change adds a `.gitignore` to the annotations package directory, - instead of the root project gitignore, because the package dir is - a more relevant context. - -commit 193583466a8057490365321195b83ef425f7cecf -Author: Karel Maesen -Date: Sun Jun 4 14:54:04 2017 +0200 - - HHH-11283 - Upgrade to geolatte-geom 1.1.0 - -commit cc51bbc639137247281d68d2cd7090be5fa49247 -Author: Chris Cranford -Date: Fri Jun 2 08:36:42 2017 -0400 - - HHH-11783 - Fix typo in javadoc. - -commit 6edb857e5c7dc53806ec77c7fb60df0aba2aea6c -Author: Vlad Mihalcea -Date: Fri Jun 2 09:03:27 2017 +0300 - - Increase test timeout since it was failing on Jenkins - -commit 1fb9d1fb1a4f4edae0c58d9f9c55585d26def78e -Author: Vlad Mihalcea -Date: Thu Jun 1 17:58:57 2017 +0300 - - HHH-11186 - Add examples for all Hibernate annotations - - Document @MapKeyClass annotation - -commit a4db601eca3c17dedf05ae33382e8f6be70e5b52 -Author: Vlad Mihalcea -Date: Thu Jun 1 15:12:43 2017 +0300 - - HHH-11186 - Add examples for all Hibernate annotations - - Document @MapKeyColumn annotation - -commit fd3ac458f2855fe8f270f0cf4542ffc2c74db5f4 -Author: Vlad Mihalcea -Date: Thu Jun 1 14:51:40 2017 +0300 - - HHH-11186 - Add examples for all Hibernate annotations - - Document @Index annotation - -commit c0b0da4282596a3d90b67d2f29b8a9fb5f3708a2 -Author: Vlad Mihalcea -Date: Thu Jun 1 13:57:40 2017 +0300 - - HHH-11186 - Add examples for all Hibernate annotations - - Document @UniqueConstraint annotation - -commit 87ddf0e74bea3ee93137b4d581f68a022a9343da -Author: Nazarii Bardiuk -Date: Tue May 30 01:13:31 2017 +0100 - - HHH-11743 - Fix for streaming of Tuple query - -commit 25e3aeb0b8513ade7b79c4a848f0dd8adcbc13b3 -Author: Vlad Mihalcea -Date: Tue May 30 09:52:56 2017 +0300 - - Switch from createSQLQuery to createNativeQuery as the former is deprecated since 5.2 - -commit 6f35871266cee6759a480847542acf2a05919f3f -Author: Vlad Mihalcea -Date: Thu May 25 18:37:22 2017 +0300 - - HHH-11186 - Add examples for all Hibernate annotations - - Document @OptimisticLock annotation - -commit 378009d5e14f0f6a18780d57a4a3ddb4e8bb44c7 -Author: Vlad Mihalcea -Date: Thu May 25 17:27:35 2017 +0300 - - HHH-11186 - Add examples for all Hibernate annotations - - Move optimistic locking mapping to the Locking chapter - -commit baf194d4228bb8fce42f080acbc080d306a6a614 -Author: Vlad Mihalcea -Date: Thu May 25 17:12:39 2017 +0300 - - HHH-11186 - Add examples for all Hibernate annotations - - Document @OnDelete annotation - -commit a7f77e2687067c2b1529d12392771e0a38ba92a1 -Author: Chris Cranford -Date: Wed May 24 19:59:12 2017 -0400 - - HHH-11770 - Fix for audited queries for OneToMany associated to an EmbeddedId property. - -commit 10e69bd7b26b9e8a086ae61d159d480d8ada5de0 -Author: Chris Cranford -Date: Wed May 24 19:58:33 2017 -0400 - - HHH-11770 - Added test case. - -commit 77ea6186f7eddef25b7cd8978fe11cbc8ddef83f -Author: Vlad Mihalcea -Date: Wed May 24 17:21:33 2017 +0300 - - HHH-11186 - Add examples for all Hibernate annotations - - Document @OrderBy annotation - -commit 73affabe4419aa5962095ccff7530a108b13cdac -Author: Vlad Mihalcea -Date: Wed May 24 11:42:15 2017 +0300 - - HHH-11186 - Add examples for all Hibernate annotations - - Document @MapKeyType annotation - -commit 26908a86f5a75f023172864f14a1036c2f5526d0 -Author: Vlad Mihalcea -Date: Mon May 22 18:42:49 2017 +0300 - - HHH-11186 - Add examples for all Hibernate annotations - - Document the @ListIndexBase annotation - -commit 379e32e3f36dcbc58d0889c311396bbb428871dd -Author: Gail Badner -Date: Fri May 19 18:28:44 2017 -0700 - - HHH-11762 - PersistenceUnitUtilImpl#getIdentifier throws MappingException for non-entity - -commit ec165296c68cdf523c946a463d465d26faa86bf9 -Author: Vlad Mihalcea -Date: Thu May 18 12:14:15 2017 +0300 - - HHH-11186 - Add examples for all Hibernate annotations - - Document @Source and @RowId annotation - -commit e2e48e4e0785ae4c5fcc968145aa954650fd1105 -Author: Vlad Mihalcea -Date: Thu May 18 10:18:26 2017 +0300 - - Fix test failing on MariaDB - -commit a234ea600bdab323adc6cf2059b8ae81b1f0f048 -Author: Chris Cranford -Date: Wed May 17 23:40:34 2017 -0400 - - HHH-11463 - Avoid creating foreign keys from audit schema to non-audit schema. - -commit 6314ac1e0f0116dde783c7c2aac76787dc4321b8 -Author: Chris Cranford -Date: Wed May 17 23:39:47 2017 -0400 - - HHH-11463 - Added test case. - -commit b1a322d1f389b991811b8bcfff8fee7f29760627 -Author: Chris Cranford -Date: Wed May 17 16:15:55 2017 -0400 - - HHH-11642 - Fix index out of range failure for SQLServerDialect. - -commit fe0030c019c2d7a43d92ef54d8d3a4c829bfa756 -Author: Chris Cranford -Date: Wed May 17 16:15:34 2017 -0400 - - HHH-11642 - Added test case. - -commit a1bc31b126754c605691c9617b64e90cafb413ac -Author: Chris Cranford -Date: Wed May 17 12:28:46 2017 -0400 - - HHH-11759 - Make audited property and predicate order deterministic. - -commit c2150ffc3b77ca41a238a79fbb3f58cd335d7be2 -Author: Vlad Mihalcea -Date: Wed May 17 17:44:10 2017 +0300 - - HHH-11186 - Add examples for all Hibernate annotations - - Document @Subselect and @Synchronize annotations - -commit f164223226101f4b7d270ca7023c51113bccc619 -Author: Chris Cranford -Date: Tue May 16 17:12:17 2017 -0400 - - HHH-11747 - Fix DB2390Dialect pagination to work for offsets properly when using legacy limit handler behavior. - -commit b45e2cade57225f6d27cf5c6b449f96029c18d97 -Author: Chris Cranford -Date: Tue May 16 17:11:39 2017 -0400 - - HHH-11747 - Added test case. - -commit 6db73b22fe1eff146f19899fe31e486754333c2c -Author: Vlad Mihalcea -Date: Tue May 16 16:48:54 2017 +0300 - - HHH-11186 - Add examples for all Hibernate annotations - -commit cf6d1ddafdbcce5bfbb1d560912df47ac7b71ce5 -Author: Andrea Boriero -Date: Wed May 3 12:18:24 2017 +0100 - - HHH-11716 - @Transient annotation not respected when class defines 'get' and 'is' accessor variants - -commit 0e83628c9237d854460167c0b5486876de0ef235 -Author: lpradel -Date: Sun Mar 5 20:28:52 2017 +0100 - - HHH-11546 Add support for SAP NetWeaver as JTA Platform - -commit 6ec060b1d2207405a68e5cfe54a57b2770eae66a -Author: Prasanth Mathialagan -Date: Mon May 15 20:29:14 2017 -0700 - - HHH-11750 Fixed typos in Hibernate 5.2 User Guide - -commit 98265284358f7cfee066c5f998aa142a4aa25dc1 -Author: Chris Cranford -Date: Mon May 15 23:57:19 2017 -0400 - - HHH-11752 - Remove references to old types and fix LGTM warning. - -commit cab613de11deb3c3fabc43211908fe97d1fd248b -Author: Gail Badner -Date: Mon May 15 14:38:22 2017 -0700 - - HHH-11740 - Fix test case to avoid pessimistic locking exception - -commit 733f55f36283e56fa3a9e17595a654f75c5e2cf6 -Author: Vlad Mihalcea -Date: Mon May 15 18:50:31 2017 +0300 - - HHH-11740 - Default MultiTableBulkIdStrategy for DB2 does not work with connection pools - - - Made test run on H2, Oracle, SQL server, MySQL and PostgreSQL - -commit 386b04872ff181ba7f377742e622ee44168b079b -Author: Vlad Mihalcea -Date: Mon May 15 17:55:22 2017 +0300 - - HHH-11740 - Default MultiTableBulkIdStrategy for DB2 does not work with connection pools - - - Fix tests on PostgreSQL - -commit 6a0a6d756295c517fb9cb1ee1505c3cb9cfd4784 -Author: Gail Badner -Date: Fri May 12 14:24:18 2017 -0700 - - HHH-11740 : Skip test for H2 - -commit 061a1cae31e08f06283abf53195717aba0c307c8 -Author: Gail Badner -Date: Fri May 12 13:49:29 2017 -0700 - - HHH-11740 : Default MultiTableBulkIdStrategy for DB2 does not work with connection pools - -commit 36d09411fb1e36c9d3a4450bcea96f80911d18de -Author: Gail Badner -Date: Fri May 12 13:48:03 2017 -0700 - - HHH-11740 : test case - -commit c0a82797a55879cd1a3d402ce5bc1a938605aa7e -Author: Vlad Mihalcea -Date: Fri May 12 13:00:51 2017 +0300 - - Bump PostgreSQL JDBC Driver version to 42.1.1 which works with 9.6 - -commit 93559d2e60d8ae3f3cba4904759e440a4314b2f3 -Author: Andrea Boriero -Date: Wed May 3 10:56:52 2017 +0100 - - HHH-11374 - ConcurrentStatisticsImpl#getSecondLevelCacheStatistics() throws NPE if second level cache is not activated - -commit 5a7526b484ec93c544ca34b55df0ef287f95ba78 -Author: Chris Cranford -Date: Thu May 11 18:13:30 2017 -0400 - - HHH-11730 - Document new configurable property. - -commit 9fdd7e45881f903a15c6ed6f9192e106b397a0fe -Author: dkublik -Date: Mon May 8 12:10:09 2017 +0200 - - HHH-11730-configurable-originalId-property - -commit eb819faa8cd77f2d5a0df04734fc850b0efd16b0 -Author: Andrea Boriero -Date: Thu May 11 06:50:39 2017 -0500 - - HHH-11737 - Fix xcheckstyle error - -commit f9aa6e6d2eb8775bf5ae2d1e5970f50784eb44f9 -Author: Chris Cranford -Date: Wed May 10 19:50:37 2017 -0400 - - HHH-11737 - Remove dependency on org.hibernate.criterion package. - -commit 5ff2289da48f7a8b69db37bf11c84e5aadda3976 -Author: Andrea Boriero -Date: Thu Apr 27 17:07:14 2017 +0100 - - HHH-11700 - Deprecate three org.hibernate.engine.spi.SessionFactoryImplementor methods - -commit c434d9a9b1e5e5e2164fbbf9f04a36e22e4a9a14 -Author: Vlad Mihalcea -Date: Thu Apr 13 13:13:01 2017 +0300 - - HHH-11500 - Provide the cause of the error when validating @Loader named queries - -commit d80c6ac0f978509f6d7ce9120377162a4910ec45 -Author: Vlad Mihalcea -Date: Thu Mar 30 17:21:23 2017 +0300 - - HHH-11600 - Sap HANA PreparedStatement implements CallableStatement and is treated as such by Hibernate - -commit 1c34914455f62dd3769ea9b69b4884114ce8fb75 -Author: João Carlos Heringer Moreira -Date: Thu Apr 27 17:47:06 2017 -0300 - - HHH-11703 - Entity with Natural ID not being cached in the persistenceContext, causing extra queries - -commit ef8ebe0d42b577beb0cebdeff3639ac5eb58ef75 -Author: EUROPE\cdhib -Date: Wed May 3 11:55:46 2017 +0200 - - HHH-11729 - Add clarifications in the User Guide related to how Hibernate FetchMode types translate to JPA - -commit 86dd0d12781e13c3f8c440620a5c7f2778d65d2e -Author: Rafał Osiecki -Date: Sat May 6 13:10:58 2017 +0200 - - HHH-11728 - Typo in PooledConnections - -commit 44eedfc34f93335552a7c812c57b1b253befb7c3 -Author: Vlad Mihalcea -Date: Mon May 8 11:56:35 2017 +0300 - - Add support for testing on DB2 - -commit 374a2cae0997d4f5ee7fa9ce574550bd574bfe7c -Author: Andrea Boriero -Date: Fri May 5 21:34:50 2017 +0100 - - HHH-11647 - Fix failing tests - -commit f9231bed0d580f50356b0c593e9a9c6c4ff70911 -Author: Andrea Boriero -Date: Thu Apr 20 13:14:37 2017 +0200 - - HHH-11650 - Parenthesis are interpreted in WHERE conditions when using paging and SQL Server - -commit 17fd76ad210b297e80722e8809b00c063259208b -Author: Andrea Boriero -Date: Thu Apr 20 12:55:25 2017 +0200 - - HHH-11650 - Add test for issue - -commit 562f09d14be5e920680fee97962e812d4165f7b9 -Author: Danny Casady -Date: Fri May 5 08:32:23 2017 -0700 - - HHH-11725 - Fix javadoc typo - -commit f85737cb0b5825fc9491dc1fdedd4ffbac4a4e87 -Author: ChristophDreis -Date: Wed Apr 19 18:41:49 2017 +0200 - - HHH-11647 - Use ALTER TABLE IF EXISTS on Postgres - -commit 72e0d593b997681125a0f12fe4cb6ee7100fe120 -Author: Bas van Schaik -Date: Wed May 3 14:22:49 2017 +0100 - - HHH-11718 - Fix various alerts reported by lgtm.com - - Fpr more details: - - https://lgtm.com/projects/g/hibernate/hibernate-orm/snapshot/06f0c3acb20bff63908e8310b571c53d55017998/files/hibernate-core/src/main/java/org/hibernate/tool/hbm2ddl/SchemaUpdateTask.java#V218 - - https://lgtm.com/projects/g/hibernate/hibernate-orm/snapshot/06f0c3acb20bff63908e8310b571c53d55017998/files/hibernate-core/src/main/java/org/hibernate/boot/archive/internal/ExplodedArchiveDescriptor.java#V149 - - https://lgtm.com/projects/g/hibernate/hibernate-orm/snapshot/06f0c3acb20bff63908e8310b571c53d55017998/files/hibernate-core/src/main/java/org/hibernate/boot/archive/internal/JarFileBasedArchiveDescriptor.java#V74 - -commit 2d4600bbc746bf7d093e058722b8ca18418ba412 -Author: Arnold Galovics -Date: Wed Apr 26 16:46:59 2017 +0200 - - HHH-11111 - Hibernate does not correctly resolve embeddable in the metamodel - - Add test case that proces thaat the issue does not replicate - -commit 3a813dcbb4b5cf5b13571c63ff0c66b94a83b53c -Author: Richard Bradley -Date: Wed Apr 19 15:32:23 2017 +0100 - - HHH-11646 revert errant after -> afterQuery search and replace - -commit 1752da008e2f4945d718d9f60a39a2027485d58c -Author: Gail Badner -Date: Tue May 2 13:44:04 2017 -0700 - - HHH-11712 - Minor changes to test case - -commit 8ebf3039ef4900d12a0559129bcb3c1bda480ead -Author: Vlad Mihalcea -Date: Tue May 2 15:35:25 2017 +0300 - - HHH-11712 - PostgreSQL does not support positive/negative initial sequence values for descending/ascending sequences unless MAXVALUE/MINVALUE is defined as well - -commit f779df9fa34c7d1b7d9be47312cd1d7782fc5466 -Author: Vlad Mihalcea -Date: Tue May 2 17:49:48 2017 +0300 - - Add a JPA-complaint contains test to assert the use case descriebed in the following forum thread - - https://forum.hibernate.org/viewtopic.php?f=1&t=1044231 - -commit 78d0c22c0bab296a6b118630d5a92d440e794692 -Author: Gail Badner -Date: Fri Apr 28 19:40:14 2017 -0700 - - HHH-11709 : Fix typo - -commit b22f38b00fdec2df5ace66eeb5161ff18ca227d4 -Author: Gail Badner -Date: Fri Apr 28 19:32:30 2017 -0700 - - HHH-11709 : Update migration guide - -commit bb0a4b6e6ff6fa1e9dfae22bc495431ecbc226b7 -Author: Gail Badner -Date: Fri Apr 28 19:31:30 2017 -0700 - - HHH-11709 : NoopOptimizer skips negative values and 0 when it has a positive incrementSize - -commit d211b41319aada6aeb6193e254f07c7a8288cf75 -Author: Gail Badner -Date: Fri Apr 28 19:30:17 2017 -0700 - - HHH-11709 : test case - -commit dfbeb1ce375d1a9c47c8d6f51bf89620d43f9007 -Author: Gail Badner -Date: Fri Apr 28 19:08:27 2017 -0700 - - HHH-5933 : NoopOptimizer ignores negative allocationSize; uses default of 1 instead - -commit 33a28188c6ed3cbb74fa1fd80be8dc39af4d9429 -Author: Gail Badner -Date: Fri Apr 28 19:07:39 2017 -0700 - - HHH-5933 : test case - -commit afb5ca8cbabacd74d4ce959f74b633a58d1353d9 -Author: Sanne Grinovero -Date: Thu Apr 27 13:37:28 2017 +0100 - - HHH-11698 Upgrade to Byte Buddy 1.6.14 for improved JDK9 compatibility - -commit 74d4eb61a91d00b4aa59b83655b5dd7c8b29d447 -Author: Andrea Boriero -Date: Wed Apr 26 13:44:07 2017 +0100 - - HHH-11660 - Deprecate org.hibernate.mapping.RelationalModel - -commit 3ee36aa4204573493595e5e404cfdc453b88d38e -Author: Vlad Mihalcea -Date: Thu Apr 20 18:31:00 2017 +0300 - - HHH-11186 - Add examples for all Hibernate annotations - - Document DynamicUpdate annotation - -commit 020414e1aa79058c8a3196898a815079c38a8315 -Author: Vlad Mihalcea -Date: Wed Apr 19 21:02:02 2017 +0300 - - HHH-11634 - ActionQueue#InsertActionSorter fails to generate right order - - Use the same object for both the remove and the add operations - -commit 84d61690c580518918fbeb601acc950e2906b261 -Author: Vlad Mihalcea -Date: Wed Apr 19 17:00:42 2017 +0300 - - HHH-11634 - ActionQueue#InsertActionSorter fails to generate right order - - Prove that the issue is caused by an improer bidirectional association side synchronization - -commit ca52b38b1b253d4da76e11b71a722cf9e6a0a86d -Author: Vlad Mihalcea -Date: Wed Apr 19 15:22:22 2017 +0300 - - HH-11186 - Add examples for all Hibernate annotations - - Document Parent annotation - -commit 7dd17e936fc7412750eee57bfd35a6eecbc4fd87 -Author: Raja Kolli -Date: Wed Apr 19 14:37:24 2017 +0530 - - HHH-11645 - HikariCP shutdown() method is deprecated, close() should be called instead - -commit 6c810a422cadcc13789d7f99730dc4f6ce44db62 -Author: Vlad Mihalcea -Date: Wed Apr 19 12:53:28 2017 +0300 - - HH-11186 - Add examples for all Hibernate annotations - - Document Target annotation - -commit 9d3e91766108a66b88160948875215ff0d067025 -Author: Vlad Mihalcea -Date: Thu Apr 13 16:16:46 2017 +0300 - - HH-11186 - Add examples for all Hibernate annotations - - Document UpdateTimestamp annotation - -commit 1772baf67e530690b6d8f9694f16448aa074a4e9 -Author: Vlad Mihalcea -Date: Tue Apr 18 14:51:06 2017 +0300 - - Add missing class names and fix documentation pointing to missing property - -commit a630809857fb25c76920ee05509aa853165f772d -Author: Andrea Boriero -Date: Fri Apr 14 14:47:07 2017 +0200 - - HHH-11635 - MySQLSkipAutoCommitTest fails when run on MariaDB - -commit 3ba49e76b80ed5012c802a77cfb8b094a4a1979e -Author: Andrea Boriero -Date: Fri Apr 14 13:46:03 2017 +0200 - - 5.2.10 - -commit 2b3e1205a0fc576619bc5ffe5451cd7a46c07dd3 (tag: 5.2.10) -Author: Andrea Boriero -Date: Fri Apr 14 12:19:30 2017 +0200 - - 5.2.10 - -commit 71cfef83385bd1157d274e80f66f41b4fb85a796 -Author: Andrea Boriero -Date: Fri Apr 14 10:01:18 2017 +0200 - - HHH-11542 - Fix tests - -commit 97942914c8547e0dc8d3e8e2c95309f139c50746 -Author: Steve Ebersole -Date: Thu Apr 13 22:30:29 2017 -0500 - - HHH-11542 - Allow the auto-commit resolution to be configurable for RESOURCE_LOCAL transactions (default methods) - -commit db528238d8525be1a83b9f9f20396bf91d5f0dbd -Author: Steve Ebersole -Date: Thu Apr 13 13:06:54 2017 -0500 - - HHH-11542 - Allow the auto-commit resolution to be configurable for RESOURCE_LOCAL transactions - -commit ca103dcb28d2a48065f857ba5ba029948bcb9275 -Author: Vlad Mihalcea -Date: Wed Apr 12 16:31:27 2017 +0300 - - HHH-11542 - Allow the auto-commit resolution to be configurable for RESOURCE_LOCAL transactions - -commit 23aad981a8fc1e2d914a3156b2d72cbb31149783 -Author: Andrea Boriero -Date: Thu Apr 13 20:29:31 2017 +0200 - - HHH-11593 - Remove mockito dependencies from hibernate-testing - -commit 561941c486fc82bfc52d6718fa54a1d578acf8d9 -Author: Gail Badner -Date: Thu Apr 13 16:25:38 2017 -0700 - - HHH-9663 - Fix orphan removal cascade for one-to-one mappings. - -commit 0677bb365fbff1852d6e0f572a19d66419340cd5 -Author: Chris Cranford -Date: Tue Apr 11 12:55:45 2017 -0400 - - HHH-9663 - Fix orphan removal cascade for one-to-one mappings. - -commit 63e6793d8f8e4fa97466ec638dcdb3fee0b6cd73 -Author: Chris Cranford -Date: Fri Apr 7 12:34:05 2017 -0400 - - HHH-9663 - Fix orphan removal cascade for one-to-one mappings. - -commit 85732409ee6335aacb4b5db8b1fea7380d19fa90 -Author: Chris Cranford -Date: Fri Apr 7 12:33:37 2017 -0400 - - HHH-9663 Added test cases. - -commit 19e585bf9db520753396d34e524a376ac790c715 -Author: Gail Badner -Date: Wed Apr 12 22:09:59 2017 -0700 - - HHH-11499 : Add a new DB2 dialect that uses "cross join" for cross joins instead of "," - -commit 442bf225c40a6c6bd664dbd227254d4d0c3f5e6c -Author: Vlad Mihalcea -Date: Wed Apr 12 10:31:56 2017 +0300 - - HHH-11601 - Fix tests failing on Oracle - -commit 6a59994b642d3bdfdff73effef9711a57361450c -Author: Vlad Mihalcea -Date: Wed Apr 12 07:17:57 2017 +0300 - - HHH-11617 - Statement leak in case of 'SQLGrammarException: could not extract ResultSet' - - - increase timeout period as CI servers are rather slow - -commit 51e92b1715a9e673bb96076f5e9f01e4d1af0b21 -Author: jvdvTechno -Date: Mon Apr 10 13:12:03 2017 +0200 - - HHH-11625 - Namespace uses physicalNamingStrategy.toPhysicalCatalogName() for schema name - -commit a01b05fdf05831368943eb7a82868ce518ed4305 -Author: Andrea Boriero -Date: Mon Apr 10 14:27:08 2017 +0200 - - HHH-11625 - Add test for issue - -commit 1aed1b50f7ecfa4129d47ddeb45a10207c2fd149 -Author: Vlad Mihalcea -Date: Tue Apr 11 17:58:44 2017 +0300 - - HHH-3628 - Hilo optimizer problem in case of multiple threads accessing the sequence table - - - replace the Semaphore with two CountDownLatches that shouldd deliver a more predictable outcome - -commit eef8a48ce472a76d088f6450ae6c0e7adef671a8 -Author: Andrea Boriero -Date: Thu Apr 6 18:37:00 2017 +0100 - - HHH-11617 - Statement leak in case of 'SQLGrammarException: could not extract ResultSet' - -commit f8570017dfc22b33b494d885e1896a8c73d3489c -Author: Yordan Gigov -Date: Thu Jan 19 10:08:56 2017 +0200 - - HHH-11409 - Bind registered collection types using their type handler - -commit e8d7279736ff95ce0acf9a3334bcb45ae9c465fe -Author: Andrea Boriero -Date: Tue Mar 28 12:13:20 2017 +0100 - - HHH-11596 - @OneToOne association with @JoinTable ignores optional attribute - -commit be0a273c7c6b8f5e628268ea521570fb8ba67757 -Author: Andrea Boriero -Date: Mon Mar 20 19:46:53 2017 +0000 - - HHH-11579 - Disable Query parameter validation when a Session is unwrapped from an EntityManager - -commit c15fa77f0fae300bbc944af38c74057d8600e624 -Author: Vlad Mihalcea -Date: Thu Apr 6 11:59:14 2017 +0300 - - HHH-11616 - Refactor org.hibernate.jpa.test.lock.LockTest - HHH-8001 - Apply query timeouts to Oracle follow-on locking - -commit 68fa5d8f9e766f94f60e67a37bd401b9420c4108 -Author: Andrea Boriero -Date: Mon Apr 3 13:05:08 2017 +0100 - - HHH-11612 - SINGLE_TABLE associated entity query missing restriction of DiscriminatorColumn - reverting HHH-11375 - -commit 65f420efec58a849e853b3caf811d0cc143a03a3 -Author: Andrea Boriero -Date: Tue Apr 4 14:01:27 2017 +0100 - - HHH-11602 - Session close counter statistic not updated when using Hibernate in JPA mode - -commit 71c11a8d4ddd97931f233c01765e2ff4d7c9ba13 -Author: Andrea Boriero -Date: Tue Apr 4 14:00:52 2017 +0100 - - HHH-11602 -Add test for issue - -commit cbace699a08db4d54c3c5eba774d4971378237bb -Author: Andrea Boriero -Date: Wed Apr 5 09:59:06 2017 +0100 - - HHH-10654 - Fix checkstyle error - -commit 5fd186a01057699a6220061aa6dcef688b91e471 -Author: Andrea Boriero -Date: Mon Apr 3 20:27:03 2017 +0100 - - HHH-10654 - Fix mariadb and pgsql failing tests - -commit 19c03e0c5a99900800a914c49f4cf046bf349388 -Author: DrBAXA -Date: Mon Mar 27 09:43:55 2017 +0300 - - HHH-10728 - NullPointerException when using CriteriaBuilder.selectCase with CriteriaBuilder.equal - -commit 2a9c0fe0dd56d33fcc5552e5943f74360c19cc3b -Author: Vlad Mihalcea -Date: Thu Mar 23 12:05:03 2017 +0200 - - HHH-10654 - LockOptions.SKIP_LOCKED semantics implementation on MSSQL - -commit 6bfe281589e2b8c43c33526e237d2b34e4c3773a -Author: Andrea Boriero -Date: Thu Mar 30 10:49:58 2017 +0100 - - HHH-11593 - Fix checkstyle errors - -commit 245dc27e4876d4e6f43eb769de5e202bb61cd7ae -Author: Andrea Boriero -Date: Thu Mar 30 10:48:17 2017 +0100 - - HHH-11593 - Fix checkstyle errors - -commit 6b36e01b0c18fac69578f4ec217db9b4b8869c44 -Author: Andrea Boriero -Date: Wed Mar 29 18:03:57 2017 +0100 - - HHH-11598 - change pgsql driver version to 9.4.1208 - -commit ae23ecd937b669c4f6c1db9bf86d6c8f545bae8d -Author: Vlad Mihalcea -Date: Tue Mar 28 12:35:44 2017 +0300 - - HHH-11593 - Fix test issues in SQL Server - -commit e6d2ff4ac4accaf9847ca58f5ab3a38b5094a3ea -Author: Vlad Mihalcea -Date: Tue Mar 28 15:35:05 2017 +0300 - - HHH-11598 - Use the default catalog when scanning the tables for hbm2ddl schema migration - -commit 1ce9e24b263c7a84bf12b6986aa4f8f63c35d3a7 -Author: Andrea Boriero -Date: Fri Mar 24 15:02:36 2017 +0000 - - HHH-11591 - Nullable check should not be skipped for OneToOne annotated with @NotFound(action = NotFoundAction.IGNORE) - -commit 7a10764d2bdcef1aee6bfaabe21ead2f95c65be5 -Author: Andrea Boriero -Date: Fri Mar 24 15:01:46 2017 +0000 - - HHH-11591 - Add test for issue - -commit daa48b7db9bc8533a574d92fc2d6ea6fc6816702 -Author: Richard Barnes -Date: Thu May 5 10:41:26 2016 +0100 - - HHH-3628 - Hilo optimizer problem in case of multiple threads accessing the sequence table - -commit 28f3148f7b11581aba557b971d2d5ef809a2f30d -Author: Gail Badner -Date: Fri Mar 24 19:51:52 2017 -0700 - - HHH-11459 : Add entity names to avoid Oracle test failures - -commit 0b6ce73fcc6c5bba34e0221395c15b66e06b2a36 -Author: Gail Badner -Date: Fri Mar 24 19:15:21 2017 -0700 - - HHH-11459 - Always resolve unloaded, lazy collection in enhanced entity when cascading; added comments - -commit 41bd06266d3e64268fb49f003b24072c2fe685c2 -Author: barreiro -Date: Tue Mar 21 00:46:38 2017 +0000 - - HHH-11459 - Do not fetch a collection on cascade, resolve it instead - -commit 2779ebd8f0e8f36cc8ba30757c9a3ec318c6a5b1 -Author: barreiro -Date: Thu Mar 9 17:20:12 2017 +0000 - - HHH-11459 - Test case - -commit a5c70873163b13551c4fc69e522b4794d58f8d82 -Author: barreiro -Date: Sat Mar 18 02:58:24 2017 +0000 - - HHH-11576 - Process unfetched collections on Flushvisitor to determine reachability - -commit 8f495505e50d278abe658780f5e71495e3c239b6 -Author: barreiro -Date: Fri Mar 17 15:50:30 2017 +0000 - - HHH-11576 - Test case - -commit 8bc584e3d25261898f74a29090e969240480d137 -Author: Naros -Date: Sat Jan 2 17:58:40 2016 -0600 - - HHH-10062 - Fix for ScrollableResults with join fetch reuses proxy rather than loading actual object. - -commit 23725aeaa4d82869253af951167873c04c5a23ab -Author: Chris Cranford -Date: Thu Mar 23 15:36:49 2017 -0400 - - HHH-11592 - Fix incorrect reference to non-deprecated setting. - -commit 1f9adce32f317e220caf998c606b9ae18fe096d4 -Author: Andrea Boriero -Date: Thu Mar 23 10:46:15 2017 +0000 - - HHH-10831 - Fix checkstyle error - -commit acae69ffaf9c4673e38911e4199e7150a42c1563 -Author: Vlad Mihalcea -Date: Thu Mar 23 08:15:46 2017 +0200 - - HHH-11585 - Batch ordering fails for bidirectional one-to-one associations - - - take into consideration legacy one-to-one mappings with composite ids as well - -commit f9c1e7e3394b10bac01181cf034fa0085dff261f -Author: Chris Cranford -Date: Wed Mar 22 13:50:04 2017 -0400 - - HHH-11582 - Fix inconsistent modified flags behavior when same entity - persisted and merged within the same transaction. - -commit 10a29b48c31359fb62eb27ebcfb0ef5ee38aec2b -Author: Chris Cranford -Date: Wed Mar 22 13:48:56 2017 -0400 - - HHH-11582 - Add test case. - -commit a23a9a81e3b32bb79ce1a11e280b97c525d4db27 -Author: Harsh Panchal -Date: Tue Mar 14 09:38:00 2017 +0530 - - HHH-11569 - Return only distinct elements when query is hinted with EntityGraph - -commit 61612ca5407a92718fcc35bc8f6eb8b552b011aa -Author: Andrea Boriero -Date: Wed Mar 22 13:34:25 2017 +0000 - - HHH-11580 - Fix test failure - -commit c25757275b708f17ea1a51d585e14ccbfddb6dde -Author: Vlad Mihalcea -Date: Wed Mar 22 14:33:21 2017 +0200 - - HHH-11587 - Reordering items in List throws a constraint violation - - Add replicating test case - -commit 0eab02aaa9c3e91be651a138549a978fc5be97d6 -Author: Andrea Boriero -Date: Tue Mar 21 14:42:33 2017 +0000 - - HHH-11580 - EnversPreCollectionRemoveEventListener fails because EntityManager is closed when using JPA + JTA + Envers - -commit 084ee33303bbf26546559f07ec3670213cf1388e -Author: Troeger, Martin (K-SIPB-1/3) -Date: Wed Mar 8 15:54:23 2017 +0100 - - HHH-11557 - DB2 gets confused with numerical parameters in nullif function DB2Dialect - -commit f90845c30c2a6d5e14eeafd32a4c9d321d3a55ef -Author: Vlad Mihalcea -Date: Wed Mar 22 10:43:22 2017 +0200 - - HHH-11585 - Batch ordering fails for bidirectional one-to-one associations - -commit c8cbb8f0c6ffb279a0bd72463e3fa84d9b5a91de -Author: RunninglVlan -Date: Mon Mar 13 14:04:50 2017 +0200 - - HHH-11584 - Made parameter names of Restrictions#between more readable - -commit d1dc9146c31aee164e10a9c169787c71d6670f46 -Author: Arnold Galovics -Date: Sat Mar 11 20:35:12 2017 +0100 - - HHH-10831 - Hibernate method to unproxy a HibernateProxy - -commit 28d7d196f49775193a5b9b674e122ad223bd587d -Author: Felix Feisst -Date: Thu Mar 16 21:49:55 2017 +0100 - - HHH-11575 Fixed bug where multiple revisions could have been created - during a single transaction when flush mode is set to COMMIT. - -commit 2d4da5961119fc9d991d282d869ed8eb3b66a831 -Author: Andrea Boriero -Date: Fri Mar 17 09:07:24 2017 +0000 - - Wildfly unpacked forlder used for tests should not be included into distribution artifacts - -commit 00d01c53d623d197479e314dd6c86c893dbd0676 -Author: Andrea Boriero -Date: Thu Mar 16 15:41:31 2017 +0000 - - 5.2.9 - -commit 1b8a2b992471995469de22c32b0ab37d204469c4 (tag: 5.2.9) -Author: Andrea Boriero -Date: Thu Mar 16 13:14:32 2017 +0000 - - 5.2.9 - -commit db885b85bb5665f3ccfa6458fb277fe1c31508b3 -Author: Gail Badner -Date: Wed Mar 15 23:09:56 2017 -0700 - - HHH-11143 : Log a warning if @Cache / @Cacheable specified on non-root entities - -commit 31fbdbb0f0154234a704d2f707cc1fa5dbecd9e3 -Author: Andrea Boriero -Date: Tue Mar 14 22:25:38 2017 +0000 - - HHH-11570 - Hibernate Envers listeners fail because EntityManager is closed when using JPA/JTA/Hibernate 5.2.8/Envers - -commit 197ea800cc23d5893c50e6fb6fe1024d1d6e5681 -Author: Andrea Boriero -Date: Tue Mar 14 22:24:12 2017 +0000 - - HHH-11570 - Add test for issue - -commit a8055b3b5288ff1bf5dea84b57f1556d4c4a6493 -Author: Gail Badner -Date: Mon Mar 13 22:04:26 2017 -0700 - - HHH-11506 : Fix Javadoc - -commit aaebcdf454d57a640c8194d0559642d405f00868 -Author: barreiro -Date: Wed Mar 8 17:10:28 2017 +0000 - - HHH-11506 - Fix update of lazy attributes when there are attributes not loaded - - HHH-11506 - Deprecate methods - - HHH-11506 : Added original TypeHelper#findModfied and deprecated; changed deprecated methods to call the new methods. - -commit 12a1b3c225b61a99b141bd89a9f56235ac09ce62 -Author: Gail Badner -Date: Sun Mar 12 23:53:38 2017 -0700 - - HHH-11516 : Level two cache may not be enabled when using @Cacheable without/instead of @Cache - -commit 640680fcbc5da459033384597c174b294aaa613b -Author: Gail Badner -Date: Sun Mar 12 23:51:44 2017 -0700 - - HHH-11516 : test case - -commit 54cd8eb0a9670d8ad6d1210abf77324f4fbb05ec -Author: Andrea Boriero -Date: Thu Mar 9 11:52:25 2017 +0000 - - HHH-11563 - Avoid calling multiple times org.hibernate.mapping.Component#getComponentClass() during the PojoComponentTuplizer creation - -commit f120cd26dfda07abb67cd774a6c67773619ecea7 -Author: Andrea Boriero -Date: Wed Mar 8 16:14:39 2017 +0000 - - HHH-11555 - AbstractSharedSessionContract doesn't restore ExceptionConverter after de-serialization - -commit d9ef8fc36620042fab44e7e8e1452c265fac9f0e -Author: Andrea Boriero -Date: Wed Mar 8 16:12:52 2017 +0000 - - HHH-11555 - Add test for issue - -commit 549e712f1f82d5869087b3cdb69e7454a0fc5512 -Author: Chris Cranford -Date: Tue Feb 28 00:16:53 2017 -0500 - - HHH-11568 - Wrap antlr-parser exceptions as QueryException. - -commit 4bd5c8a730367b515c6b3ed94b44b25e0eb13ff3 -Author: Chris Cranford -Date: Tue Feb 28 00:15:55 2017 -0500 - - HHH-11568 - Added test case. - -commit 9ae391436a80f81df841007531ed43ebbbe69cf6 -Author: Chris Cranford -Date: Tue Mar 7 10:13:48 2017 -0500 - - HHH-11554 - Enable super interfaces traversal for getter/setter methods. - -commit fab264a8b2904d68f9ca14119e3274d1824fc87d -Author: Andrea Boriero -Date: Thu Mar 9 17:52:03 2017 +0000 - - HHH-11554 - Added test case - -commit 3398175ab3f414737dc17dc00e5da236e7f92723 -Author: Chris Cranford -Date: Tue Mar 7 09:41:59 2017 -0500 - - HHH-11554 - Added test case. - -commit 1273aaffd6cf96c6e67f2dde92c41f93d3185c92 -Author: Christian Beikov -Date: Fri Mar 3 09:04:31 2017 +0100 - - HHH-11540 - Fix for registering embeddable with actual component type - -commit ff582903aa5e8e775e54672ece2161470dea2962 -Author: Christian Beikov -Date: Tue Jan 3 17:34:26 2017 +0100 - - HHH-11540 - Test for embeddable type that is only used in a type variable - -commit 6fd6c5a29d84ff50132abfb50aef616ab4f99a7b -Author: Sanne Grinovero -Date: Fri Mar 10 10:33:10 2017 +0000 - - HHH-11564 ThreadLocal access in ManagedSessionContext does not need synchronization - -commit ba9d1c779fc346569ee9ec87a070caa031cf0ea6 -Author: Andrei Solntsev -Date: Tue Feb 28 01:21:41 2017 +0200 - - HHH-11529 - Getting NullPointerException from ScanningCoordinator debug log - - Actually URL.toString() calls toExternalForm(), so it has exactly the same effect, but without NPE. - -commit 55c0d6cdaaeb5a91f4adb3647038da6835a97cac -Author: Christian Beikov -Date: Mon Mar 6 10:32:30 2017 +0100 - - HHH-9188 - Testcase for one-to-one jointable with selfjoin and table per class - - - add test case - -commit c088b2fa314ad8168d28aa07b38957b7a93ce978 -Author: Christian Beikov -Date: Sat Mar 4 03:29:47 2017 +0100 - - HHH-7406 - Wrong SQL in Joined inheritance if subclasses have fields with same name - - - Add test case - -commit f0cbaef2cd201b79c93222d9464deefafc022e47 -Author: Christian Beikov -Date: Sat Mar 4 03:10:41 2017 +0100 - - HHH-9638 - Query.getResultList() prepended with dereferencing of no-proxy relation, causes violation of reference equality constraint - - - Add test case - -commit 94cb596a73b939cdf11d12aa09478267105cfc83 -Author: Christian Beikov -Date: Fri Mar 3 15:51:29 2017 +0100 - - HHH-5954 - Test showing that it works - -commit 00dfc83aebf769556291f3328406fd46d7d1b232 -Author: Christian Beikov -Date: Wed Feb 1 10:29:46 2017 +0100 - - HHH-11435 - Alias available in WITH clause although not defined yet and generates invalid SQL - - - Add unit test - -commit 81c25d24f411ccc623e727dcf5305100157109ae -Author: Andrea Boriero -Date: Mon Oct 24 14:13:13 2016 +0100 - - HHH-11144 - orphanRemoval not working when other same-table-relations are initialized - - - add test for issue - -commit 6674cddf3d68928344017e040526351aa3ebed76 -Author: Chris Cranford -Date: Wed Mar 8 21:50:00 2017 -0500 - - HHH-11560 - Move validation of Lob/ElementCollection after determining property is not-audited. - -commit a49790537c46f96a28c785e34bbaeaee4f473081 -Author: Chris Cranford -Date: Wed Mar 8 13:41:10 2017 -0500 - - HHH-11558 - Fix NullPointerException when using query api with non-audited entities. - -commit 47d6e40721a646e4b47171a925351d5bb64c8f18 -Author: Chris Cranford -Date: Wed Mar 8 13:40:08 2017 -0500 - - HHH-11558 - Added test case. - -commit 1ced09140961868ef31a7c5afe266df51f47e5bf -Author: Andrea Boriero -Date: Wed Mar 8 15:07:05 2017 +0000 - - HHH-11559 - Fix tests catching exceptions without re-throwing them - -commit 17b8d2e294e51107d6c3af45bc306f53dc3dfe18 -Author: Christian Beikov -Date: Fri Mar 3 13:39:20 2017 +0100 - - HHH-11538 - Skip generating joins for entity references used in equality and nullness predicates - -commit ce32b364b48b17f7e65d289b1cfce49bd1c02354 -Author: Christian Beikov -Date: Fri Mar 3 13:37:40 2017 +0100 - - HHH-11538 - Testcase that asserts only a single join is generated - -commit d59ac459faffbb62373e99086524d489af528350 -Author: Gail Badner -Date: Mon Oct 24 16:22:39 2016 -0700 - - HHH-11196 - Hibernate 5 Bytecode Enhancement Association Management works just in one direction - - - add replicating test case - -commit d5ac64890ca37cd2b621ab8cbe126133e5ba25be -Author: Andrea Boriero -Date: Tue Mar 7 10:33:52 2017 +0000 - - HHH-11549 - Unable to locate MappedSuperclass version attribute when mixing annotations with hibernate mapping files - -commit 0f20e51a5e0fe135bc3261a9d9683a74dd39729d -Author: Andrea Boriero -Date: Tue Mar 7 10:28:51 2017 +0000 - - HHH-11549 - Ad test for issue - -commit 893e9e45c8ca285ba1a735e4b9018abf719f062b -Author: Andrea Boriero -Date: Tue Mar 7 15:47:42 2017 +0000 - - HHH-11536 - Fix unit tests failing on Oracle - -commit 3dda9d7a54d70e3fde58643f4f0994939bc2f5e2 -Author: Vlad Mihalcea -Date: Tue Mar 7 16:25:10 2017 +0200 - - HHH-11396 - Conversion of Date to LocalDate does not consider timezone difference - - - add test case to replicate the actual root cause behind this issue - -commit be7417403473ddd6877b285e56be58231b206818 -Author: marcgiffing -Date: Mon Mar 6 18:22:56 2017 +0100 - - HHH-11509 - Infomix limit handler support for offset - - findbugs fix - -commit 71768443bcefc6056d881cd0aaa252af41bb6540 -Author: marcgiffing -Date: Mon Mar 6 18:14:40 2017 +0100 - - HHH-11509 - Infomix limit handler support for offset - -commit 0c7da58bdaa021273e17062f59c9adebbf5db5bd -Author: marcgiffing -Date: Thu Mar 2 22:05:02 2017 +0100 - - HHH-11509 - Infomix limit handler support for offset - - added license information - -commit 51d9bbfc7cd3dd9a5abfa120e7dac0535575fa85 -Author: marcgiffing -Date: Thu Mar 2 21:47:11 2017 +0100 - - HHH-11509 - Infomix limit handler support for offset - -commit 05a13b8b277d55f15606c64f6159d6561f8bfe28 -Author: marcgiffing -Date: Wed Mar 1 20:39:05 2017 +0100 - - HHH-11509 - Infomix limit handler support for offset - - code formatting - -commit 0f9d0ab9fcd63779e0b4e907790761e12b212ace -Author: marcgiffing -Date: Wed Mar 1 20:26:50 2017 +0100 - - HHH-11509 - Infomix limit handler support for offset - -commit 20314c2193e15dbd09b820eec25e270eecde1d04 -Author: marcgiffing -Date: Tue Feb 21 21:51:38 2017 +0100 - - HHH-11509 - Infomix limit handler support for offset - -commit 2c4ccbc8af55bd829ecadf776268cb298de1db0e -Author: Nicolai Parlog -Date: Sat Mar 4 01:24:22 2017 +0100 - - Forward IOException in ClassFileArchiveEntryHandler::toClassFile - - While the exception itself might not be very helpful (Javassist, for example, can throw rather cryptic ones) including at least makes the visible. - -commit 55af30eb1381deed79ee7479099c19531fdeedb2 -Author: Andrea Boriero -Date: Sat Feb 25 14:12:17 2017 +0000 - - HHH-11397 - Query parameter binding validation issue - -commit dc714695e4c0d5435a281577a093ec829becd0d3 -Author: Andrea Boriero -Date: Thu Feb 23 09:31:48 2017 +0000 - - HHH-11511 - QuerySyntaxException when sorting by a column using a JPQL reserved keyword - -commit c53939b181c1235a35693057653c1f93a18a89c8 -Author: Andrea Boriero -Date: Wed Feb 22 12:22:25 2017 +0000 - - HHH-11510 - NativeQuery#iterate throws QuerySyntaxException instead of UnsupportedOperationException - -commit 4fcc0d228ad37f382212b2d7f2a79ea12c09cdc6 -Author: Gail Badner -Date: Wed Sep 14 22:15:43 2016 -0700 - - HHH-9763 - hibernate.cache.default_cache_concurrency_strategy configuration is ignored - - - add replicating test case - -commit 42f8d033c110b7475a569da42eccc53dcd36720e -Author: Andrei Solntsev -Date: Sun Mar 5 23:32:14 2017 +0200 - - HHH-11547 fix some typos in documentation - -commit 1d5ef677b6291f0d16832a6b854daf1a9a988826 -Author: Andrea Boriero -Date: Fri Mar 3 09:09:46 2017 +0000 - - HHH-11536 - Fix unit tests failing on Oracle - -commit 0794e103d75644283270b74462ccc5757b636a34 -Author: Oliver Breidenbach -Date: Thu Sep 1 11:38:09 2016 +0200 - - HHH-11078 - Attribute in metamodel is null for overridden property - - - Add replicating test case - -commit dd895c78b6b33da2660ed883b0c88681027e271d -Author: Andrea Boriero -Date: Thu Mar 2 13:56:59 2017 +0000 - - HHH-11536 - Fix unit tests failing on Oracle - -commit 633deeb75e1a0d7ff4f08a27ffc5360d2605fecf -Author: Oliver Breidenbach -Date: Mon Jun 13 11:30:18 2016 +0200 - - HHH-10842 - Entity graph attribute node is ignored if the entity is mapped by the Primary Key column - - - Add test case to replicate the issue - -commit e54ce7b2662d80eaa2ca4039921f51343e70dcb3 -Author: Andrea Boriero -Date: Wed Mar 1 13:47:27 2017 +0000 - - HHH-11536 - Fix unit tests failing on Oracle - -commit 2a32c8ff0d4e20c0c71e464d2ecf1821ecd49fce -Author: Chris Cranford -Date: Thu Mar 2 06:43:02 2017 -0500 - - Removed call to System.out.println - -commit ec487d8aceb563a735108868c36d095bbeebaeee -Author: Boris Korogvich -Date: Thu Mar 2 12:59:34 2017 +0300 - - fix typo - -commit a1f01bcd641e258139584c3ed567b5bcf21bab92 -Author: rreynolds -Date: Thu May 12 16:21:05 2016 -0400 - - HHH-10737 - Unrecognized select expression causes a NullPointerException - - - Add replicating test case - -commit 9d2e3b81b4fcab14e2ae27937d1eda035bab0c9c -Author: Johannes Buehler -Date: Wed Jan 20 18:09:29 2016 +0100 - - HHH-10463 - coalesce with null values and PostgreSQL throws exception - -commit e654e6c2c725d3396e262aab1d0ae7273d7fe1ab -Author: petar.tahchiev -Date: Sat Feb 18 17:47:58 2017 +0200 - - HHH-11089 - Naming Strategy Does not affect the user-specified index/foreign-key names - - Call the implicit naming strategy regardless if the client has specified foreign key name or not - -commit e0da35e5e812ea0e185bc43f4a60402b0cdbee29 -Author: Samuel Andersson -Date: Mon Feb 27 19:07:52 2017 +0100 - - HHH-11532 - Loading extended entity by natural ID of base entity that exists in second level cache throws WrongClassException - - - add replicating test case - -commit 761ea6c94123d6c36cd89297786f6d2b4c1d52c5 -Author: Chris Cranford -Date: Mon Feb 27 22:31:21 2017 -0500 - - HHH-9114 - Fix property not found when IdClass properties are mapped both in entity and mapped superclass types. - -commit 959e3867d19505cc8821b2cdec607e746d3e30cc -Author: Chris Cranford -Date: Mon Feb 27 22:30:19 2017 -0500 - - HHH-9114 - Added test case. - -commit e1dbca511dc208acbe2e9ff08155f73692c8f919 -Author: Andrea Boriero -Date: Tue Feb 21 17:20:52 2017 +0000 - - HHH-11470 - Schema update should not try to query sequences for Dialects not supporting them (DB2400Dialect, DerbyDialect, DB2390Dialect) - -commit f0016db20190c3f4dc014486c2f6e64428939f33 -Author: Andrea Boriero -Date: Fri Feb 10 14:12:05 2017 +0000 - - HHH-11477 - HQL query against field marked with @Lob fails on PostgreSQL - -commit 9a9ef4d027d3c2b5ba9aeae83d30c9be05c3b994 -Author: Vlad Mihalcea -Date: Tue Feb 28 12:09:11 2017 +0200 - - HHH-11514 - Id is generated on replicated instead of using the one provided - - Add possible replicating test case - -commit bd49676cb6bed320b3462d04964eaa09dbec6a54 -Author: Chris Cranford -Date: Tue Feb 28 00:32:53 2017 -0500 - - HHH-2735 - Added test cases. - -commit 7ae3e1c3b7953b1a25e09995453459c0eaecfcae -Author: Gail Badner -Date: Mon Feb 27 17:59:36 2017 -0800 - - HHH-11530 : IdentityGeneratorExtendsTest.testIdentifierGeneratorExtendsIdentityGenerator failing on Oracle DBs - -commit 7b78ee9981c5d3a6be9efc309f00b3a4957815e2 -Author: Fábio Ueno -Date: Mon Feb 20 17:46:59 2017 -0300 - - HHH-11186 - Add example for all Hibernate annotations - - Document more annotations: - - - @NotFound - -commit e77d18c0d1805220835a58219c5e7705ffe58a59 -Author: Chris Cranford -Date: Mon Feb 27 09:56:18 2017 -0500 - - HHH-11502 - Fix NPE. - -commit 8d726a35b1da8b8fa38ea20a1a623ef05b153465 -Author: Russ Tennant -Date: Fri Feb 17 16:23:38 2017 -0600 - - Test case for HHH-11502 - -commit f3dafb320568019c0a245d0bec49ba9e70c50edd -Author: Andrea Boriero -Date: Thu Feb 23 19:23:07 2017 +0000 - - HHH-11473 - Refactor MySQLDialect - - - move storage engine resolving into constructor - -commit 39c04f14ae427d779109baf6d89308192a3c1a31 -Author: Chris Cranford -Date: Sun Feb 26 23:41:33 2017 -0500 - - HHH-11455 - Test case. - -commit 5e29497d60154903b62f516480abfdd29cb024a9 -Author: Andrea Boriero -Date: Sat Feb 25 18:29:38 2017 +0000 - - HHH-11473 - Fix tests leaving a dirty database - -commit bc3032785e377591e98cd1c68bb02b6f4e5ad9c0 -Author: Andrea Boriero -Date: Thu Feb 23 19:23:58 2017 +0000 - - HHH-11473 - Fix MySQLStorageEngineTest - -commit 7c90905d73c2dd2af7ce59bc257faa785594cad3 -Author: Sanne Grinovero -Date: Thu Feb 23 17:29:37 2017 +0000 - - HHH-11518 Log4DelegatingLogger slows down testsuite execution by formatting messages too eagerly - -commit 3d712b0a6e7c3834bb5b50abcaf4fbffd802b009 -Author: Radim Vansa -Date: Wed Jan 11 14:43:05 2017 +0100 - - HHH-11381 In nonstrict mode, putFromLoad after evict can behave incorrectly - - * piggybacking minor improvements for size command, too - -commit f574325c0464c2ecbc38c584b5226f5ae0121093 -Author: Radim Vansa -Date: Wed Jan 11 14:07:25 2017 +0100 - - Run CorrectnessTestCase in nonstrict mode - - * the test was not running in nonstrict-read-write mode but in read-write mode instead - * for collections, we have to fallback to read-write mode - * there are expected failures in nonstrict mode, as the test does not allow stale reads - (adding a switch to handle these is TODO) - -commit 69ba7a50ce6c1cca893529226e1813121cfa64b1 -Author: Radim Vansa -Date: Fri Jan 6 18:14:39 2017 +0100 - - HHH-11373 Silence lock acquisition failures on remote nodes - -commit 1ba6e00e002c16887893c2b9219c0ff4470b4b35 -Author: Radim Vansa -Date: Fri Jan 6 18:12:10 2017 +0100 - - HHH-11372 Do not send RemoveExpiredCommands in repl/dist caches - -commit c6b6d9d24269976e2819547d362382d61523e2d1 -Author: Andrea Boriero -Date: Tue Feb 21 13:25:09 2017 +0000 - - HHH-11473 - Fix MariaDB dialect - -commit 9cb171bfeb39580cccab34cce7952375276d437b -Author: Andrea Boriero -Date: Tue Feb 21 10:37:16 2017 +0000 - - HHH-11473 - Fix checkstyle errors - -commit 2980dc4e845b2a4dda9f21f6406e6bd74365f8bb -Author: Vlad Mihalcea -Date: Tue Feb 21 08:14:50 2017 +0200 - - HHH-11473 - Refactor MySQL Dialects - - - Add a mention of MySQL5SpatialDialect as well in the User Guide - -commit c0e59563dcb4f05a775abb279848876182beac31 -Author: Vlad Mihalcea -Date: Tue Feb 21 08:09:07 2017 +0200 - - HHH-11473 - Refactor MySQL Dialects - - - MySQL56SpatialDialect can default to InnoDB by default - -commit 91d1f38d95fd6967ba09c2657da977eb9c53842d -Author: Vlad Mihalcea -Date: Tue Feb 21 07:57:56 2017 +0200 - - HHH-11473 - Refactor MySQL Dialects - - - Simplify InnoDB deprecated Dialects by just overriding the default storage engine method - -commit 652aa43427810d1a5319ccb0b08a1582c28a888b -Author: Chris Cranford -Date: Mon Feb 20 11:11:03 2017 -0500 - - HHH-11503 - Fix SQL Server 2012 offset/fetch parameter binding. - -commit 2b79644b633634249ac7ce2d122b07acbb7f9096 -Author: Vlad Mihalcea -Date: Thu Feb 9 15:14:30 2017 +0200 - - HHH-11473 - Refactor MySQL Dialects - -commit d82b3369ff6d64007fe589bdbc3ed102f05e51a1 -Author: Andrea Boriero -Date: Fri Feb 17 11:45:22 2017 +0000 - - 5.2.8 - -commit 5d5b4e9776fddb96c2a0ccb1e194a33b5c73b6cd (tag: 5.2.8) -Author: Andrea Boriero -Date: Fri Feb 17 10:38:16 2017 +0000 - - 5.2.8 - -commit 55f7f71e04555f5f5a787161e145bda964033417 -Author: Gail Badner -Date: Wed Feb 15 17:31:27 2017 -0800 - - HHH-10989 - Always resolve CollectionType on load so that unfetched collections have a reference stored in StatefulPersistentContext - - HHH-10989 : Shorten test table names - -commit 077ebbc04fe48a7993ec847432a632ded1f911a2 -Author: barreiro -Date: Fri Jan 27 23:23:42 2017 +0000 - - HHH-10989 - Always resolve CollectionType on load so that unfetched collections have a reference stored in StatefulPersistentContext - -commit 2e2b457d189168ace7015f38cdd44bd590bf0198 -Author: Chris Cranford -Date: Fri Feb 3 17:40:51 2017 -0500 - - HHH-11416 - Test for unrelated property joins for JOINED-based Inheritance entity mappings. - -commit 3d6f8eb0ff11adba1018c55fc978aa10ab297fdc -Author: Christian Beikov -Date: Wed Feb 1 13:39:04 2017 +0100 - - HHH-11437 - Entity joins are not polymorphic - -commit 1e8077f0e991964ba10b4f300bff980a8a6d44f3 -Author: Christian Beikov -Date: Wed Feb 1 13:38:46 2017 +0100 - - HHH-11437 - Test for issue - -commit d7eb9f5fba658bac9edbf11cb474be678089c2e2 -Author: Vlad Mihalcea -Date: Thu Feb 16 12:58:19 2017 +0200 - - HHH-11457 - Add MariaDB specific Dialects - - - mention the new MariaDB dialects in the User Guide - -commit f5606b1f4b36bd2583a776bdf58de9df967f21b9 -Author: Vlad Mihalcea -Date: Thu Feb 16 12:49:03 2017 +0200 - - HHH-11491 - Add documentation to non-temporary tables bulk-id strategies - -commit 2a42d8369209af517d22b26ecbbdab3225e88c7f -Author: Vlad Mihalcea -Date: Wed Feb 15 16:57:28 2017 +0200 - - HHH-11485 - Document that the @Filter annotation only applies to query - -commit 882d9235869d4ffae27cbf70a9a99d254120bd32 -Author: Andrea Boriero -Date: Wed Feb 15 11:06:16 2017 +0000 - - HHH-11457 - Change matrix mariadb config to use MariaDB53Dialect - -commit aeb3aee62603f4e3613ed4037f2727c817a11016 -Author: Christian Beikov -Date: Fri Oct 21 19:51:35 2016 +0200 - - HHH-11180 - JPA @ForeignKey still not consistently applied from annotation binding - - - Fix ForeignKey support for PrimaryKeyJoinColumn / PrimaryKeyJoinColumns - - Fix ForeignKey support for JoinColumn / JoinColumns - - Fix ForeignKey support for JoinTable when applying value NO_CONSTRAINT. - - Fix ForeignKey support for MapKeyJoinColumn / MapKeyJoinColumns - - Fix ForeignKey support for AssociationOverride / AssociationOverrides - -commit 15b0a683f2423d355fe85eb31435a62837a2550f -Author: Vlad Mihalcea -Date: Wed Feb 15 13:41:34 2017 +0200 - - HHH-11457 - Add MariaDB specific Dialects - - - remove duplicated mariadb library entry - -commit 7c06d003dcf184bf4082f5f911c4582aa81d1ffb -Author: Vlad Mihalcea -Date: Wed Feb 8 13:08:02 2017 +0200 - - HHH-11457 - Add MariaDB specific Dialects - -commit 35211ee5f32f2f1e645cd0af966309186b830aca -Author: barreiro -Date: Thu Jan 26 14:55:24 2017 +0000 - - HHH-11426 - NullPointerException in getPersistenceUnitUtil().getIdentifier() on detached enhanced entity - -commit f2728836af0d9420df36dcc02c8e8983b7c893ed -Author: Sanne Grinovero -Date: Tue Feb 14 17:05:55 2017 +0000 - - HHH-11489 Improve the documentation about upgrading WidFly with latest Hibernate ORM modules - -commit 54503bf7f4255afacb5717a992086bd59d68b51b -Author: Fábio Ueno -Date: Mon Feb 13 18:50:09 2017 -0200 - - HHH-11186 - Add examples for all Hibernate annotations - - - CascadeType.REFRESH and CascadeType.REPLICATE - -commit 3c2939f0e54ff18c35efc5bd78b63f2c0940803e -Author: Benoit Lateltin -Date: Mon Feb 13 13:08:51 2017 +0100 - - HHH-11484 - Fix LocaleTypeDescriptor to handle Locale.ROOT - -commit 3adb0d76be65a098096274f2dbd9c34fac0788f5 -Author: Vlad Mihalcea -Date: Mon Feb 13 16:48:43 2017 +0200 - - HHH-10256 - ClassCastException in ResultSetReturnImpl.java:75 - -commit 8b2a852a92aa908b4447032c51a90656681ef7e4 -Author: Galder Zamarreño -Date: Thu Feb 2 16:07:17 2017 +0100 - - HHH-11445 - Improve Infinispan second-level cache documentation - - - Also add a replicated cache example for entity/collection to make it easy for users to switch to that. Since eviction is not recommended for replicate entity caches, it helps to provide a sample configuration. - -commit 260b21bd63ed11cca217d0208fa3af4834b97cc9 -Author: Fábio Ueno -Date: Thu Feb 9 17:38:55 2017 -0200 - - HHH-11186 - Add examples for all Hibernate annotations - - Document more annotations: - - - @Cascade - -commit 828fb09eb8f1603a45486c52b352f3496e9876ad -Author: Mark Rotteveel -Date: Sat Feb 11 18:14:48 2017 +0100 - - HHH-11482 Update example and documentation to clarify SUBSTRING is 1-based - -commit 8775007e7c0af5e4b19f1c231ff8e0753242e226 -Author: Vlad Mihalcea -Date: Mon Feb 13 09:35:53 2017 +0200 - - Add tests to replicate that a @Filter does not apply to direct entity fetching - -commit 13945e754461a839e4a3843b218fe2841dde950e -Author: Karel Maesen -Date: Sun Feb 12 12:50:58 2017 +0100 - - HHH-7132 - Fixed build failure - -commit b9ddc063cd720b33d13581ceffdc9b6a0850a5cb -Author: Karel Maesen -Date: Thu Mar 17 21:42:19 2016 +0100 - - HHH-7132 - New Oracle Spatial Dialect that is non-OGC compliant - -commit 550c2e38ff41003c178a273b21f038d4295a0b80 -Author: Chris Cranford -Date: Sat Feb 4 01:16:45 2017 -0500 - - HHH-11237 - Fix isModified so that a null equates empty components when using select-before-update. - -commit 667136c473219ade173b7b3dfea50a1f9304c1a9 -Author: Chris Cranford -Date: Sat Feb 4 01:15:41 2017 -0500 - - HHH-11237 - Added test case. - -commit 995e5d68ce61219d3883da7aec8f865bc44dd7c5 -Author: Chris Cranford -Date: Thu Feb 9 12:39:45 2017 -0500 - - HHH-11477 - Marked Envers tests to be skipped on PostgreSQL until this is resolved. - -commit 3de0cce47c0f64bacb93709f399d1cfaed83a5ee -Author: bananan -Date: Wed Feb 8 00:24:18 2017 +0100 - - HHH-11468 - add Javadoc with java.time.* classes mentioned in Create/UpdateTimestamp - -commit 5553b9df278760acc660fad1ce23346adb405f42 -Author: Craig Andrews -Date: Tue Feb 7 10:25:24 2017 -0500 - - HHH-10938 - Fix memory leak when bootstrapping EntityManagerFactory - -commit 66cf8cb63291a156342262d6f6135451c0e12cec -Author: Henri Tremblay -Date: Wed Feb 8 17:11:38 2017 +0530 - - HHH-11471 - Add a createCache method - -commit 57f156769b3d3597780fbd90f8ba2cecf614be56 -Author: Christian Beikov -Date: Thu Feb 9 08:13:11 2017 +0100 - - Checkstyle fix - -commit 82cf0c1caaa58d074e61e72f25ebf37a23700f4d -Author: Chris Cranford -Date: Wed Feb 8 11:42:32 2017 -0500 - - HHH-11475 - Deprecate ModificationStore - -commit 8461913c5c46632760bf3ee1128ef47e73aad8af -Author: Andrea Boriero -Date: Wed Feb 8 16:25:58 2017 +0000 - - HHH-11410 - Fix pgsql failing test - -commit 753858ce735b2a4eb1a88e3dcd676a0f4e444c2b -Author: Christian Beikov -Date: Sat Feb 4 12:29:07 2017 +0100 - - Introduced table group joins - -commit c87194c3fe73c2f495cf30e5ee48d4561d4bdd8d -Author: Chris Cranford -Date: Sun Feb 5 00:41:16 2017 -0500 - - HHH-11410 - Fixed ManyToMany with an active Filter to apply the condition on the join. - -commit 10fe238688e7f47bd86ecf2c015158c9ea826713 -Author: Chris Cranford -Date: Sun Feb 5 00:40:05 2017 -0500 - - HHH-11410 - Added test case. - -commit 3c26ae7302f5aa17c6099553c4f3fdb885f187a5 -Author: Mark Rotteveel -Date: Tue Feb 7 16:48:10 2017 +0100 - - HHH-11467 Replace incorrect use of StringHelper.WHITESPACE with single space. - - This prevents an issue with Firebird where formfeed (\f or 0x0c) is not considered valid whitespace in a query. - -commit 457a181347d383ec698ae48bed3d98ed5b7e9ca7 -Author: Chris Cranford -Date: Wed Jan 18 23:47:12 2017 -0500 - - HHH-8768 - Add support for OFFSET/FETCH syntax for SQL Server 2012 LimitHandler/pagination. - -commit 68e1dfffd255b0392bedbf4f4bb93a3c02620d0f -Author: Chris Cranford -Date: Fri Feb 3 13:25:11 2017 -0500 - - HHH-11412 - EntityManager/Session setProperty should permit custom properties - -commit 6b2176ab83ce966946ab90b519bbf4e01c683958 -Author: Chris Cranford -Date: Tue Feb 7 00:15:22 2017 -0500 - - HHH-11461: Remove reference to the EnversSchemaGenerator tool in documentation. - -commit e46956b0f1e377d2ca89a31769c5d70aea2b8ec2 -Author: Ivan Straka -Date: Mon Feb 6 13:10:22 2017 +0100 - - HHH-11456 - SequenceHiLoGeneratorTest fails due to wrong select string on SQL Server - -commit f82dd465b124f00df58a30a1faf9d0d0d2287685 -Author: Timofey Gorshkov -Date: Thu Feb 2 17:36:09 2017 +0300 - - HHH-11458 - Optimize the SQL formatter call when iterating through multiple targets - -commit efc041c9e6e52a521a64b84d9387e99715c7b964 -Author: Vlad Mihalcea -Date: Mon Feb 6 11:42:27 2017 +0200 - - HHH-11453 - Documentation: explain/state find() and Query on a single entity can behave differently - -commit a38ea758e3dc0940dbf607b7bf59a790dac2ad4c -Author: BOOTMGR -Date: Sun Feb 5 00:24:07 2017 +0530 - - HHH-11455 - Do not use schema name when underlying database doesn't support It - - Use JDBC Environment to get the qualified name of the table, instead of directly appending schema name when it is defined explicitly. - -commit 517fc4c242ba2e71316bfc616f59745f62883473 -Author: Vlad Mihalcea -Date: Thu Feb 2 17:22:49 2017 +0200 - - HHH-11448 - Fix tests failing on PostgreSQL - -commit a4125ad28e90a38aeec29f5d0ea29039ec496342 -Author: Vlad Mihalcea -Date: Thu Feb 2 14:11:53 2017 +0200 - - HHH-11442 - Update documentation for HHH-10858 - -commit ce95ffe441fcdabfd9ffbdb1e6974315b3dc5ca7 -Author: Vlad Mihalcea -Date: Thu Feb 2 13:05:50 2017 +0200 - - HHH-9460 - Removing non-optional bidirectional @OneToOne association with cascade - - Add entity name so that the underlying table uses it instead of the nested class name - -commit 19e9bfe3031d79318e86da13a10764a5a0b9ca21 -Author: Andrea Boriero -Date: Thu Feb 2 09:19:41 2017 +0000 - - HHH-11262 - Fix checkstyle errors - -commit f2f6a088534b39204d00e178347a1622f14171af -Author: Vlad Mihalcea -Date: Thu Feb 2 10:57:23 2017 +0200 - - HHH-9460 - Removing non-optional bidirectional @OneToOne association with cascade - -commit 20500f17ae6e624723b880e40b1c8332560eb55b -Author: Vlad Mihalcea -Date: Thu Feb 2 09:34:06 2017 +0200 - - HHH-11438 - Inconsistencies in the documentation for bytecode enhancement - -commit cf1f10336ef1f71f1c09aa9b8e7555a76e037dae -Author: Brett Meyer -Date: Wed Feb 1 19:52:59 2017 -0500 - - HHH-11439 added javax.interceptor to OSGi feature dependencies - -commit 5e206666f0ed18e2db40dadba03524d9f2a35bc7 -Author: Sanne Grinovero -Date: Wed Nov 23 10:57:14 2016 +0000 - - HHH-11439 Switch from Geronimo JTA to Narayana JTA - -commit 3f1111ee5c3dcb646df7c1a75f462d51229cab2c -Author: Chris Cranford -Date: Wed Feb 1 12:51:06 2017 -0500 - - HHH-10537 - Fixed conflict while merging changes from HHH-10557. - -commit 5d9414257f6687a7238d13da7531d46373a46dac -Author: Christian Beikov -Date: Wed Jan 25 19:58:53 2017 +0100 - - Fix for HHH-10537 - -commit 72382b1e08dd64eae9191aada2301e2f76c8ce96 -Author: Christian Beikov -Date: Wed Jan 25 19:58:34 2017 +0100 - - Test for HHH-10537 - -commit fa3171530c63628f0a5174dde7b6c837ffb37006 -Author: Chris Cranford -Date: Wed Feb 1 11:00:56 2017 -0500 - - HHH-10577 - Added additional test cases for VALUE() - -commit 18e8be00370c9915f3032ac4205374f7877de6b5 -Author: Christian Beikov -Date: Wed Jan 25 18:20:01 2017 +0100 - - Fixed HHH-10577 - -commit f9fce8c6571f512fdaed465388d2a73bce705393 -Author: Christian Beikov -Date: Wed Jan 25 17:30:10 2017 +0100 - - Test for HHH-10577 - -commit d48f393420708d2b679f48a1b6c4dfc418616b41 -Author: Evandro Pires da Silva -Date: Sun Dec 18 21:04:14 2016 -0200 - - HHH-11262 - Bulk Operations attempt to create temporary tables, but user does not have permission to create table - -commit 8f6e4d56753576f30ba8cec5fae1693e316267f2 -Author: Andrea Boriero -Date: Wed Feb 1 09:31:44 2017 +0000 - - HHH-11434 - prevent failures in some tests from freezing the whole test suite - -commit e62d71b76b10a7ac46cd14a8ac36f68803947235 -Author: Jan Martiska -Date: Mon Jan 30 15:32:48 2017 +0000 - - HHH-11434 - prevent failures in some tests from freezing the whole test suite - -commit ec9e8dbdfa374dd0dd14fa65bbd5b75676735f10 -Author: Andrea Boriero -Date: Tue Jan 31 18:03:38 2017 +0000 - - HHH-11436 : SQLTest failure - -commit f007dc7c90d47873db0be8f8f692da56f7ec1da6 -Author: Andrea Boriero -Date: Tue Jan 31 17:57:18 2017 +0000 - - HHH-11428 - When multiple @RequiresDialect annotation is applied the test is ignored - -commit bb0b3e8c4353dc93aca465c6fbbf77d9bc38ef2a -Author: Christian Schneider -Date: Thu Jan 26 15:33:03 2017 +0100 - - HHH-11425 - Karaf feature misses byte buddy dependency - -commit e547ee0793ec47ecf13a8faaa5555ef0eda24f28 -Author: Andrea Boriero -Date: Thu Jan 26 15:13:58 2017 +0000 - - HHH-11428 - When multiple @RequiresDialect annotation is applied the test is ignored - -commit b19d76f2ccf99da4c56021d7baf779a3efa166c4 -Author: Andrea Boriero -Date: Thu Jan 26 15:13:34 2017 +0000 - - HHH-11418 - SynonymValidationTest failure - -commit 50ee618f1edc91054c09c7cad33df08b28da1d17 -Author: barreiro -Date: Thu Jan 26 17:21:37 2017 +0000 - - HHH-10930 - Add explicit dependency on JTA to the maven enhacer plugin - -commit f82c29ff42c084eaee9da2e67817fe4d18949134 -Author: barreiro -Date: Sun Jan 29 00:34:46 2017 +0000 - - HHH-11161 - Prevent initialization of extra lazy collections - -commit c70a28252be92b2f697ef295efac1759add87cea -Author: Steve Ebersole -Date: Fri Jan 27 11:00:10 2017 -0600 - - HHH-11431 - Remove unintended deprecation - -commit 56cd7263d14b407b1acaef1abc8ae547ac026ed4 -Author: Nicholas Kim -Date: Thu Jan 26 04:21:04 2017 +0900 - - Fix Typo in MergeContext.java - - mergeEntity the *merge* entity - -commit cbaa1e1fbc24f82c8d4589c75b068e64f4d14c4a -Author: Vlad Mihalcea -Date: Wed Jan 25 16:21:03 2017 +0200 - - HHH-10256 - ClassCastException in ResultSetReturnImpl.java:75 - - Demonstrate that the issue does not replicate on latest Hibernate version - -commit 95b858bf20e00050fe92bb56f1fdd1a138e83356 -Author: Jan Martiska -Date: Tue Jan 24 15:49:58 2017 +0000 - - HHH-11419 - QueryAndSQLTest failing on MS SQL Server - -commit 2868f1bb09248827619a7e0e69626a46932a32c8 -Author: Rafael Winterhalter -Date: Mon Jan 23 11:36:02 2017 +0100 - - HHH-11420 - Update Byte Buddy to 1.6.6. and use more granular locks on type caches - -commit d9e5edc9c0268c25d780c78d97a7c918b1b6a9ae -Author: Yordan Gigov -Date: Thu Jan 19 10:08:56 2017 +0200 - - HHH-11409 - Bind registered collection types using their type handler - - Try to replicate issue - -commit 7f34ac128b5417084d36a4da620d994382a88a27 -Author: Rafael Winterhalter -Date: Thu Jan 19 18:11:37 2017 +0100 - - HHH-11417 - Update to Byte Buddy 1.6.4 - - - fixes handling of bridge methods when encountering raw types - -commit 536a91dc78c28573955c0a1dfc7b7059518f7759 -Author: stonio -Date: Mon Jan 23 14:57:27 2017 +0100 - - Update Configurations.adoc - Typo org.hibernate.core - - Missing trailing backtick after org.hibernate.core - -commit 28c1279eafc883affd093c1c57eb8ebf744c8b4f -Author: Andrea Boriero -Date: Thu Jan 19 15:03:23 2017 +0000 - - 5.2.7 - -commit 024b6e97fe32cc39f63ca89839e53700645b1bbd (tag: 5.2.7) -Author: Andrea Boriero -Date: Thu Jan 19 14:09:14 2017 +0000 - - 5.2.7 - -commit 33ae0b3b9e796528023e3654226a1e747ce00688 -Author: Andrea Boriero -Date: Wed Jan 18 21:35:08 2017 +0000 - - HHH-11407 - JPA + JDBC transaction - when a commit fails rollback is executed twice - -commit c9df1a9981b63131c24f8e53699356b113d93f28 -Author: Andrea Boriero -Date: Wed Jan 18 23:20:40 2017 +0000 - - HHH-11407 - Add test for issue - -commit f1cdee26124263d9aa1a8b47f78aade895a03582 -Author: Fábio Ueno -Date: Fri Jan 13 12:44:53 2017 -0200 - - HHH-11408 - Fixing typos in documentation - -commit 2dca5f2ceb23f4a6ac6a654398c1cdb3f7a33d7e -Author: Steve Ebersole -Date: Wed Jan 18 21:36:56 2017 -0600 - - HHH-11400 - HHH90000016: Found use of deprecated 'collection property' issue for valid JPQL query - -commit 8361f794bc893a0fef0b14793c072bd9181caff8 -Author: Craig Andrews -Date: Tue Nov 29 16:33:51 2016 -0500 - - HHH-11284 - Test case - -commit 8fc0bf520245545df6c6c10b0fe4e2d23aa48a0a -Author: barreiro -Date: Wed Jan 18 03:39:42 2017 +0000 - - HHH-11284 - HHH-11404 - Fix enhancement in cases where there is some sort of inheritance - -commit ffe62ac68bc6629ce370e22a4a65ef44148f7dee -Author: barreiro -Date: Wed Jan 18 02:50:59 2017 +0000 - - HHH-11242 - Basic test case for the maven plugin - -commit 4a3dee15880d2fe09320ba6427e4bafee18a669c -Author: barreiro -Date: Thu Dec 1 01:32:30 2016 +0000 - - HHH-11242 - [enhancer] load class on isolated class pool to avoid it being frozen - -commit c1093d533e70cc91540d333e11dc3b3dd8b8cc95 -Author: Andrea Boriero -Date: Fri Jan 13 17:47:43 2017 +0000 - - HHH-11395 - ServiceRegistry#getService(...) throws NPE when service initiator returns null - -commit c1d8a3e4263eee080bfa7d09904e76062add32f1 -Author: Andrea Boriero -Date: Fri Jan 13 17:45:26 2017 +0000 - - HHH-11395 - Add test for issue - -commit a506f53a5caf416b4c7d058a2317155ea02313f6 -Author: Andrea Boriero -Date: Tue Jan 10 18:20:03 2017 +0000 - - HHH-11376 - Malformed SQL query sent to SQL Server with left outer join and pessimistic lock - -commit 5f0ae6fcb7d3973c367273eece99733a00bb382c -Author: Andrea Boriero -Date: Tue Jan 10 18:18:23 2017 +0000 - - HHH-11376 - Add test for issue - -commit ed4e3f50e729bb990a92f81360eac22d280f95d5 -Author: Steve Ebersole -Date: Wed Jan 18 14:52:37 2017 -0600 - - HHH-10858 - Could not find matching type descriptor for requested Java class [...]; using fallback - -commit 7af60b7c5a73c2cd94a8600082ce9f0ef7095eb7 -Author: Steve Ebersole -Date: Wed Jan 18 14:45:44 2017 -0600 - - HHH-10858 - Could not find matching type descriptor for requested Java class [...]; using fallback - -commit 89583fd0089ee20cf51839bf3fc1caa8bf93d9cc -Author: Chris Cranford -Date: Wed Jan 18 10:50:38 2017 -0500 - - HHH-11383 - Added additional property projection test case. - -commit 5ac46eb70359a45a34f7a64e859df106928baa94 -Author: Chris Cranford -Date: Mon Jan 16 16:58:04 2017 -0500 - - HHH-11383 - Removed InvalidWithClauseException check when join alias != table alias - -commit 327d0a93cd50d5d77836d94f7935c2b29f4da39e -Author: Chris Cranford -Date: Mon Jan 16 16:57:26 2017 -0500 - - HHH-11383 - Added test case. - -commit ebf4803a335f78b507a343f15b769430b9c1d32f -Author: Chris Cranford -Date: Sat Jan 14 15:57:52 2017 -0500 - - HHH-8973 - Fix tracking entity modifications to detached entities with the modified flags feature. - -commit ad0cd4fc18e0b447acebd8d9aa4f1781cd65617e -Author: Chris Cranford -Date: Sat Jan 14 15:56:48 2017 -0500 - - HHH-8973 - Added test case. - -commit 0693b542569664ee148068a24b299ae1b040ddc0 -Author: Max Tian -Date: Tue Jan 10 16:08:03 2017 +0800 - - HHH-10183 - Mapping for NVARCHAR in SqlServer not working with native queries; org.hibernate.MappingException: No Dialect mapping for JDBC type: -9 - -commit 34d92507c99cede0682a60d3af947a0ee7809dd1 -Author: Andrea Boriero -Date: Wed Jan 18 11:35:23 2017 +0000 - - HHH-11375 - SINGLE_TABLE associated entity query missing restriction of DiscriminatorColumn - -commit 4d5c66c80badd214287b1280b262d0623df6c25a -Author: Christian Beikov -Date: Tue Jan 10 16:22:22 2017 +0100 - - HHH-11375 - Add test - -commit 904335a369e61d1f8ba330d205fa52abad252763 -Author: Sven Haster -Date: Wed Jan 4 13:32:02 2017 +0100 - - HHH-10561 - Join on treated root not rendered in HQL - -commit 349df983f01813b79f8120f607901a77f6b17634 -Author: Christian Beikov -Date: Tue Jan 17 22:41:33 2017 +0100 - - Test and fix for HHH-11401 - -commit 122f00f30cf6f22fe12d0ff09cf67193890baacc -Author: Gail Badner -Date: Tue Jan 17 21:40:00 2017 -0500 - - HHH-11173 : Change CollectionType#renderLoggableString to return '' when collection is uninitialized - -commit 4d6cda1548c487b21f1f04e9cbbd4d68082f88da -Author: barreiro -Date: Wed Oct 19 12:04:51 2016 +0100 - - HHH-11173 - Fix text serialization of uninitialized lazy attributes - -commit 4dad087b390cce5fd92420eb58469200b736c8b9 -Author: Andrea Boriero -Date: Fri Jan 13 16:47:27 2017 +0000 - - HHH-11393 - Hibernate/JPA CriteriaQuery trim function generate wrong SQL - -commit c0d5fe91532dd65960e2ae348fc1ebefa03549f4 -Author: Andrea Boriero -Date: Sat Jan 14 17:00:48 2017 +0000 - - HHH-11236 - JPA hbm2ddl auto-generation creates ddl with invalid syntax for Unique Key with any MySQLDialect - -commit 570beaf7fb23d2e70338d63a85380cc96afd7fd4 -Author: Sanne Grinovero -Date: Tue Jan 17 10:50:38 2017 +0000 - - HHH-11394 Custom WildFly modules include a duplicate dependency on Javassist - -commit 71ec8907f66d974850058f212a5eac410a43e89d -Author: Steve Ebersole -Date: Thu Jan 12 21:53:54 2017 -0600 - - HHH-11370 - Consider making javax.enterprise:cdi-api dependency "provided" - -commit 99a033c21c607ba0e50ef9ae935c120aaf6f7525 -Author: Gail Badner -Date: Thu Jan 12 09:30:31 2017 -0800 - - HHH-11202 : IllegalAccessException on Embeddable ID after serializing Getter in cache key - -commit 4a32f1a0d5b5a6629b17257809298d7da179ac7f -Author: Rafael Winterhalter -Date: Mon Jan 2 15:17:54 2017 +0100 - - Update Byte Buddy to v1.6.0. Use cache for type storage to avoid leaks. - -commit 19469e8b4fe1b5e468def6ae07d8a894c7f1c7b7 -Author: Yordan Gigov -Date: Wed Jan 4 15:01:00 2017 +0200 - - HHH-11369 - gradle tasks fail to list - -commit 380642bc7911b1f47b9fb7ba4d1ef4ea763d192a -Author: Fábio Ueno -Date: Wed Jan 11 17:00:53 2017 -0200 - - HHH-11388 - Fix documentation typos - -commit f87f1d5b79853ac6b6c0aea140f9f50f40cbf8cc -Author: Fábio Ueno -Date: Tue Jan 10 16:56:44 2017 -0200 - - Added missing backtick - -commit 65ab56a827924ce9273c55bed526aabc50672e69 -Author: Fábio Ueno -Date: Tue Jan 10 16:47:50 2017 -0200 - - Added missing double greater than signs - -commit 9a62e55a4dc5d4a13f9745adc7d259d111593185 -Author: Fábio Ueno -Date: Tue Jan 10 16:00:45 2017 -0200 - - Added missing backtick - -commit cb1faeb9b7b2e5e841301b01a1f5c09cc1bc1ee6 -Author: Sanne Grinovero -Date: Wed Jan 11 11:31:06 2017 +0000 - - HHH-11382 Upgrade WildFly version used for integration tests to 10.1.0.Final - -commit 491d7341ade3cfdc2e7e34c6da7f5400d5663df1 -Author: Vlad Mihalcea -Date: Tue Jan 10 13:51:32 2017 +0200 - - HHH-11377 - ReflectHelper#getConstantValue should consider digits as well - -commit 2b59aadc94ef133cd9415a551cf31e5681a3e6f9 -Author: Vlad Mihalcea -Date: Tue Jan 10 09:08:44 2017 +0200 - - HHH-11236 - JPA hbm2ddl auto-generation creates ddl with invalid syntax for Unique Key with any MySQLDialect - - Change test configuration to use update instead of create-drop - -commit 22548f11271e87b647dfbe3412e9c5b95846d334 -Author: Vlad Mihalcea -Date: Mon Jan 9 17:13:36 2017 +0200 - - HHH-10183 - Mapping for NVARCHAR in SqlServer not working with native queries; org.hibernate.MappingException: No Dialect mapping for JDBC type: -9 - - Restrict test case for SQL Server only - -commit 8f5bc492e8df14a72ae30e4b95fa9506dddce4ba -Author: Vlad Mihalcea -Date: Mon Jan 9 16:07:52 2017 +0200 - - HHH-11236 - JPA hbm2ddl auto-generation creates ddl with invalid syntax for Unique Key with any MySQLDialect - - Add replicating test case that works just fine - -commit 2a441d7f2dd3cff97210cb0654f75985d12d99d8 -Author: Vlad Mihalcea -Date: Mon Jan 9 13:32:09 2017 +0200 - - HHH-10183 - Mapping for NVARCHAR in SqlServer not working with native queries; org.hibernate.MappingException: No Dialect mapping for JDBC type: -9 - - Add replicating test case - -commit f01055985ec4c5ad6a7ffef98fdb9ed01ebda9a6 -Author: Chris Cranford -Date: Fri Jan 6 10:22:02 2017 -0500 - - HHH-11364 - Checkstyle fixups. - -commit 883799082ce1be7e7c3307e3202dfd1f33c8baaa -Author: CK Guven -Date: Thu Jan 5 16:18:44 2017 -0800 - - HHH-11364 add null check for properties in middle embeddable components - -commit 9528d6c00c7eca436ec03a378f45fc918ee2fa04 -Author: Chris Cranford -Date: Fri Jan 6 10:00:08 2017 -0500 - - Checkstyle fix. - -commit 7d3788c76a2ca4318e1ea5049ada524304987244 -Author: Gunnar Morling -Date: Mon Jan 2 17:57:28 2017 +0100 - - HHH-11309 Marking OSGi package imports for ByteBuddy as optional - -commit 652f85644ffbe7328cbccf603ca09034d907c173 -Author: Chris Cranford -Date: Fri Dec 23 00:44:10 2016 -0500 - - HHH-9108 - Fix PropertyAccessException when auditing an Embeddable that contains an associative collection. - -commit 61ce4b86ffd9b2c61c34216bb7f186393650de25 -Author: Chris Cranford -Date: Fri Dec 23 00:42:52 2016 -0500 - - HHH-9108 - Added test case. - -commit 1d41a3f761d7af01812b3553a9c68ba5532fca35 -Author: Chris Cranford -Date: Thu Dec 22 16:07:51 2016 -0500 - - HHH-9834 - Fix failure when deleting and inserting values with the same Map key. - -commit 36e75f4a4dd440df8173ecc4cee56bece6b18069 -Author: Chris Cranford -Date: Thu Dec 22 16:07:00 2016 -0500 - - HHH-9834 - Added additional test case scenarios - -commit 56f7466d52b49456bbf0178f7666d320de4812e1 -Author: lsiu -Date: Wed Dec 21 00:04:28 2016 +0800 - - Fix HHH-11352 - the Pattern at buildShallowIndexPattern where "wordBoundary==true" should wrap the pattern properly with '\b' - -commit dd9c68a862dc6ba1621ceba4169e5c7bca14dda3 -Author: Arnold Galovics -Date: Thu Dec 22 12:56:54 2016 +0100 - - HHH-11134 StringIndexOutOfBoundsException in BooleanTypeDescriptor fix - -commit a21706bf02c0e9f61cbe522f407fd0d35e621f57 -Author: Radim Vansa -Date: Wed Nov 30 10:48:46 2016 +0100 - - HHH-11344 Testsuite speed-up - - * reduce number of setups (@Before -> @BeforeClassOnce) - * remove sleeps related to JGroups flush (issue in a 6+ years old version) - * do not create new cache manager in CollectionRegionAccessStrategyTest#doPutFromLoadRemoveDoesNotProduceStaleDataInvalidation - * Share cache manager in some tests - * Replace system time with mocked time service where possible - * Replace sleeps with synchronization - * Disabled ConcurrentWriteTest.testMany (this is a stress test) - -commit 4ceb71f08a1a5fd71d6df6c47aeaa7547755bfdf -Author: Radim Vansa -Date: Mon Dec 19 14:34:19 2016 +0100 - - Prevent NPE when running with log on trace level - -commit 20daac6ea7a062d02854c536bc9db4e52057af11 -Author: Radim Vansa -Date: Thu Dec 22 12:33:36 2016 +0100 - - HHH-11350 Intermittent failure in EntityCollectionInvalidationTest.testAll - -commit 2a4efd46caf1a8dbcce5eb1156934b305af3e7a8 -Author: Radim Vansa -Date: Wed Dec 21 16:04:35 2016 +0100 - - HHH-11350 Intermittent failure in testEvictAll/testRemoveAll - -commit f59807554a84b5e32103bd04542fd9a0b3a68445 -Author: Radim Vansa -Date: Fri Dec 16 11:36:34 2016 +0100 - - HHH-11339 Use UnorderedDistributionInterceptor for async replication - -commit 160f5ba86345e677787f4d2d8e8c8b98ce88e1b5 -Author: Radim Vansa -Date: Thu Dec 1 17:29:32 2016 +0100 - - HHH-11323 + HHH-11339 - - Evict during concurrent update and putFromLoad can result in stale entry in 2LC - PutFromLoads in replicated/distributed caches should propagate asynchronously - - It would require additional effort to isolate only changes that fix - HHH-11323 and which just allow async propagation. - -commit ba3677b6900750abc427f7042e4e735b853794e0 -Author: Radim Vansa -Date: Wed Dec 14 13:21:53 2016 +0100 - - HHH-11323 Update CorrectnessTestCase - -commit cc56c9672b288be755695b20665f13b0cbd9c977 -Author: Chris Cranford -Date: Thu Dec 22 03:11:34 2016 -0500 - - HHH-9834 - Fix primary key generation for Map-based ElementCollections that use Lob. - -commit 4cbb53c17ae98b07e09b0e41166f27cae19dfb8b -Author: Chris Cranford -Date: Thu Dec 22 03:10:32 2016 -0500 - - HHH-9834 - Added test cases. - -commit f26488bc85f5a780b7c054f6accb082a9012edce -Author: Chris Cranford -Date: Wed Dec 21 21:15:18 2016 -0500 - - HHH-4712 - Fix identifier column mappings when entities use non-identifier properties named id. - -commit 1f090f373170e873fd633f60740bb471c3577012 -Author: Chris Cranford -Date: Wed Dec 21 21:14:22 2016 -0500 - - HHH-4712 - Added test case. - -commit 6cb76b8a179afd5fb57f12f6c8359d3826099bae -Author: Andrea Boriero -Date: Tue Dec 20 13:33:10 2016 +0000 - - 5.2.6 - -commit e17fd6cf0503d10fe02106d9962961c290567d3b (tag: 5.2.6) -Author: Andrea Boriero -Date: Tue Dec 20 10:23:13 2016 +0000 - - 5.2.6 - -commit 4b45fdf176aadd746927a2d0d42a947dc52624f8 -Author: rhart -Date: Fri Dec 16 15:55:32 2016 +0000 - - HHH-11346 - Upgrade build scan plugin to 1.3 - -commit 3ce94fbb0cff129a5b0f2cd4fd206d5d4f518f24 -Author: rhart -Date: Fri Dec 16 15:33:30 2016 +0000 - - HHH-11346 - Upgrade gradle to 3.2.1 - -commit c94df359d64e4698d77e6cc76357274dbf71ca05 -Author: Radim Vansa -Date: Wed Dec 7 11:15:47 2016 +0100 - - HHH-11304 Replace PutFromLoadValidator properly in CollectionRegionAccessStrategyTest - -commit 294ba74c76efe111daa5c5d1e034e1eba3945591 -Author: Radim Vansa -Date: Tue Dec 6 18:23:25 2016 +0100 - - HHH-11304 Invalidations are not cleared when transaction rolls back - - * always use global transaction id (in transactional caches) or command invocation id (in non-transactional caches) to identifiy the invalidator - * don't use afterInvoke/afterUpdate/unlockItem to end invalidation as this is not called during rollback - ** use Infinispan transaction handling or explicitly registered invalidation to hook into the process - ** move invalidation calls to interceptor stack where we have the identifiers - * don't use deprecated methods for commands marshalling - -commit 318473e59caddafa8f38b672f8d38ea6911c696c -Author: Andrea Boriero -Date: Mon Dec 19 19:49:18 2016 +0000 - - HHH-11278 - setMaxResult(0) should return an empty List - -commit d4d1a6b8d49af12e37116ad7096264737bcc8c87 -Author: Andrea Boriero -Date: Mon Dec 19 19:36:46 2016 +0000 - - HHH-11278 - Add test for issue - -commit 3a1cbf32805a38bba8d61de50c8b2a4daf4d0f48 -Author: Gail Badner -Date: Thu Dec 1 15:35:09 2016 -0800 - - HHH-11289 : Lazy-initializing a static Method and making accessible not thread-safe - -commit c3d1573fdf5105bf4d1f14c16f18afe19dd294af -Author: Gail Badner -Date: Mon Dec 19 20:23:27 2016 -0800 - - HHH-11241 : checkstyle fixes - - (cherry picked from commit 3805752731a110c7712c026bee46bc751c16eb99) - -commit 7469df8da11b3b4302c530a3dbb75c018984f662 -Author: Gail Badner -Date: Thu Dec 8 12:25:41 2016 -0800 - - HHH-11241 : Missing column when executing HQL and criteria query with secondary table - -commit 28942c3f6762f51e61a83586c06f9f702640db14 -Author: Gail Badner -Date: Thu Dec 8 12:22:45 2016 -0800 - - HHH-11241 : Missing column when executing HQL and criteria query with secondary table - -commit 3906816ee2625987796feb587ca374a55c3374ae -Author: Steve Ebersole -Date: Mon Dec 19 16:35:48 2016 -0600 - - HHH-11274 - EntityManagerFactoryImpl.getIdentifier uses deprecated version of getIdentifier - -commit 8002595e86486a3e9dff67212dbb0a30955794b1 -Author: Chris Cranford -Date: Wed Dec 14 16:07:26 2016 -0500 - - HHH-7940 - Remove unnecessary test case output. - -commit 8db194e8a6121d79a82c6fa3b1e10671b6144056 -Author: Chris Cranford -Date: Wed Dec 14 15:26:33 2016 -0500 - - HHH-7940 - Fix NullPointerException when using IndexColumn/OrderColumn without AuditMappedBy. - -commit 94f2401b3cc81c630d563ca06d2bc43b91e92e42 -Author: Chris Cranford -Date: Wed Dec 14 15:25:51 2016 -0500 - - HHH-7940 - Added test cases. - -commit a2781e6654a940ba581a825bb165da0eb05092b2 -Author: Christian Beikov -Date: Wed Dec 14 22:32:18 2016 +0100 - - Fix for HHH-11340 - -commit 7dc7fbe27f57d57a276f879ddc83c3ff75269199 -Author: Christian Beikov -Date: Wed Dec 14 21:44:02 2016 +0100 - - Testcase for HHH-11340 - -commit 087729c0231c03c8628a1047a0f471daaa8fc40e -Author: Chris Cranford -Date: Fri Dec 16 12:52:50 2016 -0500 - - HHH-11324 - Fix LimitHandler parsing of subqueries in the select clause for SQLServer2005Dialect. - -commit db1dfd6908e9c1a9840467a8758eafde68477dbe -Author: Chris Cranford -Date: Fri Dec 16 12:51:22 2016 -0500 - - HHH-11324 - Added test cases. - -commit 1304541d94d0794044d2ead7f0b63e88595956fc -Author: Chris Cranford -Date: Fri Dec 16 12:50:24 2016 -0500 - - HHH-11084 - Fix invalid SQL used in test cases. - -commit 54f3409b4148c28a82c5a5849d802086e8aaeeda -Author: Gail Badner -Date: Wed Dec 14 23:16:25 2016 -0800 - - HHH-11328 : Persist of transient entity in derived ID that is already in merge process throws javax.persistence.EntityExistsException - -commit 9976edc8538fcb86ed2fabc281d7ad181b1ebd39 -Author: Andrea Boriero -Date: Wed Dec 14 11:33:17 2016 +0000 - - HHH-11183 - Mixed line endings in schema creation script - -commit b2df137ed6ea113176163d702e7bd0b0f0ea3780 -Author: stasal -Date: Wed Dec 14 14:50:44 2016 +0700 - - HHH-11337 - Incorrect SQL generated when use both left join with unrelated entity and implicit join to another entity in select-clause - -commit f62d0d448c6c88acbdbbb8561aa65150428e94bf -Author: leonliao -Date: Wed Dec 7 15:26:57 2016 +0800 - - HHH-11319 - The dirtyPropertyNames content is NOT logged properly - -commit d3dd28e474b9ab6a4e95cc680dcd0a10908c73a6 -Author: Vlad Mihalcea -Date: Thu Nov 24 11:26:56 2016 +0200 - - HHH-11338 - Apply HHH-11194 fix to Dialect subclasses - -commit 10972ffe30b9a3b205ae2071d17dc77f822319f2 -Author: Craig Andrews -Date: Mon Nov 21 11:00:53 2016 -0500 - - HHH-11265 - Improve potential JCacheRegionFactory subclassing - - Add protected `getCacheManager()` and `getCacheProvider()` methods that subclasses can override. - Change fields and methods that would be useful to subclasses from package/private scope to protected. - -commit 0bd7b8eac16e6966dea81b8a5991e052192a6af2 -Author: Vlad Mihalcea -Date: Wed Dec 14 09:54:33 2016 +0200 - - HHH-4959 - Concurrent HQL parsing blocks on ReflectHelper.classForName() - - Exclude JPQL and Criteria API aliases when searching for a Java constant value - -commit 159bc99a36d86988b61b88ba91eec82cac044e1c -Author: Rafael Winterhalter -Date: Thu Dec 8 15:39:32 2016 +0100 - - HHH-11321: fixes resolution of class names via build plugins - -commit e10d87085d6fb0eec6bf6252ae11ea1c88741b50 -Author: Jan Martiska -Date: Mon Dec 12 16:43:36 2016 +0100 - - HHH-11335 skip ByteArrayIdTest, PrimitiveByteArrayIdTest on Oracle - -commit be39577188faf42841402361a8cb1de111b1343e -Author: Jan Martiska -Date: Mon Dec 12 13:36:55 2016 +0100 - - HHH-11332 skip some tests from QueryAndSQLTest and QueryTest on Sybase - -commit c393853308cf3a7564e71b7ff92df718c7f6af70 -Author: Jan Martiska -Date: Mon Dec 12 12:51:54 2016 +0100 - - HHH-11331 fix SQLLoaderTest on DB2 - -commit 87fe30b83b0486265aa354c057b888d4903c01ed -Author: Gail Badner -Date: Mon Dec 12 19:16:14 2016 -0800 - - HHH-11330 : Skip IdentifierGeneratorWithNaturalIdCacheTest on dialects that do not support identity columns - -commit b4a9be0adc76003d887f33fe3c55106b729dc3fc -Author: Gail Badner -Date: Mon Dec 12 16:08:24 2016 -0800 - - HHH-11329 fix tests using too long identifiers - -commit a4cf28207073469a5bfc14f7202ae5036cf93024 -Author: Jan Martiska -Date: Mon Dec 12 10:13:48 2016 +0100 - - HHH-11329 fix tests using too long identifiers - -commit 916a93ada52b9518c662b5bfccbb65beb3f9db68 -Author: Craig Andrews -Date: Fri Dec 2 12:43:39 2016 -0500 - - HHH-11293 - Consider enhanced entities with collections as being not unequivocally non-dirty - -commit 67f7be9a8049a58fbae34e6f4ecedbd5e72880a5 -Author: Craig Andrews -Date: Tue Nov 29 23:17:58 2016 -0500 - - HHH-11288 - Execution project artifacts are always empty, so dependencies are never included - - Get artifacts from project, not executionProject - -commit f7bb312f90164c08d775bcddd70af0b6afe78cee -Author: Craig Andrews -Date: Mon Dec 5 11:58:11 2016 -0500 - - HHH-11307 - Throw a sensible exception if the Enhancer cannot find the .class file - -commit 59870d0a1441930c3ee1e31a373c8df2bf412bff -Author: Chris Cranford -Date: Sun Dec 4 15:07:55 2016 -0500 - - HHH-7949 - Prevent lazy loading collections for bidirectional associations where not modified when withModifiedFlag is used. - -commit 1081c02c6b46e3820ad57ba8b306d6e1e8dfed5c -Author: Chris Cranford -Date: Sun Dec 4 15:07:18 2016 -0500 - - HHH-7949 - Added test case. - -commit b0f6f77d74b3b7fd538c6dc81476343a771da319 -Author: Craig Andrews -Date: Tue Nov 29 22:47:14 2016 -0500 - - HHH-11287 Include requiresDependencyResolution in the Maven plugin descriptor - -commit 1a36ff0b3e831636bd5b2c2df252f19f3bd2d0c5 -Author: Craig Andrews -Date: Wed Nov 30 14:16:13 2016 -0500 - - HHH-11294 - NPE in org.hibernate.jpa.internal.util.PersistenceUtilHelper.isInitialized(PersistentAttributeInterceptable) - -commit f4f50aa5c80f3d5669e02c77f84c1e005c79f3c3 -Author: Radim Vansa -Date: Tue Nov 29 17:38:09 2016 +0100 - - HHH-11271 Disable testContestedPutFromLoad because of short timeout - -commit 5f8db1066d46d8dc63de2434bd947c85933e7b12 -Author: Craig Andrews -Date: Tue Nov 29 12:20:12 2016 -0500 - - HHH-11282 - Support m2e/Eclipse integration in hibernate-enhance-maven-plugin - -commit cff4ea1ce63003db005fb5f528e37ca2ca7f549a -Author: Jan Martiska -Date: Thu Dec 1 11:19:04 2016 +0100 - - HHH-11295 - Some improvements to EntityJoinTest - -commit a36912050462f5d8f0853407cb90ec338ecd2929 -Author: Jan Martiska -Date: Wed Dec 7 10:48:51 2016 +0100 - - HHH-11315 - EnhancerTest fails on Oracle databases - -commit ed804d500e0cc95ebf858684d7116df95f9c5d7f -Author: Radim Vansa -Date: Mon Dec 5 11:38:43 2016 +0100 - - HHH-11318 - Fix Infinispan Javadoc documentation typos - - Revert after/before -> afterQuery/beforeQuery in documentation - -commit eaf5b10cf16b0ada04d4f3db27bfd0d07fbe2717 -Author: Jan Martiska -Date: Wed Dec 7 09:53:12 2016 +0100 - - HHH-11314 - BasicHibernateAnnotationsTest.testInheritFiltersFromMappedSuperclass fails on MS SQL Server - -commit d5538fc63bc396910020bdfd1d2bfc76722b9d92 -Author: opporancisis -Date: Sat Dec 3 19:22:29 2016 +0300 - - HHH-11317 - Several typos and style fixes in documentation - -commit fc7f0fca73757a5587c70854335c3b642d0e3139 -Author: Andrea Boriero -Date: Mon Dec 5 21:20:45 2016 +0000 - - HHH-11305 - @OneToOne association, Nullable check does is not skipped for @NotFound(action = NotFoundAction.IGNORE) - -commit e720b2872ab92708b14bc259190e88e4a16739ed -Author: Andrea Boriero -Date: Mon Dec 5 16:29:31 2016 +0000 - - HHH-11257 - Connection leak when SQLGrammarException is thrown - -commit b1c7615904e7dd3c03bbe77af8bda2fbce6a3624 -Author: Vlad Mihalcea -Date: Tue Dec 6 08:10:52 2016 +0200 - - HHH-4313 - ConcurrentModificationException when collection of embeddable contains a collection - - Throw exception when the JPA rule about nesting any collections from inside an @ElementCollection - -commit 4dea338fb67117062d1d4efcb14e5d298f2dd7c7 -Author: Vlad Mihalcea -Date: Tue Dec 6 14:44:40 2016 +0200 - - HHH-11308 - Bump C3P0 version up to support JDBC 4.2 - -commit ab9016306b5241d0064bb4ec761211cfbfdda759 -Author: Vlad Mihalcea -Date: Mon Dec 5 17:30:28 2016 +0200 - - HHH-11186 - Add examples for all Hibernate annotations - - Document more annotations: - - - @LazyCollection - -commit f8d366e749fa07ce9080f16b7628b7eca02d12bc -Author: Vlad Mihalcea -Date: Mon Dec 5 11:07:55 2016 +0200 - - HHH-11302 - One-To-Many in a Embeddable throw ConcurrentModificationException - - Add @Ignore annotation because the test was failing during @Before phase execution - -commit 3116716bff18734258b690086f899d26c377de35 -Author: Vlad Mihalcea -Date: Mon Dec 5 08:25:57 2016 +0200 - - HHH-11302 - One-To-Many in a Embeddable throw ConcurrentModificationException - - Add test for issue - -commit 2f2debb130ef6b368847274b0a4bad69a3026143 -Author: Vlad Mihalcea -Date: Fri Dec 2 15:53:27 2016 +0200 - - HHH-11186 - Add examples for all Hibernate annotations - - Document more annotations: - - - @JoinColumnOrFormula - -commit c83efda49bd2d4a8279557e01ec55e38faa0c2ad -Author: Vlad Mihalcea -Date: Fri Dec 2 13:28:18 2016 +0200 - - HHH-11186 - Add examples for all Hibernate annotations - - Document more annotations: - - - @JoinFormula - -commit 0ab2992a9ac1483fc526018b1e0c3129d4c89ca9 -Author: Steve Ebersole -Date: Thu Dec 1 09:48:43 2016 -0600 - - HHH-11296 - Incorrect handling of NCLOB streaming - -commit 37b2ffc5609990a4165ed925d91013403f875dfa -Author: Vlad Mihalcea -Date: Wed Nov 30 17:47:35 2016 +0200 - - HHH-11186 - Add examples for all Hibernate annotations - - Document more annotations: - - - @GenericGenerator - -commit 8009af3f9ba4a971653fce7987ee0d9489154ce6 -Author: Vlad Mihalcea -Date: Wed Nov 30 13:02:41 2016 +0200 - - HHH-11186 - Add examples for all Hibernate annotations - - Document more annotations: - - - @GeneratorType - -commit 6a69f10f46d0c89fa24e7844be54b82f1db59a7b -Author: Vlad Mihalcea -Date: Mon Nov 28 12:19:21 2016 +0200 - - HHH-11186 - Add examples for all Hibernate annotations - - Document more annotations: - - - @Generated - -commit ac22294bb39b314e1c076752a92932cf84b0a981 -Author: Owen Farrell -Date: Fri Oct 14 06:04:06 2016 -0400 - - HHH-10465 - Loss of precision in temporal JavaTypeDescriptor implementations - -commit 886ea603dec4df7dad6a28fac2e6f71efaae18a0 -Author: Chris Cranford -Date: Mon Nov 28 12:27:53 2016 -0500 - - Fix unused import. - -commit 630d4f96b4ebae77368ecf5de409229ee10efdfa -Author: Chris Cranford -Date: Mon Nov 28 12:25:50 2016 -0500 - - HHH-11277 - Fix checkstyle error. - -commit e75e2d78bd8d8a2d67893abc2bd29b8684540501 -Author: Chris Cranford -Date: Mon Nov 28 11:48:15 2016 -0500 - - HHH-11277 - Fix checkstyle error. - -commit 46727d5af3cbbb0fad12b237628bbad6371887ae -Author: Christian Beikov -Date: Thu Nov 17 14:02:50 2016 +0100 - - Wrong handling of parameter for TOP clause fixed - - I encountered this because the dialect resolver apparently couldn't figure out the dialect for SQL-Server 2016. - -commit 26c0b5b5cba59cc64bf6b8e357be0bd80dc5f688 -Author: Vlad Mihalcea -Date: Mon Nov 28 16:47:49 2016 +0200 - - Fix test broken on some machines - -commit 8f3d58601d99446032a2461df9271d1c015082cb -Author: Vlad Mihalcea -Date: Fri Nov 25 15:50:02 2016 +0200 - - HHH-11186 - Add examples for all Hibernate annotations - - Document more annotations: - - - @FilterJoinTable - -commit 91ebadb2091b9880164a9ed8fcbe8cc6b8e9e12f -Author: Andrea Boriero -Date: Thu Nov 24 15:07:06 2016 +0000 - - 5.2.5 - -commit 1053f16618ab7dd1f0b35fd78c1ebc078136e51d (tag: 5.2.5) -Author: Andrea Boriero -Date: Thu Nov 24 12:34:38 2016 +0000 - - 5.2.5 - -commit bba75c58773208685812fbc64b1b658415039481 -Author: Cédric Tabin -Date: Wed Nov 23 23:51:30 2016 +0100 - - Fix the property name to respect the other related classLoader properties declaration - -commit b38a9f40ac2bc8ccf16b05af09cb96988ea93fb2 -Author: Cédric Tabin -Date: Wed Nov 23 23:49:35 2016 +0100 - - Usage of the Locale.ROOT constant to convert the hibernate.classloading.tccl_lookup_precedence property correctly - -commit 6cae4adabb02f42d0b753b237ba0a9432f8a5337 -Author: Cédric Tabin -Date: Wed Nov 23 23:43:17 2016 +0100 - - Improvement of the AggregatedClassLoader implementation to use one iterator for each type of TcclLookupPrecedence - -commit 346941dcb7c745b3a59598ef9042890ac4a5ce84 -Author: Cédric Tabin -Date: Wed Nov 23 23:13:39 2016 +0100 - - The enum TcclLookupPrecedence is a single public enum, detached from the ClassLoaderService interface because it is only implementation-specific - -commit c2330c29f651d370ca0b8d205a79af7f741f75ec -Author: Cédric Tabin -Date: Wed Nov 23 21:33:46 2016 +0100 - - The enum TCCLLookupBehavior has been renamed to TcclLookupPrecedence and is not mutable during runtime. - -commit b31d080a57cc2bd93783e20ba8ad2199a6d39d88 -Author: Cédric Tabin -Date: Wed Nov 23 21:01:18 2016 +0100 - - Setting hibernate.classloader.tccl_lookup renamed to hibernate.classloader.tccl_lookup_precedence to better reflect its purpose - -commit 726305f33ef11f2f3b6b2a08352da3cc392df5da -Author: Cédric Tabin -Date: Sat Nov 19 20:18:54 2016 +0100 - - New setting "hibernate.classloader.tccl_lookup" to allow the configuration of the thread context classloader lookup. - The bootstrap classloader context is not stored anymore in the ClassLoaderService because on Glassfish 4.1.1, the former - will be closed after bootstrap, causing huge warning and stacktraces occurs in the log each time a HQL query has to - be compiled. - - See ticket HHH-11245 for details. - -commit b0fad884f0fde46e2376f3edf003f267f1db90e3 -Author: Andrea Boriero -Date: Thu Nov 24 00:06:13 2016 +0000 - - HHH-11269 - Fix JPA & JTA - Error during managed flush [Session/EntityManager is closed] on flush-time cascades - -commit f8d2cbdcbaa7e2359720831eedf334c2f910e20d -Author: Andrea Boriero -Date: Thu Nov 24 00:05:32 2016 +0000 - - HHH-11269 - Add test for issue - -commit aa3f9138577ee246789a172c75a1ec9f495a7e65 -Author: Chris Cranford -Date: Wed Nov 23 13:06:37 2016 -0500 - - HHH-11194 - Add setting to allow enabling legacy 4.x LimitHandler behavior (removed delegation). - - Fix broken test on SQL Server and propagate the legacy behavior even when we extend the SQL Server of the Ingres base Dialects - -commit 9219c67da692bcf83db5bfff4833e4a1b26c84ed -Author: Steve Ebersole -Date: Wed Nov 23 09:53:06 2016 -0600 - - HHH-11248 - Warn user when multiple persistence-units use the same name - -commit c16a22b0fc0c22691423af1b84c3fc8439f22c1f -Author: Andrea Boriero -Date: Wed Nov 23 15:04:57 2016 +0000 - - HHH-11258 - Fix checkStyle error - -commit cc5a13a3f007fad6067945e0bb011d902ba9b6f4 -Author: Andrea Boriero -Date: Mon Nov 14 12:01:55 2016 +0000 - - HHH-11217 - SessionImpl.refresh() throws IllegalArgumentException, 'not an Entity' when using custom entity name - -commit f9a408815e7c2ec4ec8ce34354f31292baafe465 -Author: Andrea Boriero -Date: Mon Nov 14 11:41:27 2016 +0000 - - HHH-11217 - Add test for issue - -commit aa5f89326705fdb64ca8de2478c08006d11a974b -Author: Andrea Boriero -Date: Tue Nov 22 23:20:51 2016 +0000 - - HHH-11216 - @ElementCollection for enumerations is failing when enabling insert ordering - -commit 801974fa4c8abb2865a4aeff525fc29638e10f72 -Author: Christian Beikov -Date: Fri Nov 18 10:25:17 2016 +0100 - - Fix for HHH-11258 - -commit 4d076111a386581e9581a37c745ec98d4401b656 -Author: Christian Beikov -Date: Fri Nov 18 10:25:06 2016 +0100 - - Test case for HHH-11258 - -commit 45a65daf0282749f041fb3c98fc8da96af4c2432 -Author: Radim Vansa -Date: Wed Nov 23 11:02:33 2016 +0100 - - HHH-11083 Fix compilation failures in hibernate-jcache - -commit 30974c1cd48646cb1fa6b584143687f0002a54d7 -Author: Gail Badner -Date: Tue Nov 22 23:29:07 2016 -0800 - - HHH-11083 : Change references to "OldCacheKeyImplementation" to "CacheKeyImplementation" in MultTenancyTest; also override addSettings to use DefaultCacheKeysFactory - -commit 61ca5c220b1a82b81201a8b69420ffef839326cf -Author: Gail Badner -Date: Tue Nov 22 22:50:23 2016 -0800 - - HHH-11083 : Change references to "OldCacheKeyImplementation" to "CacheKeyImplementation" in CacheKeysFactoryTest - -commit 60d420b0113673437f756dda117801835b4ba43d -Author: Gail Badner -Date: Tue Nov 22 22:31:26 2016 -0800 - - HHH-11083 : clarify that hibernate.cache.keys_factory is only supported when using Infinispan - -commit 6d8f93c103415ae9e5d6d6dc25974fb92c55e845 -Author: Radim Vansa -Date: Tue Nov 22 12:59:40 2016 +0100 - - Document `hibernate.cache.keys_factory` - -commit bf08752d3ab483d9413a434c5b3abba9160520d6 -Author: Radim Vansa -Date: Tue Nov 22 13:01:53 2016 +0100 - - HHH-11083 Un-deprecate OldCacheKeyImplementation and OldNaturalCacheKey - -commit 9c376a39f9d674557cdfbbadd475b08b900302b1 -Author: Radim Vansa -Date: Fri Nov 11 16:26:09 2016 -0500 - - HHH-11083 WrongClassException using Infinispan and sharing cache regions - - * DefaultCacheKeysFactory implements CacheKeysFactory, therefore it can be used in hibernate.cache.keys_factory - * Use DefaultCacheKeysFactory by default - * Add "default" and "simple" as short names for those factories - -commit b1a9676146bb073cec07a44d634a1f20b763ccb7 -Author: Chris Cranford -Date: Tue Nov 22 23:17:11 2016 -0500 - - HHH-11215 - Fix NullPointerException when collection of embeddables reference an unaudited entity. - -commit 1e030b2dc4bdc5684bb19e4c34837a23decbd703 -Author: Chris Cranford -Date: Tue Nov 22 23:16:28 2016 -0500 - - HHH-11215 - Added test case. - -commit 468ed1b60914d8f1021e9535cb69d8dc4298b5d6 -Author: Chris Cranford -Date: Wed Oct 26 11:09:48 2016 -0400 - - HHH-11205 - Fixed nationalization support when field type is char. - -commit 1b8d94ddba8f38a812db65ddf7ba44eced45c6c9 -Author: Chris Cranford -Date: Wed Oct 26 11:09:20 2016 -0400 - - HHH-11205 - Added test case. - -commit 180f16dbae8c762c6491ab8cfa1d1343ddc1a1db -Author: Radim Vansa -Date: Tue Nov 22 09:24:41 2016 +0100 - - HHH-11267 Fix JBossStandaloneJtaExampleTest - -commit d4f240b4396c07afff8530e8e9ec442a2d5816d7 -Author: Radim Vansa -Date: Mon Nov 21 17:48:35 2016 +0100 - - HHH-11267 Fix Entity- and CollectionRegionAccessStrategyTest - -commit b976e85f06c18adaddedb76bb6f5161d82524577 -Author: Radim Vansa -Date: Mon Nov 21 16:57:21 2016 +0100 - - HHH-11267 Fix SessionRefreshTest - - * Refactor common code from NonTx- and TxInvalidationInterceptor to common base - -commit 6aaaf37d6f962b6d2afc810ead3676192748725f -Author: Radim Vansa -Date: Mon Nov 21 14:12:38 2016 +0100 - - HHH-11267 Fix BulkOperationsTest and ReadWriteTest - -commit 4508a9e654432d21585c8d6312daafc65e4a9a23 -Author: Radim Vansa -Date: Mon Nov 21 13:22:05 2016 +0100 - - HHH-11267 Fix TombstoneTest - -commit 0728f7b35ea13e5482976894bb69fadd07e20d58 -Author: Radim Vansa -Date: Mon Nov 21 13:22:30 2016 +0100 - - HHH-11268 Changes required after upgrading to Infinispan to 8.2 - -commit 865d5398c203e3772be489fb170dd69dc2beabda -Author: Radim Vansa -Date: Mon Nov 14 14:49:04 2016 +0100 - - HHH-11226 Hibernate cache throws NullPointerException during wildfly app server startup - -commit a21c0865372ec6db933702c4f1ab3067a0abb12d -Author: Paul Ferraro -Date: Wed Nov 16 18:02:32 2016 -0500 - - HHH-11254 Timestamps cache fails validation if eviction strategy = MANUAL - -commit c308bcbe7d06fa16f823cdffbb9889e76f22ecf9 -Author: Sanne Grinovero -Date: Mon Nov 21 17:19:30 2016 +0000 - - HHH-11271 Fix hidden failure in InfinispanRegionFactoryTestCase#testTimestampValidation - -commit 66b46c1efe9bd3fcb4f53caef24128b7e38bd642 -Author: Sanne Grinovero -Date: Mon Nov 21 13:48:42 2016 +0000 - - HHH-11270 Upgrade to Infinispan 8.2.5.Final - -commit 3e52340a927477a8c98becf8a8032a9a38425dde -Author: Gail Badner -Date: Fri Nov 18 17:31:32 2016 -0800 - - HHH-11241 : test case (failing tests marked with FailureExpected) - -commit 4e5648dc8a41c323e1bb65b334699c0158ead85f -Author: Vlad Mihalcea -Date: Fri Nov 18 17:39:14 2016 +0200 - - SQL Server Driver is now on Maven Central - -commit cc1730fb01f4e8e60cb38e851fec9f02bf99227f -Author: Vlad Mihalcea -Date: Thu Nov 17 17:57:24 2016 +0200 - - HHH-11186 - Add examples for all Hibernate annotations - - Document more annotations: - - - @Fetch along with SELECT, SUBSELECT, and JOIN FetchMode - -commit de346827d0f914c5bb9ba82c872a92b1cae93d52 -Author: Brett Meyer -Date: Thu Nov 17 13:58:13 2016 -0500 - - HHH-11152 add bytebuddy to osgi testing-bundles.xml, explicitly import javassist in envers (temporarily) - -commit af78f17eb8ead6659f7be9149ecee3677ce60e52 -Author: Chris Cranford -Date: Mon Oct 31 12:29:17 2016 -0400 - - HHH-11214 - Fix validity audit strategy auditing nested collections with null property values. - -commit c3c08728bce7571e59e9b5a067b25f6e4ebde13a -Author: Chris Cranford -Date: Mon Oct 31 12:28:41 2016 -0400 - - HHH-11214 - Add test case. - -commit 74a789e617a087bfc8cdb79654810106a027ee09 -Author: Vlad Mihalcea -Date: Thu Nov 17 15:27:27 2016 +0200 - - HHH-11255 - NaturalId mapping fails when using a composite natural identifier - - Add support for adding unique constraints to composite entity properties, like when using a @NaturalId with an @Embedded property - -commit 95b1e27902b287ac26457e469e624a749eaa6a64 -Author: Chris Cranford -Date: Wed Nov 16 14:57:32 2016 -0500 - - HHH-11250 - Improved exception message for invalid filter parameter name format. - -commit 7e160d7b49dfbde419623474fc5924affe6930ef -Author: Chris Cranford -Date: Wed Nov 16 13:09:14 2016 -0500 - - HHH-11250 - Fixed NullPointerException when defined filter name contains a dot. - -commit 1d294cb23d61106072d0d9bdfe85bf6c2e9c617a -Author: Chris Cranford -Date: Wed Nov 16 13:06:20 2016 -0500 - - HHH-11250 - Added test case. - -commit 2e49586adc2fdd4f5da6b206de076069b6d71723 -Author: Steve Ebersole -Date: Wed Nov 16 13:46:24 2016 -0600 - - HHH-11152 - Byte Buddy BytecodeProvider - -commit ba3359fe62be258638554fe23a2a0a6a50f7e732 -Author: Rafael Winterhalter -Date: Tue Oct 4 22:43:27 2016 +0200 - - HHH-11152: Added BytecodeProvider based on Byte Buddy - -commit 31a60b84c67ab2fa233627dda68f6e20cd22bd7f -Author: Steve Ebersole -Date: Wed Nov 16 11:00:17 2016 -0600 - - test for https://forum.hibernate.org/viewtopic.php?f=1&t=1043787&p=2490859#p2490859 (jira coming) - -commit 4960da8471021de26f96ece7d9d462308eaffe3a -Author: Vlad Mihalcea -Date: Tue Nov 15 18:41:35 2016 +0200 - - HHH-11186 - Add examples for all Hibernate annotations - - Document more annotations: - - - @DynamicInsert - - @DynamicUpdate - - OptimisticLockType - - @SelectBeforeUpdate - -commit d215abbaea677e613ee86961f2409f5fcab4a57e -Author: Vlad Mihalcea -Date: Tue Nov 8 14:31:45 2016 +0200 - - HHH-11233 - JPA SQL function with no arguments can only be called if we provide a comma - -commit 7a7bfa88cb94298a52b402656777e5bd311fb1af -Author: Livier -Date: Mon Nov 14 12:30:47 2016 -0700 - - Modify link of pull requests to a valid URL - -commit a2c58aab2cacfc8c226e2d93bcb9a50075ae8fd7 -Author: Vlad Mihalcea -Date: Tue Nov 15 15:55:34 2016 +0200 - - HHH-11186 - Add examples for all Hibernate annotations - - Document more annotations: - - - @ColumnDefault - - @CreationTimestamp - -commit 6a6e0f2f6d52700f1053afe2dbd320c15d788616 -Author: Vlad Mihalcea -Date: Mon Nov 14 13:35:29 2016 +0200 - - HHH-11186 - Add examples for all Hibernate annotations - - Document more annotations: - - - @CollectionType - -commit b14e69089fa8f6eb26599873e462338fa7f00fa7 -Author: Andrea Boriero -Date: Fri Nov 11 16:40:51 2016 +0000 - - HHH-11232 - Session is closed bug with Envers 5.2.x + JTA - -commit c17c1b5aaec9275f4ffaa0a45b884b59647cb4ec -Author: Chris Cranford -Date: Mon Nov 7 12:20:47 2016 -0500 - - HHH-11232 - Added test case. - -commit 78f8619a7dfdee618858957dfb1974342fa61754 -Author: Vlad Mihalcea -Date: Thu Nov 10 18:44:13 2016 +0200 - - HHH-11186 - Add examples for all Hibernate annotations - - Document more annotations: - - - @BatchSize - - @Check - -commit 0a2bb3c811806d569790cc70f653736d56dccba8 -Author: Steve Ebersole -Date: Thu Nov 10 12:21:19 2016 -0600 - - HHH-11155 - Lazy properties are not updated if not all lazy properties (e.g. collections) are initialized - -commit 433d276aadef99cfeae250ef84a9ad034ce19175 -Author: Sanne Grinovero -Date: Thu Nov 10 14:12:58 2016 +0000 - - HHH-11238 Upgrade JBoss Logging Tools to 2.0.1.Final - -commit 61bb51a1e71c0a847adadd2f76ac83d7bcd950ee -Author: Sanne Grinovero -Date: Thu Nov 10 14:12:39 2016 +0000 - - HHH-11239 Upgrade Jandex to version 2.0.3.Final - -commit bb52eb143ea050a8132e0289c2d292e10e714185 -Author: Sanne Grinovero -Date: Thu Nov 10 14:11:40 2016 +0000 - - HHH-11240 Upgrade Infinispan to version 8.2.4.Final - -commit 672d8fe4ab86599117f2848ded0d9a38985e1780 -Author: Vlad Mihalcea -Date: Thu Nov 10 12:15:00 2016 +0200 - - HHH-10127 - Allow indication that converted types are immutable - -commit f2ba4b9ceee0d3c7e5d6ead89e2819bb53d0130c -Author: Steve Ebersole -Date: Wed Nov 9 22:28:35 2016 -0600 - - HHH-11155 - Lazy properties are not updated if not all lazy properties (e.g. collections) are initialized - -commit e17d2f01dc27380fc70bf47a3d0ca3bbd480edcb -Author: Gail Badner -Date: Wed Nov 9 20:15:54 2016 -0800 - - HHH-11155 : test case - -commit 3c23d45236b9a540396fc2c630ad7872747e4578 -Author: Steve Ebersole -Date: Wed Nov 9 11:38:19 2016 -0600 - - HHH-11235 - split checkstyles into fatal and non-fatal configs - -commit 737abc503f2777aff89ed14eb7f278f271e98618 -Author: Steve Ebersole -Date: Wed Nov 9 11:34:51 2016 -0600 - - HHH-11235 - split checkstyles into fatal and non-fatal configs - -commit 02b234a44fd01f363f9b07d12f9f9a07b6c158af -Author: Vlad Mihalcea -Date: Wed Nov 9 15:50:32 2016 +0200 - - Check how Criteria API behaves with literals - -commit 080d65de99027f52bf08b357de19bb16097bfcea -Author: Christian Beikov -Date: Tue Nov 8 09:20:31 2016 +0100 - - HHH-11230 - Aggregate on (mappedBy) joined column produces invalid query - -commit 36d656399810493052b778a1b4aec5a4ce3fcef9 -Author: Steve Ebersole -Date: Tue Nov 8 18:53:48 2016 -0600 - - HHH-11220 - Auto-detect SQL Server 2016 when the major version is 13 - -commit a356a08d4b29f882433ed5ec36370c41c047cb81 -Author: Steve Ebersole -Date: Tue Nov 8 13:23:37 2016 -0600 - - HHH-11225 - Add CriteriaBuilder overloads for methods dealing with Collection to also deal with Map - -commit 66e1ee38513f408d6d143933d947ef062e99ed49 -Author: Vlad Mihalcea -Date: Fri Nov 4 12:25:46 2016 +0200 - - HHH-11206 - Document all configurations that are not present in AvailableSettings - -commit b828db2261c25d7f41a474cf86cac4779c6d2508 -Author: Vlad Mihalcea -Date: Thu Nov 3 12:30:44 2016 +0200 - - HHH-3674 - Expose SchemaUpdate#haltOnError as a configuration property - -commit 6fcab0cb54381bb632fad6323a9d7905f12b1200 -Author: Vlad Mihalcea -Date: Thu Nov 3 14:31:09 2016 +0200 - - HHH-5467 - API documentation for @Fetch(SUBSELECT) is ambiguous. - -commit 144e34e24922676954bae4aff1655d388dfc7bc3 -Author: Vlad Mihalcea -Date: Thu Nov 3 14:28:57 2016 +0200 - - HHH-2705 - optimistic-lock = "dirty" does not support detached objects - -commit 9bbf02536a9760458801d427380db32b0c5edd43 -Author: Vlad Mihalcea -Date: Thu Nov 3 13:37:42 2016 +0200 - - HHH-5467 - API documentation for @Fetch(SUBSELECT) is ambiguous. - -commit 02f46cb61fd19a54788b879b46dbb32fc31783d4 -Author: Vlad Mihalcea -Date: Wed Nov 2 17:46:18 2016 +0200 - - HHH-4465 - Document @Entity.name != Hibernate entity name - -commit e26df5dc2e8e19bde5edfe873fc407e2f3ad824e -Author: Vlad Mihalcea -Date: Wed Nov 2 16:28:07 2016 +0200 - - HHH-6941 - Erroneous Javadoc for getReferencedProperty, getReferenceablePropertyIterator - -commit dd4046e3a62b11198054791bf679b0f1a26a2d29 -Author: Vlad Mihalcea -Date: Wed Nov 2 12:55:16 2016 +0200 - - HHH-11221 - Add more authors to the User Guide header - -commit 531ff6e9448723bc570a64f5b14ab8195cb86d7c -Author: Vlad Mihalcea -Date: Wed Nov 2 12:25:30 2016 +0200 - - HHH-11034 - Query.stream() Javadoc should specify whether the resulting Stream contains resources - -commit 52c79e1d3c3f4e16b67cad2c593c6d371fbdab5f -Author: Karel Maesen -Date: Tue Nov 1 17:56:21 2016 +0100 - - HHH-10211 - Fix SpatialFunctionRegistry interface - -commit c3b1a399448d75b25f6b594fa7d620a110259d46 -Author: Karel Maesen -Date: Tue Nov 1 17:51:13 2016 +0100 - - HHH-10211 - Fix serialization of Postgis dialects - -commit d1f22d490c421b1e15e6f2031aeea30df4b44b25 -Author: Karel Maesen -Date: Tue Nov 1 17:05:53 2016 +0100 - - HHH-10211 - Improves Javadoc comments - -commit 55ed5faa3bcb770ff885153545b4ecd7277e6a7d -Author: Karel Maesen -Date: Tue Nov 1 16:58:25 2016 +0100 - - HHH-10211 - Checkstyle fixes - -commit 70d55987f823e563357ceff00cd48ac9fc7c879a -Author: Karel Maesen -Date: Tue Nov 1 16:51:32 2016 +0100 - - HHH-10211 - Postgis Dialects for all PostgreSQLDialect classes - -commit 6024520e08e14c76a70f81b078e14a864f98e7c9 -Author: Vlad Mihalcea -Date: Tue Nov 1 16:40:39 2016 +0200 - - HHH-11204 - Fix typo for all "occured" error message to occurred - -commit c0ddfbb3dfda4c0f41ae3c8c5d50c926428d232e -Author: Vlad Mihalcea -Date: Tue Nov 1 16:29:32 2016 +0200 - - HHH-9816 - Document exclude-unlisted-classes and hibernate.archive.autodetection in the manual - -commit 380b474dda833ff70e7c5c17a1a35cffe983cf11 -Author: Karel Maesen -Date: Mon Oct 31 20:26:46 2016 +0100 - - HHH-11198 - Fix checkstyle error - -commit 5629457aa8d563b0739a24ef2bea156000ae9cae -Author: Vlad Mihalcea -Date: Mon Oct 31 13:54:30 2016 +0200 - - HHH-2643 - Improve Session.refresh() Javdoc to clarify contract - - Instead of writing it in the JavaDocs, it's much more appropriate to document this behavior in the User Guide - -commit d126faa7d92725399a876005880db7816faefe0d -Author: Vlad Mihalcea -Date: Mon Oct 31 12:48:03 2016 +0200 - - HHH-2123 - clarification on the way interceptors and event system interact. - -commit a882a7bd54bce0dfc16025f891c2f33972577823 -Author: Karel Maesen -Date: Sat Oct 29 16:18:13 2016 +0200 - - HHH-11198 - Add Geometry cast to Postgis st_extent() function - -commit dbc7131155d3f227ad0770e0526a749eae28db0c -Author: Karel Maesen -Date: Sat Oct 29 14:46:35 2016 +0200 - - HHH-11197 - Fix WKT parsing error - -commit bed3d62f4d1e242da7dd2800be7c5b79b308e1de -Author: Vlad Mihalcea -Date: Fri Oct 28 09:51:50 2016 +0300 - - HHH-7424 - document HHH-2576 - -commit 87a3d191751d3bdc1499e40a4a7b8d0304e97238 -Author: Andrea Boriero -Date: Wed Oct 26 15:47:47 2016 +0100 - - 5.2.4 - -commit e6315be204b1f6e3472143641b7652486871dabc (tag: 5.2.4) -Author: Andrea Boriero -Date: Wed Oct 26 14:41:28 2016 +0100 - - 5.2.4 - -commit c1e209a6a7790c93665306e0f0848d1d74aba3bb -Author: Vlad Mihalcea -Date: Wed Oct 26 16:00:39 2016 +0300 - - HHH-11171 - Java 8 time types fail Externalization - - Restrict test execution to H2 only since it uses a DB-specific syntax - -commit e469a99c307a1e2b4c4bf30bde85367cc46223f9 -Author: Vlad Mihalcea -Date: Wed Oct 26 14:24:27 2016 +0300 - - HHH-9216 - Add documentation about merging multiple detached representations of the same entity - -commit bf2bc323f67214c629d5bc7c07c4c9bb03d4593d -Author: Andrea Boriero -Date: Tue Oct 25 18:37:11 2016 +0100 - - HHH-11188 - SessionImpl.refresh() throws IllegalArgumentException, 'Entity not managed' for detached instances when JPA bootstrapped - -commit 957ec3fa79427f3a3304bb5214c331cbc80f510d -Author: Martin Simka -Date: Mon Oct 24 16:55:23 2016 +0200 - - [HHH-11203] fix some minor test issues - -commit 8bd6cf6f6babde4db679426ce62dda496bac9b26 -Author: Vlad Mihalcea -Date: Tue Oct 25 17:41:23 2016 +0300 - - HHH-11174 - Document that XML file mappings can reside outside of JAR - -commit 0e2b2f11e7ea04adf848dc7aa945cecd5dc15702 -Author: Chris Cranford -Date: Mon Oct 3 09:30:28 2016 -0400 - - HHH-11145 - Fix limit handler to ignore regex search keywords that are quoted. - -commit dd14feac5ac7b2d348749bd6ed5996fc47b42dcc -Author: Nick -Date: Tue Oct 18 06:48:36 2016 +0300 - - HHH-11179 - NullPointerException on lazy load of non-existed entity outside transaction - -commit 7b263f86972f66f19acca01c3bd4ba3af8939692 -Author: Vlad Mihalcea -Date: Tue Oct 25 14:54:01 2016 +0300 - - HHH-10465 - Loss of precision in temporal JavaTypeDescriptor implementations - - Fix test to work on UTC-X timezones as well - -commit 3e5025ac1099e3def46cb2a177c2f96bd8d71c08 -Author: Andrea Boriero -Date: Mon Oct 17 23:24:24 2016 +0100 - - HHH-11177 - Duplicate queries during startup - -commit 7f5419ad74b5de8643be5111fea632f985c4ee00 -Author: Andrea Boriero -Date: Mon Oct 10 11:07:00 2016 +0200 - - HHH-11166 - JPA & JTA - java.lang.IllegalStateException: Session/EntityManager is closed when EntityManaer is closed with an active Transaction - -commit 68eb34960bbd7f38e8fbe52c5ea58c5a41af8e32 -Author: Chris Cranford -Date: Tue Oct 11 11:52:48 2016 -0400 - - HHH-11107 - Avoid creating a foreign key when a composite-id contains a many-to-one association for the envers schema. - -commit 501a1f4f9b0bb26b2869080cf59c6667c4067539 -Author: Chris Cranford -Date: Tue Oct 11 11:52:13 2016 -0400 - - HHH-11107 - Added test case. - -commit 50346775b001a31b1a7f50e19735840103eda154 -Author: Vlad Mihalcea -Date: Mon Oct 24 18:27:12 2016 +0300 - - HHH-10465 - Loss of precision in temporal JavaTypeDescriptor implementations - - Test to validate if the Timestamp time handles fraction of a second - -commit 877a05213cc6078400d6f9356bcb8e113e670651 -Author: Christian Beikov -Date: Mon Oct 24 16:14:11 2016 +0200 - - Fix failing WithClauseTest - -commit 4ec71e2621fc0c1119e4d8c7da83a5512d82bda2 -Author: Christian Beikov -Date: Fri Oct 21 20:18:43 2016 +0200 - - Add documentation about the property - -commit 556aa265c07b99b3d83d227ffe144567a8c00819 -Author: Christian Beikov -Date: Fri Oct 21 18:14:42 2016 +0200 - - Add property for disabling subquery join rewrites and handle mysql quoted identifiers - -commit 9e8fd60e26b5dd8904f1fd717050102baf5470aa -Author: Andrea Boriero -Date: Fri Oct 7 15:20:20 2016 +0200 - - HHH-11159 - JPA CriteriaUpdate, NnullLiteral causes IllegalArgumentException: Could not convert java type to Hibernate type - -commit 1c1fe2a9af476367a105ee24e4ba7b97b22f40c8 -Author: Andrea Boriero -Date: Fri Oct 7 15:17:49 2016 +0200 - - HHH-11159 - Add test for issue - -commit d02b95a572f28e356f11102728880ec792d732e7 -Author: Vlad Mihalcea -Date: Fri Oct 21 06:53:54 2016 +0300 - - HHH-11189 - Remove all links to external blog posts from User Guide - -commit b3151de647542b2aec248a40b23a3d45258551cc -Author: Andrea Boriero -Date: Wed Oct 19 22:56:52 2016 +0100 - - HHH-11182 - HQL subquery with constraint property in superclass does not join superclass table - -commit 38379a537aa0b7b62ae9fae40f079653ac864493 -Author: Gail Badner -Date: Wed Oct 19 00:00:59 2016 -0700 - - HHH-11182 - Add test for issue - -commit 3b196fb2e1cea0e4d76e646175ee71e5f9e466a3 -Author: Yordan Gigov -Date: Thu Oct 13 10:19:30 2016 +0300 - - HHH-11171 - Java 8 time types fail Externalization - -commit 2ecfd488b78d2db6c586ac15a5bb87a33ab202f2 -Author: Vlad Mihalcea -Date: Fri Oct 14 11:50:02 2016 +0300 - - HHH-7010 - Document mapping annotations - - List and describe all JPA and Hibernate.annotations - -commit 0439e855cc144de56b97f06b5d3cd9ebf640ed8b -Author: Andrea Boriero -Date: Thu Oct 20 10:52:28 2016 +0100 - - HHH-11184 - SessionFactoryDelegatingImpl.registerNamedSQLQueryDefinition call wrong delegate method - -commit 52fcd906cf01d80e39c1fa9451f2b0bfd2474ed6 -Author: Andrea Boriero -Date: Thu Oct 20 10:41:09 2016 +0100 - - HHH-11105 - Update Ehcache to 2.10.3 - -commit 5f61ee0b439f8edff79f93f307fff4219179e07e -Author: barreiro -Date: Wed Aug 17 18:27:01 2016 +0100 - - HHH-11050 - [bytecode enhancement] Add support for getters/setters through delegation - -commit 90ffcec3fa005be3211c9e2f512be7006baf524b -Author: barreiro -Date: Thu Aug 18 08:21:33 2016 +0100 - - HHH-11050 - [bytecode enhancement] Test case - -commit 2ff3fa16b167870802ac829be2ad58dc838f8431 -Author: Vlad Mihalcea -Date: Thu Oct 13 18:00:13 2016 +0300 - - HHH-11175 - Remove the Cartesian Product note from JOINED inheritance - -commit 95ac619bce1e98e98734f01de832204b13489b65 -Author: Vlad Mihalcea -Date: Thu Oct 13 14:34:35 2016 +0300 - - HHH-11066 - Documentation regarding the reason @Filter is not supported with @Cache for collections - -commit fc1a49b13bf898b6c599d12673603481afc3b7b6 -Author: Vlad Mihalcea -Date: Wed Oct 12 13:12:57 2016 +0300 - - HHH-5037 - Improve documentation for immutable/read-only entity and immutable collection functionality - -commit 416fe7e6a8037a7d464e58f5077ad106ed767375 -Author: Christian Beikov -Date: Thu Oct 6 19:56:55 2016 +0200 - - Fixed HHH-11157 and extended identifier handling - -commit 5f50e1e919276a39b466023045f0daf793e44cd7 -Author: Brian Peterson -Date: Tue Oct 4 10:04:43 2016 -0500 - - HHH-10489 : DB2400Dialect could use the same LimitHandler as DB2Dialect - HHH-11150 : DB2 on AS400 (DB2400 Dialect) fails to paginate. - - Leveraged code from the DB2 Dialect and placed in DB2400Dialect. This was then tested on an AS400 successfully. - -commit 0c8261b0ae499d8ecc4001892b4cb43539de195a -Author: Vlad Mihalcea -Date: Fri Sep 30 15:45:39 2016 +0300 - - HHH-9864 - foreign key violation with order_inserts=true and batches with mixed subclass entities - -commit 814ea97b85b6d66366beab5c7f8d3a065fdb428b -Author: Vlad Mihalcea -Date: Mon Oct 10 12:15:58 2016 +0300 - - HHH-11127 - Confused batch processing doc example - -commit 4dbef2fdf0909bc174f258131d71153aa4e40d13 -Author: Sanne Grinovero -Date: Fri Oct 7 14:38:47 2016 +0100 - - HHH-5152 typo in previous commit related to this issue - -commit 5ea187f0356e52400d85b1819e660ce1fe0e23c3 -Author: Vlad Mihalcea -Date: Thu Oct 6 15:14:09 2016 +0300 - - HHH-3771 - Best practice for equals implementation - -commit 0ba1d69d18bbc2abeb7c12aed2757ecad4b427ee -Author: Vlad Mihalcea -Date: Thu Oct 6 14:53:00 2016 +0300 - - HHH-5152 - Update Configuration chapter (chapter 3) to reflect Hibernate Annotations - -commit 66f5fd301cd07e008fa582896210481fad528f1f -Author: Vlad Mihalcea -Date: Thu Oct 6 12:03:12 2016 +0300 - - HHH-8512 - Hibernate documentation is not clear what Java/JDBC version is required - - Add system requirements in the Preface of the User Guide - -commit 705493d9e8d26ae29aa2298ec49b81eb463c4824 -Author: Vlad Mihalcea -Date: Wed Oct 5 17:23:19 2016 +0300 - - HHH-10243 - document package registration for Hibernate 5 - -commit dbfeb0bb5ce58fc960848e1af445cb37a6526181 -Author: johara -Date: Mon Oct 3 17:20:52 2016 +0100 - - HHH-11149 : Update plugin parameters for maven enhancer plugin - -commit 2eca52a3161e1c6c553f62fc3b3b343b19ebb29c -Author: Vlad Mihalcea -Date: Tue Oct 4 11:38:09 2016 +0300 - - HHH-11151 - Update Getting Started guide to Hibernate 5.2 - -commit 921d76ef991bf6fb5d5e133144579bcb32f7d076 -Author: Robin Anil -Date: Sat Sep 24 17:17:16 2016 -0500 - - HHH-11148 - Migrate HikariCP from Java 1.6 to Java 1.8 - -commit 88bc2db28a10222fbc3676cf11da7be88651cf1a -Author: Vlad Mihalcea -Date: Mon Oct 3 15:19:31 2016 +0300 - - HHH-11142 - Document supported use/implications of @Cache / @Cacheable - -commit eada559ebea9ab617b8e623084564645bc731d71 -Author: Karel Maesen -Date: Sat Oct 1 16:33:43 2016 +0200 - - HHH-11087 - Fix missing type contribution in dialect - - Also fixes broken integration tests - -commit db7c6c58f15b03ba34c6dfe311854899e474acbe -Author: Karel Maesen -Date: Sat Oct 1 14:23:40 2016 +0200 - - HHH-11012 - Update to geolatte-geom 1.0.6 - -commit 629010435d80f9f4a41e991f78549bb316e8d25a -Author: Andrea Boriero -Date: Fri Sep 30 13:22:11 2016 +0100 - - 5.2.3 - -commit 4f9689a2f2fba7d7591061460f669af5e3f789fd (tag: 5.2.3) -Author: Andrea Boriero -Date: Fri Sep 30 09:04:14 2016 +0100 - - 5.2.3 - -commit 774a16c2d961d7d8b42982ce83de40e3b9b7c37d -Author: Andrea Boriero -Date: Tue Aug 2 22:17:07 2016 +0200 - - HHH-6562 - Unknown collection role when accessing ElementCollection in Embeddable via Criteria API - -commit 20c20375294fcebbd379681114df6498967b3db2 -Author: barreiro -Date: Thu Aug 4 02:54:43 2016 +0100 - - HHH-10981 - No need to add template methods for inherited persistent fields - -commit e2641afb123e04557acdd897573508d3d1f3d37f -Author: barreiro -Date: Fri Jul 22 03:10:04 2016 +0100 - - HHH-10981 - Support private persistent fields in @MappedSuperclass - -commit 63af9535664d62bedf32c8d7c10d5d34c3090390 -Author: barreiro -Date: Fri Jul 22 06:18:39 2016 +0100 - - HHH-10981 - Test case - -commit 5d6678a414de9f7a52efa3b4bb559c89fac0475c -Author: Christian Beikov -Date: Mon Sep 26 11:16:42 2016 +0200 - - Added testcase that demonstrates issue with join table index column usage - -commit 1d823ceb7632d003b945f2f69b43d8f8ac245c3c -Author: Christian Beikov -Date: Tue Sep 20 19:28:25 2016 +0200 - - Test and fix for HHH-9329 - -commit de7ca7882b7803175e7b8703d88e6ca23b81bdf6 -Author: Chris Cranford -Date: Wed Sep 28 12:51:01 2016 -0400 - - HHH-11131 - Refactored generator and database structure code. - -commit 555aa772a357ad1a5bd29ac398e56908b955b795 -Author: Chris Cranford -Date: Wed Sep 28 11:24:28 2016 -0400 - - HHH-11131 - Fixed class javadoc and removed unused imports. - -commit f66031fa5397ca3e40251a35ec1aecea5c162eb8 -Author: Chris Cranford -Date: Wed Sep 28 11:20:11 2016 -0400 - - HHH-11131 - Fixed OrderSequenceGenerator to use a custom structure for ordered oracle sequences. - -commit 0dcb9b6487a3f4987398046e67696a5184ac25d1 -Author: Chris Cranford -Date: Wed Sep 28 11:19:42 2016 -0400 - - HHH-11131 - Added test case. - -commit d48ac0f0f7dc6f07764aafa63262a104349252e9 -Author: Christian Beikov -Date: Mon Sep 19 16:46:33 2016 +0200 - - HHH-10229 - Select value from element collection results in wrong SQL being produced - -commit 9aa164ed27b8338f592dee504a5793bc4e5bbfd9 -Author: Steve Ebersole -Date: Thu Sep 29 11:26:36 2016 -0500 - - HHH-10818 - Allow AttributeConverter on attributes marked as Lob (REALLY this time) - -commit b6aa19172057e0d3169dcbc0b5c18c300bd1b067 -Author: Christian Beikov -Date: Thu Sep 29 16:00:33 2016 +0200 - - Test and fix for HHH-11140 - -commit f34508e3f38c24f8b511fe47d444d90f3cfbbad6 -Author: Gail Badner -Date: Wed Sep 28 17:23:31 2016 -0700 - - HHH-10998 : NullPointerException when using join with subselect in hbm mapping - -commit 2d03ba97479c0e984991f0477da1d67fad9a0fd4 -Author: Chris Cranford -Date: Mon Sep 26 15:22:21 2016 -0400 - - HHH-11133 - Add discriminator-value attribute support for joined-subclass hbm mapping elements. - -commit de3153a8e119669dbd61fdc91bbb987356a8279f -Author: Andrea Boriero -Date: Mon Aug 29 15:47:03 2016 +0100 - - HHH-11023 - Startup performance regression : schema update/validate - -commit a99638372d689577d54d2a5b2d21e9253aaa4411 -Author: Chris Cranford -Date: Wed Sep 21 11:08:08 2016 -0400 - - HHH-11007 - Add Envers test case. - -commit 764a1a857e8b0e1d8a5c580081826d44c8145c5b -Author: Chris Cranford -Date: Tue Sep 13 15:57:21 2016 -0400 - - HHH-11007 - Add Envers as a test compile dependency. - -commit 30165d4aef5408e118259cb4f680f06e8d887135 -Author: Andrea Boriero -Date: Fri Sep 23 13:47:39 2016 +0100 - - HHH-11092 - NamedNativeQueries ordinal parameters are zero based - -commit f8f5486fda1538e255f135b75e56bbedd3fe2912 -Author: Andrea Boriero -Date: Fri Sep 23 13:36:47 2016 +0100 - - HHH-11092 - Add test for issue - -commit 306c151fff7adfdc23b9b3e2589fdf3a3e712f55 -Author: Andrea Boriero -Date: Thu Sep 22 19:51:54 2016 +0100 - - HHH-11121 - Wrong NativeQueryImpl.setZeroBasedParametersIndex when Session#createSQLQuery is executed after EM#createNativeQuery - -commit 47e925ead4744dc97934626daa84dfa15448a093 -Author: Andrea Boriero -Date: Thu Sep 22 18:05:29 2016 +0100 - - HHH-11121 - Add test for issue - -commit 8201c69103b125785379f6b51beb05853b1ba6be -Author: Vlad Mihalcea -Date: Wed Sep 28 17:18:18 2016 +0300 - - HHH-11076 - Lazy collections ignore filters when allowLoadOutsideTransaction is true - - Roll back fix since it got rejected due to some corner cases that are now added to ProxyPreservingFiltersOutsideInitialSessionTest - -commit 23326608f7929676c315e85d14ea59d2607dfc5c -Author: Vlad Mihalcea -Date: Wed Sep 28 16:19:26 2016 +0300 - - HHH-5409 - bag and idbag should implement equals() and hashCode() the same way as other collections - - This test does not verify how equals is implemented for Bags, - but rather if the child entity equals and hashCode are used properly for both - managed and detached entities. - -commit 3e64c710c580ac9381c430a5555e19fa8471fe3a -Author: Chris Cranford -Date: Wed Sep 28 09:11:36 2016 -0400 - - HHH-11063 - Fix long entity names for pgsql test failure. - -commit cd41d71b06db49e9c8508cbf1938b570559accf2 -Author: Vlad Mihalcea -Date: Wed Sep 28 15:04:54 2016 +0300 - - HHH-11132 - Add a Performance Tuning and Best Practices chapter - - Add more details related to associations and fix typos - -commit a705b48c4190240d0d6ad232591d2ab4edbe52a4 -Author: Vlad Mihalcea -Date: Mon Sep 26 17:58:37 2016 +0300 - - HHH-11132 - Add a Performance Tuning and Best Practices chapter - -commit d2d947068d1d10368f423ef42cdfb958ec92c95d -Author: ChristophDreis -Date: Tue Sep 27 09:08:41 2016 +0200 - - HHH-11136 - Reduce memory consumption caused by Method.getParameterTypes() - -commit e3bee9eedeb212f4fb667f6a51a187c4313429f3 -Author: Steve Ebersole -Date: Mon Sep 26 17:33:20 2016 -0500 - - enable build scans; - removed bad project dependency on hibernate-gradle-plugin in documentation - -commit dda90ef3d0f7248e4f262190113335282dbcea9a -Author: Vlad Mihalcea -Date: Thu Sep 22 12:40:22 2016 +0300 - - HHH-11108 - Add test to prove that @Basic( fetch = FetchType.LAZY ) really works as expected - - Roll back changes since we already have the JpaRuntimeEnhancementTest to prove this works and it does not use build-time enhancement - -commit f521017b90f7683048181bee90501d3847cc289b -Author: Chris Cranford -Date: Wed Sep 21 14:23:02 2016 -0400 - - HHH-11084 - Fix injection of TOP for subselect cases that use select distinct clause. - -commit a41b7262366111acff2bfcf6d6197a7e4a6b10c9 -Author: Chris Cranford -Date: Wed Aug 31 13:08:47 2016 -0400 - - HHH-11063 - Added test case. - -commit 2f3798de03e6a42378ba3b21614d8630861f66e6 -Author: Chris Cranford -Date: Wed Aug 31 13:08:33 2016 -0400 - - HHH-11063 - Fix collection change logic for addition/removal of elements with same hash. - -commit 20ae4920b7cd30a3a781b9eabf1da5ceeae20c48 -Author: Chris Cranford -Date: Fri Aug 19 21:10:54 2016 -0500 - - HHH-5908 - Avoid unnecessary updates on detached un-modified entities with SelectBeforeUpdate. - - HHH-11056 - Envers audits unchanged objects for a certain use case - -commit 348f92b340948dee56f2563a146245a723f55078 -Author: Boris Byk -Date: Tue Sep 20 22:06:16 2016 -0700 - - HHH-11120 - SessionFactoryOptionsImpl#releaseResourcesOnCloseEnabled never initialized - -commit d4d2b8f74fba2afa723a23782808641e7c2fed56 -Author: ChristophDreis -Date: Tue Sep 20 19:51:23 2016 +0200 - - HHH-11119 Improve performance of StringHelper.qualify() and StringHelper.unqualify() - -commit 2b5e201653c6c840a4637c05663b410c978d537b -Author: Chris Cranford -Date: Thu Aug 4 13:50:46 2016 -0500 - - HHH-7681 - Fix setting fake bidirectional attributes to null on collection change work units. - -commit 16fd531b6acccc1cfcac5fc65cb6be99f58d3c41 -Author: Chris Cranford -Date: Thu Jun 16 15:37:20 2016 -0500 - - HHH-7681 - Envers test case. - -commit cc21eeb1af22d3b2ab77b37b99509930e6003bce -Author: Vlad Mihalcea -Date: Tue Sep 20 20:01:13 2016 +0300 - - Skip test failing on Java 1.9 using Gradle - -commit bd8c3c226db45fdb12a3952bd6988fc6123a09b3 -Author: Vlad Mihalcea -Date: Tue Sep 20 18:23:45 2016 +0300 - - Disable bytecode enhancement for documentation module as well as the test that makes use of this feature if the JDK version is 1.9 - -commit 2b30cabf2fd758871385b2b60fe94f66769f2400 -Author: Vlad Mihalcea -Date: Tue Sep 20 16:57:33 2016 +0300 - - HHH-11116 - Improve the JPA bootstrapping section in the User Guide - -commit 9498b525660b80ba040ed3fc1a740fe55d105ccf -Author: Damien Hollis -Date: Wed Sep 14 08:57:22 2016 +1200 - - HHH-10659 - Natural Id 2nd level Cache not working when Identity is database generated - -commit dc7a1c96a3df22425302bec2edbf69ea3b4b7ba9 -Author: Andrea Boriero -Date: Tue Aug 23 14:23:59 2016 +0100 - - HHH-11061 - Attempt to resolve foreign key metadata from JDBC metadata failed to find column mappings for foreign when keywords auto quoting is enabled - -commit 5f60cd3b65cbf90726eefeac92958134dd1bfcfa -Author: Andrea Boriero -Date: Tue Sep 13 20:22:11 2016 +0100 - - HHH-11099 - Closing EntityManager with an active transaction causes JTA connection leak - -commit ae40de125ded9e9570cbf7d92100c920b2d8429d -Author: Giovanni Lovato -Date: Thu Sep 1 14:51:57 2016 +0200 - - HHH-11076 - Lazy collections ignore filters when allowLoadOutsideTransaction is true - -commit 87e69c9d3455cf2fbf9fdf796a9c6eb1aa434358 -Author: Gail Badner -Date: Sun Sep 18 21:44:54 2016 -0700 - - HHH-11038 : Invalid statement generated for @MapKeyColumn(updatable=false) for @OneToMany - -commit c3f7c332f546cebc879d30a380671ae83d760cb0 -Author: Gail Badner -Date: Sun Sep 18 14:13:22 2016 -0700 - - HHH-11038 : test case - -commit 9cf4fecbfe187ed05b52c1c46c0d0165fae68c39 -Author: Andrea Boriero -Date: Wed Sep 14 15:43:42 2016 +0100 - - HHH-11101 - Missing unique constraint for many-to-many with unique=true in list mapping - -commit a3eac6276179aeb4f79ed971e7e8162567e0f1c6 -Author: Andrea Boriero -Date: Wed Sep 14 15:42:53 2016 +0100 - - HHH-11101 - Add test for issue - -commit fd918c2a6ea6c521526d0a231dced8beacb2be73 -Author: Andrea Boriero -Date: Thu Sep 15 15:04:36 2016 +0100 - - HHH-10972 - Fix checkstyle error - -commit b995d7a70e4cd9ec89f826aab2d3b8eed4ec5310 -Author: Vlad Mihalcea -Date: Thu Sep 15 16:39:00 2016 +0300 - - HHH-10972 Use UTF-8 charset for reading file content of scripts that are used for initializing databases - - Fix tests failing on Linux because the processTestRessources filter task was assuming UTF-8 source files even for the ISO-8859-1 files - -commit 55e175ce318fd5ae08c8e09643a2d333da285f21 -Author: Vlad Mihalcea -Date: Thu Sep 15 14:17:09 2016 +0300 - - HHH-11108 - Add test to prove that @Basic( fetch = FetchType.LAZY ) really works as expected - -commit 7247f05a219780fca9c0e5ed5c55f073d89b0ece -Author: Jaikiran Pai -Date: Wed Jul 20 13:11:18 2016 +0530 - - HHH-10972 Use UTF-8 charset for reading file content of scripts that are used for initializing databases - -commit c9c50d8afd0c1914e5eccc2270bcdd2960baddf5 -Author: Andrea Boriero -Date: Mon Sep 12 23:57:48 2016 +0100 - - HHH-11081 - JPA join with treat causes QuerySyntaxException: Invalid path - -commit 4d3ece8c0947a15fdf781d50c97c3aa50427c60b -Author: Andrea Boriero -Date: Mon Sep 12 23:56:34 2016 +0100 - - HHH-11081 - Add test for issue - -commit 6f43d40e0a849363dc7b71ce335e98953e697a34 -Author: Vlad Mihalcea -Date: Thu Sep 15 08:27:59 2016 +0300 - - HHH-10399 - Add support for specifying TimeZone for ZonedDateTime type - - Fix test failing in TimeZones with negative offsets - -commit 81aba177718d913abb76125e5c26dee3cbee4f96 -Author: Steve Ebersole -Date: Wed Sep 14 10:24:51 2016 -0500 - - HHH-11098 - Attributeconverter converttoEntityAttribute and convertToDatabaseColumn code is called within a query.list() call -> slow - -commit 4bf4e3b81a5cfddf4c9d2ef5478e21154139c924 -Author: Martin Simka -Date: Wed Aug 31 13:32:38 2016 +0200 - - HHH-11037 - fix tests on Oracle - - fixes ORA-00972: identifier is too long on Oracle databases - -commit 0a2a5c622e3eb30724e80bc8661c0ac55ebfb2be -Author: Steve Ebersole -Date: Tue Sep 13 21:10:23 2016 -0500 - - HHH-11097 - Performance problem if cached entity has attribute state with an expensive toString() method (LOB, etc) - -commit c7c9e421454fd6c5c4ac426f39dffe9440a8ba37 -Author: Steve Ebersole -Date: Tue Sep 13 17:00:02 2016 -0500 - - HHH-11097 - Performance problem if cached entity has attribute state with an expensive toString() method (LOB, etc) - -commit a00a30f488de05ac100929e7b12b90b1a10feb9b -Author: Vlad Mihalcea -Date: Tue Sep 13 14:57:32 2016 +0300 - - Fix broken tests on Jenkins - -commit 62e499538cd9ecf3d18e599125ef2ca9de64e6e9 -Author: Vlad Mihalcea -Date: Mon Sep 12 17:59:02 2016 +0300 - - HHH-10399 - Add support for specifying TimeZone for ZonedDateTime type - - Add documentation and supply more tests - -commit 553942d2f99b0d4b5d7cd9e9cd2a0c0619eea99f -Author: Vlad Mihalcea -Date: Thu Sep 1 14:28:28 2016 +0300 - - HHH-10399 - Add support for specifying TimeZone for ZonedDateTime type - -commit d229534647d51b0c3ce35326ddc846158d99d494 -Author: Vlad Mihalcea -Date: Fri Sep 9 10:31:45 2016 +0300 - - Add test to replicate if JOINED inheritance ends up in a Cartesian Product - -commit f18656473dc3112c76240a6c3f47a5050608de75 -Author: Piotr Findeisen -Date: Wed Aug 31 13:57:45 2016 +0200 - - HHH-11082 Log the failing SQL when the batched execution throws a RuntimeException (e.g. StaleStateException) - -commit 5527bd0d609b0343aebf23b70e624353a32a037b -Author: Sanne Grinovero -Date: Fri Sep 2 13:01:30 2016 +0100 - - Delete git module which was unintentionally added - -commit 8de4ff2a3a6a30541d463fdb373e1e8f0de953b5 -Author: dewarder -Date: Sun Aug 28 00:25:44 2016 +0300 - - HHH-10406 - Provide @CreationTimestamp and @UpdateTimestamp for Java Time - -commit fec5afc8b6a2cc6f4ecf24323948dd1c63275f5c -Author: Yanming Zhou -Date: Wed Aug 31 16:55:11 2016 +0800 - - HHH-11074 - Add method setTimeout for DetachedCriteria - -commit 839bf0b6f9b1e82564d63fa84f0ca1d6257613fb -Author: Gail Badner -Date: Wed Aug 31 00:22:16 2016 -0700 - - HHH-11073 : Casting to boolean in HQL query fails on MySQL - -commit 4551e521c1c096121efd6c57473c7624f60a0052 -Author: Gail Badner -Date: Wed Aug 31 00:21:25 2016 -0700 - - HHH-11073 : test case - -commit b28e0974df0647961761aa5e50c4397bb8d66c95 -Author: Gail Badner -Date: Tue Aug 30 23:10:00 2016 -0700 - - HHH-11072 : Skip CriteriaLiteralInSelectExpressionTest#testStringLiteral2 for Oracle, Db2, SQL Server, and Sybase dialects - -commit d5cbd8fdf03a059bcd3e4cca03af9ecfddf17709 -Author: Steve Ebersole -Date: Tue Aug 30 18:41:25 2016 -0500 - - HHH-8630 - random map key column generated when using @AttributeOverrides and @ElementCollection - -commit 19834a0046ccf09b9bd989937a545591001a5b60 -Author: 姜禹 -Date: Fri Aug 12 09:43:28 2016 +0800 - - HHH-10502 - ORDER BY FIELD(..) throws java.sql.SQLException: Operand should contain 1 column(s) - -commit 310139dbdc17adc112c06376dd8871d10a69d988 -Author: Vlad Mihalcea -Date: Tue Aug 30 10:05:15 2016 +0300 - - HHH-11070 - Add the full Hibernate ORM version to the User Guide title - -commit d88bf908dac95720051b627573b6541362973bb2 -Author: Vlad Mihalcea -Date: Mon Aug 29 17:29:41 2016 +0300 - - HHH-11069 - Improve documentation regarding GenerationType.AUTO - - Explain the two IdGeneratorStrategyInterpreter implementations and their relation to how AUTO resolves to an actual identifier strategy - -commit aaa32ebed5b9d70697b3a8dbe287ebc19d60bf2a -Author: Steve Ebersole -Date: Fri Aug 26 10:46:35 2016 -0500 - - HHH-11067 - Proxy-wrapped Sessions (ThreadLocalSessionContext.TransactionProtectionWrapper) handle equals incorrectly - -commit 4f991c3e7489b61373085b871b0dae960373f4e2 -Author: Gail Badner -Date: Thu Aug 25 00:44:29 2016 -0700 - - HHH-9739 : Updated object is written to second level cache with CacheMode.IGNORE - -commit b3d2c0fc90488d5fd9cef0c7e057d46a14203395 -Author: Gail Badner -Date: Mon Aug 22 19:11:45 2016 -0700 - - HHH-11059 : Improve documentation for JTA configuration in user guide - -commit 68c62da29e2b93352a92cddbe24285c71da39c49 -Author: Steve Ebersole -Date: Sat Aug 20 10:02:40 2016 -0500 - - HHH-11058 - NPE in SchemaValidator with DdlTransactionIsolatorJtaImpl - -commit f26eb97091e7144301e5fabc69351a6fbe9296a9 -Author: Steve Ebersole -Date: Fri Aug 19 15:48:09 2016 -0500 - - HHH-11058 - NPE in SchemaValidator with DdlTransactionIsolatorJtaImpl - -commit 5096982532907cb7fb605efa24798581fabb6180 -Author: Gail Badner -Date: Thu Aug 18 15:38:28 2016 -0700 - - HHH-11037 : Correct jira issue in @TestForIssue - -commit 62bfbf8bd9ec3c0b71677befb650fe26a5d46008 -Author: Andrea Boriero -Date: Mon Aug 15 18:47:09 2016 +0200 - - HHH-11037 - Same named subtype embeddable properties ignored - -commit 3028f5d78787edf88b23e1135e9cc0339ad86316 -Author: Andrea Boriero -Date: Mon Aug 15 18:45:54 2016 +0200 - - HHH-11037 - Add test for issue - -commit 65422a67505fc1f01366317493cad72e2b599459 -Author: johara -Date: Tue Aug 16 16:29:18 2016 +0100 - - HHH-11051 : Cache EventListenerRegistry and StatisticsImplementor - - (cherry picked from commit 97318b71f0eb22296d46077b0eac527fa454329e) - - Conflicts: - hibernate-core/src/main/java/org/hibernate/internal/SessionFactoryImpl.java - - (cherry picked from commit 836691b5a7ffbba92cedf9472f383b9b4f9a31ce) - - Conflicts: - hibernate-core/src/main/java/org/hibernate/internal/SessionFactoryImpl.java - -commit f201d2829e909a05e54650c1b6a31271766aac4a -Author: Andrea Boriero -Date: Mon Aug 15 09:09:52 2016 +0200 - - HHH-10693 - Fix PostgreSQL failing tests - -commit 8d86770dccf29b63b0e2bef27802cb9e5abea611 -Author: Andrea Boriero -Date: Sun Aug 14 17:53:23 2016 +0200 - - HHH-11033 - NativeQueryImpl::doScroll seems to be broken when used with setParameterList (affects scroll and stream) - -commit 6ec48514f74224dcbc1b27d27cdebfad58c084b2 -Author: Andrea Boriero -Date: Sun Aug 14 17:44:36 2016 +0200 - - HHH-11033 - Add test for issue - -commit 048268ef1eda421e3e8f67404cbc2fab8e9cb704 -Author: Steve Ebersole -Date: Tue Aug 9 20:49:20 2016 -0500 - - HHH-10629 - Spatial not bundled in release bundles - -commit 78cab094b9056b3de24e87d28ef7f60a86f5b65f -Author: Andrea Boriero -Date: Thu Aug 11 08:07:28 2016 +0200 - - HHH-11036 - The drop schema filtering of sequence generation with schemaFilter is wrong - -commit 5b7d00ef1e02320bb583aac9d4fed97185199c16 -Author: Chris Cranford -Date: Tue Aug 9 19:43:18 2016 -0500 - - HHH-10978 - Added test case. - -commit 9c37511811f4923476626e38766c3971e530a15f -Author: Chris Cranford -Date: Tue Aug 9 19:01:45 2016 -0500 - - HHH-10978 - Fix building join table metadata with default catalogs or schema values. - -commit 4c79b4fa50c46faadd36e3639030aa93c4e5984b -Author: Andrea Boriero -Date: Wed Aug 10 12:18:58 2016 +0200 - - HHH-11030 - InformationExtractorJdbcDatabaseMetaDataImpl getTable method wrong default namespace lookup - -commit f0fa15b24738522a4cc6e0fe834b87792099bf96 -Author: VyacheslavRarata -Date: Wed Aug 10 10:44:47 2016 +0300 - - HHH-10106 - Include source entity name and table name (attribute name too ideally) for associations referencing unmapped classes - -commit 6dd41e7ae66b425367db38711ed9862207d0fea7 -Author: Andrew Judson -Date: Mon Aug 8 18:29:31 2016 +1000 - - HHH-3846 - Persisting entity with detached associated entity. - -commit 47c171f687b9e9cee20e2a730ecab6a3c9d7feb5 -Author: Vlad Mihalcea -Date: Wed Aug 10 11:02:59 2016 +0300 - - HHH-10523 - 2.3.20. SQL quoted identifiers in User Guide should discuss explicit enclosure in double-quotes (JPA) - -commit a63935b530b0edc576f821c2d48ea8d1b8ed7039 -Author: Vlad Mihalcea -Date: Wed Aug 10 08:44:35 2016 +0300 - - HHH-11005 - OneToMany generated incorrect SQL where MapKey is on superclass and using InheritanceType.JOINED - - Add missing license headers - -commit e75b017a4664d158e1197d19dca204273c4a2d66 -Author: Richard Barnes -Date: Fri Jul 29 14:52:20 2016 +0100 - - HHH-11005 - OneToMany generates incorrect SQL where MapKey is on superclass and using InheritanceType.JOINED - -commit 455d86307b624cc07e40d7308af7295e4cc44112 -Author: Andrea Boriero -Date: Fri Apr 22 11:38:47 2016 +0100 - - HHH-10695 - Fix MySQL should not use the NCLOB type - -commit 34b63336a67c78ecbbd41512a60bf00dd36fed14 -Author: Andrea Boriero -Date: Thu Apr 21 17:57:38 2016 +0100 - - change mysql config - -commit 513c2358f7fea16fa69f2fc4eeb472b54ac49dd0 -Author: Andrea Boriero -Date: Mon Apr 18 11:31:38 2016 +0100 - - HHH-10693 - Fix PostgreSQL should not use nvarchar when using Nationaliztaion - -commit c1023ac49e4712826b8c09d319d9c4e9154983b5 -Author: Andrea Boriero -Date: Mon Apr 18 11:30:22 2016 +0100 - - HHH-10693 - Change test to run with PostgreSQL dialect - -commit 4ac5978c205d668b049135b1b4e4ab9e90c56a18 -Author: Andrea Boriero -Date: Tue Aug 9 13:13:00 2016 +0200 - - HHH-11024 - Fix checkstyle error - -commit 1be0a347c469e318d188e3f731851958991018e8 -Author: Bradley Hess -Date: Thu Jul 28 15:24:19 2016 -0400 - - HHH-11004: Proper handling of array ElementCollection values in jpamodelgen - -commit 731732d780acf4ad17f9f68e1ac1a22e25263950 -Author: Vlad Mihalcea -Date: Tue Aug 9 11:26:13 2016 +0300 - - HHH-11019 - Extend DelayedPostInsertIdentifier support to include checks for FlushMode (EXTENDED PC) - - Add tests to demonstrate how PersistenceContextType.EXTENDED works with the IDENTITY generator - -commit 6c005239d44e65c391ee8151f6059fade36dda92 -Author: Steve Ebersole -Date: Mon Aug 8 15:53:55 2016 -0500 - - HHH-11024 - Exception still thrown when dropping schema with a managed connection - exclude any arq+wf tests from JDK 9 builds - -commit 7038b3e9835b30733a18dc7d6908fff1e1998b03 -Author: Steve Ebersole -Date: Mon Aug 8 14:40:31 2016 -0500 - - HHH-11024 - Exception still thrown when dropping schema with a managed connection - extend test task dependencies to the matrix-tesing plugin test tasks - -commit dddf01740ee283b48611e9d86ec7c9a922cf1861 -Author: Andrea Boriero -Date: Mon Aug 8 14:16:08 2016 +0200 - - HHH-11024 - Add test for issue - -commit b6ac8ec1bea53e39716d8eadd95229d1856b4487 -Author: Vlad Mihalcea -Date: Thu Aug 4 12:41:51 2016 +0300 - - HHH-11027 - Document the PASS_DISTINCT_THROUGH Query Hint - -commit 7a701031713774a8005eb41f78ea4da59958394c -Author: Steve Ebersole -Date: Sat Aug 6 17:15:24 2016 -0500 - - HHH-11024 - Exception still thrown when dropping schema with a managed connection - extend test task dependencies to the matrix-tesing plugin test tasks - -commit 2db3d9ad2abafc4c105e332707d73f28489ebd77 -Author: Steve Ebersole -Date: Sat Aug 6 14:09:39 2016 -0500 - - HHH-11024 - Exception still thrown when dropping schema with a managed connection - -commit f025cf9c03df1a620e43b2ae8f6257c34fa8eb83 -Author: Steve Ebersole -Date: Sat Aug 6 14:05:03 2016 -0500 - - HHH-11024 - Exception still thrown when dropping schema with a managed connection - -commit 1378708088c28408a7172b21ac8739d13f81ef39 -Author: Steve Ebersole -Date: Fri Aug 5 10:08:35 2016 -0500 - - HHH-11019 - Extend DelayedPostInsertIdentifier support to include checks for FlushMode (EXTENDED PC) - support for testing inside WildFly leveraging Arquilian and hibernate-orm-modules - -commit 0de0ff0322e389c996cd1c538fdad4f829ffb8c2 -Author: Andrea Boriero -Date: Thu Aug 4 19:23:06 2016 +0200 - - 5.2.2 - -commit b6bfade383b45b3969d7db13913fe4a7464813bc (tag: 5.2.2) -Author: Andrea Boriero -Date: Thu Aug 4 14:19:46 2016 +0200 - - 5.2.2 - -commit c8aa945b6b5eecee9697ea7c45fba7e31f2f094e -Author: Chris Cranford -Date: Wed Aug 3 22:15:31 2016 -0500 - - HHH-7625 - Added test case. - -commit 22f23d8da0825bce029f241fb3ed513eb4042d9c -Author: Chris Cranford -Date: Sun Jul 31 18:13:12 2016 -0500 - - HHH-7625 - Fix inverse OneToMany with a Composite key mapping failure. - -commit 1da8f01740174cf9316ab55603e6e92093d4abca -Author: Andrea Boriero -Date: Wed Aug 3 23:04:23 2016 +0200 - - HHH-10952 - Tests leaving transactions opened cause PostgreSQL to hang - -commit 468307f394b9d7f83e0bd1e975dbb0114ee95ae7 -Author: Andrea Boriero -Date: Wed Aug 3 21:51:18 2016 +0200 - - HHH-10953 - Fix tests failing on PostgreSQL - -commit f7cc256a1c57d3a0eea7b72c26b46dc189704fe6 -Author: Andrea Boriero -Date: Wed Aug 3 21:37:27 2016 +0200 - - HHH-10952 - Tests leaving transactions opened cause PostgreSQL to hang - -commit 109410b153f8e15ab3de3e99cb9924a085fe3a0f -Author: Andrea Boriero -Date: Mon Jul 11 14:10:50 2016 +0200 - - HHH-10942 - Session not flushing starting from 5.2.0 in Karaf + Aries JPA & JTA - -commit d55ade52b23797de7579b9b730dbc31b970eed52 -Author: Andrea Boriero -Date: Tue Jul 12 12:40:38 2016 +0200 - - HHH-10942 - Add test for issue - -commit 26f2b8e42af66cd8d636fa3d61ef1f466d40796f -Author: Andrej Golovnin -Date: Mon Jul 4 21:42:18 2016 +0200 - - HHH-10924 Replace ConcurrentServiceBinding by ConcurrentHashMap - -commit 5b327f52c34cc12964c09ef6bf6558e1211a473d -Author: Andrea Boriero -Date: Fri Jul 15 11:26:26 2016 +0200 - - HHH-10953 - HQL update statement fails if entity is inside a package of format in.mycomany.domain.Entity - -commit b90093927de8177a14c0b29030f334afb5650407 -Author: Andrea Boriero -Date: Fri Jul 15 11:24:57 2016 +0200 - - HHH-10953 - Add test for issue - -commit 7d14223531c8634f32456cec775d6a1f5165b218 -Author: Vlad Mihalcea -Date: Tue Aug 2 16:45:36 2016 +0300 - - HHH-11017 - Migrate Integration Guide to AsciiDoctor - -commit 7c361fee3a96ca51b6a76341e65a4adb1a993f3b -Author: Andrea Boriero -Date: Tue Jul 26 16:36:39 2016 +0200 - - HHH-10991 - Wrong order parameter binding when filters are used in conjunction with component type parameters and subqueries - -commit 9b9becb903a0b193ce979db1d630e19402d1d66f -Author: Chris Cranford -Date: Sat Jul 30 13:07:31 2016 -0500 - - HHH-11009 - Fix exception message to specify unique constraint only when index is unique. - -commit 58e4f89f47329ce938f055693e84ea19708e90fb -Author: Chris Cranford -Date: Tue Aug 2 16:11:20 2016 -0500 - - Checkstyle fixups. - -commit 894c6470d06cea0d448f56b9486c83d79e913cce -Author: Gail Badner -Date: Tue Aug 2 13:49:35 2016 -0700 - - HHH-10896 : fix for checkstyle failure - -commit c7c5a0016723aa2b7e0ccfe33425d4079e8bc652 -Author: Steve Ebersole -Date: Tue Aug 2 13:32:09 2016 -0500 - - HHH-10896 - Exception thrown when dropping schema with a managed connection - -commit da4912211390fe2dfdec4dfbb79ecfcd8d4ca10a -Author: Steve Ebersole -Date: Tue Aug 2 13:08:12 2016 -0500 - - HHH-10896 - Exception thrown when dropping schema with a managed connection - -commit 1661af2d8f4ae109625a141abc19599d9a919f01 -Author: Vlad Mihalcea -Date: Tue Aug 2 10:49:58 2016 +0300 - - HHH-10965 - Add new Query Hint to avoid passing DISTINCT from entity queries to SQL statements - -commit c5e5287790fe70aa03543ffdd1df9b5f2fd90007 -Author: Andrea Boriero -Date: Sat Jul 30 15:58:54 2016 +0200 - - HHH-10027 - Dynamic filter parameter can be bound in wrong order when applied to OneToMany collections - -commit d62e9f44ca45b2f3562e11565f59d28fb777d026 -Author: Andrea Boriero -Date: Tue Aug 2 13:17:43 2016 +0200 - - HHH-10896 - Fix checkstyle error - -commit e6c36a6666343bec5e400e8b93c3b9a3c14c4749 -Author: Andrea Boriero -Date: Tue Aug 2 11:54:55 2016 +0200 - - HHH-10950 - uniqueResultOptional fails for Query created from CriteriaQuery - -commit 5cc9d26d0d4d2e7d23b010eb69ee13078c2ef24d -Author: Karel Maesen -Date: Fri Jul 29 18:12:26 2016 +0200 - - HH-10987 - Update geolatte-geom to 1.0.4 - -commit edf684e1f1c2ab546ecc85c350ba7b9b0578d956 -Author: Andrea Boriero -Date: Fri Jul 15 20:50:10 2016 +0200 - - HHH-10950 - uniqueResultOptional fails for Query created from CriteriaQuery - -commit 5cbc428421cf27c40beeeb5c14d954d52be6b15a -Author: Andrea Boriero -Date: Fri Jul 15 20:49:41 2016 +0200 - - HHH-10950 - Add test for issue - -commit 73df331415dc6d00e8874db61856b932bca7420b -Author: Andrea Boriero -Date: Sat Jul 30 14:20:51 2016 +0200 - - HHH-10937 - The generation of the drop schema does not filter sequence with schemaFilter - -commit a190d2f3eb38fcad8f9a51989d8f91662ad71273 -Author: Andrea Boriero -Date: Sat Jul 30 14:19:38 2016 +0200 - - HHH-10937 - Add test for issue - -commit 5eacf421fb4d51efbb551f3ec9fb9d896cbe6343 -Author: Chris Cranford -Date: Mon Aug 1 22:38:28 2016 -0500 - - HHH-11016 - Added 'if exists' for sequence drop statements for PostgreSQL82 and derivatives. - -commit f5bb3bac3815dd1014e12ab3968565ca41814338 -Author: Chris Cranford -Date: Mon Aug 1 18:49:32 2016 -0500 - - HHH-7249 - Added test case. - -commit 7552b053dbdac72c38d9ccd3a263f2c895a8637c -Author: Chris Cranford -Date: Mon Aug 1 18:49:08 2016 -0500 - - HHH-7249 - Fix Envers saving the proper discriminator value at deletion time between related entities. - -commit 0efd03419e23551113656683e9b4d16c50bccc03 -Author: Chris Cranford -Date: Mon Aug 1 07:08:11 2016 -0500 - - Revert "HHH-7940 - Add validation check for indexed fake bidirectional mappings." - - This reverts commit af9882baae1452560487917ae586571dec3b21e7. - -commit e3bd5a56d2908333e1bea9305c4669a9123bcfb2 -Author: Vlad Mihalcea -Date: Mon Aug 1 11:14:02 2016 +0300 - - HHH-11013 - The release task creates two documentation folders for UserGuide - -commit d109c15c0cb36dd42ef4eb10336d725fddfb3af5 -Author: Steve Ebersole -Date: Sat Jul 30 07:33:09 2016 -0500 - - HHH-10896 - Exception thrown when dropping schema with a managed connection - -commit 10def48f48ca56383626740dc0ce1ba1eff0a82e -Author: Steve Ebersole -Date: Thu Jul 28 15:40:58 2016 -0500 - - HHH-10896 - Exception thrown when dropping schema with a managed connection - -commit 8769ab306e96069a994560203f0054bdf59605ed -Author: Gail Badner -Date: Fri Jul 29 19:48:19 2016 -0700 - - HHH-10592 : Add to changelog for 5.2.1 - -commit 0d8f08b9d1208f42a2358585c225e6415fef4d7c -Author: Gail Badner -Date: Mon Jul 25 01:29:06 2016 -0700 - - HHH-10795 : added assertions to test case - -commit 56b22aeaac2ca10ff4ab476c21a63e2d0e991412 -Author: Gail Badner -Date: Fri Jul 22 14:14:16 2016 -0700 - - HHH-10795 : StatefulPersistenceContext.entityEntryContext does not work properly for ManagedEntity associated with a different StatefulPersistenceContext - -commit cddb221288c862a374ad255ba80478181bb8d069 -Author: Chris Cranford -Date: Fri Jul 29 16:13:38 2016 -0500 - - Checkstyle fix. - -commit af9882baae1452560487917ae586571dec3b21e7 -Author: Chris Cranford -Date: Fri Jul 29 14:43:25 2016 -0500 - - HHH-7940 - Add validation check for indexed fake bidirectional mappings. - -commit bf823d440c451c07a0bed1b4862f21d9de256b8a -Author: Vlad Mihalcea -Date: Fri Jul 29 07:43:18 2016 +0300 - - HHH-10996 - The cleanupTestData utility has issues with link tables - - Use bulk delete in certain situations like when we have a @Formula annotation that takes an SQL function which is not supported by the currently running DB - -commit 714ba62158689fe45b22121a0b45f99ab6d20837 -Author: Chris Cranford -Date: Wed Jul 27 14:10:07 2016 -0500 - - HHH-10994 - Relax requirement of 'as' in the alias phrase for the MSSQL LimitHandler implementation. - -commit e52dab922c00606a36af502eaad75565dc5ace98 -Author: Vlad Mihalcea -Date: Thu Jul 28 15:20:59 2016 +0300 - - HHH-11002 - Add documentation section about Filter and FilterDef - -commit 550ad824accd72cf26371ca53fdc6ae4e1ceeb68 -Author: Vlad Mihalcea -Date: Wed Jul 27 17:53:00 2016 +0300 - - HHH-11000 - Fix the port stealing issue between Arquillian and NVidia Windows driver - -commit 8f5ba32990d291057c7acd2a5170293cabcbf4ab -Author: Vlad Mihalcea -Date: Wed Jul 27 16:13:35 2016 +0300 - - HHH-10996 - The cleanupTestData utility has issues with link tables - -commit 65fee06bd663ce5d82282610a2dd9e274be6b45a -Author: Andrea Boriero -Date: Wed Jul 6 12:24:36 2016 +0200 - - HHH-10919 - HQL: Sql syntax exception when joining a Map - -commit 2c553f3290f01c6eeb3e2b75d89428e9b99712e3 -Author: Gail Badner -Date: Tue Jul 26 16:22:04 2016 -0700 - - HHH-10993 : NPE when Lazy loading collection without transaction for bytecode enhanced entitie - -commit 41ac8c4f086b7059ce58afe2b8ee0c57f490c58c -Author: Gail Badner -Date: Tue Jul 26 14:58:01 2016 -0700 - - HHH-10993 : Correct to test case for master - -commit 80e092a43258449bfe77a2b91511bde94dcb9106 -Author: johara -Date: Tue Jul 26 19:32:36 2016 +0100 - - HHH-10993 - Added testcase for Lazy Loaded collections outside transaction in bytecode enhanced entities - -commit 72e948514e95cbc2c7e8713a36ed461845d8c89e -Author: Steve Ebersole -Date: Tue Jul 26 11:30:47 2016 -0500 - - HHH-10984 - Have multiLoad not return (unflushed) DELETED entities; - HHH-10617 - multiLoad behavior - -commit 50a45b2bfae9b24aef5fb99e48227f63e3c185b0 -Author: Sanne Grinovero -Date: Mon Jul 11 08:49:03 2016 +0100 - - HHH-10949 Upgrade to Infinispan 8.2.3.Final - -commit 4eb0090c900c2297141b06b80a574775c2f6f3ad -Author: Sanne Grinovero -Date: Mon Jul 11 08:46:30 2016 +0100 - - HHH-10948 Upgrade to Byteman 3.0.6 - -commit 085a70beb411a8565456edeac29b8c3225886d70 -Author: Andrea Boriero -Date: Tue Jul 5 23:10:01 2016 +0200 - - HHH-10920 - Joined inheritance : Same super class field name in embedded type causes embedded field to be ignored - -commit 649e2b76e799192098806e19def6afefc40ad6ed -Author: Andrea Boriero -Date: Tue Jul 19 13:22:54 2016 +0200 - - HHH-10959 - Methods in org.hibernate.query.Query should not return the deprecated org.hibernate.Query - -commit e1bdbc84d471058d45f214639bfd2ca196668f13 -Author: Andrea Boriero -Date: Tue Jul 19 13:06:33 2016 +0200 - - HHH-10959 - Add test for issue - -commit d59e6956d1c28cb961bd9a5c064ff2013dede20a -Author: Gunnar Morling -Date: Mon Jul 4 11:14:29 2016 +0200 - - HHH-10923 Upgrading Shrinkwrap version - -commit 65bbf28d3c275192b39fec439dda3f937ce5f817 -Author: Gunnar Morling -Date: Mon Jul 4 11:05:12 2016 +0200 - - HHH-10923 Upgrading CDI and related dependency versions - -commit 5e69823b791285ef3868f80bccf1e425644c9f5e -Author: Andrea Boriero -Date: Sat Jul 2 09:36:36 2016 +0200 - - HHH-10915 - NullPointerException from AbstractProducedQuery.getParameters() - -commit 26df5d9e11d09247ddd1a4a22fed2bfd4f195264 -Author: jfb -Date: Sat Feb 20 16:33:16 2016 +0100 - - HHH-10531 JaxbHbmTuplizerType marshalling does not conform hibernate-mapping-4.0.xsd - HHH-10532 Cannot marshall JaxbHbmBasicAttributeType to xml if the "generated" attribute is not specified - -commit fde8b608fcea93cd40d2b4a5ebd7d2d1e0eeae20 -Author: VEINHORN -Date: Thu Jun 23 14:26:20 2016 +0300 - - Upgrade Junit version from 4.11 to 4.12 - -commit 74e959f1bc9c07f342f67163777379235fdf1b9d -Author: Marvin Froeder -Date: Wed Jun 22 17:05:41 2016 +1200 - - HHH-10879 SqlServer dialect doesn't respect "key" reserved keyword - -commit a9318ce656d8fae09f80fe49bfa576be1197fef3 -Author: barreiro -Date: Wed Jul 20 18:35:55 2016 +0100 - - HHH-10973 - Fix 'class is frozen' when enhancing bidirectional relationships - -commit 987487e106df81d546646bc28dc914a26ee27f2a -Author: barreiro -Date: Thu Jul 21 18:36:25 2016 +0100 - - HHH-10977 - Entity not enhanced after MappedSuperclass - -commit b3aaa12b64ccb68b3b3f4c55d1ce2a894165670b -Author: barreiro -Date: Fri Jul 22 03:23:24 2016 +0100 - - HHH-10977 - Fix enhanced classloader so that the testsuite behaves as the enhancement plugins do - -commit de39cf06d034ad749ce34a3f9d2f5c85475f568a -Author: Marvin Froeder -Date: Wed Jun 22 16:33:55 2016 +1200 - - Fix build badge - -commit 29edc4f367518de0b2e672f0ea68e48615627405 -Author: Dmytro Bondar -Date: Thu Jul 7 09:57:52 2016 +0300 - - HHH-10810 - ImplicitIndexColumnNameSource should extend ImplicitNameSource. - -commit 63ea1f812a2daea0c415cdc0639909cdf67364e4 -Author: Dmytro Bondar -Date: Mon Jul 11 10:44:26 2016 +0300 - - HHH-8687 Better exception message for PostgreSQL81Dialect and named REF_CURSOR parameter binding - -commit fa00cb3f416634cd5da86c906e0bdaae221712ae -Author: Dmytro Bondar -Date: Thu Jul 7 19:29:00 2016 +0300 - - HHH-10725 - Hibernate Integrations Guide: an incorrect example LatestAndGreatestConnectionProviderImpl - -commit 5ea8997ca72a356791d37c982c5930d2547cb8ff -Author: Yanming Zhou -Date: Mon Jul 18 13:25:21 2016 +0800 - - Fix missing currentTenantIdentifierResolver - - 1. Add missing sessionFactoryBuilder.applyCurrentTenantIdentifierResolver() . - 2. Use getter instead of field for consistency . - -commit b90047f55db8fe3f7785df2b2f31626bb906d3f7 -Author: Vlad Mihalcea -Date: Thu Jul 21 12:27:58 2016 +0300 - - HHH-10960 - Clarification of org.hibernate.query.Query methods - - This test tries to replicate the given issue, but I could not find any compile warning related to this class. - -commit 5e82c2e414c819275897bd180047c826e602f2ff -Author: Gabriel Belingueres -Date: Thu Jul 14 10:13:32 2016 -0300 - - Fixes HHH-10800 - InformixDialect: add support for current_timestamp() and current_date() - -commit e814eb930bd94545c526c5082d5489e247b76cfa -Author: Idel Pivnitskiy -Date: Mon Jul 11 18:59:22 2016 +0300 - - Fix mistake in doc for org.hibernate.annotations.CascadeType#DETACH - -commit 92c1e6357785f7ef6241400af92a7d6e7cf86a5c -Author: barreiro -Date: Tue Jul 12 03:04:00 2016 +0100 - - HHH-10922 - Call on bytecode enhanced method trigger load of proxy - -commit 45adb05f5afd3ec20c06ba10d21f70fb5cbba12d -Author: barreiro -Date: Fri Jul 15 19:03:29 2016 +0100 - - HHH-10922 - Test case - -commit 68a2896c2b33c672ca72e7c21b8a9257e8f78cfe -Author: barreiro -Date: Wed Jul 13 03:47:49 2016 +0100 - - HHH-10922 - Add support for custom enhancement context on bytecode enhacer tests - -commit 2dcb75e2a53dd747727945724cf2d9d5ae987b71 -Author: Vlad Mihalcea -Date: Tue Jul 19 18:00:29 2016 +0300 - - HHH-10971 - Document flush operation order - -commit 9b0e7e1c1af3fecb0014e12b1637b33213b29878 -Author: Vlad Mihalcea -Date: Mon Jul 18 17:20:35 2016 +0300 - - HHH-10966 - Document @DiscriminatorValue NULL and NOT_NULL options - -commit c893577efceff237f84d7200e1ef1a2895c95639 -Author: Gail Badner -Date: Wed Jul 13 20:27:36 2016 -0700 - - HHH-5393 : MappingException when @MapKeyColumn refers to a column mapped in embeddable map value - -commit 9ac00406d297d4d520e767f1ad4baa4b1b0ca925 -Author: Vlad Mihalcea -Date: Thu Jul 14 14:12:39 2016 +0300 - - HHH-10955 - PessimisticWriteLockTimeoutTest#testSkipLocked should run only on PostgreSQL 9.5 - -commit f5e10c29ebf103df4de7ea7b528702f0d2d9fc2a -Author: Vlad Mihalcea -Date: Wed Jul 13 21:19:56 2016 +0300 - - HHH-10907 - Fix connection leak problem in hibernate-core tests - -commit da9c6e160d6800a506fc1197db5caffb78382fba -Author: Vlad Mihalcea -Date: Tue Jul 12 18:07:33 2016 +0300 - - HHH-10907 - Fix connection leak problem in hibernate-core tests - -commit 2246e94dede529b2da2b23533538166dcb8e5df6 -Author: Andrea Boriero -Date: Wed Jul 13 12:38:24 2016 +0200 - - HHH-10946 - Fix checkstyle failures - -commit e4062362acefad4a7aec0973a60aca750fcc85e8 -Author: Andrea Boriero -Date: Wed Jul 13 10:16:37 2016 +0200 - - HHH-10952 - Tests leaving transactions opened cause PostgreSQL to hang - -commit a17dd125e710d7e133df0489090e14cfeb243171 -Author: Chris Cranford -Date: Tue Jul 12 14:17:02 2016 -0500 - - HHH-9199 - Fixed auditing of embeddable collections using ValidityAuditStrategy. - -commit 95c01d90016a0fc1e5c0f43a9f46f1eedb17e186 -Author: Chris Cranford -Date: Tue Jul 12 14:15:49 2016 -0500 - - HHH-9199 - Removed FailureExpected. - -commit 179076e0e68603b64a7da9a4409d2a004d77d15a -Author: Chris Cranford -Date: Tue Jul 12 08:18:17 2016 -0500 - - HHH-9199 - Checkstyle header fix. - -commit bc9e82bd704a7acbadaeb8a30f69187b226f3508 -Author: Felix Feisst -Date: Fri May 16 16:42:32 2014 +0200 - - Added unit test for issue HHH-9199 - -commit 85eca1aa01da77dec8b5fe8212e2f8e7938b2879 -Author: Felix Feisst -Date: Fri May 16 16:42:18 2014 +0200 - - Added unit test for issue HHH-9199 - -commit 799ab91cf5974a10c571535369ccb9a81c104c02 -Author: Vlad Mihalcea -Date: Mon Jul 11 13:12:45 2016 +0300 - - HHH-10943 - Driver Manager Connection Pool should close leaked connections upon shutting down - -commit 9abe77570826ca3074ca7fa01f4214d23ce8fd02 -Author: Vlad Mihalcea -Date: Tue Jul 12 16:25:26 2016 +0300 - - Add missing license headers - -commit dc5fe2cde8213e9b50bae0156dab652e6f44b060 -Author: Vlad Mihalcea -Date: Tue Jun 28 15:14:08 2016 +0300 - - HHH-10900 - ExceptionConverter throws an exception if the Proxy is no longer reachable - -commit 9c74438e99bc62093fb18be43516f91321a15786 -Author: Vlad Mihalcea -Date: Mon Jul 11 18:12:14 2016 +0300 - - HHH-10946 - Add utility to detect connection leaks during testing - -commit f0fe332991591be1308686647eb53c7559ca06f3 -Author: Andrea Boriero -Date: Mon Jul 11 12:52:21 2016 +0200 - - HHH-10944 - org.hibernate.test.mappingexception.MappingExceptionTest#testNotFound failure - -commit ffa6212b407ff8e4ae74d3ada5a74bc2823f9aed -Author: Vlad Mihalcea -Date: Tue Jul 12 09:32:06 2016 +0300 - - Fix code style issues - -commit 406a82616be1323708a5dde5ae67bf4985347fbe -Author: Gail Badner -Date: Mon Jul 11 18:34:08 2016 -0700 - - HHH-10551 : test case - - (cherry picked from commit c1f3b541945f2ab2eac28ae3299eba7914036126) - - Conflicts: - hibernate-core/src/test/java/org/hibernate/test/bytecode/enhancement/lazy/LazyBasicFieldNotInitializedTestTask.java - -commit cdd7fb66c841caa8a91f3b7712eca011aa80eb6a -Author: Gail Badner -Date: Thu Jun 23 14:10:37 2016 -0700 - - HHH-10888 : PluralAttribute#isAssociation returns true for @ElementCollection - -commit da4f5e1a57a4ca91de07184f5bb9d51c9dc3e269 -Author: Brett Meyer -Date: Mon Jul 11 15:33:35 2016 -0400 - - HHH-10947 Add @Repeatable to Hibernate-owned annotations - -commit 825ab027231728f331ada37e1edd44027dc246ee -Author: Vlad Mihalcea -Date: Mon Jul 11 16:58:06 2016 +0300 - - HHH-10945 - Move TransactionUtil from documentation to hibernate-testing - -commit ef46293c7886e1241526ee2ef0fd54fdcd56e4b3 -Author: Steve Ebersole -Date: Thu Jul 7 16:47:06 2016 -0500 - - disable hibernate-orm-modules tests under Java 9 - -commit acd2f238ee7435ccf80565a53a67b012b01a62f7 -Author: Chris Cranford -Date: Thu Jul 7 13:26:06 2016 -0500 - - HHH-10905 - Fix NPE when calling StatelessSession methods with null LockMode. - -commit 457715692cd044f89bde3fc2bafc60a1df5de916 -Author: Andrea Boriero -Date: Fri Jul 1 00:20:30 2016 +0200 - - 5.2.1 - -commit ae2ebc7e861b7b73acec027040a61c86f320952f (tag: 5.2.1) -Author: Andrea Boriero -Date: Thu Jun 30 18:34:48 2016 +0200 - - 5.2.1 - -commit 5b5d2b655947e8fbbd969fd7ac709fe30265121e -Author: Steve Ebersole -Date: Thu Jun 30 08:46:55 2016 -0500 - - HHH-10863 - Improve consistency of how we call implicitNamingStrategy.determineBasicColumnName with element collections - -commit 7f3a3bcbcc0a6e73c88f785d0fc24b8a70cec321 -Author: Guillaume Smet -Date: Thu Jun 30 10:30:45 2016 +0200 - - HHH-10863 Add a isCollectionElement() method to AbstractAttributeKey - - It allows external libraries to test for the collection element marker - without being aware of the exact syntax used as it might change in the - future. - -commit 9fd61a10dba3b61ec5b1f4dc5357ab4a4aeeb219 -Author: Guillaume Smet -Date: Thu Jun 16 19:15:08 2016 +0200 - - HHH-10863 Be consistent in the parameter passed to - ImplicitNamingStrategy#determineBasicColumnName - - When dealing with an element collection (say items.name), - ImplicitNamingStrategy#determineBasicColumnName is sometimes called - with items.collection&&element.name and sometimes with items.name. - - This is due to HHH-6005 which removes the "collection&&element." - part before calling determineBasicColumnName. - - With this patch, we only remove the "collection&&element." part before - calling the physical naming strategy, thus allowing us to be consistent - in the way we call ImplicitNamingStrategy#determineBasicColumnName. - -commit 570577b65340d782ef09877b437a50b4ec1710ad -Author: Gail Badner -Date: Thu Jun 30 00:20:42 2016 -0700 - - HHH-10851 : Change to check for @Access on field and getter before checking the class containing the attribute - -commit 0e6230faf07e26a8a00023617eec562f4a3ea66b -Author: Vlad Mihalcea -Date: Wed Jun 29 16:29:26 2016 +0300 - - HHH-10904 - Fix tests failing when switching to MySQL - -commit 5ef1da74c2d0c2566938758f772df2dfcf9ccad3 -Author: barreiro -Date: Mon Jun 13 20:35:17 2016 +0100 - - HHH-10851 - PropertyAccessMixed not aware of Access annotation - -commit cdc69a475bb9f37a61e571950072eaf777086cae -Author: barreiro -Date: Fri Jun 3 17:02:07 2016 +0100 - - HHH-10801 - Bytecode enhancement of @MappedSuperclass - -commit f0dfc1269b425640833eda00bced4543ffc3b0dc -Author: barreiro -Date: Fri Jun 24 06:06:44 2016 +0100 - - HHH-10865 - ManyToMany relation dropped from database when lazy loading is active - -commit 6cc9f6242a1c51141e2522b421c0c49b377cca30 -Author: Steve Ebersole -Date: Wed Jun 29 15:48:20 2016 -0500 - - HHH-10899 - Provide module ZIP file for upgrading WildFly to latest Hibernate - -commit 015b4a634438cd605bdd794f77ca6402a861af0d -Author: Gunnar Morling -Date: Wed Jun 29 20:03:57 2016 +0200 - - HHH-10899 Adapting classifier to resemble pattern known from HSEARCH - -commit 43d7d0d20f11ca927480d80e65913b7e45048232 -Author: Gunnar Morling -Date: Wed Jun 29 19:30:18 2016 +0200 - - HHH-10899 Adapting module.xml and test to ORM 5.2 - -commit e89d29eca858481d22d5e49637c4a1c3c5a4c8c5 -Author: Gunnar Morling -Date: Tue Jun 28 15:02:40 2016 +0200 - - HHH-10812 Ensuring correct order of build tasks - -commit 94389ee6b45d8ae96f3c378a13d246250f3ecf13 -Author: Gunnar Morling -Date: Tue Jun 28 10:56:45 2016 +0200 - - HHH-10812 Addressing review remarks - -commit 62b5cf6eacc45c0b618fb44b0bec8418eb1ff206 -Author: Gunnar Morling -Date: Mon Jun 27 17:19:59 2016 +0200 - - HHH-10812 Adding documentation - -commit 9ec9399ac484938451bd7b8e0dabba19cef79769 -Author: Gunnar Morling -Date: Mon Jun 27 14:07:08 2016 +0200 - - HHH-10812 Adding module ZIP and integration test for using Hibernate ORM 5.1 on WildFly 10 - -commit fe632bc09a60610c3ee94f0c69c8e76611863e0a -Author: Chris Cranford -Date: Wed Jun 29 13:24:33 2016 -0500 - - HHH-10906 - Remove the necessity of passing EnversService to AuditStrategy APIs. - -commit 20f68d43a45b0aad724ac1023f6f846c5d88438b -Author: Andrea Boriero -Date: Thu Jun 16 14:29:32 2016 +0100 - - HHH-8488 - Fix Join, CollectionJoin, SetJoin, ListJoin, MapJoin CriteriaBuilder#treat SetJoin behaviour - -commit 9d20d3ab03ed12762fa6f2175758ba7cf7f3f16e -Author: Andrea Boriero -Date: Thu Jun 16 14:24:53 2016 +0100 - - HHH-8488 - Add tests for issue - -commit cf0fb8d262ec725a4d0692e13d0a56d149d84584 -Author: Chris Cranford -Date: Wed Jun 15 13:06:35 2016 -0500 - - HHH-10807 - Added test case for JTA transactions and marked for rollback. - -commit ee4f939a043e93c024f9c463d919cfe4ef63d997 -Author: Chris Cranford -Date: Wed Jun 15 13:06:01 2016 -0500 - - HHH-10807 - Moved isActive from Transaction to TransactionImplementor. - -commit 1bc2f7c79cf6ae1d401ba621724cf2fc47103570 -Author: Chris Cranford -Date: Sat Jun 11 19:34:32 2016 -0500 - - HHH-10807 - Fix flush operation to work when transaction marked for rollback. - -commit e7933ababb3c59c1fd53eb8071e6cbf5380341c2 -Author: Chris Cranford -Date: Sat Jun 11 18:57:34 2016 -0500 - - HHH-10807 - Added isActive to Transaction and moved logic to TransactionDriver. - -commit a8bcedecbf58f109bc3a842a3c51bc46c0e0b585 -Author: Andrea Boriero -Date: Tue Jun 28 14:44:07 2016 +0200 - - HHH-10877 - Fix Introduce a configuration option to allow out of transaction updates - -commit 88e7254b6e6f9ad90f4d96f3f1f9635c363a51a6 -Author: Andrea Boriero -Date: Tue Jun 28 14:41:19 2016 +0200 - - HHH-10877 - Add test for issue - -commit 1d20ea4f60911a97937ad7a7ebf34c3580aa69bf -Author: Gail Badner -Date: Tue Jun 28 21:57:53 2016 -0700 - - HHH-10413 : byte[] as the version attribute broken - -commit 13db8b95e3a732307e1b07de453933561ac09c3d -Author: Gail Badner -Date: Tue Jun 28 17:11:26 2016 -0700 - - HHH-10729 HHH-9021 HHH-10230 : Add more checks to test cases - -commit 597183a3b9f375b525eda3227538f3aff4031f14 -Author: Andrea Boriero -Date: Mon Jun 20 15:16:52 2016 +0200 - - HHH-10861 - Fix nullLiteral in select expression - -commit e71af130f0c5244d8a7b2ce989b8d18fb578fd22 -Author: Andrea Boriero -Date: Sun Jun 19 12:00:49 2016 +0100 - - HHH-10729 HHH-9021 HHH-10230 - Fix Issue with literals in select expression - -commit e0963d56b98984222e2cd5120d8925e9303ec0cc -Author: Andrea Boriero -Date: Sun Jun 19 12:00:15 2016 +0100 - - HHH-10729 HHH-9021 HHH-10230 - Add test for issue - -commit 3855a48f1ef92848eec3884fadd5d58020a81a8f -Author: Andrea Boriero -Date: Sat Jun 25 12:30:01 2016 +0200 - - HHH-10843 - Fix QuerySyntaxException when use CriteriaBuilder.concat in selectCase expression - -commit a3ed7010b6712b8d037a2c1f3e8adea85c8c31c9 -Author: Andrea Boriero -Date: Sat Jun 25 12:28:54 2016 +0200 - - HHH-10843 - Add test for issue - -commit d889b412cd5a78b840ad8b548368610686bea545 -Author: Andrea Boriero -Date: Thu Jun 23 23:05:44 2016 +0200 - - HHH-10885 - QueryParameterBindingsImpl refactoring - -commit 92f5032cc08cef1a3848226c7697d35b2a3a7a84 -Author: Andrea Boriero -Date: Thu Jun 23 14:50:52 2016 +0200 - - HHH-10885 - Fix JPA Native Queries with ordinal parameter is zero based - -commit e99270c332ee1980dc2e676f0471abc711db29ca -Author: Andrea Boriero -Date: Thu Jun 23 14:50:39 2016 +0200 - - HHH-10885 - Add test for issue - -commit 0b34910b22386f930253e3ab8bc8e1b2eb7c8b86 -Author: Vlad Mihalcea -Date: Tue Jun 28 17:38:11 2016 +0300 - - HHH-10890 - PostgreSQL does not consider alias-specific LockMode - -commit 5cb5b68f9c9b7a37fd78cd6c637724862d18c725 -Author: Andrea Boriero -Date: Mon Jun 27 16:03:41 2016 +0200 - - HHH-10893 - Fix Reusing Query but changing collection parameters returns wrong result - -commit 0e0f497c2aa0acb0169d3bd979258c55d2c627ee -Author: Andrea Boriero -Date: Mon Jun 27 15:53:27 2016 +0200 - - HHH-10893 - Add test for issue - -commit 678cdc3b3bbaae01b4005e889f2b29dccb65dc53 -Author: Andrea Boriero -Date: Thu Jun 23 09:34:34 2016 +0200 - - HHH-10883 - Fix Restore the Maven artifact hibernate-java8 as an empty placeholder - -commit 1dc2fe1789479c9ac1a649662381a57be375363e -Author: Andrea Boriero -Date: Tue Jun 21 18:04:53 2016 +0200 - - HHH-10837 - Updated documentation - -commit 2d9caaf030bb49c132733751687d686bf1f48074 -Author: Andrea Boriero -Date: Tue Jun 21 17:11:13 2016 +0200 - - HHH-10837 - Changed new setting name to hibernate.jpa.static_metamodel.population - -commit 1558eb73a66c9cf24e5c55788ac4a7f78f07694e -Author: Andrea Boriero -Date: Tue Jun 21 11:23:58 2016 +0200 - - HHH-10837 - with jpaMetaModelPopulationSetting.DISABLED the MetadataContext is not created - -commit 248d9cca140614786d9c6f23ec10d0088bb6481c -Author: Andrej Golovnin -Date: Sun Jun 12 15:59:35 2016 +0200 - - HHH-10837 Add new setting to disable/enable scanning for the static metamodel. - -commit 83eb8b0f760734c292c6e46b620488c832c834f3 -Author: Andrea Boriero -Date: Tue Jun 14 18:34:16 2016 +0100 - - HHH-10341 - Fix failing test - -commit 04f1fcc762377200295b2e6dd316b06a944d219e -Author: Andrea Boriero -Date: Tue Jun 14 18:33:52 2016 +0100 - - HHH-10341 - Fix Specification violation in Implementation of TupleElement - -commit 57b954d476759e97561cab9c193ca785e4dd2d2c -Author: Andrea Boriero -Date: Tue Jun 14 18:33:00 2016 +0100 - - HHH-10341 - Add test for issue - -commit f59dfa2522cbfbf818539aa1f308c565f26b017b -Author: Vlad Mihalcea -Date: Mon Jun 27 17:28:04 2016 +0300 - - HHH-10889 - Fix unit tests failing on Oracle - -commit e779f6ae16b706a703500b69693c700e69237031 -Author: Vlad Mihalcea -Date: Thu Jun 23 18:12:22 2016 +0300 - - HHH-10886 - The follow-on-locking Oracle mechanism should consider UNION as well - -commit 41e7bd2cd4d571094096fd89e85a984d2327beee -Author: Steve Ebersole -Date: Mon Jun 27 15:29:16 2016 -0500 - - BinTray generic repo publishing - take 2 - -commit de584076ec53911aaa3476a074f62cd777c71e6a -Author: Vlad Mihalcea -Date: Thu Jun 23 17:48:26 2016 +0300 - - Document 5.2.1 follow-on-locking changes - -commit 9ac93156a0c4d4a9c9919addb4df19a3a600d1ea -Author: Vlad Mihalcea -Date: Thu Jun 23 16:01:07 2016 +0300 - - Update the Locking documentation - - - add a side-by-side comparison of LockMode and LockModeType - - describe the follow-on-locking behavior - -commit 253820a28935d256defdd6dac197d19836a38585 -Author: mharray -Date: Tue Jun 21 16:23:40 2016 +1200 - - HHH-10874 - @Where annotation is not processed with "Extra-lazy" loading for bidirectional collections - - For bidirectional collections, the where clause is now considered when calculating the size() of the LazyCollectionOption.EXTRA annotated collections - -commit eec01edcca9c01f3a748bdc3d203e7818447e312 -Author: Vlad Mihalcea -Date: Wed Jun 22 15:12:30 2016 +0300 - - HHH-10876 - DefaultIdentifierGeneratorFactory does not consider the hibernate.id.new_generator_mappings setting - -commit 59c0d48f8ddce2ebf5bff9cde96c2451ba4c8df8 -Author: Gail Badner -Date: Thu Jun 23 00:05:07 2016 -0700 - - HHH-10648 : No MultipleBagFetchException is thrown when fetching two bags eagerly - -commit ad5c0f63766f8efad7bcd7927e256f3e4c41e9c4 -Author: Andrea Boriero -Date: Wed Jun 22 15:39:06 2016 +0200 - - HHH-10860 - Fix Query#scroll() throws NPE - -commit 1e5a022e934c12330640a67d748edc759cc3983d -Author: Andrea Boriero -Date: Fri Jun 17 11:32:28 2016 +0100 - - HHH-10860 - Add test for issue - -commit 6c80bc4b083ae39f70cdcb0cc1eda259f7d71833 -Author: Andrea Boriero -Date: Wed Jun 22 15:48:48 2016 +0200 - - HHH-10839 - Fix checkstyle errors - -commit 60bfef093a500385afe932daad87749936f4e0b0 -Author: Gail Badner -Date: Tue Jun 21 17:15:31 2016 -0700 - - HHH-10761 : Moved test case to hibernate-entitymanager - -commit 0e9a349f8c506779b6e7fb73c0b2d8de88cc2424 -Author: Gail Badner -Date: Tue Jun 21 16:44:07 2016 -0700 - - HHH-10761 : Added test case - - (cherry picked from commit d5fa58e8506aeba1ef316c714318f2d631fa70e1) - -commit 6853fdae704644a22dc77cd54bbc312db2501c27 -Author: Gail Badner -Date: Tue Jun 21 00:52:22 2016 -0700 - - HHH-8999 : NullPointerException when updating or deleting multiple entities of same type with non-comparable IDs - -commit 280f93add3973595383a8a4af15d35f7f2e2ae8a -Author: Gail Badner -Date: Tue Jun 21 00:38:30 2016 -0700 - - HHH-8999 : Added test cases - -commit 59a3b4587ed44eb5610b319d28cb4091a801740c -Author: Sanne Grinovero -Date: Tue Jun 21 19:09:10 2016 +0100 - - HHH-10839 Restore some lost backwards compatibility (#1418) - - * HHH-10839 Restore some more selected deprecated APIs - - * HHH-10839 Restore backwards compatibility for org.hibernate.Query contract - - * HHH-10839 Missing override in the new org.hibernate.query.Query interface - -commit b11d10d742843a2687857e80d096270125fd1cb6 -Author: Emmanuel Bernard -Date: Wed Jun 8 09:59:08 2016 +0200 - - HHH-10813 Replace AssertionFailure with HibernateException when collection not processed by flush - -commit 4604258746d90729a9edc7922a076a7bac38a1b2 -Author: Martin Prebio -Date: Mon Jun 13 16:16:33 2016 +0200 - - Fix Javadoc typo - -commit b13fffee6c4f6dee5715f22260234a0135d8e424 -Author: Joël Marty -Date: Thu Jun 16 15:55:16 2016 +0200 - - HHH-10238: Derby MultiTableBulkIdStrategy uses non-existant temporary tables - - - DerbyDialect.java: make getDefaultMultiTableBulkIdStrategy() return a LocalTemporaryTableBulkIdStrategy - -commit aa6ab6d07439cc81a3741542975e26583c7dae97 -Author: Andrea Boriero -Date: Mon Jun 20 17:07:33 2016 +0200 - - HHH-10870 - Fix Parameter lookup for Iterable fails on Criteria API - -commit c8acf1ed9e73a8b104696a8bfe5256e26d94642e -Author: Andrea Boriero -Date: Mon Jun 20 18:27:22 2016 +0200 - - HHH-10870 - Add test for issue - -commit 69ee03a79cc599d659bca0eae6153de30a1138cd -Author: Vlad Mihalcea -Date: Mon Jun 20 12:34:26 2016 +0300 - - HHH-10826 Auxiliary Database Object no longer documented - HHH-10334 @Formula annotation javadoc contains database dependent sample usage - - Created a new section related to automatic schema generation - -commit 60aac117e619b6150c78432ce49cf1a104996600 -Author: Steve Ebersole -Date: Sun Jun 19 12:08:20 2016 -0500 - - HHH-10774 - SortedMap defined in .hbm.xml are not sortable - -commit b112e5af3fdeae297f3554b6408322e66da40f6d -Author: Steve Ebersole -Date: Sat Jun 18 15:12:23 2016 -0500 - - HHH-10864 - Allow ORM to be built with Java 9 - -commit ae1e89edbaddac369e055dbcff50df506937afba -Author: Steve Ebersole -Date: Sat Jun 18 12:10:12 2016 -0500 - - HHH-10864 - Allow ORM to be built with Java 9 - -commit 3040030bd8df2ad2aaf26ab4bd09dfde413f2d7e -Author: Steve Ebersole -Date: Fri Jun 17 19:15:08 2016 -0500 - - HHH-10864 - Allow ORM to be built with Java 9 - -commit 96043a8014c9ceb3c2c5ba15a8c6218a65189de1 -Author: Gunnar Morling -Date: Fri Jun 17 20:06:11 2016 +0200 - - HHH-10867 Updating Hibernate Validator to 5.2.4.Final - -commit fdd15307e01754df962cbfc418c2e544339f6b37 -Author: Steve Ebersole -Date: Fri Jun 17 10:55:24 2016 -0500 - - HHH-10864 - Allow ORM to be built with Java 9 - -commit 015be3df6ed3e0b7ffa1e0d2325ac8ad1e859aa7 -Author: Steve Ebersole -Date: Fri Jun 17 10:27:57 2016 -0500 - - HHH-10864 - Allow ORM to be built with Java 9 - -commit 45cd13a68f7db77ec98541add04152e0620d91e6 -Author: Steve Ebersole -Date: Fri Jun 17 13:35:03 2016 -0500 - - HHH-10823 - Consider adding hibernate-entitymanager again - -commit b7f17ce898916968b79f043757810828ae17cea1 -Author: Steve Ebersole -Date: Thu Jun 16 11:09:13 2016 -0500 - - HHH-10277 - AttributeConverter not applied to attributes of an embeddable used as collection element - -commit 309b1b27b0aab076c6b69a7f9ff31407cb8b064f -Author: Nikita -Date: Tue Jun 14 09:29:27 2016 +0200 - - HHH-10516 - Incorrect coalesce function for InformixDialect - HHH-10846 - InformixDialect has incorrect substring function - -commit 7ed51f44dd9ddcb7e596c397d97ba24ca883323a -Author: Gail Badner -Date: Fri Jun 3 00:14:04 2016 -0700 - - HHH-10562 : ManagedEntity linked list broken when non-associated enhanced entity is evicted - -commit 66172dd30e615b926d0bc0d2b9cd996da1809131 -Author: Chris Cranford -Date: Wed Jun 15 23:21:32 2016 -0500 - - Checkstyle fixups. - -commit 2852ca21d09094a42f3a90b9d69346c2c54b542b -Author: Mustafa Ulu -Date: Thu Jun 16 04:09:51 2016 +0300 - - Remove reference to EntityManager in README.md - - Hibernate EntityManager was merged into Core and no longer exists as a sub-project. - -commit 10a035481d9f13c707b606d97d9f0cc5a8bccc8e -Author: Gail Badner -Date: Fri Mar 11 01:30:53 2016 -0800 - - HHH-10360 : Natural ID columns are nullable by default - -commit 67c7858dd53aa0af39c9caed46d28910154a98db -Author: Gail Badner -Date: Wed Jun 15 16:46:04 2016 -0700 - - HHH-10360 : Added test cases - -commit 86fad5135691a5321683a9d6f8c953f31efc618e -Author: Chris Cranford -Date: Wed Jun 15 11:12:55 2016 -0500 - - HHH-8305 - Fix ToOne join tables with optional=true and OneToOne inverse mappings. - -commit 832b62f7bb96231c74bcd4fa30a5ea211a2d2ace -Author: Piotr Findeisen -Date: Tue Nov 18 14:47:31 2014 +0100 - - HHH-9486: Use follow-on locking when paging only - -commit 757f51d2988cde1c67ce08243fafc0eaec763aa5 -Author: Vlad Mihalcea -Date: Wed Jun 15 12:30:00 2016 +0300 - - Update Query#stream documentation to match the single type matching logic - -commit 097abe8be154a170ad8e7538d3a13a790ebf610a -Author: Vlad Mihalcea -Date: Wed Jun 15 06:44:46 2016 +0300 - - Externalize the ConnectionProvider delegate logic out of PreparedStatementSpyConnectionProvider - -commit da0b46d61c810533e7a642026ab12cdb2fedc0ba -Author: Andrea Boriero -Date: Tue Apr 19 21:02:22 2016 +0100 - - HHH-10375 - Fix adding an entity at index to list with @OrderColumn in detached Entity - -commit 6e47c2840aa8410cac44b320161e8fac1a771756 -Author: Andrea Boriero -Date: Tue Apr 19 21:01:45 2016 +0100 - - HHH-10375 - Add test for issue - -commit 77a4a9563fefeb8bad1aaa6b5fdd03554692060d -Author: Chris Cranford -Date: Tue Jun 14 10:44:53 2016 -0500 - - HHH-10811 - Fix character encoding issues with Enver's XML mappings when JVM encoding isn't UTF-8. - -commit e2343f873af2d3b70f1ec9f89b322bcda82548f1 -Author: Chris Cranford -Date: Sat Jun 11 21:34:31 2016 -0500 - - HHH-10824 - Fix query stream API to support returning R rather than Object[] when selecting one type. - -commit e9b48a881d26fcfd2f08a9f3f5c6aebce9930bb3 -Author: Vlad Mihalcea -Date: Tue Jun 14 13:52:35 2016 +0300 - - Change PreparedStatementSpyConnectionProvider so that it works with any given ConnectionProvider - -commit 6142f92d2fc282ad60138f676528a67d2d83a212 -Author: Vlad Mihalcea -Date: Tue Jun 14 12:02:14 2016 +0300 - - Improve the PreparedStatement assertion mechanism to rely on Mockito solely - -commit be93105e9a1b134971f2230ef66de3b5dbf0eafe -Author: Chris Cranford -Date: Mon Jun 13 23:29:38 2016 -0500 - - HHH-10299 - Fix DOM4J entity-mode deprecation warning for Envers audited entities. - -commit 69b8879e94f0f06d086827547dfb3868729ea33c -Author: Chris Cranford -Date: Mon Jun 13 22:23:17 2016 -0500 - - HHH-7510 - Fix LazyInitializationException for ManyToMany when deleting and global_with_modified_flag is enabled. - -commit 0eaf431ef66a48905d850ca42b765083d4322c78 -Author: Andrea Boriero -Date: Thu Feb 11 13:47:07 2016 +0000 - - HHH-10515 - Add test for issue - - HHH-10515 - Fix Stored procedure execution fails to find column - - HHH-10515 : Add test case using no JDBC DatabaseMetaData; move original test case to hibernate-core - - HHH-10515 - Fix Stored procedure execution fails to find column - -commit dde7a5d1a5e01c53672c8a9723617832da008800 -Author: Chris Cranford -Date: Mon Jun 13 19:13:32 2016 -0500 - - HHH-10841 - Fix columns with generated annotation not being tracked by Envers. - -commit 2ea122aedd0c32e5ab1c68e90dd8dd4ed33d2021 -Author: Andrea Boriero -Date: Tue Jun 7 13:18:26 2016 +0100 - - HHH-10352 - Fix HBM2DDL does not use described name for foreign key in join inheritance - -commit 4afa8fb57d097596a1934c4be5c577e14b249e10 -Author: Andrea Boriero -Date: Tue Jun 7 13:17:06 2016 +0100 - - HHH-10352 - Add test for issue - -commit 61e767c4bff60b28cdb256948f958e2897150687 -Author: Chris Cranford -Date: Mon Jun 13 17:20:33 2016 -0500 - - HHH-9128 - Correct documentation regarding EnversHibernateToolTask. - -commit 35cefeda2f49f213ed62b0ffba65d626132a3eb1 -Author: Andrea Boriero -Date: Fri Jun 3 12:33:38 2016 +0100 - - HHH-10796 - Fix org.hibernate.query.Query setProperties(Map map); set to null parameters not contained in the map - -commit 6027d8319e0b791ec9aa0c83f31636cbe2e1071c -Author: Andrea Boriero -Date: Fri Jun 3 12:29:02 2016 +0100 - - HHH-10796 - Add test for issue - -commit 8513a55255a90ebbcf7a6501677975a71b7a8a73 -Author: Vlad Mihalcea -Date: Mon Jun 13 18:27:58 2016 +0300 - - HHH-10822 - Wrong signature for SharedSessionContract#setJdbcBatchSize - -commit 28af8cb95aa9849dd168c83e0002d949bb85a5e5 -Author: Andrej Golovnin -Date: Sat Jun 11 22:39:16 2016 +0200 - - HHH-10835 The hash code calculation of the EntityKey should also include the hash code of the root entity name. - -commit 5318cef733be711356c45df276e1c667da5237b3 -Author: Chris Cranford -Date: Mon Jun 6 09:21:10 2016 -0500 - - HHH-10803 - Fix test to assert based on exception typing. - -commit 131127a49873d71c47fc10cc96e62ea5c8d0c566 -Author: Chris Cranford -Date: Mon Jun 6 09:01:27 2016 -0500 - - HHH-10803 - Fix getParameter methods to be JPA compliant with thrown exception types. - -commit 42f3028dca7a8e03e2642827dcbc19d73797a2c4 -Author: Chris Cranford -Date: Sat Jun 11 15:56:36 2016 -0500 - - HHH-10833 - JPA NoResultException and NonUniqueResultException not thrown from getSingleResult. - -commit ec86d2d4462c09e0277d2aac7f798fb7b3aa758b -Author: Gail Badner -Date: Fri Jun 10 14:31:01 2016 -0700 - - HHH-10511 : Restore and deprecate org.hibernate.property.access.spi.EnhancedGetterMethodImpl to maintain backward-compatibility - -commit a599d4fc1d3c803f5705c9f2386a11c6e4192fc3 -Author: Vlad Mihalcea -Date: Wed Jun 8 15:52:51 2016 +0300 - - HHH-10797 - PostgreSQL81Dialect does not honor the lock timeout settings - HHH-10799 - Add PostgreSQL 9.5 Dialect which supports the SKIP LOCKED clause - HHH-10816 - SQLServer2005Dialect does not use NOWAIT for aliases - HHH-10817 - AbstractHANADialect should support the NOWAIT directive in the FOR UPDATE clause - -commit 3d74c45e1d81621ac02c58a59644f2717817db1f -Author: Andrea Boriero -Date: Fri Jun 10 13:31:36 2016 +0100 - - HHH-10820 - Fix InformationExtractorJdbcDatabaseMetaDataImpl quoted table names - -commit c713c56f6cf153e4e4d92f8b049880f1f9977e06 -Author: Andrea Boriero -Date: Fri Jun 10 13:15:55 2016 +0100 - - HHH-10820 - Add test for issue - -commit 93a1a1f531f6589a7ed927e90b9e688116db44bd -Author: Andrea Boriero -Date: Mon Apr 18 10:09:26 2016 +0100 - - HHH-10427 - Modify test - -commit 1beb6ec27bc0bdc4dc57cd24fd238d375828a270 -Author: Andrea Boriero -Date: Thu Jun 9 18:49:45 2016 +0100 - - HHH-10427 - Fix Checkstyle error - -commit dfa3f52e251da142dd4bba4a910e49cd5571fc6a -Author: Sanne Grinovero -Date: Tue Jun 7 16:49:36 2016 +0100 - - HHH-10427 Make sure to cache Provided services in the fast-access map as well - -commit f7174c9207f966e8e8799c1471d202b2f969f664 -Author: Sanne Grinovero -Date: Fri Jun 3 18:39:58 2016 +0100 - - HHH-10427 Protect from double initialization and from concurrent destroy actions - -commit b626f289b7544e756d95ed00207391b9b9801f0c -Author: Sanne Grinovero -Date: Fri Jun 3 18:17:50 2016 +0100 - - HHH-10427 All access to mutable fields needs lock protection - -commit 5a3260fb026dee535581095ac33f9b25c77faa51 -Author: Sanne Grinovero -Date: Fri Jun 3 17:49:32 2016 +0100 - - HHH-10427 Binding to alternative implementations need to be a final field - -commit 9ecc646df2128de0143b235c855a74f3c986dc84 -Author: Gail Badner -Date: Tue May 31 16:46:30 2016 -0700 - - HHH-10427 - Fix ServiceRegistry creates multiple service instances and returns uninitialized services - -commit c1fde98aee18674a9e5ce8e56c81e9b0c76a994f -Author: Andrea Boriero -Date: Mon Apr 18 10:09:53 2016 +0100 - - HHH-10427 - Fix ServiceRegistry creates multiple service instances and returns uninitialized services - -commit 493793a2993dab497a9e80691bda56ceefc58fe0 -Author: Andrea Boriero -Date: Mon Apr 18 10:09:26 2016 +0100 - - HHH-10427 - Add test for issue - -commit 86727515f4fb1ad19414479dd51485a0aa3cc457 -Author: barreiro -Date: Thu Mar 31 06:15:15 2016 +0100 - - HHH-10245 - [enhancer] Do not expose ClassPool - -commit d95cecd91bba082bb3795b97c1a7a68f8aadf8d6 -Author: barreiro -Date: Sat Mar 26 16:57:04 2016 +0000 - - HHH-10642 - [enhancer] Use INVOKEVIRTUAL instead of INVOKESPECIAL - -commit 68169968a5684f1a096570c068290060a8f8d1fe -Author: barreiro -Date: Wed Mar 23 18:34:06 2016 +0000 - - HHH-10511 - drop EnhancedGetterMethod: use GetterMethod / GetterField instead - -commit c33735108a128868023b736893ccf9bfcc37788e -Author: barreiro -Date: Tue Mar 22 06:20:54 2016 +0000 - - HHH-10583 - [enhancer] also consider attribute type when finding the right mappedBy value - -commit 37b9a0c903225083e52e160f78bdd7b0f3eb5e9c -Author: barreiro -Date: Tue Mar 22 01:42:02 2016 +0000 - - HHH-10540 - [enhancer] Add CompositeOwner interface only once - -commit 4d9cd0a32da919bc7da60fd5c18df07f324aa322 -Author: Vlad Mihalcea -Date: Wed Jun 8 11:40:52 2016 +0300 - - HHH-10808 - Update documentation according to 5.2 changes - - Document Session-level JDBC batch size setting and add a new example for fetching a projection using Query.stream - -commit 4d02a619999a34b21227437805177cb49cbc378b -Author: Vlad Mihalcea -Date: Tue Jun 7 17:15:18 2016 +0300 - - HHH-10361 - Child module osgi does not exist in hibernate-tutorials - -commit 5963183c4adcc0a98ad83d4b055467f3dc77ae5a -Author: Vlad Mihalcea -Date: Tue Jun 7 13:40:04 2016 +0300 - - HHH-10808 - Update documentation according to 5.2 changes - -commit 78de650efec58367a4196eb41c1d5f99b291f036 -Author: Matthias Kurz -Date: Sun May 29 22:17:48 2016 +0200 - - HHH-10643 - Attribute 'foreignKeyDefinition' of @javax.persistence.ForeignKey ignored by schema exporter - -commit 2abf9ddac47d6df80becb9ec83a7afeace924ee4 -Author: Dionis Argiri -Date: Mon Jun 6 13:55:15 2016 +0300 - - HHH-10805 - fix hierarchy of PostgreSQL dialects. - -commit 30ad787c9e18c1c43e62fb8ff894f18728b16f53 -Author: Andrea Boriero -Date: Mon Jun 6 16:51:28 2016 +0100 - - HHH-10802 - Fix Attempt to resolve foreign key metadata from JDBC metadata failed to find column mappings for foreign key - -commit e03d4d1f88399d7e764e32104bbcecea6326f431 -Author: Andrea Boriero -Date: Mon Jun 6 16:51:02 2016 +0100 - - HHH-10802 - Add test for issue - -commit 816c97613deb4bd6b1074d339cb1f2a859e630d9 -Author: Alex Belyaev -Date: Fri Nov 21 03:39:15 2014 +0400 - - HHH-9512: Avoid creation of invalid managed -> managed entity mapping in MergeContext when traversing cascade loop - -commit 62ac35213f17b7ff78337f688d083727ba0bda6b -Author: Gail Badner -Date: Tue Apr 26 13:34:15 2016 -0700 - - HHH-10679 HHH-10712 : Fix subselect fetching in load plans - - (cherry picked from commit d444be1fdbf3618ce1f52b6ea8b8812fbfd795db) - - Conflicts: - hibernate-core/src/main/java/org/hibernate/loader/plan/exec/process/internal/ResultSetProcessingContextImpl.java - -commit 545930c39fbb4ed8187086fbcdf3d299dfc1f82c -Author: Vlad Mihalcea -Date: Wed Jun 1 12:30:17 2016 +0300 - - HHH-1594 - Add on-delete="cascade" support to unidirectional *ToOne relationships. - -commit c579c8b451d0f9ecd72e9bbc5ad209f4b2106f4d -Author: Martin Simka -Date: Wed Jun 1 13:59:44 2016 +0200 - - HHH-10756 fix procedure name in test - -commit db6832fc1f8743b1c5dd7fea8ac147365fcfd4f6 -Author: Anthony Foulfoin -Date: Wed Jun 1 14:14:49 2016 +0200 - - HHH-10786 - Add MySQL 5.7 JSON datatype support - -commit 465db26f7017f723540b22aa8e2e2d23c3d44400 -Author: Steve Ebersole -Date: Wed Jun 1 23:21:43 2016 -0500 - - 5.2.0 - -commit 47bd722dc78c61ba337be457f14fb5101f1eaac4 (tag: 5.2.0) -Author: Steve Ebersole -Date: Wed Jun 1 23:20:15 2016 -0500 - - 5.2.0 - -commit 4aea273813b3019c937cfc4115e39690f2b8d0f7 -Author: Steve Ebersole -Date: Wed Jun 1 22:53:00 2016 -0500 - - 5.2.0 - -commit e615d76a261d1825d9c6581b03ede7e393a13428 -Author: barreiro -Date: Wed May 18 17:36:08 2016 +0100 - - HHH-10646 - [enhancer] Add support for @MappedSuperclass - -commit 3a0824a03754eefa630e38f1a32ae2c2c0ef5c0d -Author: Steve Ebersole -Date: Wed Jun 1 20:51:46 2016 -0500 - - HHH-10287 - Cache keys no longer include the entity type - -commit 114ea15b304e282d20327cdd1e11a54ba58b787d -Author: Andrea Boriero -Date: Mon May 9 17:04:06 2016 +0100 - - HHH-10085 HHH-10143 - Fix issues with Criteria and case expressions - -commit 73aa3592427b55309f942525e4fece719be2a301 -Author: Louis Jacomet -Date: Thu May 26 17:13:06 2016 +0200 - - HHH-10664 Remove duplicate cacheAccess.close() invocation - -commit 6fec54a9f6c5d4934108d38260f5b086258b4c54 -Author: Louis Jacomet -Date: Wed May 25 17:00:38 2016 +0200 - - HHH-10773 Update toString of the READ_WRITE JCache Item - - It now matches the toString of StandardCacheEntryImpl - -commit cab099c59a5198b564bffe5317ce96cf9f1bb357 -Author: Louis Jacomet -Date: Wed May 25 11:05:06 2016 +0200 - - HHH-10770 JCache provider documentation - -commit 2ddefd615b53325ec58b1c92aaba63878f8c3eee -Author: Chris Dennis -Date: Fri Apr 22 16:08:29 2016 -0400 - - HHH-10770 JCache provider updates - - * Steer away from EntryProcessor - * Add tests - -commit a872885a43263ffc312f214b60997927f37c618b -Author: Alex Snaps -Date: Wed Mar 19 21:43:42 2014 -0400 - - HHH-10770 JCache 2nd-level cache - - * Provider and CacheManager creation - * Caches creation - * Region class hierarchy - * Different access strategies - -commit 030f442f3cd894ff9defff62ac3b0eecc39d9d83 -Author: Andrea Boriero -Date: Tue Apr 19 13:40:00 2016 +0100 - - HHH-10372 - Fix Sequence generator for idbag ignores generator parameters - -commit a9e4eb489516bc67c054ca5d10c00a2723c7f7cf -Author: Andrea Boriero -Date: Tue Apr 19 13:39:11 2016 +0100 - - HHH-10373 - Add test for issue - -commit 3cb2390b3dff09f7198a0d22ecc2053a0e33c22f -Author: Chris Cranford -Date: Tue May 31 23:39:38 2016 -0500 - - 10664 - Prepare Envers for 5.2 - Deprecated AuditReader getCurrentRevision. - -commit 885f76a92ff9d783cbdd3482cf74dfa5e14f01b3 -Author: Gail Badner -Date: Fri May 20 14:57:21 2016 -0700 - - HHH-10757 : select new ..." with CAST( NULL AS ...) fails - -commit 8cd51b450a8bd618b719c5376f061f282ba6b52d -Author: Janario Oliveira -Date: Fri Sep 4 21:54:24 2015 -0300 - - HHH-7355 - Added support to join with of many-to-many relation - -commit 438e9643f935814fa9a946d5a5e311dcf0f25d0c -Author: Vlad Mihalcea -Date: Tue May 31 16:06:57 2016 +0300 - - HHH-10781 - Remove all slf4j dependencies - -commit 5e8bb78b778e11d644b313074c48df21e62556c9 -Author: Timo Verhoeven -Date: Mon Mar 23 16:06:08 2015 +0100 - - HHH-10780 - Provide a PrimitiveByteArrayTypeDescriptor toString implementation - -commit 455368dccd077453d74d765a5c36681c63c79f7d -Author: Timo Verhoeven -Date: Mon Mar 23 16:06:08 2015 +0100 - - HHH-9676 - TypeSafeActivator.applyDDL doesn't process composing constraints when @NotNull is present - -commit f2427fa28a5ba358fb73997d082879e0c610022e -Author: Gail Badner -Date: Wed Feb 24 22:47:30 2016 -0800 - - HHH-10476 : Getting an entity with composite ID containing a detached entity fails if PersistenceContext contains a managed copy - -commit 9f27f0fa2a8ad4cadb87f4882ac5c3c5b54a2962 -Author: Chris Cranford -Date: Thu May 26 16:18:03 2016 -0500 - - HHH-10365 - Added org.hibernate.envers package to the manifest comment. - -commit ab0b44c569ae6255e2ff5a56685d9ed4a54b9c17 -Author: Chris Cranford -Date: Thu May 26 16:00:49 2016 -0500 - - HHH-10365 - Add Envers native and JPA test cases. - -commit 60b3ce796b757c1cc92ba33168be68632e0a24e8 -Author: Chris Cranford -Date: Thu May 26 15:38:24 2016 -0500 - - HHH-10365 - Fixed test build dependency failure. - -commit 53e044334e54c8d6d89b7e69cc17b4c4aef570e7 -Author: Brett Meyer -Date: Thu May 26 14:13:54 2016 -0400 - - HHH-10365 checkstyle - -commit d27acc33d156aad30b95f60bf7b2a9957be0c318 -Author: Brett Meyer -Date: Thu May 26 12:05:33 2016 -0400 - - HHH-10365 added envers to OsgiIntegrationTest - -commit 69bdf979cb1da5089b33e1711d75d29f0ead3c2d -Author: Brett Meyer -Date: Thu May 26 10:49:03 2016 -0400 - - HHH-10365 added OsgiClassLoaderService support for non-container-managed JPA, tweaked method overloading - -commit 585a8aa757c8ee8c090c221ffdf102415b7f6398 -Author: Kankare Timo -Date: Fri Mar 11 12:35:23 2016 +0200 - - HHH-10365: Initializing ClassLoaderService in OsgiPersistenceProvider. - -commit bf9b3f524d271eaf055cfda4f66a7a3acb714c0d -Author: Vlad Kuznetsov -Date: Tue May 10 21:47:24 2016 +0300 - - HHH-6781 - Class level @Where annotation is not enforced on collections of that class - -commit 80472f6a433d441fa1bdf7889d118440e6e296bf -Author: Andrea Boriero -Date: Wed May 25 22:30:55 2016 +0100 - - HHH-10513 - Fix locking WARN message logged when query LockMode is NONE - -commit 70c6abcbaeee4f6a76cb3521fbf792bb64659c35 -Author: Andrea Boriero -Date: Thu Feb 11 18:28:45 2016 +0000 - - HHH-10513 - Add test for issue - -commit 45e76918e88f6c0d6beb382cd037ad3f91a95ecb -Author: Vlad Mihalcea -Date: Thu May 19 16:09:48 2016 +0300 - - HHH-10773 - Add a toString() implementation to the READ_WRITE Ehcache Item object - -commit 1345d515d20ce6ef2db56e1629065b7be4ed18df -Author: Vlad Mihalcea -Date: Wed May 25 10:27:57 2016 +0300 - - HHH-10772 - RuntimeException during releaseStatements causes JDBC connection not to be closed - -commit 50b788266339ac7f22f2f43dc011378e7b0b0aad -Author: Dgray16 -Date: Tue May 24 15:48:30 2016 +0300 - - HHH-10766 Resolve mapping 'type' parameter error - -commit 0834ab6b1d31a768e87e33c4390ade40b5811f8e -Author: Vlad Mihalcea -Date: Wed May 25 13:00:33 2016 +0300 - - HHH-10052 - documentation about hashCode and equals not up to date - -commit 92dfd6993753515943ab1d8ef182b169a55bfeb0 -Author: Gail Badner -Date: Tue May 17 19:37:02 2016 -0700 - - HHH-10756 : StoredProcedureQuery with OUT param fails with Oracle when using named parameters - -commit a3207ca5a8b999c116ddd59070dcb4f092175068 -Author: Vlad Mihalcea -Date: Tue May 24 11:51:30 2016 +0300 - - HHH-10754 - Add support for PARTITION keyword in @Formula - -commit f18a749c12bd3820922ce3e8400ba9045920071c -Author: Vlad Mihalcea -Date: Tue May 24 15:53:18 2016 +0300 - - HHH-10431 - Session-level configurable batch size support - -commit 5a47abbbfef4ff00a4aecc7f37e1ce4f8373c6b2 -Author: Michael Hum -Date: Sat Jul 18 21:18:22 2015 -0400 - - HHH-9951 - Formula annotation doesn't properly escape keywords/types - -commit 6be82328b5c5db7610a783702808d8f5a9672753 -Author: Chris Cranford -Date: Mon May 23 20:12:24 2016 -0500 - - HHH-10762 - Document relation traversal api. - -commit a59ebb7e5316297d67a1a8e2c8cc90e987c9838c -Author: Felix Feisst -Date: Sun May 22 13:01:01 2016 +0200 - - HHH-10762 -Implemented left joins for relation traversion in audit - queries by leveraging the new HQL feature to join unrelated entities. - Furthermore, the implementation of inner joins have been improved by - using the same new HQL feature. The audit query API has been extended to - support criterias where two properties of different entities are - disjuncted, conjuncted or directly compared to each other. - -commit c94718774840db6a9d5c817fbd2d5f6ebc599903 -Author: Vincent Ricard -Date: Sun May 22 17:55:48 2016 +0200 - - HHH-10765 Some links in the user guide are broken - HHH-10522 Invalid reference to naming chapter in user guide - HHH-10524 Invalid reference wrt composite identifiers - HHH-10525 Invalid reference to bytecode enhancement in User Guide - -commit 5a1194d57196d9bfa8fe7816f2a8718a4eafc97e -Author: Guillaume Smet -Date: Fri May 20 22:24:21 2016 +0200 - - HHH-10760 Add a getter to Index to expose the columnOrderMap - -commit 13b278b6639ff4614347dcf9d3ca9dd7d33dbca8 -Author: Vincent Ricard -Date: Sun May 22 18:15:18 2016 +0200 - - HHH-10535 Documentation: hibernate.order_updates configuration property - -commit 0e1b79d2b52d7281bf977c3c0ec691f6822011eb -Author: Steve Ebersole -Date: Fri May 20 08:49:21 2016 -0500 - - HHH-10708 - Accessing a lazy collection in an enhanced class deletes it afterwards - -commit e91feda6d9e733940885cdd648fb69f076acdff8 -Author: barreiro -Date: Tue May 17 04:41:04 2016 +0100 - - HHH-10708 - Test cases - -commit 0a92e384bd391972d7f739945c88fc094172c992 -Author: Chris Cranford -Date: Thu May 19 11:25:27 2016 -0500 - - HHH-10736 - Fix regression introduced for windows line separator parsing. - -commit 1223683192f9a0d437af82cf10566384cf849fc7 -Author: Vlad Mihalcea -Date: Thu May 19 17:26:29 2016 +0300 - - Add a \r\n on the expected form too - -commit 2315a5fcbf3634b66f5ba73924af4e3393e05dfc -Author: Vlad Mihalcea -Date: Thu May 19 15:23:03 2016 +0300 - - HHH-10736 - - Provide test case for situations when \r\n is used as a line separator - - Add a temporary "fix" to demonstrate how we can handle the issue - -commit e2c5b340933069cff96242abc5f465615dcad20c -Author: Vlad Mihalcea -Date: Thu May 19 17:19:22 2016 +0300 - - Fix checkstyle issue caused by finally block being misplaced - -commit d65829502542444f7a04ae10eabdea24865c61ad -Author: Vlad Mihalcea -Date: Thu May 19 17:08:11 2016 +0300 - - Fix checkstyle issue due to improper use of spacing - -commit e6d3ad5013734f86ff8ac392ebec367d23e4f57c -Author: a.navrotskiy -Date: Thu Sep 18 16:57:24 2014 +0400 - - HHH-9406 - Add method for get avg execution time for offen but really fast queries (where avg execution time ~0-1 ms) - -commit 3ef05dea2f3bef01d4f18725a0fcec00ec1f24d4 -Author: Greg Jones -Date: Mon Jul 6 12:24:04 2015 +1000 - - HHH-9894 - Support Informix Boolean Type - -commit e1f783ca39c3022680924d6ac7ff414a7d718fb6 -Author: Vlad Mihalcea -Date: Thu May 19 08:47:49 2016 +0300 - - Add Derby to dbBundle list - -commit 87fb8af34f0e02ef250a85815fb82c58af09a45d -Author: soldierkam -Date: Tue Dec 15 00:01:27 2015 +0100 - - HHH-10714 - Add support for @Immutable attribute types - -commit d47fc9309022fadedf0c8220fa8ac36bcb1505b8 -Author: Andrea Boriero -Date: Wed May 18 12:34:33 2016 +0100 - - HHH-10752 - Fix ProcedureCallImpl registers every paremeter twice - -commit c5704dbafafa07ca79c5edc996134c7073853196 -Author: Vlad Mihalcea -Date: Thu Apr 14 13:04:32 2016 +0300 - - HHH-10750 - Add stored procedure unit tests for Oracle, MySQL, PostgreSQL, and SQL Server - -commit b9f99b5bca782b14081f9694ccfcca16168548c0 -Author: Vlad Mihalcea -Date: Wed May 18 10:06:25 2016 +0300 - - Fix layout issue in documentation due to improper use of spacing for preformatted text - -commit 231484662bbdf1d52453dae66c3df14814f757cb -Author: Vlad Mihalcea -Date: Tue Apr 26 12:55:05 2016 +0300 - - HHH-10689 - Fix tests failing when switching to Oracle - -commit eb2bf6e2e7a2cec2510b91d0bee2b4629d46c01f -Author: Chris Cranford -Date: Tue May 17 08:02:53 2016 -0500 - - HHH-10664 - Prepare Envers for 5.2 - deprecation fixes, javadoc fixes, java 8 code adoption. - -commit bdff7ab169be972f045d834a754b803fc7d2469a -Author: Steve Ebersole -Date: Mon May 16 11:25:01 2016 -0500 - - HHH-9339 - java.lang.Optional support - -commit aa9e1f0baf760fa4c659158a6fe238ce37acd35a -Author: Steve Ebersole -Date: Mon May 16 11:14:05 2016 -0500 - - HHH-9339 - java.lang.Optional support - -commit 9dca4b82ae88a0ef2712518b13f78cea09442396 -Author: Chris Cranford -Date: Fri May 13 14:19:01 2016 -0500 - - HHH-10246 - Fix Envers usage of JoinColumn with NaturalId. - -commit 18a068ab5d94da2e8f9cde2fa3a887640f7f92c0 -Author: Andrea Boriero -Date: Fri May 13 16:06:59 2016 +0100 - - HHH-10664 - Fix NativeQueryImpl#doScroll(ScrollMode) does not apply scrollmode - -commit d54b7ad50f42b5ceb92c1f482ad9e8678bff6da9 -Author: Andrea Boriero -Date: Fri May 13 13:44:15 2016 +0100 - - HHH-10691 - Fix other PostgreSQL test failures after HEM integration - -commit 25c75eed6fe09df9d231c6c264cb0fa686b66bcb -Author: Vlad Mihalcea -Date: Mon Apr 18 17:58:16 2016 +0300 - - HHH-10691 - Fix tests failing when switching to PostgreSQL - HHH-10696 - Add a new CatalogFilterTest - -commit eb308a953a26579d4b0804e9b7eca9b40d61be8a -Author: Steve Ebersole -Date: Fri May 13 08:38:06 2016 -0500 - - HHH-9340 - Streams API for query result processing. - -commit b990cf08ea26f08849a032e546c3e9d2c74151af -Author: Andrea Boriero -Date: Fri May 13 14:13:10 2016 +0100 - - HHH-9340 - Fix checkstyle error - -commit 7cae5ba95bf355d1023c25820e45eaf5f984bcb7 -Author: Steve Ebersole -Date: Thu May 12 21:21:31 2016 -0500 - - HHH-9340 - Streams API for query result processing. - -commit 14b34c78bdae1f7a8144ff31433d6088eae8559a -Author: Andrea Boriero -Date: Fri May 13 11:46:26 2016 +0100 - - HHH-10601 - Fix test - -commit 0b9e81d35c1acbac2dbbed26f5ed2210cd76a853 -Author: Andrea Boriero -Date: Thu Apr 14 16:45:50 2016 +0100 - - HHH-10526 - Fix SchemaMigrator does not apply SchemaFilter on foreign keys - -commit 7ac83badf38ded331a50cdc625c8bfbeb5320af5 -Author: Andrea Boriero -Date: Mon Apr 11 21:19:44 2016 +0100 - - HHH-10605 - Fix HSQLDialect dosn't use 'if exists' when dropping sequences - -commit 62a1b928819a5fc99bf83eaf409800ce970014af -Author: Andrea Boriero -Date: Mon Apr 11 21:18:57 2016 +0100 - - HHH-10605 - Add test for issue - -commit 4ebad67bb16ac6c330fe9210f90ef60ccbdde6a6 -Author: Chris Cranford -Date: Thu May 12 15:55:57 2016 -0500 - - HHH-10734 - Fix envers creating unnecessary audit rows when array field types used. - -commit dc44ef93788e96d01e1145648bb9dd80f973da4d -Author: Chris Cranford -Date: Thu May 12 10:39:25 2016 -0500 - - HHH-8070 - Updated documentation to reflect the 'in' operator usage. - -commit 383972d6c24160f3407baa96a001c8f3edb8743f -Author: Chris Cranford -Date: Tue May 10 20:46:14 2016 -0500 - - HHH-8070 - Added IN criteria support to AuditRelatedId. - -commit 6871824f4d6cfce110ce632b74a74dce8ebb0b6d -Author: Chris Cranford -Date: Wed May 11 12:16:25 2016 -0500 - - HHH-8507 - Fix SQL Server 2005 limit handler to be tolerant of carriage returns. - -commit 31a75390f72504831ba4965280f906614529ac5b -Author: Andrea Boriero -Date: Fri Apr 15 11:01:20 2016 +0100 - - HHH-10684 - Fix No target script generated for update action when using schema-generation - -commit 58fce234dfb2619e07c59e2c87cef385d14cf864 -Author: Andrea Boriero -Date: Fri Apr 15 11:00:36 2016 +0100 - - HHH-10684 - Add test for issue - -commit 67c0e681708622e2cf4d59b3314da7d1a88680dc -Author: Andrea Boriero -Date: Tue Apr 12 11:45:32 2016 +0100 - - HHH-10678 - Fix hbm hibernate-mapping's schema attribute is ignored - -commit ed991e385ed86ca74af01fb95607e529ce9697dd -Author: Andrea Boriero -Date: Tue Apr 12 11:16:41 2016 +0100 - - HHH-10678 - Add test for issue - -commit 251a19ef249c9d8a8d7fd8b199571bd504f13497 -Author: Andrea Boriero -Date: Wed May 11 20:06:51 2016 +0100 - - HHH-10718 - Fix Underscore in table name can result in SchemaExtractionException: More than one table found - -commit bc8fc81efa78eef04d6e0255ffc0d16f9f3b9b04 -Author: Andrea Boriero -Date: Wed May 11 20:05:57 2016 +0100 - - HHH-10710 - Add test for issue - -commit ffb7470ce8fe1ee651fe26d0c976026a7cfe0c63 -Author: Andrea Boriero -Date: Fri Mar 25 12:29:31 2016 +0100 - - HHH-10601 - Fix Persistence.generateSchema - the output file contains duplicated DDL statements - -commit 998a55e30773ceb0922d4b2f7b0bbe2de26e42cf -Author: Andrea Boriero -Date: Thu Mar 24 11:20:04 2016 +0000 - - HHH-10601 - Add test for issue - -commit 03aa47ab76b6b7515f6f516aff7fa079617c6387 -Author: Chris Cranford -Date: Wed May 11 22:18:41 2016 -0500 - - HHH-10468 - Fix Envers global_with_modified_flag to allow override behavior when set to false. - -commit 811758835469151d1b6f9739b65a06127d067b2f -Author: Chris Cranford -Date: Wed May 11 17:15:00 2016 -0500 - - Checkstyle fix - Added file header. - -commit a67b42ca64e48ff66ec9db03946aa7073feec4bc -Author: Chris Cranford -Date: Wed May 11 16:01:02 2016 -0500 - - HHH-9178 - Fix QueryException when querying audited entities with embeddables. - -commit 69b8202c7574a9c8a365e569f273c4505fcc292e -Author: Steve Ebersole -Date: Fri May 6 14:22:15 2016 -0500 - - HHH-9602 - Schema validation fails when materialized view is involved - -commit 823572174735971e0503c241d6fa9652a35e0ff2 -Author: dionis -Date: Fri Feb 6 12:48:46 2015 +0200 - - HHH-9602 - added new dialect for PostgreSQL 9.3 that supports materialized views & enable materialized view support. - -commit 43a62ad47731864298e8c9754e02cce9df77e4a3 -Author: Chris Cranford -Date: Mon May 9 11:56:53 2016 -0500 - - HHH-10664 - Prep 5.2 feature branch - Correct other module tests to build properly. - -commit d44e535b12696bcadc3b00644551e48e263430b1 -Author: Chris Cranford -Date: Fri May 6 20:57:16 2016 -0500 - - Checkstyle fix - -commit 5331b32a60422fba27f3473346298d55bc677857 -Author: Naros -Date: Mon Apr 18 08:43:08 2016 -0500 - - HHH-10688 - Update user guide and migration document regarding envers deprecated settings. - -commit 7854e1d33843d938bbf18497ea78c473e7152d2d -Author: Naros -Date: Wed Apr 20 18:44:27 2016 -0500 - - HHH-9084 - Added regression test case. - -commit 9b13e3bb82a5f02c4dc3712a5455d3b0c739aeb3 -Author: Naros -Date: Thu Apr 21 15:56:42 2016 -0500 - - HHH-10706 - Correct native queries that fail when using a case-sensitive database dialect. - -commit b775dd184708a16c862779174a888aa2e2f23bc6 -Author: Naros -Date: Thu May 5 20:34:01 2016 -0500 - - HHH-6374 - Add test case for EnumMap support. - -commit 2b66cd72bbcf96a07820e7c2f7ee61c23819f8c5 -Author: Chris Cranford -Date: Fri May 6 18:37:59 2016 -0500 - - Checkstyle fixups - -commit 58473c87dd6bc0a0c420ab2c75a113e886650712 -Author: Chris Cranford -Date: Fri May 6 14:37:00 2016 -0500 - - HHH-10664 - Prep 5.2 feature branch - Envers - -commit 89e63ebc4fa500749de99b0b1b80a332789843cc -Author: Steve Ebersole -Date: Fri May 6 13:38:48 2016 -0500 - - HHH-10664 - Prep 5.2 feature branch - -commit 8c9152040c469a096cd78b18234a66c973d5e07e -Author: Steve Ebersole -Date: Fri May 6 13:27:14 2016 -0500 - - HHH-10664 - Prep 5.2 feature branch - -commit 69c8ef29a856c1aec242e089b97d5f4b442ffee9 -Author: Andrea Boriero -Date: Fri May 6 18:58:08 2016 +0100 - - Steve fix NoCdiAvailableTest - -commit a6af7c6f743f50ab351d8e4a1726636d86aef468 -Author: Andrea Boriero -Date: Fri May 6 18:34:46 2016 +0100 - - remove gradle stupid log :) - -commit 9ae57a6f7addc80c6aa4bb9f55b43baeee47189e -Author: Andrea Boriero -Date: Fri May 6 18:28:31 2016 +0100 - - remove hibernate-entitymanager project - -commit b77626ddbd0a3e3c29a902275a9b589e0c5df4c8 -Author: Andrea Boriero -Date: Fri May 6 17:31:58 2016 +0100 - - other changes - -commit 37fc401da891544c1596c9b45822a3b1e459e7e2 -Author: Andrea Boriero -Date: Wed May 4 21:19:34 2016 +0100 - - copy test from hem to core - -commit 5e30247c6f1bf8cdd8356a849a73af363a3ef9df -Author: Steve Ebersole -Date: Thu May 5 16:07:35 2016 -0500 - - HHH-10669 - Allow to add SF-scoped services through a ServiceContributor - -commit 60dd63536efb97b72b4e357b70efd4e8b65ae271 -Author: Steve Ebersole -Date: Thu May 5 15:33:23 2016 -0500 - - HHH-10726 - Support for Java 8 date/time types as Query parameters - -commit d44bacedd0debdecf5896ee1bcff5a57f74cbc50 -Author: Steve Ebersole -Date: Thu May 5 13:43:09 2016 -0500 - - HHH-10674 - SessionFactoryObserver could use a sessionFactoryAboutToClose method - -commit 6cb8ef26ac77d556c373525eabecf16b8c93bb14 -Author: Steve Ebersole -Date: Thu May 5 12:26:15 2016 -0500 - - HHH-10674 - SessionFactoryObserver could use a sessionFactoryAboutToClose method - -commit 11fc090557c8c85422cb5ffd517864240450e714 -Author: Steve Ebersole -Date: Wed May 4 11:10:27 2016 -0500 - - HHH-10664 - Prep 6.0 feature branch - merge hibernate-entitymanager into hibernate-core (migrate HEM tests - first attempt) - -commit 2e1d1a6f16e90563c4f65583d4e2b718ea0918dc -Author: Andrea Boriero -Date: Tue May 3 17:58:26 2016 +0100 - - Fix TransactionJoiningTest - -commit 2a252d5015d5502b2c697a185b92875eba379538 -Author: Steve Ebersole -Date: Tue May 3 12:34:04 2016 -0500 - - HHH-10664 - Prep 6.0 feature branch - merge hibernate-entitymanager into hibernate-core (test fixup) - -commit f30c879bca0f935bd0efbc67d839d2a6ec46ac43 -Author: Chris Cranford -Date: Tue May 3 12:29:09 2016 -0500 - - Removed checkOpen() from accessTransaction() - -commit 7b3570149df73e8d80d065a3596cdd301d2e1802 -Author: Steve Ebersole -Date: Tue May 3 12:21:11 2016 -0500 - - HHH-10664 - Prep 6.0 feature branch - merge hibernate-entitymanager into hibernate-core (test fixup) - -commit 0f2ced4668aff4e7e9e466a31694fbac499de9c0 -Author: Chris Cranford -Date: Tue May 3 11:53:06 2016 -0500 - - - Add new configuration setting ALLOW_JTA_TRANSACTION_ACCESS. Uses can use this setting to - override default JPA behavior for transaction access if needed. - - Added new SPI method accessTransaction() which bypasses checks and returns the current or new transaction. - -commit f826b7d5e870c8da47eaef3341574221ee7834bb -Author: Steve Ebersole -Date: Tue May 3 10:39:19 2016 -0500 - - HHH-10664 - Prep 6.0 feature branch - merge hibernate-entitymanager into hibernate-core (test fixup) - -commit 52fd42ebb46e2a89d6ece345c9ebc40b4189cbb1 -Author: Steve Ebersole -Date: Tue May 3 10:02:49 2016 -0500 - - HHH-10664 - Prep 6.0 feature branch - merge hibernate-entitymanager into hibernate-core (Query#getHints) - -commit d06055a9512c8ee74d5935891d065e1e0f4604d0 -Author: Steve Ebersole -Date: Tue May 3 09:09:47 2016 -0500 - - HHH-10664 - Prep 6.0 feature branch - merge hibernate-entitymanager into hibernate-core (Query#getHints) - -commit 71f69b09a6020d7ba6300e9c0439472a8008b325 -Author: Andrea Boriero -Date: Tue May 3 11:30:22 2016 +0100 - - Fix LockTimeoutPropertyTest - -commit 71009d0da4cd1e36c8fbcd36922899317ec09bfd -Author: Steve Ebersole -Date: Mon May 2 23:53:35 2016 -0500 - - HHH-10664 - Prep 6.0 feature branch - merge hibernate-entitymanager into hibernate-core (fix test failures) - -commit 9ecb2a3deb1407d61b31672004fcf7aef7ac8238 -Author: Steve Ebersole -Date: Mon May 2 23:19:01 2016 -0500 - - HHH-10664 - Prep 6.0 feature branch - merge hibernate-entitymanager into hibernate-core (fix test failures) - -commit 1c1783e90f6071ad4b18f34b762c4b4f1508923b -Author: Steve Ebersole -Date: Mon May 2 18:00:42 2016 -0500 - - HHH-10664 - Prep 6.0 feature branch - merge hibernate-entitymanager into hibernate-core (fix test failures) - -commit b67b5866ace0d234c5b50cd14a76e7c42bed1aaf -Author: Steve Ebersole -Date: Mon May 2 16:56:30 2016 -0500 - - HHH-10664 - Prep 6.0 feature branch - merge hibernate-entitymanager into hibernate-core (fix test failures) - -commit 68bde01676ee28a5d641c3e1c95966b45b582a67 -Author: Steve Ebersole -Date: Mon May 2 15:20:40 2016 -0500 - - HHH-10664 - Prep 6.0 feature branch - merge hibernate-entitymanager into hibernate-core (fix test failures) - -commit 6e5a4e63352454efe094f35be610f6caaa4fb1e6 -Author: Chris Cranford -Date: Mon May 2 14:36:05 2016 -0500 - - Fix javadoc/comments to indicate ordinals are stored 0-based rather than 1-based. - -commit 5a328d1d72f17b1ffec21ba196fda7f9c79225f0 -Author: Steve Ebersole -Date: Mon May 2 14:31:39 2016 -0500 - - HHH-10664 - Prep 6.0 feature branch - merge hibernate-entitymanager into hibernate-core (fix test failures) - -commit 66802a70c152e81bb8ecfab601b6e7b0f9c193a0 -Author: Steve Ebersole -Date: Mon May 2 12:22:08 2016 -0500 - - HHH-10664 - Prep 6.0 feature branch - merge hibernate-entitymanager into hibernate-core (fix test failures) - -commit 1ece6056d199441bd3003986aa6aaeb62542daf3 -Author: Steve Ebersole -Date: Mon May 2 11:57:16 2016 -0500 - - HHH-10664 - Prep 6.0 feature branch - merge hibernate-entitymanager into hibernate-core (fix test failures) - -commit c79ff0f7ee8fa21224ca4642bcaa9f862a89b147 -Author: Andrea Boriero -Date: Mon May 2 17:06:14 2016 +0100 - - Fix PackagedEntityManagerTest - -commit 4ad242799a6970b06a2ef1ec6f70aba57c49ddae -Author: Steve Ebersole -Date: Mon May 2 10:10:34 2016 -0500 - - HHH-10664 - Prep 6.0 feature branch - merge hibernate-entitymanager into hibernate-core (misc) - -commit 614d406e8cb58f56eaf35d00ad6b1f715e88c41e -Author: Andrea Boriero -Date: Mon May 2 15:51:05 2016 +0100 - - fix ValidatorFactory2PhaseInjectionTest - -commit 7ce75e4080b8a09bd162d266ae0ecb700977a76f -Author: Steve Ebersole -Date: Mon May 2 09:34:20 2016 -0500 - - HHH-10664 - Prep 6.0 feature branch - merge hibernate-entitymanager into hibernate-core (autoClear fix) - -commit c4378c1c9d4d7738d1f30f89581ea00cc73593eb -Author: Andrea Boriero -Date: Mon May 2 15:13:38 2016 +0100 - - Fix not masked properties - -commit 4f1bca75bcb06196a97d13f0e81c5a5e8158d60c -Author: Andrea Boriero -Date: Mon May 2 11:09:56 2016 +0100 - - Fix JPA Transaction#commit() does not throw RollbacackException - -commit 3637bd342d017452a986cf2803074ec0385b5bed -Author: Andrea Boriero -Date: Sun May 1 19:22:29 2016 +0100 - - Fix RefreshTest - -commit d6a3fdb771cc35e8655181bf1aded8b29e793c2e -Author: Andrea Boriero -Date: Sat Apr 30 19:56:52 2016 +0100 - - Fix EntityManagerFactoryClosedTest - -commit fd7ada315e1a0e8cb58c423aa46510c51c169e81 -Author: Chris Cranford -Date: Fri Apr 29 17:44:00 2016 -0500 - - Fixed NullPointerException when building session. - -commit a54da750add12277e5353045b1c8513270ef3725 -Author: Chris Cranford -Date: Fri Apr 29 17:39:47 2016 -0500 - - Fixed failing tests and code to treat '?' parameters as 0-based ordinals and '?' parameters as named 1-based parameters. - -commit 8a746b98a7cb7382311ac1b32dc9cc439a94da5d -Author: Steve Ebersole -Date: Fri Apr 29 15:06:30 2016 -0500 - - HHH-10664 - Prep 6.0 feature branch - merge hibernate-entitymanager into hibernate-core (stored procedure queries) - -commit a765335563f03bfd6e1dee535871f994d3a5a92a -Author: Chris Cranford -Date: Fri Apr 29 14:50:41 2016 -0500 - - Fixed mapping problem with field named "from". - -commit affa6a086c1210b55433b84313b5da46b6218bbc -Author: Chris Cranford -Date: Fri Apr 29 14:48:26 2016 -0500 - - Fix FlushMode - -commit 1e6a601795ac2d5935f05f9d5e5a5728d2b560ee -Author: Andrea Boriero -Date: Fri Apr 29 18:24:21 2016 +0100 - - Fix NonNullableCircularDependencyCascadeTest - -commit bedb33decf554925d5102a5c22a1c6d58f6eed1e -Author: Steve Ebersole -Date: Fri Apr 29 10:08:27 2016 -0500 - - HHH-10664 - Prep 6.0 feature branch - merge hibernate-entitymanager into hibernate-core (Interceptor handling) - -commit 8f812730d1940fdb17f1e36c10e0b624960a8eec -Author: Andrea Boriero -Date: Fri Apr 29 16:41:21 2016 +0100 - - Fix setLockMode - -commit bec73b3bd3acd910682cd16287d7826752759ef5 -Author: Andrea Boriero -Date: Fri Apr 29 12:57:39 2016 +0100 - - Fix MultiCircleJpaCascadeTest#testPersistNoCascadeToTransient() test - -commit 9e4b90e72a9f499bddb5a5a6a97edaf3d11cd00d -Author: Andrea Boriero -Date: Fri Apr 29 12:13:48 2016 +0100 - - Fix test transactionCoordinator.isActive() check - -commit 7570baed15e0dcd8c6c4d432cf453711eba014ce -Author: Andrea Boriero -Date: Fri Apr 29 10:10:13 2016 +0100 - - Fix issue with jta getTransaction() - -commit ad7771d4895ab8ae5ab59f4b0e7aa90461787363 -Author: Chris Cranford -Date: Thu Apr 28 21:01:11 2016 -0500 - - Removed an unnecessary check. - -commit 35f27be5899d8bbe27b3e53646bf783e812dc9cf -Author: Chris Cranford -Date: Thu Apr 28 20:53:23 2016 -0500 - - Changed positional parameter mappings to be stored as list. - Added JPA positional and named parameter translation support. - -commit 8ef423a1b3bd315724358513162a94bbba4f8822 -Author: Steve Ebersole -Date: Thu Apr 28 18:36:47 2016 -0500 - - HHH-10664 - Prep 6.0 feature branch - merge hibernate-entitymanager into hibernate-core (have HibernateException extend JPA PersistenceException) - -commit f4d8a9d850a730ecc2a3ca8e8caf3ed2b3a28930 -Author: Andrea Boriero -Date: Thu Apr 28 17:54:01 2016 +0100 - - Fix unwarp for SharedSessionContractImplementor - -commit b352756377fa32edec44109ee69202745f052729 -Author: Andrea Boriero -Date: Thu Apr 28 16:29:04 2016 +0100 - - Fix ManipulationCriteriaTest - -commit da4ee5bbac646cc3de02875b5c4c31cbed1ef490 -Author: Andrea Boriero -Date: Thu Apr 28 15:40:56 2016 +0100 - - Fix issue with getMetamodel() called before its initialization - -commit 4f72bd0cef6380ab3765242673d68ae79c643ecf -Author: Andrea Boriero -Date: Thu Apr 28 15:00:33 2016 +0100 - - Fix guessType() method refactoring - -commit 3839fc8c8b131f8f940a66ec418ae315ce2ed291 -Author: Andrea Boriero -Date: Thu Apr 28 13:52:12 2016 +0100 - - Fix ParameterTest - -commit 13ce7148ae264ed8e014f534564b3c90a4ab187b -Author: Andrea Boriero -Date: Thu Apr 28 10:30:20 2016 +0100 - - Fix closing entity manager that uses a closed session factory, must throw IllegalStateException - -commit c10c006b0d0bfdbd72370a840f28964669134182 -Author: Chris Cranford -Date: Wed Apr 27 21:51:14 2016 -0500 - - Fix ordinal bind parameter binding to fix SQLLoaderTest testCompositeIdId. - -commit 33c4f3b5b5d75ac38e5685acc923fa2147173892 -Author: Andrea Boriero -Date: Wed Apr 27 18:51:45 2016 +0100 - - fix Session#refresh() exception - -commit d2ac092992698d56d4c187e6cf9bfcc50322f153 -Author: Steve Ebersole -Date: Wed Apr 27 14:22:57 2016 -0500 - - HHH-10664 - Prep 6.0 feature branch - merge hibernate-entitymanager into hibernate-core (HEM tests - JPA requirements around access to Transaction delegate after EntityManager is closed; also its requirement that the same Transaction delegate be available across all calls to its commit/rollback methods) - -commit 5e37492490b566cf3b699783c21e5bd93953b1d2 -Author: Steve Ebersole -Date: Wed Apr 27 14:11:29 2016 -0500 - - HHH-10664 - Prep 6.0 feature branch - merge hibernate-entitymanager into hibernate-core (HEM tests - JPA requirements around access to Transaction delegate after EntityManager is closed; also its requirement that the same Transaction delegate be available across all calls to its commit/rollback methods) - -commit 2c96937587cf4ab88a042f1765d027a6a3a45d35 -Author: Steve Ebersole -Date: Wed Apr 27 12:26:32 2016 -0500 - - HHH-10664 - Prep 6.0 feature branch - merge hibernate-entitymanager into hibernate-core (HEM tests - JPA requirements around access to Transaction delegate after EntityManager is closed; also its requirement that the same Transaction delegate be available across all calls to its commit/rollback methods) - -commit 8e6d51d56d8ad8f6eb574602b28fafeb3a955b90 -Author: Steve Ebersole -Date: Wed Apr 27 10:28:41 2016 -0500 - - HHH-10664 - Prep 6.0 feature branch - merge hibernate-entitymanager into hibernate-core (added org.hibernate.boot.spi.SessionFactoryOptions.isJpaBootstrap) - -commit 2d2e496e10b74ee381c368026dbce8315cbc34fc -Author: Andrea Boriero -Date: Wed Apr 27 16:12:06 2016 +0100 - - Fix MasterDetailTest - -commit 482771ad9999da3992064fdae6e9e0b9bbddee04 -Author: Steve Ebersole -Date: Wed Apr 27 10:09:15 2016 -0500 - - HHH-10664 - Prep 6.0 feature branch - merge hibernate-entitymanager into hibernate-core (initial compilation and work on hibernate-entitymanager tests) - -commit a7a039e291a039b6a5b7c9d2e7bafb24e6b26276 -Author: Steve Ebersole -Date: Wed Apr 27 09:28:30 2016 -0500 - - HHH-10664 - Prep 6.0 feature branch - merge hibernate-entitymanager into hibernate-core (continued fixing of hibernate-core test failures) - -commit 16c78f0438144c5ecfce884ae4323ade4b66b9c1 -Author: Steve Ebersole -Date: Wed Apr 27 09:10:56 2016 -0500 - - HHH-10664 - Prep 6.0 feature branch - merge hibernate-entitymanager into hibernate-core (continued fixing of hibernate-core test failures) - -commit 49514b92e3b555ce76a47294d545c09a54059cb5 -Author: Andrea Boriero -Date: Wed Apr 27 11:38:24 2016 +0100 - - Fix ImmutableNaturalIdTest - -commit dc0033aa9d5a3ac0ebd5333641677f8220fa413e -Author: Andrea Boriero -Date: Wed Apr 27 11:17:58 2016 +0100 - - Fix IdClassTest - -commit 44efc0162ed16ddcc084a01671330b01b81e9ec5 -Author: Andrea Boriero -Date: Wed Apr 27 10:09:00 2016 +0100 - - Fix error causing ClearEventListenerTest failure - -commit d34153f52ecfa9e88a68b2a6b42ec3a3d72ea65a -Author: Chris Cranford -Date: Tue Apr 26 21:19:11 2016 -0500 - - FIx setProperties functionality. - -commit 713263a71c8ff03e4996b2c396f1c79c47cf1356 -Author: Chris Cranford -Date: Tue Apr 26 19:22:39 2016 -0500 - - Fix SuppliedConnectionTest failure. - -commit ebfab98f2ebcd603f9378c916f98efeab94107f6 -Author: Steve Ebersole -Date: Tue Apr 26 18:33:00 2016 -0500 - - HHH-10664 - Prep 6.0 feature branch - merge hibernate-entitymanager into hibernate-core (continued fixing of hibernate-core test failures) - -commit d9ac176989f0562700666b18f1778318a6a89992 -Author: Andrea Boriero -Date: Tue Apr 26 23:50:59 2016 +0100 - - Fix for TuplizerDynamicEntityTest and ImprovedTuplizerDynamicEntityTest - -commit 16b0b74bd2a30c8950af9cd86e4fc5c11ac16377 -Author: Chris Cranford -Date: Tue Apr 26 17:35:02 2016 -0500 - - Fixed assertion errors and session.merge returning correct exceptions. - -commit 4e2f0f804d78b47175677ee821f710de728b4305 -Author: Chris Cranford -Date: Tue Apr 26 12:54:18 2016 -0500 - - Fix typo - -commit 9076c78785d76eea2d0e7bcf634a774ef3574e33 -Author: Chris Cranford -Date: Tue Apr 26 12:49:37 2016 -0500 - - Fix TransactionRequiredException failures. - -commit a9ffd13efb521512d6a71344b7e3dac293cd544c -Author: Andrea Boriero -Date: Tue Apr 26 18:19:40 2016 +0100 - - Fix SessionEventListenerManager serialization issue - -commit 63e96a46cef45c4444adf67c55816735753cb8ba -Author: Steve Ebersole -Date: Tue Apr 26 11:33:30 2016 -0500 - - HHH-10664 - Prep 6.0 feature branch - merge hibernate-entitymanager into hibernate-core (continued fixing of hibernate-core test failures) - -commit a340d11eea821540f9a0f152e206db4f1fc8b95f -Author: Chris Cranford -Date: Tue Apr 26 11:30:01 2016 -0500 - - Fixed exception handling to expect IllegalArgumentException rather than QueryExceptioin - -commit 4b2e96c6e9c185a2f94b5289e49a22940db17489 -Author: Andrea Boriero -Date: Fri Apr 22 22:08:38 2016 +0100 - - Fix SecondaryTableTest - -commit 7b107539db80b0e3fc989ac751d8e1978efda89e -Author: Andrea Boriero -Date: Fri Apr 22 22:05:08 2016 +0100 - - Fix BasicHibernateAnnotationsTest - -commit d67db86f734523d74b514d65a65e3943410b62db -Author: Andrea Boriero -Date: Fri Apr 22 21:56:09 2016 +0100 - - Fix EmbeddableIntegratorTest - -commit 59ed7fa29b1fb44f2e6e8dd1de3bdf1024912815 -Author: Steve Ebersole -Date: Tue Apr 26 10:57:29 2016 -0500 - - HHH-10664 - Prep 6.0 feature branch - merge hibernate-entitymanager into hibernate-core (continued fixing of hibernate-core test failures) - -commit 5c5de945e56b613b6ed8d0acc060bb124ca23584 -Author: Andrea Boriero -Date: Mon Apr 25 17:11:04 2016 +0100 - - HHH-10664 - Fix SortedSet issue - -commit b4b158aaffece62abd6e8c38f42ca00eeba36610 -Author: Chris Cranford -Date: Sun Apr 24 00:18:58 2016 -0500 - - Fixed missing bound parameters not throwing QueryException - -commit 993e308e96e80add29fa1dcc2aa0845760f342a5 -Author: Chris Cranford -Date: Sun Apr 24 00:01:49 2016 -0500 - - Fixed query-based read-only support during iteration. - -commit 76bac3268ab78f8cc287c0f002b61398609d94f4 -Author: Steve Ebersole -Date: Tue Apr 26 09:56:45 2016 -0500 - - HHH-10664 - Prep 6.0 feature branch - merge hibernate-entitymanager into hibernate-core (continued fixing of hibernate-core test failures) - -commit 34b439223eb8914c047a502e34a2b97c24b16a50 -Author: Andrea Boriero -Date: Fri Apr 22 21:06:56 2016 +0100 - - Fix ConfigurationTest - -commit a0da5fe6770fe655840bbd256d641fa40c4f9bfd -Author: Andrea Boriero -Date: Fri Apr 22 16:17:06 2016 +0100 - - Fix some tests - -commit e3ab793fe8cedb1061fea4edd9ed06816a389806 -Author: Steve Ebersole -Date: Fri Apr 22 09:24:38 2016 -0500 - - HHH-10664 - Prep 6.0 feature branch - merge hibernate-entitymanager into hibernate-core (continued fixing of hibernate-core test failures) - -commit 87e3f0fd28d7229b0a35032292ff32f542c22010 -Author: Steve Ebersole -Date: Tue Apr 19 13:14:02 2016 -0500 - - HHH-10664 - Prep 6.0 feature branch - merge hibernate-entitymanager into hibernate-core (first sucessful full compile of consolidated hibernate-core) - -commit 774b805ce1bd01abde8f18c399ab49580b569263 -Author: Steve Ebersole -Date: Mon Apr 18 10:30:54 2016 -0500 - - initial HEM->CORE consolidation work - -commit 15c83ab61b6ffaf5f36f41f8a039eba4766a1041 -Author: Dominique Toupin -Date: Wed Nov 25 08:57:51 2015 -0500 - - HHH-10332 - Disambiguate missing table name - -commit 58303884bd609708824037e15e65483f1bc9bd97 -Author: Andrej Golovnin -Date: Wed Dec 16 21:04:06 2015 +0100 - - HHH-10382 - GetterFieldImpl creates unnecessary objects - -commit 2d8e9d66e2b8090009e3d8007a03a6da4bbc8f04 -Author: Kirill Vlasov -Date: Tue Dec 22 11:31:22 2015 +0500 - - Fixing squid:S2259 - Null pointers should not be dereferenced - -commit b3e260b234cb65ef7dc96c98e66ce79ebb9203be -Author: Michael Schnell -Date: Sat Apr 23 12:57:01 2016 +0200 - - HHH-1237 Escaping colon in queries - -commit 5c724307c780ef5992c2bf7e6909c0c185481d75 -Author: Gustavo Adolfo Rodríguez Libreros -Date: Sun Apr 24 22:44:04 2016 -0500 - - HHH-9570: Auto-detect SQL Server 2014 - - Copying a previous workaround for the same issue: https://github.com/hibernate/hibernate-orm/pull/395 - - - Previously, SQL Server version 12 (SQL Server 2014) was an unknown version, resulting in the SQLServerDialect - - Add version 12 to the switch statement so that SQLServer2012Dialect is now returned by default, as SQL Server 2014 is much more similar to SQL Server 2012 than SQL Server 2000 - - Add test case - - Add Oracle and SQL Server environments for testing purpose - -commit 5c8c794553bdff07d71e26327cb11d9ce5da0571 -Author: Karel Maesen -Date: Sun Apr 17 15:58:15 2016 +0200 - - Updates Spatial Documentation - -commit cc10cbebc2ec20595dc908aa53dc3d057a0a57e3 -Author: Naros -Date: Mon Apr 4 13:24:22 2016 -0500 - - HHH-10670 - Removed deprecated ValidTimeAuditStrategy - -commit 3152bb0ffb0fc21303badd6578562874dfbe5628 -Author: Martin Simka -Date: Thu Jan 28 14:48:05 2016 +0100 - - [HHH-10290] ignore environment property hibernate.jdbc.batch_versioned_data in BatchVersionedDataConfigTest - -commit 18dd88c957102fd7ef4e5ebbdb5933ac31ac667f -Author: Martin Simka -Date: Fri Mar 4 12:13:31 2016 +0100 - - [HHH-10587] skip NationalizedIgnoreCaseTest on db2 and postgresql(plus) as they don't support nString - -commit 78685964ec850c216497617dda611e0527febe3f -Author: Jan Martiska -Date: Mon Mar 7 16:43:15 2016 +0100 - - HHH-10598 - Oracle JDBC driver can't handle entities with a one-character name in some cases - -commit e591b70cf75f5136735154203414a8a6e394c18e -Author: Martin Simka -Date: Fri Mar 4 13:22:43 2016 +0100 - - [HHH-10588] use H2Dialect in ConnectionsReleaseTest - -commit 3e959005edebf53557854ce8c7ffd3c2b6a6e8ed -Author: Danny02 -Date: Mon Mar 7 20:00:56 2016 +0100 - - HHH-10612 - Check for support of RefCursor in Java 8 - -commit e861182f197ebfe88831d04ea2e44c48431fddbe -Author: Martin Simka -Date: Thu Mar 24 13:35:32 2016 +0100 - - [HHH-10640] fix wrong expected statement on DB2 - -commit cbdab9d87f05b4255c7930a32fe995f87f0f3e0b -Author: Zhenlei Huang -Date: Mon Mar 28 03:16:04 2016 +0800 - - HHH-10649 - When 2LC enabled, flush session and then refresh entity cause dirty read in another session / transaction - -commit a68a6c677052c6b1adb0cd0c78ff05ac2d53c261 -Author: Martin Simka -Date: Thu Mar 24 14:22:07 2016 +0100 - - [HHH-10641] Fix identifier is too long exception for test LongVarcharValidationTest - -commit 7c75a92db454d8e968600c7510cedf46ef08151c -Author: Zhenlei Huang -Date: Tue Mar 29 10:09:03 2016 +0800 - - HHH-10652 - The HHH-10631 test makes wrong assertion - -commit 3d04839825d95b6061043d737c3532eb9a4cb15c -Author: Steve Ebersole -Date: Thu Mar 31 12:39:08 2016 -0500 - - HHH-10664 - Prep 6.0 feature branch - target Hibernate version 6.0.0 - -commit fa0db89f7f140084aa310139164f6264788da66f -Author: Steve Ebersole -Date: Thu Mar 31 12:27:52 2016 -0500 - - HHH-10664 - Prep 6.0 feature branch - merge hibernate-java8 into hibernate-core - -commit 8ddd61b061c01ce3dd2e18bfd549f687fe1cc1bc -Author: Steve Ebersole -Date: Thu Mar 31 12:04:10 2016 -0500 - - HHH-10664 - Prep 6.0 feature branch - baseline Java 8 - -commit 9570f110a10484ba53c0b5565e3c48f1d08cab06 -Author: Vlad Mihalcea -Date: Thu Mar 31 14:23:06 2016 +0300 - - User Guide grammatical corrections - -commit da5aae74e653b1f72ebf64f03769021fdde7cd31 -Author: Vlad Mihalcea -Date: Thu Mar 31 12:23:08 2016 +0300 - - Add JPA-related configuration properties in the new User Guide - -commit 985229f9a7854260a47784d3cfd228f4a8ed9042 -Author: Vlad Mihalcea -Date: Thu Mar 31 09:09:02 2016 +0300 - - HHH-10662 - Fix inconsistencies between quoting-related configuration properties JavaDocs and their default values assigned at the code level - -commit de6d80a67bedb3545f9c16b41cb4e81ff3821e4f -Author: Dominique Toupin -Date: Mon Jan 18 09:51:54 2016 -0500 - - HHH-10456: Report the class name were the invalid PrimaryKeyJoinColumn is present - -commit 849c4d21f63500b8a0bf8f5d47a4523732db37fa -Author: Vlad Mihalcea -Date: Mon Mar 28 13:35:37 2016 +0300 - - Document available Hibernate configurations - -commit 86b49a0ce7e9e9afff947ffd270e8ff572d88f9f -Author: Sanne Grinovero -Date: Tue Mar 29 16:39:20 2016 +0100 - - HHH-10657 Make 'none' a valid option for hibernate.hbm2ddl.auto - -commit 68298bbc45193597d2b03f7ee34300a4d037c015 -Author: Andrea Boriero -Date: Wed Mar 30 10:55:59 2016 +0200 - - HHH-10650 - Hibernate SchemaExport does not filter ForeignKey for namespaces and tables - -commit add68bbe93f26712a1ddf4421ecf76405c92abd9 -Author: Andrea Boriero -Date: Tue Mar 29 18:04:48 2016 +0200 - - Add mariadb config to be used with gradle processTestResources -Pdb= - -commit 6036f00781a380205e2dc93c6612decd570477b8 -Author: yinzara -Date: Thu Jan 14 08:55:25 2016 -0800 - - HHH-10429 - Change SimpleValue isIdentityColumn method to return true if the generator class used extends from IdentityGenerator instead of simply being equal to IdentityGenerator - -commit a634ccebbaf20e29c1b55acb2915aeff93e606fb -Author: Martin Simka -Date: Mon Mar 7 13:32:58 2016 +0100 - - [HHH-10596] add missing dialect-scope for oracle12c - -commit 4c7525d89e44e7d25360eecf2f5c6037622044e6 -Author: Andrea Boriero -Date: Tue Mar 22 17:42:45 2016 +0000 - - HHH-10632 - Fix comment on column missing seperator between table name and column - -commit feab5063c6e14a879d15324967cc72bbd2bf1de0 -Author: Andrea Boriero -Date: Tue Mar 22 16:50:03 2016 +0000 - - HHH-10632 - Add test for issue - -commit 565318067bda9718d1b720bdb3ea50768863569a -Author: Vlad Mihalcea -Date: Tue Mar 22 16:16:03 2016 +0200 - - HHH-9271 - IdentityGenerator broken with quoted identifiers - - Use dialect for verifying quoting - -commit 573518cfc9ac1a7a33ce4caa63f9aac25df899fc -Author: Vlad Mihalcea -Date: Tue Mar 22 16:17:18 2016 +0200 - - Fix test failing on H2 because the table name is a reserved keyword - -commit 9608b3904a2ef8483600e137084b3da788aa4980 -Author: Vlad Mihalcea -Date: Tue Mar 22 15:16:21 2016 +0200 - - Apply the database configuration testing to the documentation module - -commit c62c367957cfc4cc7416d96c65483c5a8b4b42de -Author: Vlad Mihalcea -Date: Wed Mar 16 16:01:11 2016 +0200 - - HHH-9271 - IdentityGenerator broken with quoted identifiers - -commit 11c74b4ebb8af5fe5b21f1a43e9bfb1ce97cfd3a -Author: Vlad Mihalcea -Date: Tue Mar 22 11:10:09 2016 +0200 - - Fix import issue. Instead of jpamodelgen, the TestForIssue annotation should be loaded from testing. - -commit 7aea8a60e9597b6b5d4422c9f227b758c2329b2f -Author: mdebeljuh -Date: Sun Mar 20 20:50:17 2016 +0100 - - HHH-10633 - JPA 2.1 Named Entity Graph in ORM XML loaded without subgraph - - Process subgraphs and subclassSubgraphs concomitantly - -commit 66d2436759cb5ffa426846aa0ac00f625915c6d9 -Author: Zhenlei Huang -Date: Sat Mar 19 23:13:16 2016 +0800 - - HHH-10631 - Auto evict collection cache not work when owner side update parent to null - -commit 5799aae2e59df4e52475fe2d55b86fb388c7e1dc -Author: Vlad Mihalcea -Date: Mon Mar 21 09:30:56 2016 +0200 - - HHH-7412 - JDBCTransactionFactory.getDefaultReleaseMode() returns incorrect ConnectionReleaseMode - - Switch back to AFTER_TRANSACTION for JDBC transactions. - -commit 732abea8e54557993a1e48f8725ad8a2c2cd879f -Author: Janario Oliveira -Date: Mon Mar 14 14:06:34 2016 -0300 - - HHH-10614 - Auto evict collection cache throws exception with null values - -commit 0ed39c7746fd2c2a91612243e11f87aebe8cac14 -Author: Vlad Mihalcea -Date: Tue Mar 15 18:23:53 2016 +0200 - - Change hibernate.properties to take configurable environment settings - -commit ec4f20a5fba79444dbd704f1305f961c339dd7d1 -Author: Vlad Mihalcea -Date: Mon Mar 14 17:53:00 2016 +0200 - - Remove @NotNull annotation that was imported from com.sun.istack.iternal which triggers a compilation failure on OpenJDK - -commit 5b61df95917ad441fccdd2beeb68497e7dab85f6 -Author: Vlad Mihalcea -Date: Mon Mar 14 16:46:09 2016 +0200 - - HHH-9306 - Wrong DDL generated by hibernate when using MappedSuperclass containing ManyToMany relation - - Add a test to prove that the issue does not replicate anymore. - -commit 4546cc698affe66588e27054f5bae63684f5e479 -Author: Janario Oliveira -Date: Sat Mar 5 18:02:35 2016 -0300 - - HHH-10592 - Query with literal parameter and fails with attribute converter - -commit 7232b7ccd546ccc8cdd98896dcc510a2cb0251ec -Author: Janario Oliveira -Date: Wed Mar 9 18:46:51 2016 -0300 - - HHH-10608 - Avoid exception from Hibernate.initialize when lazy_no_transaction is enabled - -commit bdb458a609c4d4d120c7274e2ce262679a96778a -Author: Gail Badner -Date: Fri Mar 11 13:55:19 2016 -0800 - - HHH-10269 : JDBC Statement is not closed if exception appeared during query execution - -commit 3e00630808044fa7b744d7bf3505e5430d80589c -Author: Steve Ebersole -Date: Fri Mar 11 09:06:35 2016 -0600 - - HHH-9693 - H2 : Hibernate cannot validate it's own created schema - -commit 0756bbfccf9f99f73082b5a87970c6e08fdfefc5 -Author: Vlad Mihalcea -Date: Thu Mar 10 10:04:25 2016 +0200 - - HHH-4161 - persistence.xml not following JSR220 spec - - Switch to an OS-independent way of checking absolute paths - -commit 1c2107899aa84bc8c426b99de0c14b6faa2f49d8 -Author: Gail Badner -Date: Wed Mar 9 16:51:51 2016 -0800 - - HHH-10556 : Failure getting a PluralAttributePath for collection declared in a superclass marked @Entity - -commit 4a54c911c17bc0742ce28f302cb26b3d7965ff50 -Author: Gail Badner -Date: Mon Feb 22 23:19:00 2016 -0800 - - HHH-10556 : Failure getting a PluralAttributePath for collection declared in a superclass marked @Entity - -commit 0385b1436a754c9feb6c7319bdd4a0ef92ad514f -Author: Janario Oliveira -Date: Mon Mar 7 22:29:52 2016 -0300 - - HHH-10602 - Retrieve cached value with enable_lazy_load_no_trans throws an exception - -commit cf27164532f2bbf1d0ef56efcb304d573ae6f2aa -Author: Vlad Mihalcea -Date: Wed Mar 9 14:00:28 2016 +0200 - - Roll back change that slipped from the User Guide-related changes - -commit 68af3659167e013de1c17315969cac8c8f5e6610 -Author: Vlad Mihalcea -Date: Mon Mar 7 16:10:55 2016 +0200 - - Convert basic chapter examples to unit tests for quoting, column transformers, and @Any mappings - -commit fc24cdb708f0833b4de5165ebd89960ba94cb0fd -Author: Andrei Ivanov -Date: Mon Mar 7 15:54:18 2016 +0200 - - HHH-10510 - Root cause not properly extracted when transaction commit fails - -commit 2aed1fd6b13fc03827404a6534b662959e368865 -Author: k abram -Date: Fri Feb 19 13:36:01 2016 -0500 - - HHH-10549 - Hibernate incorrectly applies Converters with autoApply=true to subclasses - -commit 009d8813dbff5d8c42be0a1665a25d1eb21ea975 -Author: Vlad Mihalcea -Date: Tue Mar 8 16:44:21 2016 +0200 - - HHH-10593 - Avoid NullPointerException with auto_evict_collection_cache and many-to-many - - Cherry pick from Janoiro PR - -commit 8b181857a665b9d45a0b5444e0b75485e14becdb -Author: Janario Oliveira -Date: Sat Mar 5 22:46:24 2016 -0300 - - HHH-10593 - Avoid NullPointerException with auto_evict_collection_cache and many-to-many - - Added verification to many-to-many relation - -commit 54c2586a01ac53abbb7f549777417aed84ca1b45 -Author: bdragan -Date: Thu Feb 25 22:17:29 2016 +0100 - - Fixed HHH-10517: ClassCastException using Restrictions.in with child - classes in Criteria based on parent class. - -commit fe247985f2c839e975f1def1f3f5e51e66f24dc6 -Author: Vlad Mihalcea -Date: Tue Mar 8 11:11:31 2016 +0200 - - Fix new line issues that were causing some tests to fail on Windows OS - -commit 3f37fff04aab09e136d9e24c2bf6a4841170552c -Author: Gail Badner -Date: Tue Mar 1 18:38:17 2016 -0800 - - HHH-10563 : Significant String use/duplication associated with subselect fetch - -commit b053116bb42330971ac1357009b2d8879e21b3f0 -Author: Gail Badner -Date: Mon Mar 7 15:09:49 2016 -0800 - - HHH-10563 : Add trace logging of generated SubselectFetch query string - -commit 22f620ced5155ef17620bed1df958083cb848a5c -Author: Vlad Mihalcea -Date: Mon Mar 7 14:48:12 2016 +0200 - - HCANN-63 - Property name beginning with at least two uppercase characters has odd functionality in HQL - -commit 54a763809de6361065cc91af54b0760cbbad6c6a -Author: Steve Ebersole -Date: Thu Mar 3 18:15:04 2016 -0600 - - HHH-10585 - Fix discussion in "Roots" section of criteria query chapter - -commit 65886c045e98012910292809666638dd708ba5b3 -Author: Steve Ebersole -Date: Thu Mar 3 18:12:12 2016 -0600 - - HHH-10277 - AttributeConverter not applied to attributes of an embeddable used as collection element - -commit b44af7cf16233649a4709ffee837589af77b7a86 -Author: Vlad Mihalcea -Date: Thu Mar 3 18:07:22 2016 +0200 - - Migrate Date/Time and AttributeConverter User Guide examples to unit tests - -commit e99b60cbb6327502e03cc98aa22c41630042ef31 -Author: Vlad Mihalcea -Date: Thu Mar 3 16:48:34 2016 +0200 - - Migrate Enums, Clob, Blob, and Nationalized User Guide examples to unit tests - -commit 5c1f4238c6ed7667965d26a8e61ffcaf9c390096 -Author: Gail Badner -Date: Wed Mar 2 18:07:16 2016 -0800 - - HHH-10579 : Add missing Manifest data - -commit bdf8fb48b419ca0c7de5dc20915549d057a33763 -Author: Vlad Mihalcea -Date: Wed Mar 2 16:58:10 2016 +0200 - - Remove scroll from admonition blocks - -commit 10cfd7caa868f2fb476554857026a874ef834ebc -Author: Vlad Mihalcea -Date: Wed Mar 2 16:49:49 2016 +0200 - - Break hibernate.css in three distinct parts, fix the blurry-effect and the recurring sub-section chained-image header - -commit 360d0abae890df2254212a65aaa1d1131011c434 -Author: Vlad Mihalcea -Date: Wed Mar 2 15:16:13 2016 +0200 - - Fix User Guide images that were missing after moving CSS files into css folder - -commit 28199a8e665ff56cad1cf52d471079fee4dcae26 -Author: Vlad Mihalcea -Date: Mon Feb 29 15:06:03 2016 +0200 - - DESIGN-737 - Asciidoctor styling for Hibernate outputs. - -commit 2abcab05014337196d5dab8bcdd3f199484cb3e7 -Author: Vlad Mihalcea -Date: Wed Mar 2 14:38:24 2016 +0200 - - Migrate BasicType and UserType User Guide examples to unit tests - -commit 58c6c7a98aa7b3820fc25a0012069501bd7edea5 -Author: Paul Ferraro -Date: Fri Feb 19 10:01:40 2016 -0500 - - HHH-10546 InfinispanRegionFactory should stop any caches it starts - -commit b03947e4a561ff03fe069f93c9b6466c49796875 -Author: Paul Ferraro -Date: Fri Feb 19 09:59:05 2016 -0500 - - HHH-10545 InfinispanRegionFactory inadvertently starts the default cache during stop() - -commit 38a6f088976c5bb4640233e6498b44f657e4add3 -Author: Vlad Mihalcea -Date: Tue Mar 1 11:25:01 2016 +0200 - - HHH-10573 - Add discussion of @ValueGenerationType to UserGuide - -commit 5e30c2bf16dafca4def826c3f287f365ed86f5a2 -Author: Gail Badner -Date: Mon Feb 29 22:55:04 2016 -0800 - - HHH-10576 : Correct association in CascadeMergeToChildBeforeParentTest - -commit 8f24d0458b46baeb681e8e25a2ea995799dec02a -Author: Vlad Mihalcea -Date: Tue Mar 1 07:23:36 2016 +0200 - - Fix broken Multitenancy test - -commit eb6faaa55c11a7860bab05a4bf4b8368f4150265 -Author: Vlad Mihalcea -Date: Tue Mar 1 07:17:10 2016 +0200 - - Review Multitenancy User Guide chapter and migrate all examples to unit tests - -commit 5d1608717e2cb46b4531cfdf368e4549f4acba98 -Author: Vlad Mihalcea -Date: Mon Feb 29 14:22:34 2016 +0200 - - HHH-10566 - linking to specific 'stable' doc urls from versioned docs - -commit 6d208331a98fb16b77c387e63a9b99dc5c403a9a -Author: Steve Ebersole -Date: Sat Feb 27 13:47:29 2016 -0600 - - HHH-10455 - MapJoin results in NPE when using key() - -commit c5104601e1ecfe09830e8f061bd4b5e623455000 -Author: barreiro -Date: Tue Feb 23 00:03:55 2016 +0000 - - HHH-10554 - Fix NPE in dirty tracking generated code of bytecode enhanced @Embeddable entities - -commit a69b485d1b9173b1ce1a7d624f5b6e2060722f1a -Author: Steve Ebersole -Date: Fri Feb 26 11:48:41 2016 -0600 - - HHH-10564 - EntityManager.find() broken for MySQL and UUID - -commit d65445194df18ec66fe0e9752f809be672496f23 -Author: Andrea Boriero -Date: Fri Feb 26 12:40:20 2016 +0000 - - HHH-10533 - Fix ORM tries to create a unique constraint on a non existing table - -commit dc07f4462961057e6132fcedb63c4e4d321de64b -Author: Andrea Boriero -Date: Fri Feb 26 11:01:10 2016 +0000 - - HHH-10553 - add test for issue - -commit bdfe38b0c610ffe93a15c267ccaab67123d22475 -Author: Gail Badner -Date: Thu Feb 25 19:48:53 2016 -0800 - - HHH-10567 : Wrong table for formula if its property is mapped on a secondary table - -commit 19e035c7884b969cec6b1628b4b2e051c82302b9 -Author: Vlad Mihalcea -Date: Thu Feb 25 10:48:45 2016 +0200 - - Add Hibernate Spatial User Guide chapter - -commit f076b5823c8aa82d36a919e9fbec877d7b237e82 -Author: Steve Ebersole -Date: Wed Feb 24 22:05:49 2016 -0600 - - HHH-10499 - Can't set ConnectionProvider instance, regression - -commit 7d4ab7d53bc8e4f85b0f75270cb9174ad2b0b272 -Author: Steve Ebersole -Date: Wed Feb 24 21:14:41 2016 -0600 - - HHH-10505 - jboss logging only auto detects slf4j if it is using logback - -commit ab4c9258afdd23d99f2e0c7e698f9f95ad17beb8 -Author: Vlad Mihalcea -Date: Tue Feb 23 16:26:50 2016 +0200 - - HHH-10552 - Gradle plugin section of Bytecode Enhancement should specify how to apply the plugin - -commit 020ca4aa398cde86d372a5c02afcb517c953515e -Author: Steve Ebersole -Date: Tue Feb 23 07:09:17 2016 -0600 - - HHH-7405 - BatchBuilder service does not properly define JMX MBean - -commit 8eae88d6a42e3bba0055b09a23e9ad021b1fffa4 -Author: Vlad Mihalcea -Date: Tue Feb 23 13:14:39 2016 +0200 - - Update custom CRUD in the User Guide Native chapter - -commit a5cbe326d60bd566ae6adec6cbe5e9c4e7d62daf -Author: Steve Ebersole -Date: Mon Feb 22 16:35:32 2016 -0600 - - HHH-9485 - Duplicate Property with AccessType.PROPERTY and MappedSuperclass - -commit 8d2de0beaa4511f63d01d3a861c6444d2ca31993 -Author: Karel Maesen -Date: Sat Feb 20 17:50:13 2016 +0100 - - HHH-7132 - Oracle Spatial Dialect locates ConnectionFinder using Registry - -commit be425d23089bac6a602ab834426e9ea63cbcae06 -Author: Andrea Boriero -Date: Thu Feb 18 15:53:41 2016 +0000 - - HHH-10544 - Fix MySQL failing tests - -commit 6b79bde09961421f81dfd95cd2ffbc5709288bb0 -Author: Vlad Mihalcea -Date: Thu Feb 18 11:16:46 2016 +0200 - - Add support for matrix testing for User Guide examples - -commit d0a036c53670826f3111466157973889c0a1c30e -Author: Guillaume Smet -Date: Wed Feb 17 15:18:38 2016 +0100 - - HHH-10538 Fix the javadoc of TableInformation.getIndex(Identifier indexName) - -commit af083e92cebf02bdb2e2af46b37473276e0ec5bd -Author: Vlad Mihalcea -Date: Tue Feb 16 17:58:33 2016 +0200 - - Update stored procedures User Guide chapter - -commit 0fccf6b7bd3749d8b183e07d03fe3dc7564f3756 -Author: Steve Ebersole -Date: Tue Feb 16 09:35:12 2016 -0600 - - HHH-10528 - use_nationalized_character_data global property is ignored - -commit 409c5424a082351eec686012c9b628e992824259 -Author: Andrea Boriero -Date: Mon Feb 15 14:45:53 2016 +0000 - - HHH-10529 - Fix SQLServer2008Dialect generate incorrect length of nvarchar - -commit d4772107f0b09278389c5f9191a56f408dc0a93f -Author: Andrea Boriero -Date: Mon Feb 15 14:45:25 2016 +0000 - - HHH-10529 - Add test for issue - -commit 31cda521780ec2e5bd3d7b60041d3ca509079ad3 -Author: Andrea Boriero -Date: Sat Feb 13 18:45:58 2016 +0000 - - Fix Documentation typos - -commit 85e9f8b2067fa029b5a9cf678139d1cf3f39c6fd -Author: Cash Costello -Date: Thu Feb 11 21:19:43 2016 -0500 - - added missing back quote - -commit 5e6d751bbf03c2fc92bfcc94f4bdce446dfb041b -Author: Cash Costello -Date: Thu Feb 11 21:41:28 2016 -0500 - - fixed formatting - was mix of spaces and tabs - -commit e09a9f9aca848f64bcf7125f0f3ab92d9c9a6736 -Author: Andrea Boriero -Date: Thu Feb 11 14:46:08 2016 +0000 - - HHH-10521 - Fix Java 6 not compliant tests - -commit 81b1baa8c4e7713226f9587ebf9978eac30929ce -Author: Steve Ebersole -Date: Thu Feb 11 15:59:13 2016 -0600 - - HHH-10520 - Update doc publishing - -commit b4165d95308a1c8c8590b92c36b26087661d8624 -Author: Steve Ebersole -Date: Thu Feb 11 13:40:10 2016 -0600 - - HHH-10512 - Fix symlink handling for documentation tasks - -commit 20daa2db61a49b1307b5bfaecdbff6565d998586 -Author: Steve Ebersole -Date: Wed Feb 10 12:15:08 2016 -0600 - - 5.1.0 release (prep) - -commit a909e769516322e33d5cb6a9f19aac8d21ee596d (tag: 5.1.0) -Author: Steve Ebersole -Date: Wed Feb 10 11:20:33 2016 -0600 - - 5.1.0 release (prep) - -commit aaf13cd123fed545b30b33c8bf57e07c5bf3e8dc -Author: Radim Vansa -Date: Tue Jul 28 18:22:11 2015 +0200 - - HHH-9993 IsolationDelegate: add method to execute code without obtaining a connection - -commit 2167b442a420260393060f5d29c3894814ba81d8 -Author: Vlad Mihalcea -Date: Wed Feb 10 18:07:48 2016 +0200 - - Migrate User Guide Native chapter extras to test folder up to stored procedures - -commit b5a86ea45c0dd38a0f6486059be9ade4d0bcf448 -Author: Gail Badner -Date: Wed Feb 10 00:10:52 2016 -0800 - - HHH-5855 : checkstyle corrections - -commit efa72a83336430b99c0f03a62294fae816485c04 -Author: Gail Badner -Date: Tue Sep 8 18:53:18 2015 -0700 - - HHH-5855 : Merge causes a duplicated "insert" of a child entity in lazy collection - -commit 6d08b3526c82496c5f7011d71c11d423b72935e0 -Author: Steve Ebersole -Date: Tue Feb 9 22:44:05 2016 -0600 - - 5.1 migration guide - -commit 177bbfe5e371796a5af523e0d1a70839ff0bdb71 -Author: Steve Ebersole -Date: Tue Feb 9 22:35:12 2016 -0600 - - HHH-10345 - HHH-3422 still a problem with oracle - -commit 13bbddfd301cc7065c58ba0853f2dd12df2fc5e7 -Author: Steve Ebersole -Date: Tue Feb 9 16:08:22 2016 -0600 - - HHH-9548 - Allow propagation of NULL for stored-procedure argument parameters to database - -commit 19d86c3d652cc9092ad031128221c73b6b5c3036 -Author: Andrea Boriero -Date: Fri Jan 29 13:11:24 2016 +0000 - - HHH-10484 - MySQLDialect override Dialect#isJdbcLogWarningsEnabledByDefault() to return false - -commit 624ddc620b9cd60d3b938e32caf96f19e1484518 -Author: Andrea Boriero -Date: Fri Jan 29 13:10:11 2016 +0000 - - HHH-10484 - Add Dialect#isJdbcLogWarningsEnabledByDefault() method, the return value is true - -commit 1a1523db44dcf8444888ba4dc81db546f964c800 -Author: Andrea Boriero -Date: Thu Jan 28 18:24:55 2016 +0000 - - HHH-10484 - Add hibernate.jdbc.log.warnings configuration property - -commit e01e9b52fbc03ae681cbbac479a9079de1049e93 -Author: Steve Ebersole -Date: Tue Feb 9 15:20:45 2016 -0600 - - HHH-3555 - more checkstyle cleanup - -commit b1fef6c70bd3d5419982f696a1ec5310f79ff1ea -Author: Gail Badner -Date: Tue Feb 9 12:50:56 2016 -0800 - - HHH-10412 : case/when in criteria always casts resulting object which fails on mysql with boolean - -commit c783aab919c1094a11fa0644885568c6c0f072bd -Author: Steve Ebersole -Date: Tue Feb 9 14:31:23 2016 -0600 - - HHH-3555 - Extend the Envers query system with the ability to traverse associations - -commit 83f060bea7ff29b2470225019a06b96fa8e51551 -Author: Felix Feisst -Date: Mon Feb 8 21:42:26 2016 +0100 - - HHH-3555 - Extendend Envers Criteria API to express relation traversion - (traverseRelation) with different Join Types. Implementation is done for - inner joins and will be extended to support further join types in future - commits. - -commit 0a2a709f9eb9954fd1a570c0779d0f510d8c045b -Author: Steve Ebersole -Date: Tue Feb 9 11:43:15 2016 -0600 - - HHH-10458 - Better encapsulate SchemaManagementTool (OGM) - unify JPA schema generation and hbm2ddl capabilities; - HHH-10487 - Add @Incubating annotation - -commit 17de173cb5334d866f1886d3e057f49a6c987bad -Author: Steve Ebersole -Date: Fri Feb 5 13:16:57 2016 -0600 - - HHH-10458 - Better encapsulate SchemaManagementTool (OGM) - unify JPA schema generation and hbm2ddl capabilities; - HHH-10487 - Add @Incubating annotation - -commit eea9a943b374d5ff5986a18d29088906782a8a54 -Author: Andrea Boriero -Date: Tue Feb 9 17:00:27 2016 +0000 - - HHH-10507 - Hibernate core test removing usage of Java 8 methods - -commit 57b32543edebe6c0745186e865ce535c10667848 -Author: Andrea Boriero -Date: Fri Feb 5 21:15:05 2016 +0000 - - HHH-7973 - Fix String literals in an HQL query can get mangled - -commit 9c75e79bc983b73fdc6d190ed15f5e81f1532698 -Author: Andrea Boriero -Date: Tue Feb 9 15:23:53 2016 +0000 - - HHH-7973 - Add test for issue - -commit 500d74c35d36ab9297ba42288b7fc8dc3a9df5e8 -Author: Vlad Mihalcea -Date: Tue Feb 9 10:08:40 2016 +0200 - - Corrections to the Criteria chapter and add a multi-from example - -commit 1e470f9e4dc1dccc91ed7e1cbfd31251aaf451eb -Author: Gail Badner -Date: Mon Feb 8 23:40:18 2016 -0800 - - HHH-10474 : Skip SchemaUpdateFormatterTest.testSetFormat unless H2Dialect - -commit 9b80aa1d6e6162b1f13bb2dcd9f2e71854267ab6 -Author: Martin Simka -Date: Mon Jan 25 13:42:56 2016 +0100 - - [HHH-10473] skip NationalizedLobFieldTest on databases that don't support nclob - -commit af7a9a69a8e727e0e4826d3e09fe96e52651efcd -Author: Martin Simka -Date: Mon Jan 25 16:06:57 2016 +0100 - - [HHH-10475] skip CompositeIdRowValueTest databases that don't support row value constructor syntax - -commit 62276504f7d18e7d8664045eb0fa8fc4a974a241 -Author: Steve Ebersole -Date: Mon Feb 8 16:21:10 2016 -0600 - - fixed bad test code - -commit f4b5f2c649b069b49affd194d1ded640e0561c88 -Author: Steve Ebersole -Date: Mon Feb 8 15:52:42 2016 -0600 - - HHH-16 - Explicit joins on unrelated classes - HHH-7321 - HQL: Combining a CROSS JOIN with a LEFT JOIN which requires a WITH clause triggers an exception. - -commit 5eb4f1c83444bf3fdc761946163fd2849703081f -Author: Vlad Mihalcea -Date: Mon Feb 8 17:33:09 2016 +0200 - - Migrate User Guide Criteria chapter extras to test folder - -commit 008c2dc409e49b06692103b3c31a8c298db70682 -Author: Oliver Breidenbach -Date: Mon Apr 20 15:07:46 2015 +0200 - - HHH-9375 - bugfix suggestion - -commit d610e53a806cb9c7d7367fe304e503bdd96bc4ab -Author: Oliver Breidenbach -Date: Mon Apr 20 15:06:48 2015 +0200 - - HHH-9375 - Testcase: EntityGraph and isMember functions generates illegal sql - -commit b8a3774cb4c4ab3e3fff225459bb7c4be204e202 -Author: Maxime Falaize -Date: Thu Feb 4 23:40:14 2016 +0100 - - HHH-9411 : Fix downcast of treat statement. - -commit 4fb11c99197bbf80387dc2641a3b55daa81adeec -Author: Andrea Boriero -Date: Fri Feb 5 15:01:06 2016 +0000 - - HHH-9635 - Fix SQLServer2005Dialect (and above) does not support read past locking - -commit 034afb96bf22fb28372942133fa09eabc5501228 -Author: Andrea Boriero -Date: Fri Feb 5 15:00:36 2016 +0000 - - HHH-9635 - Add test for issue - -commit 85cec6ba335f51ed5b1b6cad26bd5a30b9d6264a -Author: Vlad Mihalcea -Date: Fri Feb 5 12:33:35 2016 +0200 - - Fix test that fails due to timezone offsets causing the result set to vary between 1 and 2 - -commit 8ff853e1334e4676082a81289a6dc757c60debd6 -Author: cranforc -Date: Wed Oct 28 15:52:27 2015 -0500 - - HHH-8657 - Case insensitivity on Nationalized column yields incorrect SQL - - HHH-8657 - Case insensitivity on Nationalized column yields incorrect - SQL - -commit 7dec9f83e21ae85e4b6401c69ff66ec38228ece9 -Author: Andrea Boriero -Date: Mon Feb 1 18:24:46 2016 +0000 - - HHH-7705 - Fix Query.setProperties(Map) silently ignores null values provided in the Map - -commit 5711c3ce6cda93daebe06012e7980df2d9ba0d38 -Author: Andrea Boriero -Date: Mon Feb 1 18:22:33 2016 +0000 - - HHH-7705 - Add test for issue - -commit 4d3259a2012abbb3e6597cd0c1edb1f4f887b9fa -Author: Andrea Boriero -Date: Thu Feb 4 14:14:37 2016 +0000 - - HHH-10495 - Fix Oracle10gDialect generate nvarchar when using @Nationalized - -commit 420788229253fab1393d4ef6cb2092bf6519ce1e -Author: Andrea Boriero -Date: Thu Feb 4 14:13:49 2016 +0000 - - HHH-10495 - Add test for issue - -commit c1b3b2a43cd06b51c63276ec842375ec870fe99e -Author: Vlad Mihalcea -Date: Thu Feb 4 13:25:35 2016 +0200 - - Add User Guide examples for HQL functions - -commit 120ac5ed277bfc28574edabdfd5ac2e12e37788a -Author: Vlad Mihalcea -Date: Thu Feb 4 11:56:51 2016 +0200 - - Try to fix broken test and change Bootstrap test structure - -commit 20b446b0ece11bd39a2b9fc129515f5b0a4d00a5 -Author: Vlad Mihalcea -Date: Thu Feb 4 11:36:33 2016 +0200 - - Unify Batch and HQL test models - -commit 9b60354e3e061890dc78971546938d90f9534ed0 -Author: Vlad Mihalcea -Date: Thu Feb 4 10:57:48 2016 +0200 - - Migrate User Guide HQL chapter extras to test folder - -commit f69c4e7882d8e93db8d81634433aa7fa405ebdab -Author: Oliver Breidenbach -Date: Wed Nov 11 06:10:58 2015 +0100 - - HHH-10261 - Fixing bug on creating subgraph on inherited attributes - -commit 13fa120240899e5c8a35fcf5f4a1efa53efe6a75 -Author: Oliver Breidenbach -Date: Wed Nov 11 06:09:43 2015 +0100 - - HHH-10261 - Test showing Exception if subgraph is created on an inherited attribute - -commit 3642bb63cda1b3d21459c36d47bba61a0a6e099e -Author: Vlad Mihalcea -Date: Mon Feb 1 16:40:44 2016 +0200 - - Migrate User Guide Events chapter extras to test folder - -commit ff3b54a9627a3b01bc14cfc6d318ab22335dfc36 -Author: Koen Aers -Date: Mon Jan 11 11:16:48 2016 +0100 - - HHH-10430: Comment for class is ignored when using subselect in hibernate mapping - Solution - -commit fd21be8705ed3c41193cc59ccc2a0816479b6272 -Author: Koen Aers -Date: Mon Jan 11 10:48:31 2016 +0100 - - HHH-10430: Comment for class is ignored when using subselect in hibernate mapping - Test demonstrating the issue - -commit c5e6faeb3f293142f5fd46b5c84614ca1d0baaeb -Author: Steve Ebersole -Date: Thu Jan 28 11:14:26 2016 -0600 - - HHH-10402 - Hibernate maps enum types as tinyblob even when @Enumeration(EnumType.ORDINAL) is specified - -commit f3386c37da7e391e0d5059db7c0716dc84625a9b -Author: vladmihalcea -Date: Thu Jan 28 16:50:17 2016 +0200 - - Migrate User Guide Batching chapter extras to test folder - -commit 03eb9fd2769cffa77ce3a575d3d4f08fefff5024 -Author: vladmihalcea -Date: Thu Jan 28 10:24:23 2016 +0200 - - Document entity graphs in Fetching chapter - -commit 5e5ae9dacbe4d3e57ac315148d5df24bf12a477a -Author: Andrea Boriero -Date: Wed Jan 27 16:55:04 2016 +0000 - - HHH-9286 - Add CustomType implements ProcedureParameterExtractionAware - -commit a339ebd8a9e6ece8cc32eae06fe46589b0c12052 -Author: Andrea Boriero -Date: Mon Jan 25 20:53:35 2016 +0000 - - HHH-9286 - Add CustomType implements ProcedureParameterNamedBinder - -commit 9567d9af76cf867904841b741cc6c31b25f22dbd -Author: Andrea Boriero -Date: Wed Jan 20 16:37:43 2016 +0000 - - HHH-9286 - Modify AbstractParameterRegistrationImpl#prepare(CallableStatement statement, int startIndex) to use ProcedureParameterNamedBinder#nullSafeSet(...) - -commit f6c45ad11c7cc575d4f8da6aad9c3fb3cabb4dca -Author: Andrea Boriero -Date: Wed Jan 20 16:40:14 2016 +0000 - - HHH-9286 - Add BasicBinder#bind(CallableStatement st, J value, String name, WrapperOptions options) method - -commit 22dc33ff79a5f7e8d02295da3cadfe2bda493e89 -Author: Andrea Boriero -Date: Wed Jan 20 16:33:01 2016 +0000 - - HHH-9286 - AbstractStandardBasicType implements ProcedureParameterNamedBinder - -commit 2a433870814e04cefb851762a8518ca736ce6e4e -Author: Andrea Boriero -Date: Wed Jan 20 16:31:30 2016 +0000 - - HHH-9286 - Add ProcedureParameterNamedBinder interface - -commit 08b294b49d0b5222ed49686ade021eb9e2afc4a3 -Author: Andrea Boriero -Date: Wed Jan 20 16:45:53 2016 +0000 - - HHH-9286 - Oracle10gDialect override registerResultSetOutParameter(CallableStatement statement, String name) and getResultSet(CallableStatement statement, String name) - -commit 8a34206fe04c57b8e530cf43e77f3bda30671c7f -Author: Andrea Boriero -Date: Tue Jan 19 15:16:05 2016 +0000 - - HHH-9286 - Oracle10gDialect override Dialect#Oracle10gDialect#getResultSet(CallableStatement statement, int position) - -commit 738b501d50c80765c6afa6d485960b7684a0f5bf -Author: Andrea Boriero -Date: Tue Jan 19 15:01:21 2016 +0000 - - HHH-9286 - Add test for issue - -commit d30bdcef0db1a759b9a928929f2c6782ccf6d9cc -Author: vladmihalcea -Date: Wed Jan 27 16:26:20 2016 +0200 - - Migrate User Guide Fetching chapter extras to test folder - -commit 418b7fe926e69dd5488e09f69d58f1fefd58a47b -Author: Andrea Boriero -Date: Wed Jan 27 12:16:14 2016 +0000 - - HHH-9491 - Remove columnDefinition method ref from {@link javax.persistence.JoinColumn} and {@link javax.persistence.Column} causing Javadoc generation failure - -commit aeac516eeb2289c58cf70bba13b1600cd8db3b9f -Author: vladmihalcea -Date: Wed Jan 27 13:06:14 2016 +0200 - - Migrate User Guide Locking chapter extras to test folder and old xml mapping to the Legacy appendix - -commit f8e7799848a657cf64b29af26b5b49e9180280e4 -Author: vladmihalcea -Date: Wed Jan 27 12:05:58 2016 +0200 - - Migrate User Guide Transactions chapter extras to test folder - -commit 6793d0deb95360efc06d322c33453a9829e5c263 -Author: vladmihalcea -Date: Wed Jan 27 08:26:23 2016 +0200 - - HHH-10479 Document that hibernate.jdbc.batch_versioned_data default value is true in 5.0 - -commit 3b4c167482a2f9786c2831bf31e427e328f8c59e -Author: Steve Ebersole -Date: Tue Jan 26 16:41:53 2016 -0600 - - HHH-8706 - Delay registering of the entity listener class as long as possible - -commit 90f4fd9d552984b01188615b22bd99b852e23d12 -Author: Steve Ebersole -Date: Tue Jan 26 16:35:04 2016 -0600 - - HHH-10345 - HHH-3422 still a problem with oracle - -commit eeb0324c060524618511052e025b079a1ed2afc9 -Author: Radim Vansa -Date: Fri Jan 15 14:17:21 2016 +0100 - - HHH-9839 Use JBoss Logger interface to allow internationalization of error messages - -commit ff638af2e3f538bbc956efc241322458b82b4096 -Author: Radim Vansa -Date: Tue Nov 10 16:06:56 2015 -0500 - - HHH-10450 Refactor the way configuration is read - - * infinispan-config.xml or infinispan-config-local.xml keeps defaults for all caches - -commit 9584a7b060cb68f1b5ccfff74ab63c4ed0694168 -Author: Radim Vansa -Date: Wed Nov 11 17:00:10 2015 -0500 - - HHH-10272 Make pending-puts cache template configurable - - * also set pending-puts cache to use simple cache - -commit c2abc5c2896c45fed0db728e48a9f0b79a3c36c5 -Author: Radim Vansa -Date: Fri Jan 15 10:10:18 2016 +0100 - - HHH-10449 Upgrade to Infinispan 8.1.0.Final - -commit cd9ff725ae23bdca792b7c0cfeebc6bca1d61c1d -Author: vladmihalcea -Date: Tue Jan 26 17:01:47 2016 +0200 - - Migrate Bytecode Enhancement User Guide chapter extras to test folder - -commit 96c96f2e94ade8e1d312dc57d953eaeb2cbd3a04 -Author: vladmihalcea -Date: Tue Jan 26 16:09:06 2016 +0200 - - Migrate Persistence Context User Guide chapter code snippets from extras to test folder - -commit b23784647d87e906fbea8efb885f8a76547ba4bc -Author: vladmihalcea -Date: Tue Jan 26 11:13:40 2016 +0200 - - Move User Guide Bootstrap chapter code snippets from extras to test folder - -commit 4e36781b42a85c9ed794e1ec234cd935057bdee0 -Author: Steve Ebersole -Date: Mon Jan 25 22:16:50 2016 -0600 - - HHH-9491 - Add support to opt columnDefinitions out of globally-quoted-identifiers - -commit bb109139e859cf92034fbbd6408636ac3782cbad -Author: Steve Ebersole -Date: Mon Jan 25 20:54:59 2016 -0600 - - HHH-10446 - Comment delimiters not "escaped" within (VAR)CHAR literals within native queries - -commit 6732e04058a530f4f3f4ba73bb6afe6f18ec8386 -Author: Steve Ebersole -Date: Mon Jan 25 15:33:43 2016 -0600 - - HHH-10477 - Setting to allow delayed access to CDI - -commit 95ed41b445c93c407cd21f15d814076ff6b1fa56 -Author: Steve Ebersole -Date: Mon Jan 25 13:12:08 2016 -0600 - - HHH-7572 - Develop API for load-by-multiple-ids - -commit 43db914f0dbb0bc88784226dd7828e8a6d512d31 -Author: Andrea Boriero -Date: Mon Jan 25 17:29:57 2016 +0000 - - HHH-10451 - Fix Add table comment to 'create table...' statement - -commit 8e32162cab7fccbb0b3fa6614f948cc81162e8ea -Author: Andrea Boriero -Date: Mon Jan 25 16:00:13 2016 +0000 - - HHH-10451 - Fix generation of 'comment on table ... ' and 'comment on column' statements - -commit 53872de0fd2d8db355fe02b852139671c2d3e699 -Author: Andrea Boriero -Date: Mon Jan 18 10:00:33 2016 +0000 - - HHH-10451 - Add test for issue - -commit 7881e358f59cc67938dd19001025900a5a6e71ab -Author: Steve Ebersole -Date: Mon Jan 25 10:43:30 2016 -0600 - - HHH-10303 - Reinstate legacy bytecode-enhancement Ant task - -commit af2d642cf6540d7fc533911c17f7754a89a121ac -Author: Steve Ebersole -Date: Mon Jan 25 10:18:27 2016 -0600 - - HHH-9876 - Ability to filter objects from Database for schema tooling - -commit acab6c579bd58d66fb74be50060550626f017644 -Author: Steve Ebersole -Date: Mon Jan 25 10:08:54 2016 -0600 - - HHH-10438 - Upgrade the Gradle wrapper to use Gradle version 2.10 - -commit abb2b077b93d4543c89f7e3e311cdaf13a91a620 -Author: Steve Ebersole -Date: Mon Jan 25 09:29:38 2016 -0600 - - HHH-9876 - Ability to filter objects from Database for schema tooling - -commit af59f6a556e697f7170dfd0887ead45293ec153f -Author: Radim Vansa -Date: Mon Jan 25 13:26:34 2016 +0100 - - Update documentation of second-level-caches - -commit 226076dfd0cebb9241fd106bf9dd133dcba8ecf7 -Author: PrairieLoneWolf -Date: Sun Jan 17 17:44:22 2016 +0800 - - update user guide url - -commit dc991d29d9d4e229efd88feb2e8a911572a4368a -Author: vladmihalcea -Date: Mon Jan 25 11:36:25 2016 +0200 - - Cherry pick spelling corrections from https://github.com/hibernate/hibernate-orm/pull/1238 - -commit a8ee68328025dd944e30bd125aa90a415ad2c189 -Author: vladmihalcea -Date: Mon Jan 25 10:40:11 2016 +0200 - - Move user guide tests to org.hibernate.userguide and sql snippets to extras - -commit d97280dce395b59dee4bb54a5ca497c5e15b38d9 -Author: Steve Ebersole -Date: Sun Jan 24 20:44:23 2016 -0600 - - HHH-10438 - Upgrade the Gradle wrapper to use Gradle version 2.10 (revert) - -commit 4311866d5273d14763ac5fedc77bb3bdde1d48a2 -Author: Steve Ebersole -Date: Sun Jan 24 20:10:56 2016 -0600 - - HHH-10438 - Upgrade the Gradle wrapper to use Gradle version 2.10 - -commit 2fdbeb8db67125a803079e9cee19613414b05401 -Author: Marcus -Date: Sun Jul 19 13:43:20 2015 +0200 - - HHH-9876 - Ability to filter objects from Database for schema tooling. - -commit d71f93142981d02d8cd2b9ef95ed19ce3b2c838e -Author: Guillaume Smet -Date: Tue Sep 15 12:32:04 2015 +0200 - - HHH-7610 Add an option to initialize empty components when all the properties are null - - Note that this commit also changes the semantic of the comparison between a null component - and a component with all properties null: they are considered equivalent. - -commit 701f59b132a0477b35fc856d7f527ec4aed8da8f -Author: Steve Ebersole -Date: Sat Jan 23 13:24:45 2016 -0600 - - cleaned up JdbcMocks in test sources and moved it to hibernate-testing - -commit 039382e8be6e44c47a667a12fb5e470841e6405d -Author: Steve Ebersole -Date: Sat Jan 23 12:55:17 2016 -0600 - - cleaned up JdbcMocks in test sources and moved it to hibernate-testing - -commit a5271d6e7671755e6b3b0ee4fea71ed26be133d5 -Author: Steve Ebersole -Date: Sat Jan 23 12:00:45 2016 -0600 - - HHH-8706 - Delay registering of the entity listener class as long as possible - -commit 6076298ce9151b7567c9580c44dac3e0aaeb2b6d -Author: Steve Ebersole -Date: Fri Jan 22 19:17:06 2016 -0600 - - HHH-8706 - Delay registering of the entity listener class as long as possible - -commit 92bce3913be76fa09dbd7d6e5bc701cdb31a17ce -Author: Steve Ebersole -Date: Thu Jan 21 12:04:49 2016 -0600 - - documentation improvements on top of Vlad's work - naming - -commit d769308785951e2d1b2bb1360c8a834ac3c8a640 -Author: vladmihalcea -Date: Thu Jan 21 16:50:53 2016 +0200 - - Fill in the TODO sections for the Locking and Caching chapters - -commit f58c8eba9c693dec697b93cdfb2fc96de238a292 -Author: Andrea Boriero -Date: Fri Jan 15 14:32:40 2016 +0000 - - HHH-10372 - Add ZonedDateTimeComparator - -commit e261506d6105598f31965ae29dc9556abb7620d5 -Author: Andrea Boriero -Date: Tue Jan 19 19:17:32 2016 +0000 - - HHH-10372 - Change OffsetDateTimeType#getComparator() to return OffsetDateTime.timeLineOrder() - -commit f470709df8cd7f2bd96d6c06cfa2687cff9eaea3 -Author: Andrea Boriero -Date: Mon Jan 4 17:04:15 2016 +0000 - - HHH-10372 - Add test for issue - -commit a5e65834a1a0dee89c99c67d6453bc38b3d7cff9 -Author: Steve Ebersole -Date: Tue Jan 19 15:47:36 2016 -0600 - - HHH-9548 - Allow propagation of NULL for stored-procedure argument parameters to database - -commit 90b7f9e07cc2c9537087185f4b576aa9abefff37 -Author: vladmihalcea -Date: Tue Jan 19 15:42:44 2016 +0200 - - Add Flushing chapter and JPQL section for batch updates - -commit 97ba351c2a4aa31ca4b83b8701feb103aacddf7a -Author: vladmihalcea -Date: Mon Jan 18 15:18:23 2016 +0200 - - UserGuide uses examples from existing test cases - -commit 2bda2515af54f72f5ca969d07655573f82f27656 -Author: Sanne Grinovero -Date: Sun Jan 17 23:24:03 2016 +0000 - - Move access credentials for Oracle testing database to environment variables - -commit 2bad69f66a90c0fbe88b888a5c84063db522e50d -Author: Bogdan Calmac -Date: Fri Jan 15 16:26:46 2016 -0800 - - Document that StatelessSession does not support lazy loading - - While experimenting with StatelessSession I discovered that it does not - support lasy loading. I think this isn't imediately obvious and worth to - be included in the documentation. - - See also http://stackoverflow.com/questions/34800788/does-statelesssession-support-lazy-loading - -commit 68446ca0297669437a9108471c01fa85a2b3a60e -Author: vladmihalcea -Date: Wed Jan 13 08:28:20 2016 +0200 - - Move User Guide tests to the documentation folder, so the hibernate-entitymanager does not depend on Java 1.8 - -commit 653cf910faf4409861ff77a581d2ed2af00fe041 -Author: Andrea Boriero -Date: Thu Jan 14 09:55:37 2016 +0000 - - HHH-10401 - Fix Missing table names on foreign key circularity error message - -commit ebab48d6ad9da6c31f2ee1b01c8a704d787ee872 -Author: Steve Ebersole -Date: Wed Jan 13 12:32:42 2016 -0600 - - 5.0.7 - -commit ef23be0e62ec8df3f39939fdc952418423b7788f -Author: Steve Ebersole -Date: Wed Jan 13 12:28:58 2016 -0600 - - HHH-9485 - Duplicate Property with AccessType.PROPERTY and MappedSuperclass - -commit 6c7f3ef25bd45f0e4752cf830f32b0055daa1d1d -Author: Steve Ebersole -Date: Wed Jan 13 12:15:12 2016 -0600 - - HHH-9485 - Duplicate Property with AccessType.PROPERTY and MappedSuperclass - -commit d35e29dc29d7bf1e85c0dbcc2ef49349914fd57b -Author: Andrea Boriero -Date: Wed Jan 13 16:13:14 2016 +0000 - - HHH-10433 - Fix hbm2ddl utils has a problem - release jdbc connection - -commit 977c34bb5975ac6c94fefdbd6416b9648245aabd -Author: Andrea Boriero -Date: Wed Jan 13 16:12:04 2016 +0000 - - HHH-10433 - Add test for issue - -commit debc06d54e6a5ad8602161b31221a511f5ed968e -Author: Steve Ebersole -Date: Wed Jan 13 11:31:09 2016 -0600 - - HHH-10422 - Backport HHH-9983 to fix identity IDs using Oracle12cDialect in 5.0 - -commit 1ddcc7075fad463847e5ed804681c086e7d85698 -Author: Sergey Astakhov -Date: Wed Jan 14 14:27:32 2015 +0300 - - HHH-9474 Fixing perfomance issue with ElementCollection - -commit 536b814dc837eaa6c043b14d4e95146c1789df0f -Author: Jaikiran -Date: Fri Dec 25 11:12:47 2015 +0530 - - HHH-10439 Log a message while executing the import script(s) - -commit 3aef8de87d6b34ec9a67e686b982e79e64b63680 -Author: Paul Ferraro -Date: Tue Jan 5 17:02:16 2016 -0500 - - HHH-10416 Drop superfluous immutable-entity cache configuration. Default to entity cache configuration if undefined. - -commit 13a169c599af6e4460508281666c69055a33b52c -Author: Steve Ebersole -Date: Tue Jan 12 17:43:49 2016 -0600 - - HHH-10317 - Allow to bind custom types that implement the Collection interface through JPA APIs - -commit 5e59ee8b1fd49da2e46cfddc8f4f105ebcec427b -Author: Steve Ebersole -Date: Tue Jan 12 15:52:57 2016 -0600 - - HHH-10432 - hibernate 5.0.6 does not work with Aries JPA 2.3.0 - -commit 5c77f279afaecb505f7a22bfa05c172b493096bd -Author: Steve Ebersole -Date: Tue Jan 12 15:21:54 2016 -0600 - - HHH-4161 - persistence.xml not following JSR220 spec - -commit 8670b4211e963bcff1594cf73a353f2822721bb7 -Author: Andrea Boriero -Date: Fri Dec 18 10:01:48 2015 +0000 - - HHH-10385 HHH-10386 - Fix the @JoinColumn foreignKey is not taken into consideration when generating the association database schema - -commit 504dd8353db88258c2a12b8c3b607c76e885fdfc -Author: Andrea Boriero -Date: Mon Dec 21 13:39:16 2015 +0000 - - HHH-10385 HHH-10386 - Add tests for issues - -commit 5b42faa134ba89e97cf0385cb3e6b5b64fc25ba9 -Author: Andrea Boriero -Date: Tue Jan 12 16:15:16 2016 +0000 - - HHH-10437 - Fix NPE in PrimaryKey#addColumn(Column column) when getTable().getNameIdentifier() is null - -commit a4dbbf447dbe78cf7157900e07dc0b6c52657685 -Author: Andrea Boriero -Date: Tue Jan 12 16:14:42 2016 +0000 - - HHH-10437 - Add test for issue - -commit fd1ff34f03265a681e8ca690eccdb6039c40f3fb -Author: Steve Ebersole -Date: Mon Jan 11 17:32:28 2016 -0600 - - HHH-5932 Fix filtering request with string literal starting with ':' (checkstyle fix) - -commit a35abf43e9251dfb9e22a72f3e43ac04e0df9804 -Author: Steve Ebersole -Date: Mon Jan 11 16:32:58 2016 -0600 - - HHH-9342 - HQL "x member of treat(y as Type).collections" fails to parse - -commit 6ed765ede34e3ad202ca758c348aaac4b5177eca -Author: Steve Ebersole -Date: Mon Jan 11 14:20:57 2016 -0600 - - HHH-6225 Add support to find entities by date in one single query (checkstyle fixes) - -commit efae8866347f3d30e0d30ca2809a16d382304771 -Author: Steve Ebersole -Date: Mon Jan 11 13:40:21 2016 -0600 - - Migrate User Guide from Docbook to Asciidoctor (FindBugs fix) - -commit e2b58d1d20fa9d239813bb3933939f64bb1fad06 -Author: Etienne Miret -Date: Sat Aug 30 03:00:02 2014 +0200 - - HHH-5932 Fix filtering request with string literal starting with ':'. - -commit f52b841c5c90db77b703713e7ec46d87646cce2d -Author: Etienne Miret -Date: Fri Aug 29 21:22:26 2014 +0200 - - HHH-5932 Add test case. - -commit c2ece0108ed52d5e3a227ed0150cfb5cb1a76101 -Author: vladmihalcea -Date: Mon Jan 11 17:25:13 2016 +0200 - - Migrate User Guide from Docbook to Asciidoctor - -commit 446aa84429ca42fab9b28c612cf8ab0f5e7f824c -Author: Etienne Miret -Date: Sat Aug 23 23:49:01 2014 +0200 - - HHH-9357 Fix type() with joined inheritance and discriminator column. - - Conflicts: - hibernate-core/src/main/java/org/hibernate/persister/entity/JoinedSubclassEntityPersister.java - -commit ea64e674954dc1285971845c1aac3ac31aeb65cb -Author: Etienne Miret -Date: Sat Aug 23 21:41:35 2014 +0200 - - HHH-9357 Add test case for this issue. - -commit ea2d26e92e05a2b489d58de231103a3d4c73245f -Author: Etienne Miret -Date: Sun Aug 24 08:58:02 2014 +0200 - - HHH-9356 Add a bunch of tests. - - Conflicts: - hibernate-entitymanager/src/test/java/org/hibernate/jpa/test/convert/QueryTest.java - -commit 17e5f536bf71120f5eae7909c3c75fae5fb6fa6d -Author: Etienne Miret -Date: Sun Aug 24 10:45:19 2014 +0200 - - HHH-9356 All arguments of a between are now given the same expected type. - -commit 55f35cc2395f2b52935ff5dd9bd451adb0367fb2 -Author: Felix Feisst -Date: Tue May 20 09:41:19 2014 +0200 - - HHH-9207 Added unit test. - -commit 765cc6096f5fc64576f5afef0b488c934883ac7f -Author: Sanne Grinovero -Date: Sun Dec 27 21:06:06 2015 +0000 - - Add matrix testing configuration for Oracle database - -commit 866491711e9d26f1369b789e1b35157ec18cfa78 -Author: Dimitrios Liapis -Date: Sat Dec 5 01:02:31 2015 +0200 - - Typo fix - - Typo fix - -commit 6e31e61f1a210219dc1fa2ab8cab2b00795c4210 -Author: Naros -Date: Sun Jan 3 01:23:52 2016 -0600 - - HHH-6225 Add support to find entities by date in one single query. - -commit abace003e66907b5ba21abd991da75381cdc75b1 -Author: Steve Ebersole -Date: Fri Jan 8 13:41:16 2016 -0600 - - HHH-5184 - Create a ConnectionAcquisitionMode as corollary to ConnectionReleaseMode - -commit b1d1a3c143eecdc47ff92f25383c552897f07096 -Author: Steve Ebersole -Date: Fri Jan 8 11:12:58 2016 -0600 - - HHH-10307 - JTA no longer transitively provided (HHH-10178) causes problems for apps not using JTA - -commit 3d237f67bad064df51a72acf3c524bc918599d0d -Author: Andrea Boriero -Date: Tue Jan 5 12:52:20 2016 +0000 - - HHH-10405: elements of are not handled properly when building metadata - Refactoring - -commit 9e89826f8fde304767dd93013a8f1968f7c0e2bf -Author: Koen Aers -Date: Tue Dec 29 13:19:31 2015 +0000 - - HHH-10405: elements of are not handled properly when building metadata - Solution - -commit e9834f48104c769f4aeede4c68b98d616e668120 -Author: Koen Aers -Date: Tue Dec 29 13:02:05 2015 +0000 - - HHH-10405: elements of are not handled properly when building metadata - Unit test demonstrating the issue - -commit 3fb9577e500d4331741c37f23c66737d96b8c272 -Author: Andrea Boriero -Date: Thu Jan 7 14:30:31 2016 +0000 - - HHH-10425 - Fix SchemaMigration creates foreign keys too early if across schema - -commit df362e45685e4e5ec7f7a5b38ea1aa920926b03e -Author: Andrea Boriero -Date: Thu Jan 7 14:29:49 2016 +0000 - - HHH-10425 - Add test for issue - -commit 96b8a31b18f26819e57d25dd22cd373b2c07fdab -Author: Andrea Boriero -Date: Thu Jan 7 10:54:01 2016 +0000 - - HHH-10420 - Fix SchemaExport creates foreign keys too early if across schema - -commit f6f99651335ee9d7160544e7e94870d846aa3961 -Author: Andrea Boriero -Date: Thu Jan 7 10:19:51 2016 +0000 - - HHH-10420 - Add test for issue - -commit 6df1dccc053b9aedf3ce574311e709faa0f0198e -Author: Gail Badner -Date: Wed Jan 6 15:36:06 2016 -0800 - - HHH-10421 : Change "native" ID generator for Oracle12cDialect to SequenceStyleGenerator - -commit 0c38cfc9d7e8f4c49364f91d381817034269628a -Author: Emmanuel Bernard -Date: Wed Jan 6 15:02:38 2016 +0100 - - HHH-10419 Detect if the user inappropriately left @Convert.converter to void - -commit bb7cb7636b913826b0e5d256173d82eb7c0e7690 -Author: Emmanuel Bernard -Date: Wed Jan 6 14:55:43 2016 +0100 - - HHH-10419 Factor converter instantiation exception error logic - -commit e65a8837614e0b437fd076f743b8d310e7c0ceb2 -Author: Jan Martiska -Date: Mon Dec 21 13:31:11 2015 +0100 - - HHH-10395 ServiceBootstrappingTest assumes that show_sql != true - -commit 0dea233ce3fdb18a5836927e02309131a76c4bea -Author: Yoann Rodière -Date: Mon Dec 21 16:24:03 2015 +0100 - - HHH-10191 Fixed exceptions when a functional index exists. - -commit be94481e3349cc1bf81be50e3833d2128d3c66a4 -Author: Yoann Rodière -Date: Mon Dec 21 16:06:11 2015 +0100 - - HHH-10191 test case - -commit 4c6941190a014fc58daf38c50cce75ae8538484d -Author: Gail Badner -Date: Mon Dec 21 13:26:10 2015 -0800 - - HHH-10383 : IN parameter is not enclosed in parenthesis - -commit cb0729b59faf197e230a50db2574d1b3fbf24b4a -Author: Andrea Boriero -Date: Tue Dec 1 16:46:25 2015 +0000 - - HHH-10396 - Fix In a @OneToMany association with @JoinColum the @ForeignKey is not taken into consideration when generating the association database schema - -commit 14c97f0b5b7bf0479d45b613af700f55c205f93b -Author: Andrea Boriero -Date: Mon Nov 30 15:26:33 2015 +0000 - - HHH-10396 - Add tests for the issue - -commit 96d4639e6cd6ecedb61f228b22de2ad7fa324b0e -Author: Scott Marlow -Date: Thu Dec 17 10:17:07 2015 -0500 - - HHH-10384 Fix thread safety issues in thread local optimiser - -commit bef14a5890e24952083aefe1c9996d016a8e0519 -Author: Stuart Douglas -Date: Thu Dec 17 21:52:11 2015 +0900 - - HHH-10384 Fix thread safety issues in thread local optimiser - -commit b51f498ac4858d35dff8f3dff9cf5adc16431d94 -Author: Gail Badner -Date: Wed Dec 16 19:03:14 2015 -0800 - - 5.0.6 - -commit 1590ad145bf48e108a6939736c5b09b6db02112e -Author: barreiro -Date: Sat Dec 5 05:59:15 2015 +0000 - - HHH-10359 - Have consistent configuration of bytecode enhancement - -commit d5740b00eb4b3d8c3045dc4c7a082034dbe1bda6 -Author: barreiro -Date: Fri Dec 4 18:11:34 2015 +0000 - - HHH-10356 - Make runtime bytecode enhancement configurable - -commit 6bf2c78f7e8f5a1945548de3371f0e6f344a5725 -Author: Jan Martiska -Date: Mon Oct 19 11:50:40 2015 +0200 - - HHH-10200 fix too long identifiers causing failures on Oracle databases - -commit 268a1eaa22acce9700f292440839876c4e734349 -Author: barreiro -Date: Wed Dec 9 07:53:19 2015 +0000 - - HHH-10252 - Trigger the lazy loading of cascading attributes - -commit 601bdaa6785f344fb337a2680971b6f8995fc8fc -Author: barreiro -Date: Wed Dec 9 04:41:31 2015 +0000 - - HHH-10252 - Add test case - -commit 328fa2363a9db91bef0b6aa1b547c55860ec17d9 -Author: Andrej Golovnin -Date: Sun Dec 6 13:44:29 2015 +0100 - - HHH-10363 - The Cascade class makes unnecessary calls to the Reflection - API. - -commit 153b8f26cc50dfcf4bdd4b5924ea75f7011fe17c -Author: Steve Ebersole -Date: Wed Dec 16 14:38:01 2015 -0600 - - HHH-10381 - Introduce a ThreadLocal-based pooled-lo optimizer to avoid locking - -commit 6828f5ee9b74053a611e6f746b4f877a875b402e -Author: barreiro -Date: Fri Dec 4 04:39:16 2015 +0000 - - HHH-10354 - Rename 'field access' to 'extended enhancement' - -commit 20ebd8f5caa240b1874b32c4fc0de90434e7e7d0 -Author: Steve Ebersole -Date: Wed Dec 16 13:49:31 2015 -0600 - - HHH-10381 - Introduce a ThreadLocal-based pooled-lo optimizer to avoid locking - -commit 0c358d80f65da6e56aa90a8395b88c184d6b05ea -Author: Scott Marlow -Date: Tue Dec 15 12:31:22 2015 -0500 - - HHH-10381 - Introduce a ThreadLocal-based pooled-lo optimizer to avoid locking - -commit fe488976928eae3753c7fcc7a8231001d28054d0 -Author: Torsten Schöne -Date: Thu Dec 3 12:48:41 2015 +0100 - - HHH-10353 Interceptor.afterTransactionBegin() is not fired - -commit 05aaeb1963be792a1d056c54d244e077cd621339 -Author: Galder Zamarreño -Date: Mon Nov 30 18:25:33 2015 +0100 - - HHH-10344 Make transactional invalidation backwards compatible - -commit 828a83dcbf7d121e863c405acb663899506926de -Author: Karl von Randow -Date: Fri Nov 13 16:28:23 2015 +1300 - - HHH-10286 SessionFactoryImpl doesn't cache and reuse existing collection cache region access strategies - -commit 5cc21750331d093e021d89eb2c9c4ee3629a6a8c -Author: Eskil Bylund -Date: Thu Aug 9 12:53:38 2012 +0200 - - Fix missing parenthesis around composite properties in WHERE clauses - - The currentClauseType field would not be correct if the query contained a - subquery. - - Signed-off-by: Andrea Boriero - -commit e150a6140e72ee29386ecb3d39f4a40bba3d84b8 -Author: Gail Badner -Date: Thu Dec 10 16:41:05 2015 -0800 - - HHH-10349 : PersistenceUtilHelper should call getDeclaredField/Method inside of privileged block - - (cherry picked from commit 986b2b65ad24a4c24a04a75336489522b0e6a9a5) - -commit 4acd4bff8e7452c7de79958fdc5cc6af2291c9da -Author: Sanne Grinovero -Date: Tue Dec 15 16:51:04 2015 +0000 - - HHH-10379 Remove dependency to rhq-pluginAnnotations - -commit aefdda09785d265c8bfa820b0e723edf3b48ab6d -Author: Andrea Boriero -Date: Wed Nov 18 13:34:12 2015 +0000 - - HHH-10298 - Add new configuration type hibernate.hbm2dll.extra_physical_table_types - -commit c7b8f73b46c5f705aeda23eeceab84b695201e63 -Author: Andrea Boriero -Date: Fri Dec 4 16:47:21 2015 +0000 - - HHH-10298 - Add test - -commit 57975b98e48323f47d1aa1b877bfd132eae4cd58 -Author: Andrea Boriero -Date: Tue Dec 15 15:31:43 2015 +0000 - - HHH-10364 - Fix HSQL does not support Nationalized annotation - -commit d63f25bab6bf3bd9fdf718ab34bcc931dc992f1d -Author: Andrea Boriero -Date: Tue Dec 15 15:12:48 2015 +0000 - - HHH-10364 - Add test for issue - -commit 0e7dfa1935e79c6dbf7a5da5abedd3543afb054e -Author: Andrea Boriero -Date: Mon Dec 14 21:44:48 2015 +0000 - - HHH-10371 - LocalDate value changes after fetching the row from the database - -commit 55ce22a74048218166f6e3c9c59e1d04defb6560 -Author: Andrea Boriero -Date: Fri Dec 11 14:40:32 2015 +0000 - - HHH-10371 - Add tests for issue - -commit c767b0ed15ca168cf267889e41b961c37012b5eb -Author: Gail Badner -Date: Mon Dec 14 13:37:58 2015 -0800 - - HHH-9764 : StaleObjectStateExceptions raising outside flush context - -commit 840d906ceadc467db6d3fc3329bc48cdeb720008 -Author: Guenther Demetz -Date: Mon May 4 10:29:15 2015 +0200 - - Testcase for HHH-9764 - Conflicts: - hibernate-core/src/test/java/org/hibernate/test/cache/CollectionCacheEvictionTest.java - -commit a679528f7199f98d035e36fce5b2e74351b5a6bd -Author: Ståle W. Pedersen -Date: Mon Dec 14 14:25:22 2015 +0100 - - HHH-10366 Check for trace logging before calling log method and unused method parameters - -commit c1cb413c2af5bcb208f82ffbec29bb1e417df229 -Author: Sanne Grinovero -Date: Mon Dec 14 16:15:40 2015 +0000 - - HHH-10358 Make sure synchronization on AbstractLoadPlanBasedLoader is skipped when the guarded feature is disabled - -commit 0a332c2e8d09b9c611052173887f673825557b51 -Author: Gail Badner -Date: Tue Dec 8 18:28:35 2015 -0800 - - HHH-10369 : Unit test failure because Sybase trims trailing spaces - - (cherry picked from commit 971783607e16cb0a6baf41d379e7c32f0f3fb8ee) - -commit a7dac8fcf981decfb2dde2a7084489f1ba8277a8 -Author: Gail Badner -Date: Tue Dec 8 17:09:22 2015 -0800 - - HHH-10368 : Unit test failure because Sybase does not support binding an untyped null object - - (cherry picked from commit 0582dc1e8ec5cb2ef7c7690344b7d6cba63793d3) - -commit c5120b0b190feff001811a3249fa8fbe5806923e -Author: Gail Badner -Date: Tue Dec 8 16:43:09 2015 -0800 - - HHH-10367 : Fix more DB reserved words used by tests - - (cherry picked from commit 60625b19b2cab598d3339adf624ce59727ff4f57) - -commit b33c6d435780a96d6f911fbf8a9d796f10c7af0d -Author: Andrea Boriero -Date: Tue Dec 8 18:13:09 2015 +0000 - - HHH-10366 - Fix checkstyle error - -commit c802042f1a7910d9dc95e233f33c3522a9dc31ce -Author: Ståle W. Pedersen -Date: Fri Dec 4 03:33:32 2015 +0100 - - HHH-10366 Improve performance and reduce CPU load when fetching reference cached objects - - Removed a call to postLoad and afterInitialize for reference cached entities; - refactor methods, made some private, some final - try to optimize cached result - refactor out getPersister so it can be inlined - -commit 4b4164f8e0eeeadac7c35c166314b1655aabb6de -Author: Andrea Boriero -Date: Mon Dec 7 17:06:58 2015 +0000 - - HHH-10331 - Fix HSQLDialect returns supportsTupleDistinctCounts false which seems wrong - -commit 86c0746c0b75a2423ab4c9ba3814a8c9f1448d93 -Author: Bobo Häggström -Date: Mon Nov 30 14:56:20 2015 +0100 - - HHH-10343 Fixed precision and scale for elements of basic types in persistent collections - -commit 3267a9221fe4924dd46e54dfba1a1bd93c10e957 -Author: Koen Aers -Date: Fri Dec 4 18:33:26 2015 +0100 - - HHH-10158: SchemaUpdate does not properly support formatter and delimiter anymore - -commit 71765d7bd22952d0c889ca0949f9d1d5d491222e -Author: Koen Aers -Date: Thu Dec 3 14:55:45 2015 +0100 - - HHH-10223: Element 'query-param' in *.hbm.xml files causes ClassCastException - -commit 0638a5449c2d29ed017f0830b551007c08f3b25c -Author: Andrea Boriero -Date: Thu Dec 3 09:52:13 2015 +0000 - - HHH-1122 - Fix hbm2ddl.SchemaUpdate has no delimiter - -commit 6f985e2fa1bdf04fae0e551013b1801ba777fa34 -Author: Andrea Boriero -Date: Wed Dec 2 17:45:21 2015 +0000 - - HHH-1122 - Add test for issue - -commit bd42804f143319d72530ddad0ed66067ad356e00 -Author: Steve Ebersole -Date: Wed Dec 2 23:00:46 2015 -0600 - - 5.0.5 - -commit 32b4087efcaacb4b931795e631716ec1647b2d3c -Author: Gail Badner -Date: Wed Dec 2 16:32:45 2015 -0800 - - HHH-10296 : Fix more DB reserved words used by tests - - (cherry picked from commit 9858d29b56b672d9a8ce4783d5a757d8f89da5e1) - -commit 6cdfd93bec8519a1d24d0b3cde812f39051701cb -Author: Andrea Boriero -Date: Mon Nov 30 13:19:09 2015 +0000 - - HHH-10291 - Fix Partially generated composite attribute is not retrieved after insert - -commit 8961937bbcaff8d7bfb0a56e9915031e64eac141 -Author: Steve Ebersole -Date: Mon Nov 30 11:24:06 2015 -0600 - - HHH-10313 - Make SessionImplementor extend WrapperOptions - -commit 704671e17d73348ab9f7a89041110b66d3495210 -Author: Steve Ebersole -Date: Mon Nov 30 11:13:58 2015 -0600 - - HHH-10313 - Make SessionImplementor extend WrapperOptions - - (cherry picked from commit 052aad0ed41b9c1e9e3b11d8e16b755ca11b2416) - -commit 3699cdb3f919bf59b3d0a5a8eab82a5f364057a5 -Author: Andrea Boriero -Date: Mon Nov 30 09:04:48 2015 +0000 - - HHH-10157 - Fix checkstyle error - -commit 265d5d9b888e102b0b32539cc1b41ecc20f91b03 -Author: Andrea Boriero -Date: Mon Nov 30 09:04:09 2015 +0000 - - HHH-10157 - Fix gradle dependencies - -commit b9a988584a1be5e8f0ff903400a2ca32dd9a0c5e -Author: Karel Maesen -Date: Sun Nov 29 19:48:02 2015 +0100 - - HHH-10157 Postgis deserializer accepts also WKT - - When the Postgis JDBC driver is on the classpath, Hibernate receives EWKT - instead of EWKB entities. - -commit 4b99c1b79da449a1811570b8d60910912467ccdb -Author: Andrea Boriero -Date: Fri Nov 27 13:09:56 2015 +0000 - - HHH-9343 - Case/when in criteria with string literal result fails type checking - -commit 462585c532a975f9e62c471ab897adc955dc6cc4 -Author: Andrea Boriero -Date: Fri Nov 27 11:49:45 2015 +0000 - - HHH-9343 - Add test fro issue - -commit 2eba53acf5c638bb3f53791693d01802f42cbd78 -Author: Galder Zamarreño -Date: Fri Nov 27 13:23:29 2015 +0100 - - HHH-10306 Add missing license header - -commit fe058e4ef7b32965b374b75d42de8809ce4a4968 -Author: Galder Zamarreño -Date: Thu Nov 26 16:54:54 2015 +0100 - - HHH-10306 Plug Externalizers via module initializer - -commit b25481ed754b40de10a200a738694e9d82457520 -Author: Andrea Boriero -Date: Thu Nov 26 17:32:31 2015 +0000 - - HHH-10302 - checkstyle fix - -commit f0f544472ca043cad9e3b40e7361826de9def669 -Author: Sanne Grinovero -Date: Thu Nov 26 16:11:47 2015 +0000 - - HHH-10302 Extract helper method for LoadEvent reuse and adapt code formatting to Hibernate style - -commit 85db76431c12fcb33c290994cf82cdaecdc3c8a5 -Author: Stuart Douglas -Date: Mon Nov 16 09:27:48 2015 +1100 - - HHH-10302 Cache the LoadEvent and PostLoadEvent to reduce allocations - -commit f4e58d342de63369c5797e8580d5c3f08000b0e7 -Author: Stuart Douglas -Date: Thu Nov 19 10:04:17 2015 +1100 - - HHH-10301 Don't allocate a new List if it is not required - -commit 2e8d52e654b1d0df234dbd001139db57bb548821 -Author: Andrea Boriero -Date: Thu Nov 26 14:58:41 2015 +0000 - - HHH-10321 - HHH-9866 is alive; Wrong join table column names generation with globally_quoted_identifiers - -commit ca9e0424b408bdd83d9e5792f304024057550b97 -Author: Andrea Boriero -Date: Wed Nov 25 10:33:32 2015 +0000 - - HHH-9302 - SQLGrammarException with @DiscriminatorColumn in an inheritance hierarchy - -commit 4776ff091339cbc47c64ca5bf6b8df6efc43dccf -Author: Andrea Boriero -Date: Wed Nov 25 10:32:52 2015 +0000 - - HHH-9302 - Add test for issue - -commit 17b9a06d6da3b53015a3654dc46e6f115037c221 -Author: Stuart Douglas -Date: Sun Nov 22 14:13:42 2015 +1100 - - HHH-10314 Don't create the batch fetch queue to remove entities, as a null queue cannot contain the entity - -commit 5a0d23ea5a23514e3d975f84c01f727de7e94224 -Author: Sanne Grinovero -Date: Wed Nov 25 22:04:58 2015 +0000 - - HHH-10336 Upgrade to Jandex 2.0.0.Final - -commit 45c6f9b4ef027efcd0af9aaa7e233f94961b320b -Author: Sanne Grinovero -Date: Wed Nov 25 22:04:21 2015 +0000 - - HHH-10335 Upgrade to Hibernate Commons Annotations 5.0.1.Final - -commit 24841e4e59ae698558b0f7c832cdfcf13dfd5615 -Author: Gail Badner -Date: Tue Nov 24 20:53:29 2015 -0800 - - HHH-10328 : Unit test failure due to database identifier too long - - (cherry picked from commit 24ee708de72e744a39064229f9c14c30e61c21f0) - -commit 45f8d2f8307b0011657e9e6cc084658171d1f021 -Author: Gail Badner -Date: Tue Nov 24 17:48:59 2015 -0800 - - HHH-10327 : Unit test failures due to date/time precision mismatches - - (cherry picked from commit a2026c3ad0982fa8ed0bd3e33c40098658970a19) - -commit 157f24d7e2098c396ee7ae030f44da5d6fcc49e0 -Author: Gail Badner -Date: Tue Nov 24 14:17:00 2015 -0800 - - HHH-10296 : Fix more DB reserved words used by tests - - (cherry picked from commit d8f57877f2053e73a71207e0849c813c4d7cf80d) - -commit e032ac6793dff66dbcfa8d22f8fc1334b1d4af8e -Author: Gail Badner -Date: Tue Nov 24 13:57:43 2015 -0800 - - HHH-10296 : Fix more DB reserved words used by tests - - (cherry picked from commit ae91c8722ae03ef837013e328df2d4ad3cd72122) - -commit 8552b84ae5d907f49264aa7f616ac3239fe817c0 -Author: Gail Badner -Date: Tue Nov 24 13:52:48 2015 -0800 - - HHH-10327 : Unit test failure on Oracle due to DATE mismatches - - (cherry picked from commit 34dd9d186bd7f3263d06282e7fe1e81dafbfa0e4) - -commit c3ffe16ff0c5b5842c69c7833f572ed54583476c -Author: Gail Badner -Date: Mon Nov 23 22:16:20 2015 -0800 - - HHH-10323 : Unit test failure on Oracle because constructor cannot be found - -commit 38b8074c55b3982d8268f72b527d9298245ca9e5 -Author: Gail Badner -Date: Mon Nov 23 17:17:42 2015 -0800 - - HHH-10322 : Test failures due to function name differences by dialect - - (cherry picked from commit 377ba9a8c048a59b8e2e0c0f7401ac4a82f97e1e) - -commit 27f04f155d54a97fed6bf14a0092b0a4f5b3b790 -Author: Gail Badner -Date: Mon Nov 23 12:14:46 2015 -0800 - - HHH-10320 : Unit test failures due to feature tested that is not supported by database - - (cherry picked from commit cd581f8dfd2021c25dc432de3f41901c793073cd) - -commit 710cf4fee154f6a80bf6eccf274db262dfefb726 -Author: Gail Badner -Date: Mon Nov 23 11:50:06 2015 -0800 - - HHH-10296 : Fix more DB reserved words used by tests - - (cherry picked from commit cfbc0036f027665d08655b2361ec9a1d8ec4604d) - -commit 104635ba1f87ef7a80cdfb5b44a3d61024f1c281 -Author: Gail Badner -Date: Fri Nov 20 23:01:19 2015 -0800 - - HHH-10296 : Fix more DB reserved words used by tests - -commit d5017c339c2dc4dd6ba401e64a0aa81f1fcabcff -Author: Gail Badner -Date: Fri Nov 20 18:55:20 2015 -0800 - - HHH-10312 : Unit test failures due to DB problems interpreting proper type for null value when bound to a query - - (cherry picked from commit 519ba7175f1e0dca5040238fe22617b90bc2df4b) - -commit d5fb3761c653707b5abb3e8d9a2e8ab85b217757 -Author: Gail Badner -Date: Fri Nov 20 14:33:57 2015 -0800 - - HHH-10311 : Primary key length used in unit test is too long for DB2 - - (cherry picked from commit 439dab82d0d0c14ef52820c90b611e552cb2e203) - -commit 780c7c2fb69b33b692d325042863e61bef8c5854 -Author: Gail Badner -Date: Thu Nov 19 22:29:14 2015 -0800 - - HHH-10308 : Don't make deep copy of property with AttributeConverter if Java type is known to be immutable - -commit 1183a4719dc324f7a22d4d3c1fdba84bf079c9cf -Author: Steve Ebersole -Date: Fri Nov 20 12:49:42 2015 -0600 - - HHH-10309 - HHH-10242 is too aggressive in cases of FIELD access - -commit f8fc15841a6099db84646fe2c978b4fb986caff8 -Author: Andrea Boriero -Date: Thu Nov 19 11:59:15 2015 +0000 - - HHH-10304 - ImplicitCompositeKeyJoinTest#testImplicitCompositeJoin fails due to dialect-specific differences in generated SQL string - -commit 42b4b88b9c0d88299d19c16a3531f1d0f86d8907 -Author: Steve Ebersole -Date: Wed Nov 18 12:19:49 2015 -0600 - - 5.0.4 release - -commit 534cd7dae82c860b5e07fcde7ad7738ac0f86a3e -Author: Andrea Boriero -Date: Mon Nov 16 17:29:32 2015 +0000 - - HHH-10275 - Fix Inverse foreign key for many-to-many set is nullable - -commit f8e359db2b899ca0271a7ed6b32147f43d1db785 -Author: Steve Ebersole -Date: Wed Nov 18 09:47:51 2015 -0600 - - HHH-10267 - Support defining lazy attribute fetch groups - -commit ccc99c690ff773e4646901d72adee3e01e44d864 -Author: Gail Badner -Date: Tue Nov 17 21:48:39 2015 -0800 - - HHH-10297 : Cache HashMap in AbstractRowReader instead of re-creating for each row that is read - -commit 57401b9aa804c59bcad765240971f2aa0a1a2f3a -Author: Steve Ebersole -Date: Tue Nov 17 19:21:58 2015 -0600 - - HHH-1689 - Support subqueries in HQL as CASE statement alternatives; - SQM-30 - test - -commit caf902dde95bf02376c9d498884d0d013825941b -Author: Steve Ebersole -Date: Tue Nov 17 15:31:11 2015 -0600 - - HHH-10289 - CPU performance regression in StatefulPersistenceContext.addEntry() - -commit da4593de1b6b46656dfd1c3612f2310ce4df0471 -Author: Ståle W. Pedersen -Date: Wed Nov 11 20:52:57 2015 +0100 - - HHH-10289 - CPU performance regression in StatefulPersistenceContext.addEntry() - -commit 1568f894266ecd46558d2065713b7f401c7e5c81 -Author: barreiro -Date: Wed Oct 28 03:39:34 2015 +0000 - - HHH-9529 - [enhancer] check that the field being accessed belongs to the entity being enhanced - -commit 4793ca30a2f1d16691b3dcc1976dc78c7ef9d7ba -Author: Steve Ebersole -Date: Tue Nov 17 10:21:58 2015 -0600 - - HHH-10178 - Move Geronimo JTA jar to provided configuration (non-transitive) - -commit 2cb113cf96320602c53234f5c31d22ea82502dc1 -Author: Steve Ebersole -Date: Mon Nov 16 22:57:25 2015 -0600 - - checkstyle fix ups - -commit b4dbb90f1719c95f31434122150c5f3f6fd9dd8d -Author: Gail Badner -Date: Thu Oct 22 12:26:42 2015 -0700 - - HHH-10161 : Hibernate ignores return value from javax.persistence.Parameter#getParameterType() - -commit b1e4fc1ae460358080b5fbca438f1b6c4dc5d6bd -Author: Selaron -Date: Sat Nov 7 19:52:56 2015 +0100 - - HHH-10181 - CacheableFileXmlSource.doBind uses obsolete .bin file - - Check for obsolete cache file during runtime of doBind(..) instead of - CacheableFileXmlSource instantiation only. Subsequent calls of doBind on - a given CacheableFileXmlSource instance should detect that cache file is - fresh and make use of it. - -commit 5e873979029f24e9c4498d3869c96dbf45c5b3e7 -Author: Steve Ebersole -Date: Mon Nov 16 22:03:27 2015 -0600 - - HHH-9195 - Adding an entity at a given index in a list annotated with OrderColumn adds the entity at the end - -commit 54a8b9625105264fb7c4a7407a75824b846297d4 -Author: Gail Badner -Date: Mon Nov 16 18:10:11 2015 -0800 - - HHH-10273 : Explicitly put column/table names that are DB2 keywords in quotes - - (cherry picked from commit 642d42dc9238aa39a928a0224edf27a561dfe89b) - -commit e6e87517d1d17c97fe3fa6cc1fef473270c8a8cd -Author: Steve Ebersole -Date: Mon Nov 16 17:26:23 2015 -0600 - - HHH-10267 - Support defining lazy attribute fetch groups - -commit 1e44e7420b7af10adc9547a461f02a6d979624f1 -Author: Steve Ebersole -Date: Mon Nov 16 15:25:19 2015 -0600 - - HHH-10267 - Support defining lazy attribute fetch groups - -commit 6afc759bf364dc58c87a1aece6ae5805ef260d82 -Author: Andrea Boriero -Date: Mon Nov 16 12:17:47 2015 +0000 - - HHH-10288 - Temporary table support is broken using PostgresPlusDialect - -commit 1cc67e39832b8f8941e7fad0a67c50b229b2b1ec -Author: Andrea Boriero -Date: Sun Nov 15 16:05:59 2015 +0000 - - HHH-10293 - Schema Update - Single table Inheritance with bi-directional OneToMany referencing superclass fails - -commit 3f31c3d79f5c14371264011ba472f4e3a39ce966 -Author: Andrea Boriero -Date: Sun Nov 15 16:00:42 2015 +0000 - - HHH-10293 - Add test for issue - -commit f9065daba16dcd0fb3a175f4ffb85a62c28c9fd4 -Author: Andrea Boriero -Date: Sat Nov 14 14:33:16 2015 +0000 - - HHH-5946 - Tests for not equals operations expecting QuerySyntaxException require dialect does not support row value constructor syntax - -commit 765c7020eb3ac735aa3ee3d60a0909cfbf13d4c9 -Author: Andrea Boriero -Date: Fri Nov 13 16:59:30 2015 +0000 - - HHH-10274 - org.hibernate.id.SequenceValueExtractor does not work for DB2, Oracle, or SQL Server - -commit 93728037186f140aedfeb51ed69ba2ad6c91d109 -Author: Radim Vansa -Date: Fri Oct 2 09:23:16 2015 +0200 - - HHH-10215 Upgrade to Infinispan 8.0 - -commit 63b4f69deb325a003170e455a84545a889fe2a0c -Author: Steve Ebersole -Date: Thu Nov 12 20:33:38 2015 -0600 - - HHH-10280 - Remove legacy bytecode enhancement artifacts - -commit 472f4ab9ef3ce3af2cb5805359345a1cec73ff3d -Author: Steve Ebersole -Date: Thu Nov 12 19:47:18 2015 -0600 - - HHH-10280 - Remove legacy bytecode enhancement artifacts - -commit c0528b7079e2478facd9f734fd4e15bb64e8f116 -Author: Andrea Boriero -Date: Thu Nov 12 20:14:02 2015 +0000 - - HHH-10247 - Fix Hibernate ignores foreign-key attribute name in hbm - -commit 8c0c98fa07812da9942a713d5afc1bda634be85f -Author: Andrea Boriero -Date: Thu Nov 12 20:12:51 2015 +0000 - - HHH-10247 - Add test for issue - -commit 5ca5e905514f28cf796db68599dc5ff77f4201c2 -Author: Andrea Boriero -Date: Thu Nov 12 22:45:12 2015 +0000 - - HHH-10279 - Fix checkstyle errors - -commit 9872358bed88146ae438e98d5bcd544beedc4604 -Author: Steve Ebersole -Date: Thu Nov 12 10:47:52 2015 -0600 - - HHH-10281 - More formally deprecate the legacy bytecode enhancement code - -commit 0b57c4e78788c77f9bf9b3c101e8d185551b5430 -Author: Alex Snaps -Date: Tue Dec 3 14:02:03 2013 -0500 - - HHH-10124 HHH-8732 Upgraded Ehcache to 2.10.1 - -commit 3147a2894dc8ad7132625ceb785edd07dce43982 -Author: Andrea Boriero -Date: Thu Nov 12 14:25:32 2015 +0000 - - HHH-10270 - Hibernate User Guide transactions chapter examples are not properly rendered - -commit 340cee232a42144aac2d1341ad4fbfae8d76acd8 -Author: barreiro -Date: Tue Nov 3 02:43:51 2015 +0000 - - HHH-10271 - Add ordinal() method to EventType and change EventListenerRegistryImpl to take advantage of that - -commit 991ff265dad6480ab2632d61964ae0c0c27b29b0 -Author: Stuart Douglas -Date: Wed Apr 15 14:03:39 2015 +1000 - - HHH-10279 - Memory usage improvements - - * Don't allocate IdentityMap if it is not needed - * Only allocate unresolved insertions if requied - * Don't create a new string when creating a named query - * Allocate querySpaces lazily - * Remove executableLists from ActionQueue - * Allocate ExecutableList instances lazily - * Lazily allocate the transaction commit task lists - * Don't allocate a new EntityKey - -commit fa7851058c28eebc35c524f8bf63796779ac62fa -Author: Gail Badner -Date: Wed Nov 11 18:12:50 2015 -0800 - - HHH-10273 : Reserved word used for database object in testsuite - -commit 1852162da549e273930fb497d6ab1962171bbc18 -Author: John O'Hara -Date: Thu Nov 5 16:33:07 2015 +0000 - - HHH-10259 : ForUpdateFragment.toFragmentString() does not check if aliases are defined when lockOptions are not null - - (cherry picked from commit fc077401e74ee90f157fca30207d756ad653e1d7) - -commit 1d5b0779d6df327f935e9be306ac203a84345ae0 -Author: Steve Ebersole -Date: Tue Nov 10 09:10:07 2015 -0600 - - HHH-10264 - hibernate.cache.auto_evict_collection_cache problems; - HHH-9140 - Error in CollectionCacheInvalidator when hibernate.cache.auto_evict_collection_cache is enabled - -commit bf2eb018563c09162308981193a26055e4d5e09c -Author: Janario Oliveira -Date: Mon Nov 9 22:00:51 2015 -0200 - - HHH-10264 - Values weren't cached after persist - - HHH-9140 - Allow to look for id outside of context - ERROR CollectionCacheInvalidator:145 - org.hibernate.TransientObjectException: The instance was not associated with this session - at org.hibernate.internal.SessionImpl.getIdentifier(SessionImpl.java:1511) - (cherry picked from commit f0d8fcd) - - Added property to propagate error in test case - - Test case without mappedBy - org.hibernate.HibernateException: Unable to resolve property: - at org.hibernate.tuple.entity.EntityMetamodel.getPropertyIndex(EntityMetamodel.java:926) - -commit cd2b031b6b166d67977e5ee91c5958a3639dd962 -Author: Emanuele Gesuato -Date: Tue Feb 22 17:24:00 2011 +0200 - - HHH-5946 - Wrong SQL generated when composites are compared using not-equal operator - -commit 4132a4293a3e05770ec83b464338300c5396545e -Author: Steve Ebersole -Date: Mon Nov 9 22:41:59 2015 -0600 - - HHH-8847 - Exception thrown when trying to select a treated property - -commit f940c72aa901fe0b0473d9d9effc97255241082d -Author: Steve Ebersole -Date: Mon Nov 9 22:05:47 2015 -0600 - - HHH-9710 - IllegalArgumentException passing null as parameter value with explicit TemporalType - -commit 7a2fbbd79ade49f31462fe1d542c1d59ff84b1cf -Author: Steve Ebersole -Date: Mon Nov 9 22:04:10 2015 -0600 - - HHH-9710 - IllegalArgumentException passing null as parameter value with explicit TemporalType - -commit 80e851e7d0a13f7aab3f683d2b46fbb985fdbe46 -Author: Janario Oliveira -Date: Thu Oct 29 21:14:33 2015 -0200 - - HHH-9475 Cannot mix @MapKey with @Convert - Moved classes to reuse in test case; Added copy of type from referenced MapKey - -commit 0cc5e8d30f9321e3bfab8141e444d27522e1e18b -Author: Steve Ebersole -Date: Mon Nov 9 16:59:58 2015 -0600 - - HHH-10251 - Memory Leak when using Reference Cached, bytecode enhanced Immutable Entities - -commit 26048f220d3bffec50ffc38939bbd5a9c890d92a -Author: John O'Hara -Date: Wed Nov 4 11:02:25 2015 +0000 - - HHH-10251 : Memory Leak when using Reference Cached, bytecode enhanced Immutable Entities - -commit 67e631dfb32643f541368259565493c625729dd0 -Author: Steve Ebersole -Date: Mon Nov 9 16:37:51 2015 -0600 - - HHH-7572 - Develop API for load-by-multiple-ids - -commit 134eb06fba206c4e07bd0564f151cf3fa387ce6d -Author: Steve Ebersole -Date: Thu Nov 5 15:43:57 2015 -0600 - - HHH-7572 - Develop API for load-by-multiple-ids - -commit 2b563794c7c661fe10bb6294dabeac030449d2e5 -Author: Steve Ebersole -Date: Mon Nov 9 15:19:55 2015 -0600 - - HHH-1706 - Named parameters ignored when single apostrophe encountered within an SQL comment - -commit e4d102c5b1460a056ee9fec8f74f660ef764fde9 -Author: Steve Ebersole -Date: Mon Nov 9 09:18:42 2015 -0600 - - HHH-1706 - Named parameters ignored when single apostrophe encountered within an SQL comment - -commit a32372d7519616036b777e2d457189e77c1ddf6e -Author: Matt Drees -Date: Wed May 21 17:31:30 2014 -0600 - - HHH-5764 - Support for multi-level derived ids - -commit 8fd64a3b8f861caafb0514c0b2aaf19555f44a83 -Author: Steve Ebersole -Date: Fri Nov 6 16:51:30 2015 -0600 - - HHH-9807 - Better error message when @Formula and @Id are combined - -commit 05d697b9a1278aa87d87d28b757791a73dd2cc04 -Author: Steve Ebersole -Date: Fri Nov 6 14:22:14 2015 -0600 - - HHH-10002 - Hibernate @Synchronize annotation values should be processed by NamingStrategy - -commit 85c1fd7e9e7599bb04c91111bd2f11af01b96aea -Author: barreiro -Date: Tue Oct 6 03:20:32 2015 +0100 - - HHH-10145 - [maven plugin] Transitive dependencies as well - -commit 0ab716cca66d3356a2247b2e85b62accf92f9d52 -Author: barreiro -Date: Tue Sep 29 04:59:01 2015 +0100 - - HHH-10146 - [gradle plugin] Create loading classloader after classes have been compiled - -commit 22a4bdd502611f02bb8ec1305326887233ea14cf -Author: barreiro -Date: Tue Sep 29 04:19:32 2015 +0100 - - HHH-10145 - [maven plugin] Include dependencies in loader classloader - -commit a11d2e7783063e25e222c24ddd11b03c3bee233a -Author: barreiro -Date: Fri Sep 25 03:08:55 2015 +0100 - - HHH-10112 - [enhancer] Use loading classloader in ClassPool - -commit cd7212a1e8f658f26f3674140cc511fd20b6590b -Author: Steve Ebersole -Date: Fri Nov 6 10:34:31 2015 -0600 - - HHH-10219 - Infinite loop generating IDs if using negative increment - -commit ae9ff5587e2e57a689f2093b2f89c88b72416ef5 -Author: Steve Ebersole -Date: Thu Nov 5 11:53:40 2015 -0600 - - HHH-10242 - Deal with HCANN poor handling of multiple properties by matching stem name - -commit 5cc5ed1c84584939efe28dd3f8373f68ff194730 -Author: Emmanuel Bernard -Date: Thu Nov 5 09:54:43 2015 +0100 - - HHH-10242 Detect ambiguous properties - - boolean idId() + UUID getId() is ambiguous if no @Transient is involved - -commit 2e6811f41392feec7e704b5526822f4f0f1a99be -Author: Steve Ebersole -Date: Thu Nov 5 09:35:14 2015 -0600 - - HHH-8802 - Class cast exception thrown when trying to access Embedded type relationship path in Tuple - -commit ec8794bbd046ede7b2cc0be18a99b90acac973ad -Author: Steve Ebersole -Date: Wed Nov 4 23:31:47 2015 -0600 - - HHH-10208 - Index and unique-key constraints not properly handled with implicit columns in hbm.xml binding - -commit 9128b84b54f64140c6dbd53d7be10371c93869cd -Author: Steve Ebersole -Date: Wed Nov 4 21:43:52 2015 -0600 - - HHH-9481 - SQL query clears all cache - -commit dd4f809d209c930ef02789ff8445df81641fb0c3 -Author: Steve Ebersole -Date: Wed Nov 4 21:18:28 2015 -0600 - - HHH-6672 - Remove UNION support from 5.x grammars - -commit 22ffaea0c322769a14e93781cae3f06c98b7093f -Author: Steve Ebersole -Date: Wed Nov 4 20:55:52 2015 -0600 - - HHH-10248 - map removed TransactionFactory classes - -commit 1a2bdd09e8d20663af5c1b98f7e9e9a86aa1ab57 -Author: Steve Ebersole -Date: Wed Nov 4 20:32:46 2015 -0600 - - HHH-8775 - Exception when mapping a class more than once - applying tests from https://github.com/hibernate/hibernate-orm/pull/677 + fix - -commit eadb0fec8f4301a83e438e3066ab92756216e3af -Author: Steve Ebersole -Date: Wed Nov 4 16:16:11 2015 -0600 - - HHH-10203 - Overriden UniqueDelegate.getTableCreationUniqueConstraintsFragment not called anymore in SchemaExport - -commit 4218f365e56bdf41f73fd1dd3341f2acbf910479 -Author: Steve Ebersole -Date: Wed Nov 4 16:10:39 2015 -0600 - - HHH-9794 - Replace string with preceding comma is not replacing string as required - -commit 30d7c800bd869579350d5a3e71b727b6e06961ae -Author: Steve Ebersole -Date: Wed Nov 4 13:02:26 2015 -0600 - - HHH-9195 - Adding an entity at a given index in a list annotated with OrderColumn adds the entity at the end - -commit 71e13cdf25939b5a18cd79e648e64cdc53642c3e -Author: Radim Vansa -Date: Wed Oct 14 11:45:24 2015 +0200 - - HHH-10185 In nonstrict-read-write mode the remove may be not applied - -commit c835cf11ec72353bd1cfc96b69942b81a4ae0f8d -Author: Gail Badner -Date: Mon Nov 2 21:35:28 2015 -0800 - - HHH-10202 : Delay resolving TypeScopeImpl#factory after deserialization until resolveFactory() is called. - -commit e59781487a364c33f5d13e1530d200362a3acfbf -Author: Steve Ebersole -Date: Tue Nov 3 17:10:49 2015 -0600 - - HHH-9195 - Adding an entity at a given index in a list annotated with OrderColumn adds the entity at the end - -commit 43345754f5066d9e7551c6df5b93d1d142abb3d2 -Author: Radim Vansa -Date: Mon Oct 5 12:47:25 2015 +0200 - - HHH-10163 QueryResultsRegion is not invalidated from evictAll() - -commit c65cb7e850801f88f25765fb87356e256999c31c -Author: cranforc -Date: Wed Oct 28 15:01:21 2015 -0500 - - HHH-8435 @Lob/@Nationalized results in NCLOB in MSSQL2005 rather than NVARCHAR(MAX) - - HHH-8435 @Lob/@Nationalized results in NCLOB in MSSQL2005 rather than - NVARCHAR(MAX) - -commit 6ace838d61f649cb51ef44430890b426b22496a7 -Author: Holger -Date: Thu Oct 29 22:59:40 2015 +0100 - - HHH-10181: CacheableFileXmlSource.doBind uses obsolete .bin file - -commit eb2f33328d4ac1f83617821b03f78136b6024a4f -Author: Steve Ebersole -Date: Fri Oct 30 12:52:05 2015 -0500 - - HHH-9160 - javax.persistence.Query#getParameterValue(String) returns the ParameterRegistration not the parameter value - -commit 71f4f3272aa19a0e335a439f62f0da06afeef7ba -Author: Gail Badner -Date: Wed Sep 2 20:43:09 2015 -0700 - - HHH-9979 : Add tests using bean validation, and PRE_INSERT and POST_INSERT event listeners - -commit 287a5167604a20f0e60f8f2862f91c746a12ca5b -Author: Steve Ebersole -Date: Thu Oct 29 09:52:53 2015 -0500 - - HHH-9230 - NullPointer when combining JPQL query with in clause and @NamedEntityGraph - -commit 9390062abc439b623abb78bb647c6397babc6332 -Author: Steve Ebersole -Date: Wed Oct 28 23:05:35 2015 -0500 - - HHH-10222 - AttributeConverter not applied to @ElementCollection - -commit 2db30fd455a2923a57256965880537d5d931c5cd -Author: Steve Ebersole -Date: Wed Oct 28 22:54:04 2015 -0500 - - HHH-10222 - AttributeConverter not applied to @ElementCollection - -commit 2a99b256b8c80bb89aee9c00a7df46e764bdef2d -Author: michal -Date: Wed Oct 28 21:41:24 2015 +0100 - - HHH-10222 - AttributeConverter not applied to @ElementCollection - -commit 41879f6d1aa6449bdaed214b2789dbf57b1ef493 -Author: Janario Oliveira -Date: Tue Oct 27 00:04:59 2015 -0200 - - HHH-5948 - Trying to get a PluralAttributePath from a @MappedSuperclass throws org.hibernate.MappingException: Unknown collection role - Changed to read path from entity (not mappedclass) as defined in CollectionBinder.bind() - -commit bf41b43c16edd4c923b0ed0ecf18bf10c7665c5c -Author: Steve Ebersole -Date: Wed Oct 28 21:26:48 2015 -0500 - - HHH-8712 - Hibernate startup error "HHH015011: Unable to locate static metamodel field" - -commit dbb84be8106e9160dad513431d0602f22c567a21 -Author: Steve Ebersole -Date: Wed Oct 28 20:44:05 2015 -0500 - - HHH-8712 - Hibernate startup error "HHH015011: Unable to locate static metamodel field" - -commit 25d8a66ac7df6388a4eec0539d11f4601a06827d -Author: Hardy Ferentschik -Date: Fri Aug 21 21:13:13 2015 +0200 - - HHH-6475 - Metamodel check fails when subclasses are used - -commit e6c1f511a30816963901fb4746163a849dd80226 -Author: Steve Ebersole -Date: Tue Oct 27 23:22:42 2015 -0500 - - HHH-10178 - Move Geronimo JTA jar to provided configuration (non-transitive) - -commit 246e98c5af2c78f21710622c0937b8a6d835bab8 -Author: Steve Ebersole -Date: Tue Oct 27 21:55:14 2015 -0500 - - HHH-10178 - Move Geronimo JTA jar to provided configuration (non-transitive) - -commit 82c5e0ae26c61e61446dbd096ff6b449767b4d61 -Author: Steve Ebersole -Date: Tue Oct 27 21:40:25 2015 -0500 - - HHH-1400 - formula-based property leads to generation of invalid SQL with subselect fetches - -commit fa4e1a04ed401058426a45cf8aa15d7a805a5e69 -Author: Andrea Boriero -Date: Tue Oct 27 17:25:39 2015 +0000 - - HHH-10169 - Fix Hibernate ignores foreign-key name in hbm - -commit b315c0b949995e451b46762d8ccf337f9c84fb08 -Author: Andrea Boriero -Date: Tue Oct 27 17:22:20 2015 +0000 - - HHH-10169 - Add test for issue - -commit 3b2157be45dba1be082ce510bae8297adb7cc2ca -Author: Steve Ebersole -Date: Tue Oct 27 06:05:03 2015 -0500 - - HHH-10166 - Sequence generator creates duplicate keys - -commit 57c5d06f0efb320f5b5c74a08e61a8feea068ca1 -Author: Steve Ebersole -Date: Mon Oct 26 21:07:08 2015 -0500 - - HHH-10203 - Overriden UniqueDelegate.getTableCreationUniqueConstraintsFragment not called anymore in SchemaExport - -commit e71627ab00046d9a574720f2e72ed3f14fb1f488 -Author: Steve Ebersole -Date: Mon Oct 26 20:19:14 2015 -0500 - - HHH-10206 - Primary key not created for a Set after loading from XML mapping file - -commit c07e93bfb1c11da5bc0999bbe8f5b5af0500e872 -Author: Steve Ebersole -Date: Mon Oct 26 19:44:15 2015 -0500 - - HHH-10207 - Constraint name not considered for a Set while loading from XML mapping file - -commit 53dfed44961d2a36ab688a82d821d77c93ef3abd -Author: Steve Ebersole -Date: Mon Oct 26 19:25:18 2015 -0500 - - HHH-9897 - @OneToMany association with @JoinFormula throws NPE - -commit be40ccf9ccf86d79f0eb1e8f9e3373b9df9e8ded -Author: Steve Ebersole -Date: Mon Oct 26 18:59:27 2015 -0500 - - HHH-9784 - Scroll method does not support provided HQLQueryPlan - -commit 09127bf1c36cbe9a8e90f17508444d2565b95878 -Author: reda-alaoui -Date: Sun May 10 20:47:27 2015 +0200 - - HHH-9784 Scroll method does not support provided HQLQueryPlan - -commit 1677e0662b92a7d8e63a0437f87e296fc157ebe7 -Author: Réda Housni Alaoui -Date: Sun Aug 30 01:49:54 2015 +0200 - - HHH-9374 EntityGraph applied to subquery when using collection function - -commit ac616ccbfa5e1ea659b2c2df49c4adf26b05e51e -Author: drepshas -Date: Fri Sep 4 13:15:46 2015 -0700 - - HHH-10087 allow locks to be prepended to SQL - - This allows locking code to work for the Teradata database - -commit 1fa78f9658509bd8a59ac53b67d332cb4c176e23 -Author: Jan Martiska -Date: Wed Oct 14 13:25:52 2015 +0200 - - [HHH-10188] "stored" is a reserved keyword - -commit 06311d32a15689067ce359ea2036f02cf22eb9a2 -Author: Jan Martiska -Date: Thu Oct 15 11:23:01 2015 +0200 - - HHH-10195 fix QueryHintSQLServer2012Test - -commit 6ff0abf682637004e6fca1cdb679e27642c4afcc -Author: Jan Martiska -Date: Thu Oct 15 14:12:45 2015 +0200 - - HHH-10196 DefaultGeneratedValueTest fails on MySQL - - fix - -commit 56fae44589e222cb38f53ed7cfea4b859cf21afb -Author: Steve Ebersole -Date: Mon Oct 26 17:00:06 2015 -0500 - - HHH-10217 - ModelBinder fails to bind version property when generated="always" - -commit 8bcf66631d6d3ac5d18134b88f63321d44ca2679 -Author: Steve Ebersole -Date: Mon Oct 26 13:14:44 2015 -0500 - - HHH-10208 - Index not considered while loading from XML mapping file - -commit 83a477a0d1e09e663a69a5e5a4c14c2a52f43d5d -Author: Andrea Boriero -Date: Fri Oct 16 15:08:57 2015 +0100 - - HHH-10180 - Fix hbm2ddl tools cannot generate create/update script not modifying the database - -commit e71b32fe91f47b43e694242a6b47ba4f6ed8ed6d -Author: Andrea Boriero -Date: Fri Oct 16 15:08:15 2015 +0100 - - HHH-10180 - Add test for issue - -commit d44cb40c34dec990895814e1725e0f02ea1318f1 -Author: Andrea Boriero -Date: Thu Oct 15 18:08:51 2015 +0100 - - HHH-10197 - Fix SchemaManagementException when performing SchemaUpdate - -commit dc902bb0a329da302966488a456a7c84893a7674 -Author: Andrea Boriero -Date: Thu Oct 15 18:07:27 2015 +0100 - - HHH-10197 - Add test - -commit d74ec8ec6bf34c34925e8961849117a141882213 -Author: Andrea Boriero -Date: Mon Oct 12 15:47:06 2015 +0100 - - HHH-10174 - Fix Incorrect splitting of string using dot as separator, dot is not escaped - -commit e485ef74a6b62e4a7aeb8ce22ee6b56dbbf974ef -Author: Andrea Boriero -Date: Mon Oct 12 15:36:48 2015 +0100 - - HHH-10174 - Add test for issue - -commit 65c7cfaefb20c8683ec649d511f54aaa21c3dc1e -Author: Andrea Boriero -Date: Wed Oct 14 12:47:22 2015 +0100 - - HHH-10104 - Fix HHH-10104 Using JPA 2.1 schema generation together with hbm2ddl runs into deadlock with MySQL - -commit 0e93d0050c918db305392557ddd6f5d3be300453 -Author: Andrea Boriero -Date: Wed Oct 7 15:03:03 2015 +0100 - - HHH-10104 - Add Test - -commit 3bd448525be40d6c008fa54157d7e274cfe4c2b2 -Author: Andrea Boriero -Date: Thu Oct 15 09:53:01 2015 +0100 - - HHH-10194 - Change NameQualifierSupport for Hypersonic from CATALOG to SCHEMA - -commit d8fffd61f1ed7b0666ab7b001475a0f2729a2b02 -Author: Andrea Boriero -Date: Wed Oct 14 17:09:07 2015 +0100 - - HHH-10193 - Fix NameQualifierSupport for Hypersonic should be catalog - -commit 8298390dc69ab3ba29950848002a426c123c74d9 -Author: Andrea Boriero -Date: Wed Oct 14 16:28:30 2015 +0100 - - HHH-10198 - NPE in InformationExtractorJdbcDatabaseMetaDataImpl - -commit 1729067cbc23971f31cf33e63550af59a1e67de5 -Author: Andrea Boriero -Date: Wed Oct 14 14:03:22 2015 +0100 - - HHH-10190 - org.hibernate.engine.spi.ActionQueue#executeActions() optimization - -commit ac2f06800ea45aed66475a042a6f62cc99783565 -Author: Steve Ebersole -Date: Thu Oct 8 09:56:14 2015 -0500 - - HHH-9074 - HQL Query with boolean and @Convert - -commit 6d590d76b6d7fb3764e7bdc6dccb94808712fea5 -Author: Steve Ebersole -Date: Wed Oct 7 13:07:37 2015 -0500 - - HHH-9807 - Better error message when @Formula and @Id are combined - -commit 1a0bbe19cc3cdf017bc270f3cc6c25c84246ac42 -Author: Steve Ebersole -Date: Wed Oct 7 12:35:53 2015 -0500 - - HHH-10171 - Update Javassist - -commit 1203acbdc0044f877b65f6e25c167db4a28ca857 -Author: Steve Ebersole -Date: Wed Oct 7 12:26:07 2015 -0500 - - HHH-10172 - Throw MappingException when entity/component class defines multiple matching getters by stem name - -commit 767edb4b6e376e8476c513ce122df0501e771552 -Author: Steve Ebersole -Date: Tue Oct 6 19:37:39 2015 -0500 - - HHH-10136 - Upgrade HikariCP to latest version; - HHH-10171 - Update Javassist - -commit f539a924beb66a67874dde0a6d4fed342ff3812d -Author: Andrea Boriero -Date: Wed Oct 7 15:14:33 2015 +0100 - - HHH-10139 - remove unused import classes - -commit b2b477a2ceb2fb46a215244c75e1c3da38fc80ee -Author: Steve Ebersole -Date: Tue Oct 6 19:28:49 2015 -0500 - - HHH-10050 - AttributeConverter should supports ParameterizedType if autoApply is true - -commit ca171b112c642099ee5eea950b6fc35aae4a12ec -Author: Steve Ebersole -Date: Tue Oct 6 16:24:56 2015 -0500 - - HHH-9791 - Add varargs to Restrictions.in(...) - -commit 0cf66b85e03a997dc94f8f82598ca8edac04e889 -Author: Steve Ebersole -Date: Tue Oct 6 16:07:33 2015 -0500 - - HHH-10050 - AttributeConverter should supports ParameterizedType if autoApply is true - -commit 9633c0a6e5c2bb012e9a278f87e134e2fb1c9864 -Author: Steve Ebersole -Date: Sat Oct 3 15:01:51 2015 -0500 - - disable hibernate-infinispan tests on master - -commit 3ac508882c89ebd7c80af71d0e65ba26a017ebe3 -Author: Steve Ebersole -Date: Sat Oct 3 13:44:20 2015 -0500 - - HHH-9615 - Allow AttributeConverter on attributes marked as Lob - -commit eaf28166d25a6e2186e1cd7549ca9d64bdeed179 -Author: Steve Ebersole -Date: Fri Oct 2 18:35:16 2015 -0500 - - HHH-10097 - Expose the UUID from SessionFactoryImplementor - -commit 4d39b383427e2e0ddd864d320919946448c11b38 -Author: Steve Ebersole -Date: Fri Oct 2 10:33:23 2015 -0500 - - HHH-10137 - Upgrade to/support Jandex 2.0 - -commit 559eb936ad28291097df00152613f345ebb04830 -Author: Steve Ebersole -Date: Wed Sep 30 16:09:12 2015 -0500 - - HHH-10153 - Upgrade to Gradle 2.7 - -commit 7af7ebaf875918331f2d1cacbdabcb8d68f16c5f -Author: Steve Ebersole -Date: Wed Sep 30 12:36:57 2015 -0500 - - HHH-10129 - Evaluate AttributeConverter tests in hibernate-entitymanager for move to hibernate-core; - HHH-10154 - Change built-in JavaTypeDescriptor impls to not auto-register themselves with JavaTypeDescriptorRegistry - -commit 14e207d69210768511f18fc6a2934af6cdf5e61e -Author: Andrea Boriero -Date: Wed Sep 30 12:48:52 2015 +0100 - - HHH-9996 - Finish Derby database profile - SelectCaseTest#selectCaseWithValuesShouldWork() and SelectCaseTest#simpleSelectCaseWithValuesShouldWork require H2Dialect - -commit 243a72cd9935aaaeef1bcd939319bb97de3b100f -Author: Andrea Boriero -Date: Wed Sep 30 12:09:49 2015 +0100 - - HHH-9996 - Finish Derby database profile - ForeignKeyMigrationTest requires Dialect supports catalog creation - -commit b68291ebdabcf14b3ff10d409695483e7bb30fd1 -Author: Andrea Boriero -Date: Mon Sep 28 17:35:10 2015 +0100 - - HHH-10142 - Add SQL keyword to DerbyDialect - -commit a6f3319eafddf0aa0b9629de7eba79b11eedc760 -Author: Steve Ebersole -Date: Wed Sep 30 00:34:33 2015 -0500 - - HHH-9685 - Envers should do nothing when JTA transaction is already marked as rollback-only - -commit eb544140a1e4727102bf57509060941db1d06ecf -Author: Steve Ebersole -Date: Wed Sep 30 00:20:35 2015 -0500 - - HHH-10121 - Have EMF#getProperties expose ValidatorFactory injected via 2-phase load - -commit e64d028306d78096b12dc2c6702fc866ad4b369e -Author: Steve Ebersole -Date: Wed Sep 30 00:06:37 2015 -0500 - - HHH-10122 - Deprecate ".class" property-style entity-type-expression format - -commit 3cdc4476542424bf9a306c79fac3beb2a2580657 -Author: Steve Ebersole -Date: Tue Sep 29 23:30:46 2015 -0500 - - HHH-10125 - KEY() function in HQL causes inaccurate SQL when map key is an entity; - HHH-10132 - ENTRY() function in HQL causes invalid SQL when map key is an entity - -commit bac4cd21280aa57308ad0d67e45e7690f1ec0b22 -Author: Andrea Boriero -Date: Thu Sep 24 17:55:04 2015 +0100 - - HHH-9995 - Finish pgsql database profile - -commit ca0eee08a0e6d3ab183136905cca4229f8d4e620 -Author: Martin Simka -Date: Tue Aug 18 17:27:13 2015 +0200 - - HHH-9995 - Finish pgsql database profile - rollback transaction on error in TestLazyBasicFieldAccessExecutable - -commit fe1b141f79db717937da137b1eda33d35bf8b704 -Author: Andrea Boriero -Date: Thu Sep 24 16:20:03 2015 +0100 - - HHH-10150 - Override PostgreSQL9Dialect#getDefaultMultiTableBulkIdStrategy() causing exception in deleting joined subclasses - -commit 8bdb2d7788f160a31472771bb4e571653d182c52 -Author: Andrea Boriero -Date: Fri Sep 25 17:16:08 2015 +0100 - - HHH-10149 - Fix PostgreSQL Dialect getForUpdateString(String aliases, LockOptions lockOptions) returning a wrong value for update String when aliases is an empty String - -commit fc6312a73b99c8edf2af32122165cc8b31b79aa7 -Author: Andrea Boriero -Date: Fri Sep 11 16:57:28 2015 +0100 - - HHH-10110 - Fix DerbyDialect#getQuerySequencesString() causing error during schema update - -commit 86bbb1de8f2c61fc87cf645d3f4765cdafdab556 -Author: Andrea Boriero -Date: Wed Sep 23 12:10:35 2015 +0100 - - HHH-10141 - Fix issue with ClassicQueryTranslatorFactory and revision parameter type detection - -commit 0885e953ceb2d39f0827da127bec3875e1098421 -Author: Andrea Boriero -Date: Tue Sep 22 17:56:39 2015 +0100 - - HHH-10140 - Fix derby does not support tuples in subqueries - -commit 80f61bdcff71d78d09e3bc47576efb018e770b20 -Author: Andrea Boriero -Date: Tue Sep 22 16:16:23 2015 +0100 - - HHH-10139 - Fix 1 causing java.sql.SQLSyntaxErrorException: Comparisons between 'INTEGER' and 'BOOLEAN' are not supported when the column is a boolean - -commit 8d3b2e723b976429d81e188c4cc3b824491b84b7 -Author: Andrea Boriero -Date: Tue Sep 8 14:01:49 2015 +0100 - - HHH-9996 - Finish Derby database profile - -commit ac16e825f8b19a8f6b5c7ec833cb3da432052a6f -Author: Steve Ebersole -Date: Mon Sep 28 14:57:47 2015 -0500 - - HHH-10128 - @Enumerated(EnumType.STRING) not working as expected with PosgreSQL database - -commit 59a8d3122f6da0563565e1db6a7c25f8cea1b2ac -Author: Steve Ebersole -Date: Mon Sep 28 14:26:57 2015 -0500 - - HHH-10066 - Drop and recreate AuxiliaryDatabaseObjects as part of schema update - -commit 2964ecbf1b74003fcc337b0574487c724638fe94 -Author: Steve Ebersole -Date: Sun Sep 27 08:01:26 2015 -0500 - - HHH-10135 - DB2Dialect should override getSelectSequenceNextValString - -commit 909c034429cb529bdaac7d35045aa9337e7a8765 -Author: Steve Ebersole -Date: Sat Sep 26 09:01:07 2015 -0500 - - HHH-10125 - Using KEY function in JP-QL SELECT clause selects value columns in rendered SQL - -commit 35712181833354752af8c11722eceed442651e61 -Author: Steve Ebersole -Date: Fri Sep 25 17:46:19 2015 -0500 - - HHH-10133 - CatalogSeparator of dialect metadata not used in runtime, just in schema tool - -commit 7354c7bfc36b8d67197e4dcd2dd9327d08ce81b6 -Author: Steve Ebersole -Date: Fri Sep 25 13:40:50 2015 -0500 - - HHH-10126 - Table-backed sequences are not populated on creation using SchemaUpdate - -commit ed892971af211857f6556be13eaf338248d3b3c4 -Author: Steve Ebersole -Date: Fri Sep 25 12:26:46 2015 -0500 - - HHH-10131 - CacheableFileXmlSource.doBind returns null instead of created binding when .hbm.xml.bin have not been created yet - -commit a1444f2a10d890fbfaab8fcfcbe64134912f5081 -Author: Steve Ebersole -Date: Fri Sep 25 11:18:10 2015 -0500 - - HHH-10099 - @OrderColumn never generates the column in the schema - -commit 70c9c8e8552871e7425fe91f7c8d1e017d952d31 -Author: Steve Ebersole -Date: Thu Sep 24 17:03:53 2015 -0500 - - HHH-10111 - AttributeConverter based attributes are not marked for update when their state is modified - -commit bb0b604b57bbb282428b990a2d974f60e85ee308 -Author: Steve Ebersole -Date: Thu Sep 24 15:50:54 2015 -0500 - - HHH-10111 - AttributeConverter based attributes are not marked for update when their state is modified - -commit e8da2d09b3eec8007e882f176bf375630169285a -Author: Steve Ebersole -Date: Thu Sep 24 13:00:39 2015 -0500 - - HHH-10045 - Teradata requires non null primary keys. - -commit 4777d5888c69c2bbca11a88830a2b3a1046d27e5 -Author: Steve Ebersole -Date: Thu Sep 24 12:24:18 2015 -0500 - - HHH-10120 - InputStream not closed in ConfigLoader.loadConfigXmlResource(String) - -commit 0f5139b60af9d91c610016e498f0db7e1fca0459 -Author: Steve Ebersole -Date: Thu Sep 24 11:57:49 2015 -0500 - - HHH-10119 - Config setting names loaded from cfg.xml stored in augmented (prefixed with "hibernate.") form but not original form - -commit 0c628fa9aaac089209c0972841a7277b9b99ebbe -Author: Steve Ebersole -Date: Thu Sep 24 11:50:59 2015 -0500 - - HHH-10119 - EhCacheRegionFactory cannot find configurationResourceName set in .cfg.xml - -commit 6ce9d6848d41fe48de78a3e1f295255a105f4a8c -Author: Steve Ebersole -Date: Tue Sep 22 16:11:30 2015 -0500 - - HHH-10115 - HHH90000003: Use of DOM4J entity-mode is considered deprecated - - (cherry picked from commit 91cd767d207904e497db727e176277feeb5648c5) - -commit c5b1cf94f3b204737a732b68b747fd3446f25f8d -Author: Andrea Boriero -Date: Mon Sep 21 16:05:32 2015 +0100 - - HHH-10108 - Substituted checkstyle NewlineAtEndOfFile rule with rules used in OGM and fixed classes having more than a newline at the end of file - -commit d812f79ace222dcc80c72fe452e970976cee5bc2 -Author: Radim Vansa -Date: Mon Sep 14 11:17:09 2015 +0200 - - HHH-10101 Implement nonstrict-read-write mode in Infinispan 2LC - - * requires non-transactional cache in repl/dist/local mode and versioned entities - -commit 5edcf26a0a10ae1996fa54fef85454131ce5cd95 -Author: Radim Vansa -Date: Wed Aug 26 16:21:03 2015 +0200 - - HHH-10083 Support replicated and distributed caches - -commit 39e3dbb8b6ef7a710e26a3d2ddda3dbac9879750 -Author: Steve Ebersole -Date: Tue Sep 15 11:23:48 2015 -0500 - - HHH-9409 - non-auto-apply converter fails at element collection - -commit 918c9d4ffda2bd3006bd31caa9a750250092190d -Author: Steve Ebersole -Date: Fri Sep 11 06:36:15 2015 -0500 - - HHH-9888 - Oracle database constraint violation reported as RollbackException with JTA transaction manager - -commit 9d6886198b1ee744b0390007ec84ddf2799709fc -Author: Steve Ebersole -Date: Thu Sep 10 14:05:37 2015 -0500 - - HHH-10055 - Lazy loading of collections in enhanced entity not working - -commit d0b0d7ef879d8ddc2a3394155cf0a72da309db11 -Author: barreiro -Date: Thu Sep 3 13:48:14 2015 +0100 - - HHH-10055 - Add test case (enhanced version of org.hibernate.test.ondemandload.LazyLoadingTest) - -commit 33458ab6f84c997533422f5bac549ed94631e14d -Author: Andrea Boriero -Date: Thu Sep 3 23:43:29 2015 +0100 - - HHH-9983 - Fix Error saving entity with identity id on Oracle 12c - -commit 1f3048e572382a76f81a4d5f3c31f1fd4b26d696 -Author: Andrea Boriero -Date: Wed Sep 2 11:14:00 2015 +0100 - - HHH-9983 - Add test for issue - -commit 2731fe541a4b297e399d46357ad9eb5bbe2d2239 -Author: Andrea Boriero -Date: Thu Sep 3 18:54:45 2015 +0100 - - HHH-100084 - Refactor Identity Column support methods into IdentityColumnSupport interface - -commit 7c17a0f4441fab67e92b5a05adb5a662084dd2c2 -Author: Mustafa Ulu -Date: Sun Sep 6 00:12:35 2015 +0300 - - HHH-10088 Add link to setting up guide for Eclipse IDE - -commit 75a0991ae96a71372f449932168651a3089e7baa -Author: Andrea Boriero -Date: Fri Sep 4 18:10:26 2015 +0100 - - HHH-10086 - Deprecate Dialect#getIdentityColumnString() and Dialect#getIdentitySelectString() - -commit 0aca04ff7a16fce61b573b32d4bec7244add77c6 -Author: Andrea Boriero -Date: Wed Sep 2 10:47:58 2015 +0100 - - HHH-9731 : Wrap Criteria CaseStatement params in string casts - -commit 9a6ecb914ee48f45e28a798c46ef92426dee382c -Author: Andrea Boriero -Date: Thu Jun 25 10:55:14 2015 +0100 - - HHH-9731 - Add test for issue - -commit 9694753daa72f4538b0b2f741bcb018ecbbbf443 -Author: Steve Ebersole -Date: Thu Sep 3 09:20:30 2015 -0500 - - Changed version in main build.gradle for master branch to 5.1.0-SNAPSHOT - -commit 643c0b532d0dedfe91dd9eb0f01ac667262b082e -Author: barreiro -Date: Sat Aug 15 14:53:05 2015 +0100 - - HHH-10079 - Use enhanced property access for field/property attributes only - -commit 03801b62ec2aa7cc9707e1014da0967101ef85ea -Author: barreiro -Date: Sat Aug 15 14:49:35 2015 +0100 - - HHH-10078 - Enforce sychronization of non thread-safe method Enhancer.enhance() - -commit 4d6eca5ff8596121e443136e2b0ef4d5abc455b2 -Author: barreiro -Date: Thu Aug 13 04:55:26 2015 +0100 - - HHH-10076 - bytecode enhancer - CompositeEnhancer does not add ManagedComposite marker interface - -commit c2c69ca62c0e4144e7fd7b823ea601910704abf3 -Author: barreiro -Date: Wed Aug 5 05:40:14 2015 +0100 - - HHH-10077 - Fix SourceSet generation on gradle plugin - -commit 3689924d74a000cc2319a434bf380862692c9b28 -Author: Radim Vansa -Date: Wed Aug 26 16:52:23 2015 +0200 - - HHH-10030 Add read-write cache concurrency strategy to Infinispan 2LC - - * AccessType.READ_WRITE is now supported cache concurrency strategy - * Added checks that we're caching in local or invalidation cache (distributed and replicated cache does not work ATM) - * Refactored test-suite: Running on both transactional and read-write caches (these should yield the same results) - ** CustomParemeterized runner is used for that - ** Moved all entities used in functional tests to one package - ** Removed already disabled tests related to class loaders (not needed since Infinispan 5.1) - -commit 2dc0adb893ebebd8fcf14a15ef0690c1d26291cf -Author: Gail Badner -Date: Wed Sep 2 13:04:56 2015 -0700 - - HHH-10053 : Revert HHH-9736; BigIntegerType really should use NumericTypeDescriptor - -commit 73c46e298c24098b89ae8c67712034e95b8095c0 -Author: Steve Ebersole -Date: Wed Sep 2 09:05:34 2015 -0500 - - HHH-10056 - Separate settings for notions of (1) disabling EnversService and (2) auto-registering Envers listeners - -commit 29de3c87ab7a95b130106abc17c5c540c3c5f436 -Author: Steve Ebersole -Date: Wed Sep 2 08:51:26 2015 -0500 - - HHH-10056 - Separate settings for notions of (1) disabling EnversService and (2) auto-registering Envers listeners - -commit 518033eabe8ff8e064185aa745c5aa2e4ed95c09 -Author: Steve Ebersole -Date: Wed Sep 2 08:23:20 2015 -0500 - - HHH-10068 - Missing generated JPA static metamodel class for envers revision entity - -commit 1c70e0df0cbf671bc885d0c3ca369fbc2e5a004c -Author: Steve Ebersole -Date: Tue Sep 1 21:52:28 2015 -0500 - - HHH-10020 - Improvements to org.hibernate.bytecode.enhance.internal.AttributeTypeDescriptor#buildInLineDirtyCheckingBodyFragment - -commit 961b5e897752e32d085663d72349f4c11ed7e632 -Author: Steve Ebersole -Date: Tue Sep 1 21:31:27 2015 -0500 - - HHH-10069 - ClassCastException between CompositeCustomType and ComponentType part 2 - -commit 8916346b4a5c697a3925f7eadaa861823789b14b -Author: Steve Ebersole -Date: Tue Sep 1 20:23:51 2015 -0500 - - HHH-9864 - foreign key violation with order_inserts=true - -commit 216848b50028fad690faa03246e7b8318af64018 -Author: drepshas -Date: Fri Aug 28 09:09:50 2015 -0700 - - HHH-10054 Modify Create Index SQL to support the Teradata database - -commit d9b456b03afc971c63ee154e0ae0ba80c5f30d5f -Author: Radim Vansa -Date: Wed Aug 26 15:00:28 2015 +0200 - - HHH-10058 Parameterized test runner compatible with CustomRunner - -commit 64137c3619ad07ce1c3d5c2bbefb853bbb3ac611 -Author: Radim Vansa -Date: Wed Aug 26 14:16:11 2015 +0200 - - HHH-10057 hibernate-infinispan incompatible with Infinispan 8.0.0.CR1 - - * ISPN-5609 changed InvalidateCommand constructors: used reflection to work around that; now should work with 8.0.0.CR1 - * renamed BeginInvalidationCommand.getLockOwner to getSessionTransactionId() to prevent further conflicts - * added commands tests - -commit 1d62197b9dc20fb7770addd82be716a6e5a69939 -Author: Radim Vansa -Date: Wed Aug 12 13:09:53 2015 +0200 - - HHH-10008 SessionImplementor.getTimestamp() does not return transaction start time; - HHH-9962 Second level query cache returns stale data if query and update statements are executed concurrently - -commit 1376b12ca9e383ef51c2ec50c88f4ef8a01f01f8 -Author: Gunnar Morling -Date: Tue Sep 1 13:06:22 2015 +0200 - - HHH-10073 Not propagating XML node names configured in mappings - -commit 6f215a92274a4243904f6c9ef496ecc6d1466255 -Author: Gunnar Morling -Date: Tue Sep 1 10:13:48 2015 +0200 - - HHH-10073 Removing further left-overs from removed dom4j entity mode - -commit 47b8ed51212f6ff8bec3675758ac05912ef8c2dc -Author: Gunnar Morling -Date: Tue Sep 1 10:10:41 2015 +0200 - - HHH-10073 Removing methods scheduled for removal in 5.0 - -commit 1db462f35f55371edb2d9016934a7ec680e9662d -Author: Gunnar Morling -Date: Tue Sep 1 09:55:55 2015 +0200 - - HHH-10073 Removing types methods scheduled for removal in 5.0 - -commit 78fcfe26a7c3f8eb603c86f86d62c91afd533841 -Author: Steve Ebersole -Date: Tue Sep 1 10:05:52 2015 -0500 - - HHH-10065 - Slow mapping initialization - -commit 74d2d33012146e3e3fd19e3ea77f9f2757a94587 -Author: Steve Ebersole -Date: Tue Sep 1 09:22:57 2015 -0500 - - HHH-10009 - Unable to parse cfg.xml file with explicit xsi:schemaLocation - -commit d85fd04eb0c1f3a4e7ba16de511455ccb7e61a31 -Author: Steve Ebersole -Date: Mon Aug 31 21:02:09 2015 -0500 - - HHH-10070 - Deprecate use of "collection properties" in HQL - -commit 24901af4d9edd9985a12d777313b1f1dec9fb412 -Author: Steve Ebersole -Date: Mon Aug 31 20:30:15 2015 -0500 - - HHH-10024 - CriteriaQuery: Join on a field named 'size' backed by an enum throws IllegalArgumentException - -commit 080014558dff3ec174a14f35ef9ce10506783f86 -Author: Steve Ebersole -Date: Mon Aug 31 13:07:18 2015 -0500 - - HHH-10026 - Consider hibernate-java8 types for use with @Version - -commit ca1c2efaf9552412ee296070a76d9bb4fe9f8013 -Author: Steve Ebersole -Date: Mon Aug 31 09:25:53 2015 -0500 - - HHH-9954 - Equality checking should consider arrays - -commit dee80ab5669614c3cbc7c345f92c1445d93b7576 -Author: Steve Ebersole -Date: Mon Aug 31 08:09:56 2015 -0500 - - HHH-10059 - Make EntityManagerFactoryBuilderImpl.populate methods protected - -commit 77bb57e8ab5126482d83c88d2adb01c647649ad0 -Author: Andrea Boriero -Date: Fri Aug 28 16:38:06 2015 +0100 - - HHH-10064 - Fix Broken documentation page link in User guide - -commit 249eff948dbd0800590cea4d8da631f6a8fd2e49 -Author: Gail Badner -Date: Wed Aug 26 16:27:31 2015 -0700 - - HHH-10060 : Order of subclass joins are no longer determinate - -commit 6ca0a231a56d68183f1ae4739b046389f8476630 -Author: Brett Meyer -Date: Wed Aug 26 17:17:15 2015 -0400 - - HHH-9975 checkstyle - -commit eaf4c789b303ca4ba3ec07c67b6867173085317f -Author: Brett Meyer -Date: Wed Aug 26 16:37:09 2015 -0400 - - HHH-9975 CacheImpl.containsQuery(String) does not check if query cache is enabled - -commit 5f5e5f82c4d3f64e799509d71acd08284e60670c -Author: Kamil Szymanski -Date: Tue Feb 3 23:28:29 2015 +0100 - - HHH-9593 Remove superfluous references to enclosing class - - Conflicts: - hibernate-core/src/main/java/org/hibernate/boot/registry/classloading/internal/ClassLoaderServiceImpl.java - hibernate-core/src/main/java/org/hibernate/internal/SQLQueryImpl.java - hibernate-core/src/main/java/org/hibernate/service/internal/JaxbProcessor.java - -commit 78b6d318485e5f5788fb6ce30a12566639ca22fa -Author: Brett Meyer -Date: Wed Aug 26 15:10:33 2015 -0400 - - HHH-10044 automatically add hibernate-core and hibernate-entitymanager Bundles to OsgiClassLoader - -commit 5941a047b0528a11607b66a8c73bbd3395f6c1c0 -Author: Brett Meyer -Date: Tue Aug 25 08:34:10 2015 -0400 - - HHH-10044 checkstyle fix - -commit 9870b5967fb76f056d084723b4b2a198b06d0b87 -Author: Brett Meyer -Date: Mon Aug 24 23:23:03 2015 -0400 - - HHH-10044 automatically add hibernate-core and hibernate-entitymanager Bundles to OsgiClassLoader - -commit 45cea33fbed5be5216626433b7cc276321349c4f -Author: Steve Ebersole -Date: Thu Aug 20 16:18:30 2015 -0500 - - 5.0.0 Final release - -commit 87a62262ba9e7d1c2d8a7b1707021e479ceec3ab (tag: 5.0.0.Final) -Author: Steve Ebersole -Date: Thu Aug 20 15:36:18 2015 -0500 - - 5.0.0 Final release - -commit c2ad82ef2b1d799ea746bbcd90df342a45a3742a -Author: Steve Ebersole -Date: Thu Aug 20 14:29:48 2015 -0500 - - HHH-10043 - Migration Guide - -commit 5ce69c18392b3c8c39929bea515daa20db46acef -Author: Steve Ebersole -Date: Thu Aug 20 13:13:38 2015 -0500 - - HHH-10042 - Add task to upload dist bundles to BinTray - -commit 2ec5d93a50318d5704198611e2849824cfee37fa -Author: Steve Ebersole -Date: Thu Aug 20 01:12:46 2015 -0500 - - HHH-10039 - Ensure the Karaf features.xml is included in the distro zip/tgz - -commit 5af5966756c485fa60c74a26be04b9b36df28c0a -Author: Brett Meyer -Date: Thu Aug 20 14:06:39 2015 -0400 - - removed obsolete caveats from OSGi guide - -commit 98ebeee830bfe492c878089b9db75a1e8a56f3bd -Author: Andrea Boriero -Date: Wed Aug 5 16:49:20 2015 +0100 - - HHH-951 - Fix setMaxResults causes "ORA-00918: column ambiguously defined" exception on Oracle for Criteria - -commit 2e7c3acf11830ec175e043898df5f9838b2dc335 -Author: Andrea Boriero -Date: Mon Aug 3 12:36:32 2015 +0100 - - HHH-951 - Add test for Criteria - -commit 0a722bb2304fd14c532ce555f79b046645309392 -Author: Piotr Findeisen -Date: Tue May 8 15:34:55 2012 +0200 - - HHH-951 - Fix setMaxResults causes "ORA-00918: column ambiguously defined" exception on Oracle - -commit 444c7f0eda1cb1ac1626ae8d836aad9ff7859414 -Author: Andrea Boriero -Date: Wed Aug 19 18:11:20 2015 +0100 - - HHH-9994 - Finish mariadb (mysql) database profile - Fix hibernate-envers tests hang on - -commit 300aa418fbd7ff305c0a64f10e45096464b58fa3 -Author: Brett Meyer -Date: Thu Aug 20 12:18:17 2015 -0400 - - HHH-10041 doc correction - -commit 2505f616135d0177c8c36b8fa88003830f32147b -Author: Brett Meyer -Date: Thu Aug 20 11:37:35 2015 -0400 - - HHH-10041 features.xml generation: collapse 3 mains into one hibernate-orm - -commit 2057bb3f1dc03ea1ed60707fc989673d52779878 -Author: Radim Vansa -Date: Wed Aug 12 17:46:53 2015 +0200 - - HHH-10023 Make hibernate-infinispan compiled with Infinispan 7.x but runnable with Infinispan 8.x - - * workaround for ISPN-5676 - * fix for ClassCastException in ClusteredTimestampsRegionImpl - * minor fixes in the testsuite - -commit 3bd3f546342ac1e14b03ee60f83862841a693f9c -Author: Brett Meyer -Date: Wed Aug 19 14:47:39 2015 -0400 - - HHH-9919 Re-write hibernate-osgi user guide based on published features.xml and ORM 5.0 - -commit a8a367ba0d4e8d088f1884906e1c14d2fa19abec -Author: Steve Ebersole -Date: Wed Aug 19 14:02:07 2015 -0500 - - HHH-10022 - Continue documentation TLC (part 2) - -commit 11b358305aec9b2c2098787af2512c8025ef0336 -Author: Steve Ebersole -Date: Wed Aug 19 12:21:57 2015 -0500 - - HHH-10040 - Fix problem with incomplete Iterator impl - -commit 2c1b7ca5378445615b0bd615697d36d8ea762d06 -Author: Steve Ebersole -Date: Wed Aug 19 11:57:24 2015 -0500 - - HHH-9908 - Regression in naming collection join tables - -commit 25799c6678b8377beb8fdd33e83f5cd6ebd1eb90 -Author: Steve Ebersole -Date: Wed Aug 19 09:44:37 2015 -0500 - - HHH-10022 - Continue documentation TLC (part 2) - -commit 825468ca9b511a57def1d0ee9c40003539b0f414 -Author: Steve Ebersole -Date: Sat Aug 15 08:26:27 2015 -0500 - - HHH-9908 - Regression in naming collection join tables - - (cherry picked from commit 51a8bc7ba30036356be2c72a41c8998d3c965061) - -commit ed867b2e604e2c01d029a7ab651193383c1859ec -Author: Gail Badner -Date: Tue Aug 18 16:37:43 2015 -0700 - - HHH-7070 : Put operations in transactions and added cleanup code (test case only) - -commit 5adf730c427253366b3665e5080381820c015c93 -Author: Richard Tingstad -Date: Tue Mar 24 15:27:52 2015 +0100 - - HHH-7070 Fixed some SybaseASE15Dialect function definitions (dateadd, datediff, datepart, atn2) - - (cherry picked from commit 7eebb0f73d42b9f5fbb2ab4abe840fbc16ff29d8) - -commit cbf255e4f012d53b879cc64d0ee4256653b9bfe9 -Author: amaeda -Date: Sat Apr 4 13:36:04 2015 -0300 - - HHH-9707 - Nulls first behavior on SQLServer database - (cherry picked from commit 6f37a2ee6b694dac2ebffaff208b80962a420745) - - Conflicts: - hibernate-core/src/main/java/org/hibernate/dialect/SQLServer2012Dialect.java - - HHH-9707 - Nulls first behavior on SQLServer database - (cherry picked from commit 046426b61914ba1f22029bc662e568f0a3c6c63b) - - Conflicts: - hibernate-core/src/main/java/org/hibernate/dialect/SQLServer2012Dialect.java - -commit 37964f12e48c44e9f256c2746d195b4b5396c28d -Author: Martin Simka -Date: Tue Aug 18 13:48:45 2015 +0200 - - [HHH-9994] Finish mariadb (mysql) database profile - added transaction to EnhancerTest and FlushAndTransactionTest - -commit 46232719d1a5d9bd1775b9e2787ea2f916bb4c48 -Author: Andrea Boriero -Date: Tue Aug 18 15:23:45 2015 +0100 - - HHH-10036 - Fix identifier is too long exception for test TableGeneratorQuotingTest - -commit 97606e8bf0b049136d3d7b856a4ec90823ea5184 -Author: Andrea Boriero -Date: Tue Aug 18 15:01:04 2015 +0100 - - HHH-10036 - Fix identifier is too long exception for test EnhancerTest - -commit a9daa65c12110fc3c026a80ca05372e8f74a090c -Author: Andrea Boriero -Date: Tue Aug 18 14:13:05 2015 +0100 - - HHH-10036 - Fix identifier is too long exception for test MapKeyCustomEnumTypeTest - -commit 6191489ca3a4fd1da0625864d4552939b49c52b9 -Author: Radim Vansa -Date: Wed Jul 29 13:37:31 2015 +0200 - - HHH-9928 Pending put leaks when the entity is not found in DB - -commit 93d39fa47067362c17b762d2b4d710c3207b4131 -Author: Radim Vansa -Date: Thu Aug 6 12:05:25 2015 +0200 - - HHH-9868, HHH-9881 Must not write into non-transactional caches during transactional write - - * The write can only invalidate (remove) the entry and block further PFERs of that entry - * After successful DB update, if there have not been any concurrent updates the value can be PFERed into the cache - -commit 19c14cee9a9cdb9bb7856d8fa01857f3c1151434 -Author: Radim Vansa -Date: Tue Aug 4 13:24:09 2015 +0200 - - HHH-9868, HHH-9881 Removed references to TransactionManager from PutFromLoadValidator - - * Also removed put() instead of PFER() after region invalidation - * Relaxed test that required that session.load() after cache.evictAll() in the same transaction cached the loaded entity - -commit c8ed5e1bef6a3a254b490d9fa5a6ae93465c7b66 -Author: Radim Vansa -Date: Tue Aug 4 11:21:04 2015 +0200 - - HHH-9898 Test for correct behaviour of 2LC - - * Test is marked as ignored since it is expected to run it only manually - -commit 984125e87ee99d61cbda7750d81936fe4d393456 -Author: Radim Vansa -Date: Tue Aug 4 11:24:26 2015 +0200 - - HHH-9868, HHH-9881 Replaced access to TransactionManager with Session - -commit 1f24fa6354220b7d263b86a75455e47bfdc1bc2a -Author: Radim Vansa -Date: Mon Jul 27 18:00:30 2015 +0200 - - HHH-9868, HHH-9881 Implementation for non-transactional caches and non-JTA transactions. - -commit fa7265ff0ecf14a381ee6391b48d291e9ee02324 -Author: Radim Vansa -Date: Tue Aug 4 11:06:41 2015 +0200 - - HHH-9881 Pending put needs to be invalidated on update on remote node - - * This could lead to performance degradation since new EndInvalidatingCommand - needs to be send after transaction is committed - -commit 4b2a78785e1022a1f7016929b66292752b214c52 -Author: Radim Vansa -Date: Tue Aug 4 10:56:48 2015 +0200 - - HHH-9868 Infinispan 2LC can store stale data - - * invalidation blocks putFromLoads until the transaction with invalidation - is committed - * rewritten the naked puts support: timestamp is stored in the pendingPutMap - and removal of the record relies on pending puts' idle expiration or - piggy-backs on release from putFromLoad - -commit fa8e94071fbfc8ff0f9ab7a493bcf3bb612b7a50 -Author: Radim Vansa -Date: Tue Jul 28 16:59:54 2015 +0200 - - HHH-9988 Separate transaction manager used for Hibernate and caches - -commit c952a843fa1227d17790cdafbc06d24a9f3fe27a -Author: Radim Vansa -Date: Thu Aug 6 13:38:05 2015 +0200 - - HHH-10023 Make hibernate-infinispan compiled with Infinispan 7.x but runnable with Infinispan 8.x - -commit 6fdc4cab8d4629e0ea5f25028b4bc8df2ff34c2b -Author: Steve Ebersole -Date: Fri Aug 7 19:56:56 2015 -0500 - - HHH-10022 - Continue documentation TLC (part 2) - -commit 9b007f6d915b9548651c5aef410e1fc245ddc8ab -Author: Steve Ebersole -Date: Fri Aug 7 15:15:28 2015 -0500 - - HHH-10022 - Continue documentation TLC (part 2) - -commit 9268a6917f2e3bb4293bed947988d0f6f8c81b43 -Author: Steve Ebersole -Date: Fri Aug 7 15:14:13 2015 -0500 - - HHH-10022 - Continue documentation TLC (part 2) - -commit 800df6f44c7fc361c699954845d2c57dc280d4c5 -Author: Steve Ebersole -Date: Thu Aug 6 20:38:36 2015 -0500 - - HHH-10022 - Continue documentation TLC (part 2) - -commit 85dbceac204d145785ad240adc5d5fedaa54d8b0 -Author: Steve Ebersole -Date: Thu Aug 6 14:59:25 2015 -0500 - - HHH-10022 - Continue documentation TLC (part 2) - -commit 8dc14436afa889faa13840ad4097b964d5ef4711 -Author: Steve Ebersole -Date: Thu Aug 6 14:07:50 2015 -0500 - - HHH-10022 - Continue documentation TLC (part 2) - -commit bd6bb7b841d641bb41f2f2770bc9f315df185634 -Author: Sanne Grinovero -Date: Thu Aug 6 10:55:52 2015 +0100 - - HHH-10021 Allow the exact version of Infinispan to be used for testing to be overriden from commandline - -commit 8c5c291beead0123ae4694a61c63677f68bd5e64 -Author: Sanne Grinovero -Date: Thu Aug 6 10:28:14 2015 +0100 - - HHH-10021 Allow easy testing of hibernate-infinispan against Infinispan 7 or 8 - -commit b0e3daddd330ed26b99c519f88e55e8cd8a41f01 -Author: Steve Ebersole -Date: Wed Aug 5 15:35:04 2015 -0500 - - 5.0.0.CR4 - -commit 5c41ae8937cf44a4fed7ccdc824c5be794105397 (tag: 5.0.0.CR4) -Author: Steve Ebersole -Date: Wed Aug 5 15:00:12 2015 -0500 - - 5.0.0.CR4 - -commit 266ec761f48639cb9f802a4e70de53dfdc55c552 -Author: Steve Ebersole -Date: Wed Aug 5 14:16:29 2015 -0500 - - HHH-10017 - Bytecode enhancer - consistent handling of persistent attributes (field / property access) - -commit cff4cb4b7ab4961f91ce7d8a79fb0ece0c732aeb -Author: barreiro -Date: Wed Aug 5 09:12:37 2015 +0100 - - HHH-9985 - bytecode enhancement - add testcase, and for HHH-10017 as well - -commit c622d391990969a7d776cf06f565c5934c0d8be4 -Author: barreiro -Date: Wed Aug 5 11:53:27 2015 +0100 - - HHH-9985 - remove hack based on exposed state and route all field access to enhanced methods, if present - -commit ed185b9b48e320ca04a91baf1009f4832dc09a98 -Author: barreiro -Date: Wed Aug 5 08:58:14 2015 +0100 - - HHH-10017 - bytecode enhancement - consistent handling of persistent attributes, regardeless of access type - -commit 603a410fdc820bd89f90360fd4f8f5b859769b35 -Author: Steve Ebersole -Date: Wed Aug 5 13:09:35 2015 -0500 - - HHH-9998 - Continue documentation TLC - natural-id - -commit 9b9b806aac0dd1fa7906ca68d0192692adb0f650 -Author: Steve Ebersole -Date: Wed Aug 5 10:26:48 2015 -0500 - - HHH-10018 - Change default ImplicitNamingStrategy to use the JPA compliant one + ImplicitNamingStrategy short-naming - -commit 1556c272d5b4d6e46762566f79694789725ba115 -Author: Steve Ebersole -Date: Wed Aug 5 09:09:07 2015 -0500 - - HHH-9850 - Primary key generated for nullable column in sequence table - -commit 182146f0adb50ee3318f8f8a57a0cd5e97cb8991 -Author: Andrea Boriero -Date: Wed Aug 5 14:31:04 2015 +0100 - - HHH-9990 - Fix typo in migration guide - -commit 612ca97cc7c33d58b24b2a0a00d2d7967238d56c -Author: Andrea Boriero -Date: Wed Aug 5 14:28:12 2015 +0100 - - HHH-9990 - updated migration guide to reflect the changes - -commit 1163d2bd0fe648dcdd76006c7044e0503087bda0 -Author: Andrea Boriero -Date: Wed Aug 5 12:22:53 2015 +0100 - - HHH-10015 - Oracle Dialect override Dialect#canCreateSchema() to return false - -commit b0cf427c218723ff3905b1dddd3fc5751d4c8e50 -Author: Steve Ebersole -Date: Tue Aug 4 23:03:21 2015 -0500 - - HHH-9998 - Continue documentation TLC - -commit a45261ed4c88e402473115a318f5ac7b19afabbb -Author: Andrea Boriero -Date: Wed Aug 5 13:36:44 2015 +0100 - - HHH-9990 - Fix test failure - -commit 4da260b3be6f0ae1c319051513763cf9c5ccf1d1 -Author: Andrea Boriero -Date: Wed Aug 5 10:10:22 2015 +0100 - - HHH-9990 - Enabled batched updates for versioned data by default - -commit d905246c6a20d0c22260113babf3549de7da0569 -Author: Andrea Boriero -Date: Wed Aug 5 11:25:57 2015 +0100 - - HHH-9990 - Add tests - -commit 7ccbd4693288dbdbc2e6844aa0877640d63fbd04 -Author: Janario Oliveira -Date: Fri Dec 5 17:56:01 2014 -0200 - - HHH-9534 - Exception with custom EnumType and Map relation - -commit 3192e1db92a3d68d6397d8d1c50992f7af610b74 -Author: Steve Ebersole -Date: Tue Aug 4 21:11:18 2015 -0500 - - HHH-9503 - Consistently accept numeric value or Connection constant field name for configuring transaction isolation - -commit 8c8e729b3d535653e53c736a566834bc49bc552f -Author: Daniel Gredler -Date: Mon Oct 14 21:14:33 2013 -0400 - - Test for HHH-8615 (no fix). - -commit 46a629382e7cbfbca36b78bde90094ea45d276dd -Author: Steve Ebersole -Date: Tue Aug 4 19:55:51 2015 -0500 - - HHH-9503 - Consistently accept numeric value or Connection constant field name for configuring transaction isolation - -commit d99fb4f5dcaa008bf32e564a11a2d7fa30fd4c67 -Author: Steve Ebersole -Date: Tue Aug 4 19:42:57 2015 -0500 - - HHH-9503 - Consistently accept numeric value or Connection constant field name for configuring transaction isolation - -commit 1d61210826aa5277136a27b86d1fcd7b65dfa378 -Author: Steve Ebersole -Date: Tue Aug 4 17:00:46 2015 -0500 - - HHH-9850 - Primary key generated for nullable column in sequence table - -commit 54a3bb244a3b9c545b52c846a068872e7bfbecf0 -Author: Steve Ebersole -Date: Tue Aug 4 16:59:08 2015 -0500 - - HHH-10014 - Adjust default for hibernate.auto_quote_keyword to false - -commit 45dd596c4f07480528235f216bcf4de87ed41c6f -Author: Steve Ebersole -Date: Tue Aug 4 15:58:32 2015 -0500 - - HHH-9869 - SizeExpression toString is misleading - -commit ad704a194eb7d574c06b6d78907619bdbccafef7 -Author: Peter -Date: Thu Jun 18 14:54:02 2015 +0100 - - HHH-9869 - fix the order in which SizeExpression.toString() emits size and property so that the toString of a SizeExpression is logically correct - -commit dd0547efdc768d9115398cfca0da5ecce5805ae7 -Author: Steve Ebersole -Date: Tue Aug 4 15:26:48 2015 -0500 - - HHH-10013 - Adjust default for hibernate.id.new_generator_mappings to true - checkstyle - -commit b3a8453064d00cb1d932e66f5fcf6b07b9e321bd -Author: Steve Ebersole -Date: Tue Aug 4 15:13:47 2015 -0500 - - HHH-10014 - Adjust default for hibernate.auto_quote_keyword to false - -commit f8b523f3de3a42b4db7bdc2180e258a067bdbd34 -Author: Steve Ebersole -Date: Tue Aug 4 15:06:24 2015 -0500 - - HHH-10013 - Adjust default for hibernate.id.new_generator_mappings to true - -commit 41836726e1f06ffbad2d626fd667b5b7569b1fab -Author: Steve Ebersole -Date: Tue Aug 4 11:49:15 2015 -0500 - - HHH-9936 - Same Sequence is created and dropped multiple times - -commit 6974744092bff5d15c44a5d0a066d39db0f91cdc -Author: Steve Ebersole -Date: Mon Aug 3 19:05:46 2015 -0500 - - HHH-9998 - Continue documentation TLC - -commit 4fadceca439eac7b39728ad76a26d3a8b98d7374 -Author: Steve Ebersole -Date: Mon Aug 3 18:29:16 2015 -0500 - - HHH-9998 - Continue documentation TLC - mapping identifiers - -commit 4f725332af012cc7d89785cd6c4f73c8d1442f2e -Author: Steve Ebersole -Date: Sun Aug 2 14:07:26 2015 -0500 - - HHH-9998 - Continue documentation TLC - mapping basic-types - -commit 84987f46b7b787e58fc00245945fa367339b5d24 -Author: Steve Ebersole -Date: Sat Aug 1 13:51:46 2015 -0500 - - HHH-9998 - Continue documentation TLC - mapping compositions & collections - -commit 7a67f39e38bb81330d863aacb212502abbf957dd -Author: Steve Ebersole -Date: Sat Aug 1 13:49:42 2015 -0500 - - HHH-9998 - Continue documentation TLC - mapping compositions & collections - -commit 9d22ed62ed217a5153ac8be1195b9b1bde49a961 -Author: Andrea Boriero -Date: Mon Jun 15 13:31:24 2015 +0100 - - HHH-9865 - Fix incorrect column information generated using schemaExport - -commit 02002169ef037671ead1c61364b2c21158d85a49 -Author: Steve Ebersole -Date: Fri Jul 31 16:32:51 2015 -0500 - - HHH-9882 - many to one declarations in hbm without embed-xml="false" generate warning - -commit fa14d4fb7038b46e77581c35488e13bc1ad7a0f7 -Author: Steve Ebersole -Date: Fri Jul 31 15:44:06 2015 -0500 - - HHH-9917 - 'value' is not a reserved word on Derby - -commit 067e892767eaa59c414b3f4fb1825ba89e1b5d8a -Author: Steve Ebersole -Date: Fri Jul 31 15:43:00 2015 -0500 - - HHH-9936 - Same Sequence is created and dropped multiple times - -commit 923ecb8e2cf403bd7656de10889f1baa459f2286 -Author: Steve Ebersole -Date: Fri Jul 31 12:52:01 2015 -0500 - - HHH-9961 - Ejb3JoinColumn does not use PhysicalNamingStrategy - -commit c1af6433c2930b939133f94d91789bf325256032 -Author: Steve Ebersole -Date: Fri Jul 31 09:26:50 2015 -0500 - - HHH-10006 - Document configuration of JndiService - -commit 8f4c2d5182e2ed73701b5acde00ae2d9535b89d0 -Author: Steve Ebersole -Date: Fri Jul 31 09:21:59 2015 -0500 - - HHH-10006 - Document configuration of JndiService; - HHH-10007 - Audit Services chapter in Integrations Guide - -commit 2036280fa0e05c2cc3a3069a83475dfcda9a5b68 -Author: Steve Ebersole -Date: Thu Jul 30 16:41:53 2015 -0500 - - HHH-9981 - Document the "transaction system"; - HHH-10007 - Audit Services chapter in Integrations Guide - -commit ab4c6841df3c3762d35ed1e1af69155757c3b7a3 -Author: Radim Vansa -Date: Thu Jul 30 17:28:52 2015 +0200 - - HHH-10005 Query in context needs precedence over query in cache - -commit 44e7171edd5ecf7dcda7ec9d406956b5c2e51c16 -Author: Sanne Grinovero -Date: Wed Jul 29 23:49:27 2015 +0100 - - HHH-10001 Make the testsuite compatible with Infinispan 8 - -commit 60c109c1a44caad8b4c6faf358b6bdffc2bfdda1 -Author: Paul Ferraro -Date: Wed Jul 29 16:06:44 2015 -0400 - - HHH-9999 Fix use of deprecated API - This fixes compatibility with Infinispan 8.0 - -commit ae8078499b41b7ef175b3470f58e724c203c01c0 -Author: Steve Ebersole -Date: Wed Jul 29 10:34:57 2015 -0500 - - 5.0.0.CR3 - -commit 5b09dcb4469072865748a4f57e38997c03426cdb (tag: 5.0.0.CR3) -Author: Steve Ebersole -Date: Wed Jul 29 10:28:09 2015 -0500 - - HHH-9986 - Fix reference manual inconsistencies for 5.0 - -commit 98d188fd19d80ff1b9b5f66557d3ffe520ac8235 -Author: Steve Ebersole -Date: Wed Jul 29 10:01:49 2015 -0500 - - 5.0.0.CR3 - -commit 6318160da8eedac9b839de03459ca8f0c5b13992 -Author: Emmanuel Bernard -Date: Wed Jul 29 17:11:45 2015 +0200 - - Minor visibility relaxation in AbstractEntityPersister for OGM - -commit 6ac234eb0143f5780010c3640f71142143425d33 -Author: barreiro -Date: Tue Jul 21 18:12:03 2015 +0100 - - HHH-9938 - field access parameter on gradle plugin - -commit 088b15f4515dc457cd36f8ffb9fb2d326cfcd366 -Author: barreiro -Date: Tue Jul 21 03:25:25 2015 +0100 - - HHH-9938 - field access parameter on maven enhacement plugin - -commit 417baffa1329feea54c82919c749802c8ccc85a7 -Author: barreiro -Date: Tue Jul 21 03:24:47 2015 +0100 - - HHH-9938 - bytecode enhancer - field access enhancement feature - -commit 6d77ac39c5bc6bcc62c305f16b0454088fa5233a -Author: barreiro -Date: Wed Jul 29 05:37:02 2015 +0100 - - HHH-9937 - bytecode enhancement - expose loaded state in LazyAttributeLoader - -commit 4f72f17623f8efb181a4e12b53c658c7d98595da -Author: Gail Badner -Date: Thu Jul 16 16:29:19 2015 -0700 - - HHH-9937 : Hibernate#isPropertyInitialized always returns true for new enhancer (test case only) - -commit 716e954f4985c1632791d7817340f6cb3bbf47d9 -Author: barreiro -Date: Mon Jul 27 06:14:22 2015 +0100 - - HHH-9985 - bytecode enhancer - fix merge use case for composites - -commit f759c152e21486b7f677d8e8f84203b64a73b9a4 -Author: barreiro -Date: Sat Jul 25 06:26:40 2015 +0100 - - HHH-9985 - bytecode enhancer - fix merge use case - -commit 463decd245ab6b0c684382b554b5633a7dad5409 -Author: Steve Ebersole -Date: Wed Jul 29 08:56:59 2015 -0500 - - HHH-9959 - Upgrade Hibernate Validator to 5.2.0.Final - -commit ff565fddb09dd1c53a4f585b76faedabab5ba625 -Author: Steve Ebersole -Date: Wed Jul 29 08:41:39 2015 -0500 - - HHH-9986 - Fix reference manual inconsistencies for 5.0 - -commit 0b6ea757e34a63b1421b77ed5fbb61398377aab1 -Author: Gail Badner -Date: Tue Jul 28 15:38:32 2015 -0700 - - HHH-7573 : Re-work test case to be similar to org.hibernate.test.instrument tests - -commit 8653c3195e8367d33369985be32ffa535550d76f -Author: Gail Badner -Date: Fri Jul 10 16:26:13 2015 -0700 - - HHH-7573 : Improve fix readability and test case - -commit 91995cf951415dac98339fe89a306fddd40e7e09 -Author: ballm -Date: Fri Mar 27 14:50:31 2015 +0000 - - HHH-7573 Added check for handle LazyPropertyInitializer.UNFETCHED_PROPERTY - - Added test to check that the change handles the various possible scenarios. - Test requires build time instrumentation. - - (cherry picked from commit e7475f12b0eafd37c7134b6643e0ade36b9716a0) - -commit 16c0a1f144a5996d8624f3dd2b40dc4f4a3afa1d -Author: Steve Ebersole -Date: Tue Jul 28 18:16:47 2015 -0500 - - HHH-9976 - JdbcResourceLocalTransactionCoordinatorImpl does not rollback on failure during #commit - -commit 3d1a39f80d15ca1bd0360cce723861d8789a9ec2 -Author: Steve Ebersole -Date: Fri Jul 24 11:48:13 2015 -0500 - - HHH-9976 - JdbcResourceLocalTransactionCoordinatorImpl does not rollback on failure during #beforeCompletionCallback - -commit e2d681380add8ca3d60472658c7662c0d8d1dbfe -Author: Steve Ebersole -Date: Tue Jul 28 15:35:41 2015 -0500 - - HHH-9986 - Fix reference manual inconsistencies for 5.0 - -commit 98d5e943ea226986db4eeffd797e0fc1ec45f7bf -Author: Andrea Boriero -Date: Mon Jul 27 18:17:19 2015 +0100 - - HHH-1872 - Fix Hibernate should handle hbm.auto = update with views - -commit 0cb00db3b9c2b8eac2e0f16e9613b767a7094291 -Author: Radim Vansa -Date: Tue Jul 28 16:56:45 2015 +0200 - - HHH-7898 Regression on org.hibernate.cache.infinispan.query.QueryResultsRegionImpl.put(Object, Object) - - * Moved query cache update to second phase of transaction commit - * Query caches are now recommended to be non-transactional (transactional ones will be slower) - -commit 4fd7680191067d6ce3ee41eba9ab7a20132a19e5 -Author: Radim Vansa -Date: Mon Jul 27 10:33:15 2015 +0200 - - HHH-9977 Consider options for passing Session to caching SPI calls - - * Passing SessionImplementor to all the calls executed in transactional context - -commit 7990630ae4917f15e59bca1881b50992e239cc21 -Author: Steve Ebersole -Date: Mon Jul 27 17:05:41 2015 -0500 - - HHH-9986 - Fix reference manual inconsistencies for 5.0; - HHH-9987 - HikariCPConnectionProvider TLC - -commit 09b3410db38a0f11115b834b15e10eeac0448055 -Author: Andrea Boriero -Date: Mon Jul 27 15:57:41 2015 +0100 - - HHH-9967 - Add test for issue - -commit 36584806425e28c64a2bc22744ed3bbe67b1007f -Author: Andrea Boriero -Date: Mon Jul 27 15:58:25 2015 +0100 - - HHH-9967 - Fix failure Create index on Postgres with --defaultSchemaName - -commit 930a0f7075ea6ebc72c6f35d33a5f0de68abfcda -Author: Andrea Boriero -Date: Mon Jul 27 11:18:42 2015 +0100 - - HHH-9918 - Test requires Dialect to support identity key generation - -commit c154d7edf712e5c12efd962d0902e32ded19bcfa -Author: Steve Ebersole -Date: Sat Jul 25 10:10:26 2015 -0500 - - HHH-9930 - Enable mariadb (mysql) database profile - -commit c00d4609efa61b32c2cb470aa5785284870a71b6 -Author: Gail Badner -Date: Wed Jul 15 12:37:08 2015 -0700 - - HHH-5255 : Merge detached entity failed when the instrumented lazy property is initialized - -commit 3d21604602118110be0457ddb97eba04312c9b3c -Author: Andrei Ivanov -Date: Thu Jan 29 18:32:27 2015 +0200 - - Test for HHH-5255 - - (cherry picked from commit e0347f81e86a4d31edbce79baf00c2182a9a6fd4) - -commit 539465915b8a011b5791c23ee33e47358a9e07b1 -Author: Steve Ebersole -Date: Fri Jul 24 12:54:02 2015 -0500 - - HHH-9966 - Improve schema tooling support for creating catalogs and schemas - -commit 33b00de3c06d82f11f8323f240c72864c4b8e244 -Author: Steve Ebersole -Date: Fri Jul 24 12:32:01 2015 -0500 - - HHH-9913 - NPE in org.hibernate.cache.internal.CacheDataDescriptionImpl.decode() - -commit d885f249d92335d63e5a21382327bb33400e2465 -Author: Andrea Boriero -Date: Wed Jul 22 12:25:08 2015 +0100 - - HHH-9966 - Improve schema tooling support for creating catalogs and schemas - -commit e98f220b088e6c6b03ec7d193d4d10bd3989c1d9 -Author: Steve Ebersole -Date: Fri Jul 24 09:58:48 2015 -0500 - - HHH-9980 - Implement mark-for-rollback-only handling for JdbcResourceLocalTransactionCoordinatorImpl - -commit 7556a22c2ff9809d9f7d0901483f38d2d9d17d79 -Author: Steve Ebersole -Date: Fri Jul 24 09:49:15 2015 -0500 - - HHH-9980 - Implement mark-for-rollback-only handling for JdbcResourceLocalTransactionCoordinatorImpl - -commit f429a8cb2853bbb74a963d6d12f19a7da233b13c -Author: Hynek Svabek -Date: Mon Jul 13 15:33:04 2015 +0200 - - HHH-9915 - test fail on Oracle (long identifier name) - -commit 021c80b5a07fb5b03ecd45ef34bcb6f706cdfeb3 -Author: Hynek Svabek -Date: Mon Jul 20 12:58:34 2015 +0200 - - HHH-9953 fix identifier is too long on OracleDB - ComponentNotNullTest - -commit 6c0141786b1db8018b5366384f252200207daab5 -Author: Hynek Svabek -Date: Wed Jul 22 13:23:22 2015 +0200 - - HHH9968 -fix identifier is too long on Oracle DB - irrelevantInstantEntity - -commit 7dbd199876ae493961040842b8c2d4b72395ef4e -Author: Hynek Svabek -Date: Thu Jul 23 10:46:19 2015 +0200 - - HHH-9972 - fix table names were too long on Oracle DB - -commit 5ec711fa1a7908119e9fad42c39225f3bf597d6e -Author: Steve Ebersole -Date: Fri Jul 24 07:22:34 2015 -0500 - - HHH-9923 - Avoid cast to MetadataBuildingOptionsImpl in AnnotationMetadataSourceProcessorImpl#prepare() - -commit f34c69cf1157f915a241369d69a0ebd10e5e1c70 -Author: Steve Ebersole -Date: Thu Jul 23 14:47:48 2015 -0500 - - HHH-9927 - Explicit calls to EntityManager.joinTransaction() with no active JTA transaction should throw a TransactionRequiredException - -commit 289e59a2c021e47cfe9ff37c50660f3a6a5743f4 -Author: Scott Marlow -Date: Thu Jul 16 10:52:54 2015 -0400 - - HHH-9927 add testcase for calling EntityManager.joinTransaction() with no active JTA transaction to verify that a TransactionRequiredException is thrown - -commit eaf562b129d891d1ce22b15f10b94325c8e6f811 -Author: Steve Ebersole -Date: Thu Jul 23 13:01:54 2015 -0500 - - HHH-9923 - Avoid cast to MetadataBuildingOptionsImpl in AnnotationMetadataSourceProcessorImpl#prepare() - -commit 37cc060b45cf6108052bae67747ad35e1bb94c18 -Author: Steve Ebersole -Date: Thu Jul 23 12:25:40 2015 -0500 - - HHH-9930 - Enable mariadb (mysql) database profile - -commit 11c76129bd613b1fe551d87c234ae240a824e2d9 -Author: Steve Ebersole -Date: Thu Jul 23 10:28:43 2015 -0500 - - HHH-9969 - MySQLDialect handling of numeric cast targets is incorrect - -commit 1f9b1c00f6fa923c62da599b3060a9214b37d98b -Author: Steve Ebersole -Date: Thu Jul 23 09:55:15 2015 -0500 - - HHH-9955 - EnumType mapped via hbm.xml not always resolved properly as far as named/ordinal - -commit ff4774ad7ef488ce7505784f9591684d096bdb99 -Author: Steve Ebersole -Date: Thu Jul 23 09:37:06 2015 -0500 - - HHH-9974 - Rename org.hibernate.boot.model.relational.Schema to Namespace - -commit 333e40465cd252e968107b0a47b5f553c1635873 -Author: Gail Badner -Date: Wed Jul 22 18:47:52 2015 -0700 - - HHH-9970 : Remove NoIdentityHQLScrollFetchTest and change HQLScrollFetchTest to work with "increment" ID generator - -commit 8b7d58d1a3f930bdf0685ca644d7e14c6f54e172 -Author: Steve Ebersole -Date: Wed Jul 22 11:56:30 2015 -0500 - - HHH-9955 - EnumType mapped via hbm.xml not always resolved properly as far as named/ordinal - -commit e678a5b8cf23fbc7f2931689f4d8dae948ef2a05 -Author: Steve Ebersole -Date: Wed Jul 22 11:49:47 2015 -0500 - - HHH-9955 - EnumType mapped via hbm.xml not always resolved properly as far as named/ordinal - -commit 6bb8d03595cdca70bc82cdcc7df9096b345e276a -Author: Gail Badner -Date: Mon Jun 22 17:56:18 2015 -0700 - - HHH-9637 : Join is reused when 2 explicit joins are used for the same ToOne association - -commit ce54660cdbddeb02b1fc72ea0c986fe85572f894 -Author: Steve Ebersole -Date: Tue Jul 21 18:31:09 2015 -0500 - - HHH-9910 - Schema migration (update) problems with catalog/schema restrictions - yes, in oracle - -commit 6af89449f2accf310a4d345e0d3438bc34eab2e6 -Author: Steve Ebersole -Date: Tue Jul 21 12:09:59 2015 -0500 - - HHH-9956 - Enable derby database profile - -commit 805600dd34301e935a8c9bd06d73a99558ac085e -Author: Steve Ebersole -Date: Tue Jul 21 12:01:39 2015 -0500 - - HHH-9956 - Enable derby database profile - -commit b24ba54d38781d66387498836a346f2ecc0d1770 -Author: Steve Ebersole -Date: Mon Jul 20 12:06:09 2015 -0500 - - HHH-9930 - Enable mariadb (mysql) database profile - -commit 4a2512e09940fb2c7771acc6625bc2b0e3888ff4 -Author: Emmanuel Bernard -Date: Mon Jul 20 18:44:10 2015 +0200 - - Minor JavaDoc improvement to clarify that class is no longer used - -commit 274303a7e087fa24a71809a46474162bb449b2f3 -Author: Gunnar Morling -Date: Mon Jul 20 09:42:41 2015 +0200 - - HHH-9949 Using new URL as DTD reference - -commit 855956135e726284e2cc346c3ada08fcf55aee0e -Author: Steve Ebersole -Date: Sun Jul 19 09:00:41 2015 -0500 - - HHH-9948 - SequenceStyleGenerator uses potentially incorrect name for table/sequence in DML statements - -commit 3584d59c9ecf0ba3bd8d2aee3f8f83913343b75e -Author: Steve Ebersole -Date: Sun Jul 19 08:22:57 2015 -0500 - - HHH-9949 - Recognize legacy http://hibernate.sourceforge.net/hibernate-configuration DTD base identifier - -commit cfd5414321530fa11e50a44fbb02d095b7daa542 -Author: Steve Ebersole -Date: Sat Jul 18 17:44:11 2015 -0500 - - HHH-9948 - SequenceStyleGenerator uses potentially incorrect name for table/sequence in DML statements - -commit 7bc37fd2f32f1a0e47354fcb8d8d741035133ae6 -Author: Steve Ebersole -Date: Sat Jul 18 17:22:57 2015 -0500 - - HHH-9948 - SequenceStyleGenerators uses potentially incorrect name for table/sequence in DML statements - -commit d7b1afeed7b8801d8af7d35b8778f42e80da5c9d -Author: Steve Ebersole -Date: Sat Jul 18 17:22:26 2015 -0500 - - HHH-9947 - PhysicalNamingStrategy#toPhysicalTableName called rather than #toPhysicalColumnName for some columns - -commit 837e9913c1e32b55acab75e62da9616d34235731 -Author: Steve Ebersole -Date: Sat Jul 18 17:18:36 2015 -0500 - - HHH-9949 - Recognize legacy http://hibernate.sourceforge.net/hibernate-configuration DTD base identifier - -commit 6812c07a1633e86b967d950e5df55a058dbbfb10 -Author: Steve Ebersole -Date: Sat Jul 18 14:20:02 2015 -0500 - - HHH-9946 - Do better job cleaning up "stray" transactions in base test - -commit ee2099ff8a51cc5bb35a2101b86a1ecca7fc12b5 -Author: Steve Ebersole -Date: Sat Jul 18 13:28:08 2015 -0500 - - HHH-9945 - Allow Transaction to rollback if marked-for-rollback-only - -commit f0f852f14f4b06092f8287e3003b295294e2c994 -Author: Steve Ebersole -Date: Fri Jul 17 09:33:14 2015 -0500 - - HHH-9931 - Enable pgsql database profile - -commit bebfce79029b91d5606ade47bb00950e62f5a1ba -Author: Steve Ebersole -Date: Thu Jul 16 14:11:15 2015 -0500 - - HHH-9930 - Enable mariadb (mysql) database profile - -commit 1ade5553211fae63259e53ac1ac829d038db2355 -Author: Emmanuel Bernard -Date: Fri Jul 17 14:45:49 2015 +0200 - - Clarify that LEGACY is the default value for batch size style - -commit d6d199741c928e32d99300fcf534661b3475f364 -Author: Emmanuel Bernard -Date: Fri Jul 17 14:45:16 2015 +0200 - - Add NetBeans files to .gitignore - -commit e4781feb7423c1bc74f1c43d6665c9a0d1730e31 -Author: Gunnar Morling -Date: Tue Jul 14 12:52:05 2015 +0200 - - HHH-9244 Using collection owner name in exception message - -commit 5e894c993bcea6321d4a94a8c33ff0c527ee9b14 -Author: Gunnar Morling -Date: Wed Jul 15 16:48:29 2015 +0200 - - HHH-9926 Properly applying auto-quoting setting - -commit 56448fafa2f30f9e603a38a83a17851261e6fd63 -Author: Steve Ebersole -Date: Tue Jul 14 14:46:02 2015 -0500 - - HHH-9916 - Update quickstarts and tutorials for 5.0 + convert to asciidoc(tor) - -commit ddac360d7af49f7df95bcb0c5b55ff824c74153f -Author: Andrea Boriero -Date: Mon Jul 13 10:19:01 2015 +0100 - - HHH-9907 - Close loadCtClassFromClass() InputStream - -commit 57f9836e2a8f25d1a48e6d2a4f0399499326dd08 -Author: barreiro -Date: Thu Jul 9 06:00:02 2015 +0100 - - HHH-9907 - bytecode enhancer - fix resource path on windows - -commit a9fcc03f74f72c0c0b0423193e53436648cfd80a -Author: Steve Ebersole -Date: Wed Jul 8 12:10:57 2015 -0500 - - 5.0.0.CR2 release - -commit da1b70f84bf6017f30948bab3ca943ab98857af2 (tag: 5.0.0.CR2) -Author: Steve Ebersole -Date: Wed Jul 8 11:37:05 2015 -0500 - - 5.0.0.CR2 release - -commit c44afee6dc304b755b225d4aab58fd6a9f3cca53 -Author: Steve Ebersole -Date: Wed Jul 8 11:01:40 2015 -0500 - - HHH-9905 - JPA integration property "javax.persistence.validation.factory" not passed along to TypeSafeActivator - -commit d50258f424950a0dd0c78f9716afe054e3e68c84 -Author: barreiro -Date: Wed Jul 8 04:44:38 2015 +0100 - - HHH-9902 - fix gradle plugin - -commit 6ef981edf89a9c21a600f6cb5066e01e328f143f -Author: barreiro -Date: Tue Jul 7 19:19:25 2015 +0100 - - HHH-9582 - maven enahcer plugin - fix local classloader - -commit 3e72b84b0c7ef9537b4d59422f16d4cbe0cfe16e -Author: barreiro -Date: Tue Jul 7 17:52:52 2015 +0100 - - HHH-9584 - maven enahcer plugin - add parameter to control behavior in case of error - -commit 02026dec78e2690a18495fcef42a1c1565c2c05c -Author: Steve Ebersole -Date: Tue Jul 7 13:48:09 2015 -0500 - - HHH-3949 - Intrumentated to one relations can not be join fetched - -commit 0e9a839ca163a6fdad113a05910860f7b8ab33a1 -Author: Andrea Boriero -Date: Tue Jul 7 16:39:40 2015 +0100 - - HHH-9899 : Fix checkstyle errors - -commit 710e1f028805a0e4c3b7a5e13b79f537575fe7a8 -Author: Gunnar Morling -Date: Tue Jul 7 10:52:59 2015 +0200 - - HHH-9899 Enable integrators to plug in custom MetadataBuilder and Metadata - -commit 83f4d4b81dc17304e854d761da8f5780afbc02ec -Author: Steve Ebersole -Date: Mon Jul 6 17:00:31 2015 -0500 - - HHH-8558 - Bytecode enhancer: lazy loading support - checkstyle fix - -commit ae070f32c9fa07a4e23a3fc5b3ba8beaf55f64d4 -Author: Steve Ebersole -Date: Mon Jul 6 16:28:28 2015 -0500 - - HHH-9822 - Switch runtime JPA Class transformation to use new bytecode Enhancer - -commit 99c643febc6daf087739a51499fffb576990aa23 -Author: Janario Oliveira -Date: Fri Jul 3 11:56:08 2015 -0300 - - Changed to keep generated classes in Context - -commit 9352546006db0a5bc2a528a74f5b1e66b6306225 -Author: barreiro -Date: Fri Jun 19 04:44:28 2015 +0100 - - HHH-8558 - Bytecode enhancer: skip creation of proxy factory - -commit 8053fa7698297bd4d3b920f938466dd9007d9ba8 -Author: barreiro -Date: Tue Jun 16 18:00:18 2015 +0100 - - HHH-8558 - Bytecode enhancer: fix classloading issues on testsuite - -commit d5ed3a87c44c7e494b2f70c73aebd41bd948ab9c -Author: barreiro -Date: Fri Jun 5 05:11:23 2015 +0100 - - HHH-8559 - Bytecode enhancemer: add test for HHH-3949 - - Conflicts: - hibernate-core/src/main/java/org/hibernate/tuple/entity/PojoEntityTuplizer.java - -commit 44a02e5efc39c6953ca6dd631669d91293ab67f6 -Author: barreiro -Date: Sun Jun 7 00:40:14 2015 +0100 - - HHH-8558 - Bytecode enhancer: testsuite reorganization with added lazy loading tests - -commit c6fa2b1df18ce0a6ad8e99f4c7b964ce84cda050 -Author: barreiro -Date: Sat Jun 6 23:26:03 2015 +0100 - - HHH-8558 - Bytecode enhancer: lazy loading support - -commit 750d6fb090169daac8aa16e471d62be372c2df8a -Author: Steve Ebersole -Date: Mon Jul 6 13:24:12 2015 -0500 - - HHH-9857 - Reuse of EntityEntry for bytecode enhanced read-only reference cached entities - -commit 3a515b5d39e4952e5b6ff610d31e6178aa704837 -Author: John O'Hara -Date: Tue Jun 9 12:42:12 2015 +0100 - - HHH-9857 - Reuse of EntityEntry for bytecode enhanced read-only reference cached entities - -commit d29b55a31a000c5a03a82417693cabd48461283c -Author: Andrea Boriero -Date: Tue Jun 16 16:31:15 2015 +0100 - - HHH-9849 - Fix Duplicate column name for mixed case column name on schema update - -commit 9024ff55d6e56adbc4ae9dacb15ae12e1e4792e3 -Author: Andrea Boriero -Date: Fri Jun 12 13:34:58 2015 +0100 - - HHH-9849 - Add test for issue - -commit 2f1b67b03f6c48aa189d7478e16ed0dcf8d50af8 -Author: Radim Vansa -Date: Thu Jul 2 09:40:41 2015 +0200 - - HHH-9843 Use optimized cache key implementation in Infinispan 2LC - * When multi-tenancy is not used, entity's @Id can be used as key to the cache - * Added Type to CacheDataDescription (in SPI), later used for container key equivalence - * Introduced CacheKeysFactory to SPI - * Pending puts cache is now per region - this is necessary as we need to use custom key equivalence - -commit bcf38a02b5d940d6d3d3647f4a99c10a1aa979a5 -Author: Radim Vansa -Date: Wed Jun 3 10:10:04 2015 +0200 - - HHH-9800 Numerous hibernate-infinispan tests continue to fail transiently - The original cause was JGRP-1931, but this replaces fixed delays with eventual asserts (with 10 seconds timeouts). - -commit 8e2d1a12aeabb2457dca173ec19c0d8cdd3bcd99 -Author: Steve Ebersole -Date: Mon Jul 6 11:00:16 2015 -0500 - - HHH-9166 handle nested exceptions with TemplatedViolatedConstraintNameExtracte - fixed bad braces - -commit aa0aa0bc397ba5c44c61472ebc59baf277e3ed0d -Author: Steve Ebersole -Date: Mon Jul 6 09:25:13 2015 -0500 - - HHH-9893 - proper karaf features file task dependency for artifact publishing - -commit 9b5bb9751cdd15eaf1049d2b51f6f4a61b878ed8 -Author: Steve Ebersole -Date: Thu Jul 2 15:47:08 2015 -0500 - - HHH-9887 - Make sure the JPA temp ClassLoader is not used to load Class definitions that are then held on to - -commit 0d6393a8b1f209cfb503b01e3b36a48b19147662 -Author: Steve Ebersole -Date: Thu Jul 2 02:49:09 2015 -0500 - - HHH-9887 - Make sure the JPA temp ClassLoader is not used to load Class definitions that are then held on to - -commit abd0461d3415e21b8bef0a31779cc04956f08e7d -Author: Gail Badner -Date: Wed Jul 1 21:31:17 2015 -0700 - - HHH-8172 : @Embedded object containing a null attribute cannot be used as a query parameter (test case) - -commit e5f4b616d4b93d06c3252f31dd01af31cc117b89 -Author: Radim Vansa -Date: Tue Jun 30 12:42:26 2015 +0200 - - HHH-9840 Checkstyle fixes - -commit cffe71aeba38977f526b5ce7e870609ea419471c -Author: Radim Vansa -Date: Mon Jun 8 14:23:16 2015 +0200 - - HHH-9840 Change all kinds of CacheKey contract to a raw Object - - * Replaced all CacheKey with Object - * Because of statistics, added unwrap operation to all AccessStrategies - -commit 16ae00a53a9c58c841eb1dea8eb36354d5f3ff0f -Author: Sanne Grinovero -Date: Thu May 28 00:26:57 2015 +0100 - - HHH-9840 Allow 2nd level cache implementations to customize the various key implementations - -commit 9ac0a343ac2799d0addbca33f9e004b705c6318b -Author: Sanne Grinovero -Date: Sat May 23 15:48:40 2015 +0200 - - HHH-9840 Refactor org.hibernate.cache.spi.CacheKey into an interface - -commit ea82d09101927cbdd88a8216dd306162ca0aac7e -Author: Sanne Grinovero -Date: Fri Jun 26 11:23:27 2015 +0100 - - HHH-9885 The default ClassLoaderService implementation should handle java.lang.LinkageError - -commit 96d6365a64e8bde274f0d8ba5ad3f5841cfe58e8 -Author: Karel Maesen -Date: Wed Jul 1 12:11:13 2015 +0200 - - HHH-9860 - upgrade geolatte version - -commit 67235a06f1319b998c63d533146aa730916c0ddf -Author: Brett Meyer -Date: Fri Jun 26 17:38:35 2015 -0400 - - CONTRIBUTING.md cleanup - -commit 11ae0f72c833dc5be990190e86eb5d88e570d010 -Author: Brett Meyer -Date: Fri Jun 26 15:19:20 2015 -0400 - - HHH-9166 handle nested exceptions with TemplatedViolatedConstraintNameExtracter - -commit 1e54ee3dc17abb0e19152c558312b8a58a899ab5 -Author: Sanne Grinovero -Date: Fri Jun 19 18:08:04 2015 +0100 - - HHH-9874 Do not leak the configuration resource stream - -commit f593a9c14ac39d8c2d37a46e420f369fc85f1ac4 -Author: Sanne Grinovero -Date: Fri Jun 19 16:55:52 2015 +0100 - - HHH-9874 Perform Infinispan configuration parsing using the classloader of the cache integration module - -commit 3d27b294685e810716cffc481a4f092fdd3c577f -Author: Sanne Grinovero -Date: Fri Jun 19 16:53:40 2015 +0100 - - HHH-9874 Improve resource lookup for the Infinispan configuration resources - -commit d0d0963c18d75950533591962d95ece2116eaffd -Author: Gail Badner -Date: Wed Jun 17 15:41:19 2015 -0700 - - HHH-2851 : ParameterTranslationsImpl fails to correctly determine parameter type - -commit 1ec76887825bebda4c02ea2bc1590d374aa4415b -Author: Gail Badner -Date: Mon Jun 15 12:54:29 2015 -0700 - - HHH-9862 : Multiple TREAT operators does not work properly for joined inheritance (test case) - -commit dd57871cdb3024bc12d5d01e71bd5d0f815a2dc8 -Author: Steve Ebersole -Date: Mon Jun 15 14:47:46 2015 -0500 - - HHH-9858 - Make sure release bundles contain hibernate-java8 - -commit efc9c2956c4f91464e9b6ded1e33c09f28461fef -Author: Steve Ebersole -Date: Mon Jun 15 12:26:14 2015 -0500 - - HHH-9858 - Make sure release bundles contain hibernate-java8 - -commit 066e13cbb570f45287ebb9f4efac724518f42bd6 -Author: Andrea Boriero -Date: Sun Jun 14 15:52:43 2015 +0100 - - HHH-9866 - Fix Wrong join table column names generation with globally_quoted_identifiers - -commit 5049c15c0bdfdcd38567f7ce2809fc7e8c142d4d -Author: Andrea Boriero -Date: Sun Jun 14 13:35:49 2015 +0100 - - HHH-9866 - Add test for issue - -commit 5eb4c0bdc589bc57cf89f56aad0670b16c70e0ba -Author: Gail Badner -Date: Thu Jun 11 15:47:53 2015 -0700 - - HHH-9518 : Add tests for new warnings - -commit f4f04901e266f00451ec13b86b90eeefb803d7a5 -Author: Gail Badner -Date: Thu Jun 11 11:56:04 2015 -0700 - - HHH-9518 : Exception handling around collection session access needs to be improved - -commit 5c7360c69a1f799df72392b4ff75c7fa1a7ad75b -Author: Andrea Boriero -Date: Wed Jun 10 13:41:38 2015 +0100 - - HHH-9757 - Fix Incorrect image path generated in HTML rendering removing useRelativeImageUris = false from devguide task, fixing image urls - -commit b27208064544fae55aca1ea1ba92ed2d1f3c2ba6 -Author: Steve Ebersole -Date: Tue Jun 9 15:25:56 2015 -0500 - - HHH-9859 - ResourceLocalTransactionCoordinatorImpl#isJoined bad impl - -commit 0ea03fd9a49d421918d2277928af7d28458cb763 -Author: Steve Ebersole -Date: Mon Jun 8 18:04:56 2015 -0500 - - HHH-9856 - EntityManager.find() and getReference() throw incorrect exception for non-entity - -commit 2b89553db5081fe4e55b7b34d636d0ea2acf71c5 -Author: Steve Ebersole -Date: Mon Jun 8 14:23:43 2015 -0500 - - HHH-9855 - Ignore non-entity classes listed as "managed classes" in persistence.xml - -commit d0b429dc3254fe9881d1001f9239428e26194bc7 -Author: Gail Badner -Date: Fri Jun 5 14:11:33 2015 -0700 - - HHH-9851 : Limit handling is broken for dialects that don't support variable limit/offset - -commit 30b260f14f5fb2f1379d2adf1ca8f4d01425ff85 -Author: Steve Ebersole -Date: Fri Jun 5 13:43:10 2015 -0500 - - HHH-9848 - Allow disabling auto-quoting of database object names (tables, columns, etc) - -commit 5b1da924983a2220d19e85e2f19eb3577dc4d67e -Author: Steve Ebersole -Date: Fri Jun 5 13:03:44 2015 -0500 - - HHH-9838 - Leverage ClassLoaderService during JavassistLazyInitializer#getProxyFactory - -commit 5c8d1ac500969822acf5972ed8129c94d69fce10 -Author: Belev -Date: Thu May 21 17:41:57 2015 +0300 - - Fixed typos in Chapter 5. Basic O/R Mapping - - Fixed typo in Chapter 5 - 5.1.1 Entity. - - Fixed key-property column name. - - Added missing parameters in set methods. - - Fixed typos. - - Fix typo - - Removed wrong whitespace. - - Fixed section associations to many to one as used in the section. - - Removed wrong whitespace. - - Fix typo - - Removed 'with' duplication. - -commit 4309d518e96873dd8de9c2493966620e348a2b4e -Author: vydn -Date: Sat May 16 17:12:26 2015 +0700 - - Update preface.xml - - Change link from caveatemptor.hibernate.org (not working) - to http://downloads.jboss.org/hibernate/caveatemptor/ (working) - -commit c543cdbc078a6cf57f5be4b071c4c8ac45a9153e -Author: Yann Diorcet -Date: Thu Mar 19 11:21:46 2015 +0100 - - DDL typo fix: Add only one space before unique keyword - -commit f17c525c0392c798d5eaea1b1270a0571c37a4ac -Author: Laurent Martelli -Date: Tue Dec 2 09:09:00 2014 +0100 - - Missing space - -commit 9e063ffa2577f06d98a9e912bb16d20424df8d6d -Author: Steve Ebersole -Date: Thu Jun 4 14:11:36 2015 -0500 - - HHH-9837 - Remove reliance during annotation binding on org.hibernate.internal.util.ClassLoaderHelper - HHH-9841 - Redesign org.hibernate.property.PropertyAccessorFactory - -commit 53a8b18ca887cf706815b354bf05d206de40f89e -Author: Gail Badner -Date: Wed Jun 3 13:59:14 2015 -0700 - - HHH-9844 : org.hibernate.cache.spi.access.AccessType enum names are not valid values for hibernate.cache.default_cache_concurrency_strategy - -commit ee971487439fcf2d5fd63cf1a043206f98b9ebc0 -Author: Steve Ebersole -Date: Fri May 29 16:03:31 2015 -0500 - - HHH-9738 - Upgrade master (5.0) to Gradle 2.4 - -commit 7d9bc1d71ce1322122c13694c6f5dd09eadfdd25 -Author: Steve Ebersole -Date: Fri May 29 16:01:47 2015 -0500 - - HHH-9738 - Upgrade master (5.0) to Gradle 2.4 - -commit 8734e10ec53178750d85c09b757bcd8d1818044f -Author: Steve Ebersole -Date: Thu May 28 17:06:16 2015 -0500 - - HHH-9831 - Upgrade HCANN - -commit e2d347c2a7eb55a28d220783409d6a6063c32763 -Author: Steve Ebersole -Date: Thu May 28 16:46:15 2015 -0500 - - HHH-9830 - Upgrade to jboss-logging 3.3 Final (rather than Beta) - -commit e7e906441fe8bb122f8e9b33e08b4ae65bba2ba8 -Author: Steve Ebersole -Date: Thu May 28 06:32:04 2015 -0500 - - HHH-9827 - Truncate master changelog.txt file to just 5.0 related changes - -commit d0c2c31ab7217da32eee2a82457eb321a3aebbaa -Author: Steve Ebersole -Date: Wed May 27 21:02:27 2015 -0500 - - HHH-9826 - Update the release task for uploading release bundles to SourceForge FRS - -commit 369a2904da91bf79fda8e4fbeaaf7e77fc0d0da7 -Author: Steve Ebersole -Date: Wed May 27 20:49:36 2015 -0500 - - 5.0.0.CR1 release - -commit 31b869d5997ef6b9f8e8d0a031790432adc409c1 (tag: 5.0.0.CR1) -Author: Steve Ebersole -Date: Wed May 27 20:24:30 2015 -0500 - - 5.0.0.CR1 release - -commit 7fba0a00e9a046150d040ec647f3a536ae712021 -Author: Steve Ebersole -Date: Wed May 27 15:33:12 2015 -0500 - - HHH-9823 - org.hibernate.cfg.annotations.SimpleValueBinder#fillSimpleValue incorrectly using HCANN classloading directly - -commit 1d8327f8ba7081f61ab631fef6ab6cc7dd7110ad -Author: Steve Ebersole -Date: Wed May 27 15:10:32 2015 -0500 - - HHH-9697 - Complete documentation of new approach and APIs for SessionFactory building - -commit 6417a469f9c82174d37dcbde0169659b11a21f26 -Author: Andrea Boriero -Date: Wed May 27 19:50:26 2015 +0100 - - HHH-9695 - Fix merge conflicts and checkStyle failure - -commit ccc83405c46ff24ba9698f9dc675ce4bb024b1b3 -Author: rvansa -Date: Tue Mar 31 16:44:32 2015 +0200 - - HHH-9695 Use non-transactional cache for immutable entities - -commit 4e2f7aeae40f9897203763c411f9bc52502f9e4e -Author: Gail Badner -Date: Thu May 21 16:09:09 2015 -0700 - - HHH-9777 : Copy tests from AbstractDereferencedCollectionTest into subclasses - -commit 93f56ecf5d1c11eef4ee2ba19fd7701782e75538 -Author: Gail Badner -Date: Thu May 7 01:02:17 2015 -0700 - - HHH-9777 : Dereferenced collections are not processed properly - - HHH-9777 : Dereferenced collections are not processed properly (test case changes only) - -commit e07eef3db19f1f9de04e846b3a0e6852a2312cd8 -Author: Gail Badner -Date: Thu May 7 00:43:43 2015 -0700 - - HHH-9777 : Dereferenced collections are not processed properly - - HHH-9777 : Dereferenced collections are not processed properly (mark test as FailureExpected due to partial fix) - -commit 82cdc82a48f46e35242c28991b29f1662cd5403c -Author: Gail Badner -Date: Thu May 7 00:15:49 2015 -0700 - - HHH-9777 : Dereferenced collections are not processed properly (test cases) - -commit 58fd078e5022beff6df0a4522c801ffd060b7e95 -Author: barreiro -Date: Fri May 22 03:30:12 2015 +0100 - - HHH-9811 - Enforce uniqueness on EntityPersister#resolveAttributeIndexes - -commit f795dfc2bc94fa127308a4429f0a48e377b3e9f9 -Author: barreiro -Date: Thu May 21 21:04:51 2015 +0100 - - HHH-9811 - Change EntityPersister#resolveAttributeIndexes to take String[] - -commit 73c5d576e7a7639500771110feea4c1059d12c38 -Author: barreiro -Date: Fri May 22 07:59:01 2015 +0100 - - HHH-9813 - Documentation for the Hibernate Enhance Maven Plugin - -commit ebb2ca19cdee7d510f94f45e1ce07d26683b3be4 -Author: barreiro -Date: Fri May 22 07:23:04 2015 +0100 - - HHH-9813 - Improve Hibernate Enhance Maven Plugin - -commit 5514aea2b45c0132b5de680f2d480276d9e2af46 -Author: Steve Ebersole -Date: Wed May 27 11:52:17 2015 -0500 - - HHH-9629 - l2 cache key constructed wrong for entity with inheritance when fetching lazy property - -commit a51f3002537d4e18b11878ddf1370ddda0ca49c5 -Author: Steve Ebersole -Date: Wed May 27 11:28:57 2015 -0500 - - HHH-9820 - Handle JDBC drivers that do not properly report metadata regarding case of identifiers - -commit d58ef6950c15a1f085e23b042439468650da5234 -Author: Andrea Boriero -Date: Wed May 27 14:23:39 2015 +0100 - - HHH-9287 - Fix Pooled optimizer identifiers clash with INSERT rows calling sequence directly - -commit fff9a16a22b1179d76215c66ee69720eedaa7ca9 -Author: Andrea Boriero -Date: Tue May 26 14:54:58 2015 +0100 - - HHH-9798 - Fix Unique constraint of @JoinColumn in @JoinTable not generated - -commit fdd7fb80807b18b12a7c417bf15b862bf38e2efb -Author: Andrea Boriero -Date: Tue May 26 12:25:54 2015 +0100 - - HHH-9798 - Add test for Unique constraint of @JoinColumn in @JoinTable not generated - -commit 905c79c65e1d16a21125a30b9584bce46050fa83 -Author: Steve Ebersole -Date: Tue May 26 16:07:57 2015 -0500 - - HHH-9788 - SchemaUpdate and quoted identifiers causes tables/columns to not be found based on name search - -commit c777938ce91831ffd3d940d410e6da1a341990c7 -Author: Steve Ebersole -Date: Thu May 21 15:20:44 2015 -0500 - - HHH-9675 - org.hibernate.envers.boot.internal.EnversIntegrator throws NPE in WF9 - -commit 00ed63f0bcbb519d37543a722586227811a3dc40 -Author: Andrea Boriero -Date: Mon May 18 16:48:10 2015 +0100 - - Fix findbugs exclude generated java sources and cfg package, Add excludeFilterConfig to remove all low level bugs warnings except DM_CONVERT_CASE - -commit 5bf9bb2a1d200d7eb63936d2525f9098c58bea10 -Author: Andrea Boriero -Date: Mon May 11 16:00:16 2015 +0100 - - HHH-9782 Build plugins pick up JAVA6_HOME as environment variable - -commit bb2833bafcfc6b4f8413f9e4e9629e0aef91820e -Author: Svein -Date: Fri May 15 09:54:09 2015 +0200 - - HHH-8854 Resolve any TypeVariables to Class or ParameterizedType when - creating AttributeConverterDefinition - -commit b5845138e639bd3130c679f89ca907edc855a409 -Author: Svein -Date: Fri May 15 09:36:46 2015 +0200 - - HHH-8854 Create AttributeConverterDefinition even if AttributeConverter - is only implemented via superclass or interface - -commit 1812bb2ef3f7999873f025bfc2718d5e99e7dde7 -Author: Steve Ebersole -Date: Thu May 21 00:24:56 2015 -0500 - - HHH-9809 - Improve Hibernate Gradle plugin - -commit acea5236070648c25d8724c07fbe6ac7a1bb6365 -Author: Steve Ebersole -Date: Wed May 20 11:44:31 2015 -0500 - - HHH-9806 - Bytecode-enhancement-based dirty tracking does not work because PersistentAttributeInterceptor is never injected - -commit 14fc8859fee6f048deea3c124fb3eb05e2c9c84e -Author: Steve Ebersole -Date: Tue May 19 22:04:20 2015 -0500 - - HHH-9745 - ClassCastException in hbm2ddl update and validate - -commit 6d0549b448b898e68d2d41d220e25cacc4e8720b -Author: Andrea Boriero -Date: Tue May 19 19:15:07 2015 +0100 - - HHH-9772 - Add @Retention( RUNTIME) so ListIndexBase annotation is available to AnnotationBinder - -commit d46bfb3d806ebe91027fe3bb3e81e9935f37f68e -Author: rvansa -Date: Thu May 14 09:28:30 2015 +0200 - - HHH-9787 Remove outdated Infinispan configuration elements - -commit 8368f93e0c1519ba08d92f2d6792618d4ed94d8d -Author: Andrea Boriero -Date: Tue May 19 12:01:39 2015 +0100 - - HHH-9803 - Fix compilation erorr: ackage instead of package - -commit bd256e4783219f4a765219cf625bb658fcb5fde1 -Author: Steve Ebersole -Date: Mon May 18 23:23:35 2015 -0500 - - HHH-9803 - Checkstyle fix ups - headers - -commit d5951c6e02f04acdf60ea5f19282c5d5b28c1c8d -Author: Steve Ebersole -Date: Mon May 18 21:49:44 2015 -0500 - - HHH-9803 - Checkstyle fix ups - -commit cf1971b4bb7c7293f8010dfa0af5d73feb4ee75c -Author: Steve Ebersole -Date: Mon May 18 21:27:36 2015 -0500 - - HHH-9771 - Registering JPA Entity-Listeners in orm.xml doesn't work - -commit 5f36892a10ffbf016fa62a73532a38aa4069e74c -Author: Steve Ebersole -Date: Mon May 18 14:34:48 2015 -0500 - - HHH-9803 - Checkstyle fix ups - -commit 611f8a0e1c3764dc4505a32294ff0fbeaa8d2e6b -Author: Steve Ebersole -Date: Mon May 18 13:35:26 2015 -0500 - - HHH-9803 - Checkstyle fix ups - -commit bb3998bf3404affab16dd19fa4eb51caa4057ea4 -Author: Steve Ebersole -Date: Mon May 18 02:01:51 2015 -0500 - - HHH-9803 - Checkstyle fix ups - -commit bbfacee64de39c712c4ee09e67c60545403aa372 -Author: Steve Ebersole -Date: Mon May 18 01:48:38 2015 -0500 - - HHH-9803 - Checkstyle fix ups - -commit 42bb59354fc9492788aa8a426aff33179ed4d421 -Author: Steve Ebersole -Date: Sat May 16 14:23:34 2015 -0500 - - HHH-9803 - Checkstyle fix ups - -commit 5f73d9277cedc3136f221036b87e6bb0597f9497 -Author: Steve Ebersole -Date: Sat May 16 14:04:43 2015 -0500 - - HHH-9803 - Checkstyle fix ups - -commit 4b3a655d49240fbaa50ff25d9e5a1b1270afd464 -Author: Sanne Grinovero -Date: Fri May 15 22:17:52 2015 +0100 - - HHH-9804 Ehcache integration uses a write lock where a read lock is requested in EhcacheTransactionalDataRegion - -commit 7308e14fedf03e467e9625767bb49c679e194f89 -Author: Steve Ebersole -Date: Fri May 15 18:07:07 2015 -0500 - - HHH-9803 - Checkstyle fix ups - -commit e4e76ba23b393a8a88cea48fb038691369a9b78d -Author: Andrea Boriero -Date: Fri May 1 16:07:29 2015 +0100 - - HHH-9765 - Re-introduce ExceptionMapper, ManagedFlushChecker and AfterCompletionAction - -commit 2827a59f2dd07b24c49472ce5a02dc9e57d1ef53 -Author: Steve Ebersole -Date: Fri May 15 13:46:58 2015 -0500 - - HHH-9788 - Schema generation re-triggered where it should not be - -commit a50e5f36230ab62d618c143aa6347e499cf7169f -Author: Steve Ebersole -Date: Fri May 15 08:49:46 2015 -0500 - - HHH-9800 - Numerous hibernate-infinispan tests continue to fail transiently - -commit 30aa9dcf50a690dd24b2b3e68f38b86061f916cd -Author: Steve Ebersole -Date: Thu May 14 13:37:45 2015 -0500 - - updated README.md - -commit 06f55c6bec2746c49f4d53e1c3f661b17b64599c -Author: Steve Ebersole -Date: Thu May 14 13:32:42 2015 -0500 - - updated README.md - -commit 9a2baf5b20cb5881fa67737310ae96a316c89e3d -Author: Steve Ebersole -Date: Thu May 14 12:13:40 2015 -0500 - - minor build script fix in regards to setting apt dir - -commit ae0b5f8577c02ef7ad2d7d435c847cab27ac74b8 -Author: Steve Ebersole -Date: Thu May 14 12:12:06 2015 -0500 - - HHH-9665 - Allow EntityManagerFactoryImpl to be unwrapped only into public interfaces/classes - -commit a2c3c742514541dc6a0ce229dbc95b205d0ff80f -Author: Hardy Ferentschik -Date: Wed Mar 18 12:50:58 2015 +0100 - - HHH-9665 Changing the EntityManagerFactoryImpl#unwrap method - - - Introducing HibernateEntityManagerFactory to host public EntityManagerFactory extension points - - Letting EntityManagerFactoryImpl#getEntityTypeByName return EntityType instead of EntityTypeImpl - - Updating tests to use unwrap to HibernateEntityManagerFactory instead of a cast to EntityManagerFactoryImpl - -commit 329e85b0b08a3d5179e25567c6c1fa0f42dd1f37 -Author: Steve Ebersole -Date: Thu May 14 11:52:11 2015 -0500 - - HHH-9797 - Inaccurate warnings logged about duplicate joins (HHH000072) - -commit df898f3fbcd6054a8d5c6f49e311b521381c1248 -Author: Gail Badner -Date: Wed May 13 14:50:05 2015 -0700 - - HHH-9796 : Allow running hibernate-infinspan tests using Infinispan configuration specified by hibernate.cache.infinispan.cfg - -commit b605c3534ecd7bdedd9d98fe8a0dcf062b3f38f9 -Author: Steve Ebersole -Date: Wed May 13 11:55:02 2015 -0500 - - HHH-9790 - Remove deprecated methods from Session and SessionFactory - -commit b8f43a8c122c28ca8dc904ca3a3c2741c424bc92 -Author: Steve Ebersole -Date: Wed May 13 11:01:24 2015 -0500 - - HHH-9795 - Create delegating base class for SessionFactory(Implementor) implementations - -commit 13736ab5dab9a21db536483f7ceeaf3a05390cb2 -Author: Steve Ebersole -Date: Wed May 13 09:03:44 2015 -0500 - - HHH-9790 - Remove deprecated methods from Session and SessionFactory - -commit 48cafb2664c078611b190ccf4909a14b44eedbc0 -Author: Steve Ebersole -Date: Tue May 12 23:34:20 2015 -0500 - - HHH-8804 - Ability to use parametrized type as AttributeConverter type parameter - -commit 99e1250e4e6d38254aa7f6f2536c8ec45e6a1b52 -Author: Svein -Date: Fri May 8 17:26:15 2015 +0200 - - HHH-8804 AttributeConverterDefinition now extracts the raw class from - parameterized type arguments to AttributeConverter - -commit 23794bf294f7a3676c6de6ea712c98ba6c5d8818 -Author: Steve Ebersole -Date: Tue May 12 23:09:58 2015 -0500 - - HHH-9792 - Clean up missed Configuration methods - -commit 3ee002ad4694962c074267cdb4833ee52cb9ad9c -Author: Steve Ebersole -Date: Tue May 12 23:00:50 2015 -0500 - - HHH-9699 - Re-work the hibernate-osgi integration tests using managed Karaf - -commit 288f490418d915585d0e506bf2f4d38911cc42da -Author: Steve Ebersole -Date: Tue May 12 22:56:37 2015 -0500 - - HHH-9761 - Make native APIs typed; - HHH-9790 - Remove deprecated methods from Session and SessionFactory - -commit dc0f77a236995848f10a01b836880e3aa6384ffe -Author: Andrea Boriero -Date: Tue May 12 15:16:01 2015 +0100 - - Fix JdbcCoordinatorImpl impl of TransactionCoordinatorOwner#isActive() - -commit fa2034275b2ef9f9d8573a9a0cb94aa511bf1c5a -Author: Steve Ebersole -Date: Tue May 12 14:31:40 2015 -0500 - - HHH-9699 - Re-work the hibernate-osgi integration tests using managed Karaf - -commit 0d4989a5c06accb908f25f7e495f040d899b297a -Author: Steve Ebersole -Date: Tue May 12 13:58:49 2015 -0500 - - HHH-9699 - Re-work the hibernate-osgi integration tests using managed Karaf - -commit ab66df1ecf2691a2efaf6a82db9d8d3e0cf85937 -Author: Steve Ebersole -Date: Tue May 12 13:57:40 2015 -0500 - - HHH-9699 - Re-work the hibernate-osgi integration tests using managed Karaf - -commit f3247cf3dd06ca1a6486e30c9bdf468ea1197ee1 -Author: Sanne Grinovero -Date: Tue May 12 14:08:08 2015 +0100 - - HHH-8898 Apply the auto-closeable also to StatelessSession and HibernateIterator - -commit d7bf58e318930aae95ed9a9220dd8205fc11835e -Author: Sanne Grinovero -Date: Sat May 9 13:56:20 2015 +0100 - - HHH-8898 Change the ScrollableResults API to enable auto-closeable when running on Java7 - -commit 4d70a29e58630ce6d4296016e949401d0cc73d06 -Author: Sanne Grinovero -Date: Sat May 9 13:21:46 2015 +0100 - - HHH-8898 Change the SessionFactory API to enable auto-closeable when running on Java7 - -commit 7c006f7fcd2258d5253dc9e573aaa433201572ae -Author: Sanne Grinovero -Date: Sat May 9 12:59:23 2015 +0100 - - HHH-8898 Change the Session API to enable auto-closeable when running on Java7 - -commit f3399926db371f18433abfd33845f512aef6a0a3 -Author: Galder Zamarreño -Date: Tue May 12 10:05:42 2015 +0200 - - HHH-9781 Update XML schema to Infinispan 7.2 - -commit da83e06e52d1d695d05894d1696523594c4da115 -Author: Sanne Grinovero -Date: Sat May 9 15:47:50 2015 +0100 - - HHH-9783 TestableLoggerProvider needs to implement a new method after upgrade of JBoss Logger - -commit ff14315744b68c7d3c653a6ea371009aa0412d60 -Author: Steve Ebersole -Date: Fri May 8 15:31:41 2015 -0500 - - HHH-9699 - Re-work the hibernate-osgi integration tests using managed Karaf - -commit 10922ba279ad3130fa0e45f5cab89b58a2677f4d -Author: Steve Ebersole -Date: Tue May 5 17:18:16 2015 -0500 - - HHH-9699 - Re-work the hibernate-osgi integration tests using managed Karaf - -commit fde734e8289daad08c9e7e994592c91e9a96c5c4 -Author: Steve Ebersole -Date: Fri May 1 08:54:47 2015 -0500 - - HHH-9699 - Re-work the hibernate-osgi integration tests using managed Karaf - -commit 1b468d06a32c8f61e92615034cbed4b4b4414eed -Author: Steve Ebersole -Date: Wed Apr 29 22:10:49 2015 -0500 - - HHH-9699 - Re-work the hibernate-osgi integration tests using managed Karaf - -commit 88a6e4ba2776f1fe6dc3bfa548244c0eef57ed5b -Author: Steve Ebersole -Date: Fri May 8 13:03:42 2015 -0500 - - HHH-9760 - TransactionImpl itself should not be throwing new TransactionExceptions - -commit f8186e10c24a4951785ab43dbaadbec3195df2e5 -Author: Galder Zamarreño -Date: Fri May 8 17:39:02 2015 +0200 - - HHH-9776 elementCountInMemory should be local - - * By default Cache.size() is now cluster-wide and hence to calculate - elementCountInMemory, local flag needs to be passed in (as well as - skip cache load in case there's a remote store plugged into it). - -commit 37494f4a9f31c7eaa3486542cb2014b1d3756a87 -Author: Galder Zamarreño -Date: Fri May 8 17:34:11 2015 +0200 - - HHH-9781 Update to Infinispan 7.2.1.Final - - * The upgrade caused some tests that verified number of cached elements - in memory to fail. The cause for this was the change in clear() - operation which now is non-transactional, hence each element needs to - be removed individually. - -commit 21abf08452a5c598ca43f45bef46f88f43d17ce5 -Author: Steve Ebersole -Date: Thu May 7 14:59:25 2015 -0500 - - HHH-9756 - NPE in JtaTransactionCoordinatorImpl#explicitJoin() after previously executed transaction - -commit 165f037bad08ae9ef0733842b040e244a90fd9b9 -Author: barreiro -Date: Tue Mar 31 19:01:56 2015 +0100 - - HHH-8489 - bytecode enhancement: bi-directional associtation management - - Closes #933 - -commit 74161c9bfa5e08546e8818bf175d4b6582c40c94 -Author: Gunnar Morling -Date: Tue May 5 17:49:00 2015 +0200 - - HHH-9773 Adding .DS_Store to .gitignore - -commit 7da80833884be1a17a1f5c7cd7a35f1a3074a81c -Author: Gunnar Morling -Date: Tue May 5 17:48:09 2015 +0200 - - HHH-9773 Adding missing package declarations - -commit 73465332594effead9d397ba5c264dce578c6ae7 -Author: Gunnar Morling -Date: Wed Apr 29 17:16:37 2015 +0200 - - HHH-9697 Making AbstractDelegatingSessionFactoryBuilder a self-referential generic type so implementations can use co-variant return types in builder methods - -commit da1fcbbfb73ce1e0e1e8901b6d05f4891bca03ee -Author: Steve Ebersole -Date: Tue May 5 18:00:37 2015 -0500 - - HHH-9762 - Complete deprecation of Settings contract - -commit 9bfd65e370f3e0ea77709c34e238922fdf8ccc5b -Author: Steve Ebersole -Date: Fri May 1 14:29:17 2015 -0500 - - HHH-9768 - Maintain explicit list of ANSI SQL keywords - -commit dd314f492da4e0f083dcbbcfb9e6206c5a39c195 -Author: Steve Ebersole -Date: Fri May 1 14:08:08 2015 -0500 - - HHH-9768 - Maintain explicit list of ANSI SQL keywords - -commit 490fb1cf7b9d0c7609df0b6aefe4833c61a9ff09 -Author: Gail Badner -Date: Fri May 1 11:15:12 2015 -0700 - - HHH-9737 : Back out of change that quoted ANSI keyword in hibernate-core - -commit 5c88ccec5c8519e94b99a5e833568ae0e6dac81d -Author: Steve Ebersole -Date: Fri May 1 10:50:29 2015 -0500 - - HHH-9768 - Maintain explicit list of ANSI SQL keywords - -commit 7569355ad8a5cf94cad1c1c617eba65f8180bbaa -Author: Gail Badner -Date: Thu Apr 30 17:18:02 2015 -0700 - - HHH-9737 : Back out of change that quoted ANSI keyword in hibernate-core - -commit bc58df9a78c7ec7be00324219c7207e16cd1bf2d -Author: Gail Badner -Date: Wed Apr 29 16:02:51 2015 -0700 - - HHH-9758 : Broken SQL generated for dynamic batch fetching entities with a composite ID - -commit c6ce04c81027e6f72801973915c4e6aaa1a9376b -Author: Steve Ebersole -Date: Wed Apr 29 23:33:27 2015 -0500 - - release 5.0.0.Beta2 - -commit b790840b1e7be8ac0d86f616f3af9b6d64acebfd (tag: 5.0.0.Beta2) -Author: Steve Ebersole -Date: Wed Apr 29 23:30:20 2015 -0500 - - release 5.0.0.Beta2 - -commit f6980f3324bdc6e1608131fbb2be9855aba90672 -Author: Steve Ebersole -Date: Wed Apr 29 23:21:38 2015 -0500 - - release 5.0.0.Beta2 - -commit 371632b97711f938a809bbc53ca34c4a42cee428 -Author: Steve Ebersole -Date: Wed Apr 29 22:33:39 2015 -0500 - - release 5.0.0.Beta2 - -commit 4431f094c8f2a70159ed67e599a98b0e04394911 -Author: Gail Badner -Date: Tue Apr 28 16:10:02 2015 -0700 - - HHH-9736 : BigIntegerType should use BigIntTypeDescriptor - -commit 31b011fecbcdc5808098a2cf04ba406065090cb4 -Author: gbadner -Date: Tue Apr 28 16:08:06 2015 -0700 - - Update working-5.0-migration-guide.md - -commit 720202058c2cfcc3b63428eefd3c14edf08c35e0 -Author: Gail Badner -Date: Tue Apr 28 16:01:36 2015 -0700 - - HHH-9736 : BigIntegerType should use BigIntTypeDescriptor - -commit 829709f60ef4b1faf324778677f70292ff72f6d8 -Author: Gail Badner -Date: Tue Apr 28 14:18:41 2015 -0700 - - HHH-9753 : Remove ClassicAvgFunction, ClassicCountFunction, ClassicSumFunction - -commit 8826a311cba72a6a72f332fac0b02b52329aef5b -Author: Steve Ebersole -Date: Mon Apr 27 20:22:20 2015 -0500 - - HHH-9697 - Complete documentation of new approach and APIs for SessionFactory building - -commit 7715fccd045c88d3baad7c19b7eb4c2dd560260b -Author: Steve Ebersole -Date: Mon Apr 27 13:26:28 2015 -0500 - - HHH-9697 - Complete documentation of new approach and APIs for SessionFactory building - -commit 148159fadcba718854bc7058c48ed8d9e3e2ac56 -Author: Steve Ebersole -Date: Fri Apr 24 13:34:42 2015 -0500 - - HHH-9747 - Import initial reworking of transaction handling (based on JdbcSession work) - -commit b476094d43e24db36d970e6c0c21607fe5d42832 -Author: Andrea Boriero -Date: Mon Apr 20 20:35:22 2015 +0100 - - HHH-9747 - Import initial reworking of transaction handling (based on JdbcSession work) - -commit 82b312dd2154ae871e90670375b70a9291f14820 -Author: Steve Ebersole -Date: Fri Apr 24 09:28:13 2015 -0500 - - HHH-9746 - Improve hibernate-spatial integration; - plus added copyright headers - -commit 620a379f89eaf13a7de1e72322bc0c1426d34302 -Author: Karel Maesen -Date: Fri Apr 24 11:52:23 2015 +0200 - - HHH-6509 - Adds sonatype repository for geolatte-geom snapshots - -commit 9d2bf8b467c86c158bc86e5db55a56b596b325b0 -Author: Karel Maesen -Date: Thu Apr 16 21:47:00 2015 +0200 - - HHH-6509 - Fixes Oracle11g integration tests - -commit 609d4046270f0b5f901f0a89d722b975be6da9e5 -Author: Karel Maesen -Date: Sun Apr 12 17:24:25 2015 +0200 - - HHH-6509 - Adds TypeContributor bootstrap - -commit e2b44fb13050dd3fdd46647fca1ed7732705625e -Author: Karel Maesen -Date: Sun Apr 12 17:20:03 2015 +0200 - - HHH-6511 - Fixes insert template for PostGis 2.x (test code) - -commit 9ccd3318312c8a365fea516eb4ca8a3d042f3386 -Author: Karel Maesen -Date: Sun Apr 12 13:29:46 2015 +0200 - - HHH-6509 - Using jboss message logger for logging - -commit 97de410e8c711e5010fbd09cd766cd793f354c46 -Author: Karel Maesen -Date: Fri Apr 10 12:22:31 2015 +0200 - - HHH-6509 : updates to beta-1 - -commit 2738d0f5c7a27c6da1f91e939b870a21a2dd34d9 -Author: Karel Maesen -Date: Wed Apr 1 22:59:41 2015 +0200 - - HHH-6512 - Refactors Oracle support. - -commit dbfeb16e43d5e4124a8e207f39e5d69a8180de4f -Author: Karel Maesen -Date: Sat Dec 20 15:37:19 2014 +0100 - - HHH-6509 - Updates to geolatte-geom 1.0-SNAPSHOT - -commit ed98698aa416012ad15540b360d87d849b7f942c -Author: Karel Maesen -Date: Tue Apr 29 23:59:20 2014 +0200 - - HHH-6509 - Cleans up findBug warnings. - -commit e80a67307f4cea3610880d0cfc4aec8a5d61a79a -Author: Karel Maesen -Date: Tue Apr 29 22:53:20 2014 +0200 - - HHH-6509 - Updates to latest BaseCoreFunctionalTestCase interface. - -commit f0bb66fe8bcb19e164a6cba0ef5819927fe6b6dd -Author: Karel Maesen -Date: Tue Apr 29 22:50:24 2014 +0200 - - HHH-6509 - Updates Log interface to newer version. - -commit eb8992a70baf84b0cea25ccc036fd7206c2f8228 -Author: Karel Maesen -Date: Tue Apr 8 23:47:30 2014 +0200 - - HHH-6509 - Aligns with metamodel-to-master merge. - -commit 55bec79cd417426e38645d3d3333f873fb2cbd49 -Author: Karel Maesen -Date: Tue Jan 21 23:37:30 2014 +0100 - - HHH-6509 - Adds DialectFactoryContributor - -commit c55d250025c0dbd51ccbcbf04bd5b056588eeaae -Author: Karel Maesen -Date: Fri Aug 16 19:46:28 2013 +0200 - - Backports HIBSPA-95 HIBSPA-99, HIBSPA-100, HIBSPA-101, HIBSPA-102. - - Conflicts: - hibernate-spatial/databases/mysql5_innodb/resources/hibernate.properties - hibernate-spatial/hibernate-spatial.gradle - hibernate-spatial/src/main/java/org/hibernate/spatial/criterion/DWithinExpression.java - hibernate-spatial/src/main/java/org/hibernate/spatial/dialect/h2geodb/GeoDBDialect.java - hibernate-spatial/src/main/java/org/hibernate/spatial/dialect/h2geodb/WKB.java - hibernate-spatial/src/main/java/org/hibernate/spatial/dialect/oracle/OracleJDBCTypeFactory.java - hibernate-spatial/src/main/java/org/hibernate/spatial/dialect/oracle/OracleSpatial10gDialect.java - hibernate-spatial/src/main/java/org/hibernate/spatial/dialect/oracle/SDOGeometry.java - hibernate-spatial/src/main/java/org/hibernate/spatial/dialect/oracle/SDOGeometryTypeDescriptor.java - hibernate-spatial/src/main/java/org/hibernate/spatial/dialect/oracle/SDOGeometryValueBinder.java - hibernate-spatial/src/main/java/org/hibernate/spatial/integration/SpatialIntegrator.java - hibernate-spatial/src/test/java/org/hibernate/spatial/integration/GeomEntity.java - hibernate-spatial/src/test/java/org/hibernate/spatial/integration/TestSpatialFunctions.java - hibernate-spatial/src/test/java/org/hibernate/spatial/testing/SpatialFunctionalTestCase.java - hibernate-spatial/src/test/java/org/hibernate/spatial/testing/TestSupportFactories.java - hibernate-spatial/src/test/java/org/hibernate/spatial/testing/dialects/h2geodb/GeoDBExpectationsFactory.java - hibernate-spatial/src/test/java/org/hibernate/spatial/testing/dialects/mysql/MySQLExpectationsFactory.java - hibernate-spatial/src/test/java/org/hibernate/spatial/testing/dialects/oracle/SDOGeometryExpectationsFactory.java - hibernate-spatial/src/test/resources/hibernate.properties - -commit 6e91485549ce9b8df7d52c3568352c760f18313f -Author: Karel Maesen -Date: Mon May 6 22:26:28 2013 +0200 - - HHH-6509 - Improves how SpatialFunctionalTestCase extends BasecoreFunctionalTestCase. - -commit d226ef36f2dc5de69641aa42a6b00fe3dde8a463 -Author: Karel Maesen -Date: Fri Apr 19 18:04:40 2013 +0200 - - HHH-6509 - Change type contribution: SpatialDialects now register types. - - This is done so that in a later stage we can more easily customize the - type mapping to the dialect (e.g. in the case of Oracle Spatial). - -commit 290c8354b3e519f09a5400d45756f5f3e3ebf38f -Author: Karel Maesen -Date: Mon Apr 8 18:26:36 2013 +0200 - - HHH-6511 - Fixes Postgis, Mysql, SQL Server and GeoDB dialects for geolatte/jts integration. - -commit 0d5dfa64cd61a7f3597402163c4fef7c488e1717 -Author: Karel Maesen -Date: Thu Mar 14 23:46:54 2013 +0100 - - HHH-6509 - Duplicates integration test to check both for JTS and Geolatte - compatibility. - -commit 8475bfed8753b88ffbb57b5e6e3bc50a570a46df -Author: Karel Maesen -Date: Wed Feb 13 22:28:33 2013 +0100 - - HHH-6509 - Updates to new TypeContributor interface. - -commit c9f27779dd4ce16120cb892e2744fcf5cbced4f1 -Author: Karel Maesen -Date: Tue Oct 30 22:17:59 2012 +0100 - - HHH-6511 - Uses Geolatte-Geom WKB encoder/decoder for Postgis dialect. - HHH-7126 - Uses Geolatte-Geom WKB encoder/decoder for GeoDB dialect. - -commit 24e7762a3a5c1dbe8822b586a7eb86ab0809aeb7 -Author: Karel Maesen -Date: Mon Oct 29 23:21:16 2012 +0100 - - Updates names to reflect switch from JTS to Geolatte. - -commit cf03fe25921d9dbb4a1bc4772cdc5b02d916e12f -Author: Karel Maesen -Date: Sat Oct 20 00:33:08 2012 +0200 - - HHH-6513 - Sqlserver encoder/decoders now use Geolatte-geom. - - Bumps geolatte version to 0.12-SNAPSHOT - -commit b4b626c3986056800e98a027c9861bab67c4370f -Author: Karel Maesen -Date: Fri Oct 12 22:56:35 2012 +0200 - - HHH-6511 - Geolatte WKT decoder replaces custom EWKT parser. - -commit 4b7c319cc083802c3db78c637eddc3630ffa1dc7 -Author: Karel Maesen -Date: Fri Oct 12 22:19:58 2012 +0200 - - HHH-6509 - Introduces GeolatteGeometryJavaType. - -commit ea833fcdbb39f18f06c6e4b381ed77a77f58030e -Author: Karel Maesen -Date: Fri Oct 12 22:15:56 2012 +0200 - - HHH-6509 - Simplifies SqlServer2008 ValueBinder and ValueExtractor - implementations. - -commit 0e17f9adf85e14cb34c385c7886ed0cddfabe0f6 -Author: Karel Maesen -Date: Wed Feb 29 17:30:40 2012 +0100 - - HHH-6509 - Prepare introduction of Geolatte-geom library as model - - Updates testing approach - Refactors ValueBinders and ValueExtractors - -commit f4fb79aa0454021c911b322abee2afee980d30f5 -Author: Karel Maesen -Date: Wed Feb 29 17:18:40 2012 +0100 - - HHH-7126 Adds H2/GeoDB support, incl. integration tests. - -commit 4bb8d99a8af78ac1409690dadc63277cd56bb0ad -Author: Karel Maesen -Date: Thu Jan 19 23:49:52 2012 +0100 - - HHH-6514 Integrated MySQL support. - - Adds MySQL spatial dialects (for base engine and InnoDB). - Adds MySQL matrix integration test support. - Refactoring ValueBinder and ValueExtractor for all dialects. - -commit a4e8d02eadf51fbacbdcc07272467a27cb9161c0 -Author: Karel Maesen -Date: Tue Jan 17 22:26:51 2012 +0100 - - HHH-6513 Fixes SQL Server 2008 integration tests. - -commit 28cf93f6ebecf791ee59be62ab46a74372249751 -Author: Karel Maesen -Date: Mon Jan 16 23:33:37 2012 +0100 - - HHH-6512 Adds Oracle10g (SDOGeometry) integration tests. - -commit c07657685cb79cf5eb7db16f9bd8b6e831b426c1 -Author: Karel Maesen -Date: Mon Jan 16 22:52:03 2012 +0100 - - HHH-6511 Moved custom test matrix configuration into hibernate-spatial - module. - -commit 619c9ed5151bd89af2a9098cbb1d66fc45839bba -Author: Karel Maesen -Date: Sat Jan 14 18:48:24 2012 +0100 - - HHH-6971 Migrates logging to JBoss logging. - -commit ee96098eadf9857dec065ec63f0ddf0724549b39 -Author: Karel Maesen -Date: Sat Jan 14 17:55:27 2012 +0100 - - HHH-6509 Removes obsolete code - - This removes the HBSpatial static bootstrap class and the old SPI - mechanism. Both had become obsolete because of how spatial now - integrates with core. - - Also reorganizes the packages to have all JTS extensions and utilities - in a jts package. - -commit 50a648ed322bf950620199ea37d748f1c0daaba9 -Author: Karel Maesen -Date: Sat Jan 14 16:13:19 2012 +0100 - - HHH-6511 Refactors spatial integration tests. - - Spatial integration tests are now more in line with the Hibernate Core - integration tests. - -commit f114ca29443f897e974f1baeb67846c1c8ad2be5 -Author: Karel Maesen -Date: Sat Jan 14 00:22:30 2012 +0100 - - HHH-6511 Adds Postgis integration tests. - - The integration tests now make us of the matrix testing set-up. - -commit 0c0a5e2af07f5b3863489935ffa52acbd7333887 -Author: Karel Maesen -Date: Tue Aug 23 14:05:50 2011 +0200 - - HHH-6510 Added SQL Server 2008 support. - - Converts SQL Server convertor integration tests to proper unit tests. - -commit f7f39cb8d29a8315b0166221a5e6b856ee736794 -Author: Karel Maesen -Date: Mon Aug 22 22:05:56 2011 +0200 - - HHH-6510 Added Oracle SDOGeometry support. - -commit 79d02e2f9daa5dcbc78b6c07c08a0d0a4ea18623 -Author: Karel Maesen -Date: Wed Jul 27 19:18:47 2011 +0200 - - HHH-6510 Minor cleanups; code formatting changed to Hibernate conventions. - -commit 812da6e7cdbe347972eb5ea678dd2bc4f31067a2 -Author: Karel Maesen -Date: Sat Jul 23 15:39:27 2011 +0200 - - HHH-6510 : Initial commit. - - Source code copied from Hibernate Spatial 1.1.1-SNAPSHOT. - Root package is now org.hibernate.spatial (instead of org.hibernatespatial) - GeometryType replaces GeometryUserType. - SpatialDialects remap SpatialSqlTypeDescriptors. - Hibernate Spatial registers GeometryType in Integrator (temporary fix: see HHH-6507). - -commit ae43670290d05db28c322acb67431fe88db537d2 -Author: Steve Ebersole -Date: Thu Apr 23 15:21:27 2015 -0500 - - HHH-9724 - More complete "temp table" coverage and allow Dialects to influence which strategy is used - -commit 52589379e1a93c372a323a9334d12b2f31dc0a7a -Author: Steve Ebersole -Date: Wed Apr 22 13:17:21 2015 -0500 - - HHH-9732 - Audit code for spots that would benefit from a case-insensitive keyed Map - -commit 3c85127f82e9949290c5ef79fe89a4cba094160c -Author: Steve Ebersole -Date: Wed Apr 22 11:09:51 2015 -0500 - - HHH-9716 - Previously working schema creation fails on 5.0 - -commit 3e5a8b6603ec883532c554539ac58d6610b1898d -Author: John O'Hara -Date: Wed Apr 1 18:06:30 2015 +0100 - - HHH-9701 - Develop "immutable EntityEntry" impl - -commit 5269bcbeebe3d94cd04503106a4ddee796f8fbdd -Author: Gail Badner -Date: Tue Apr 21 12:12:59 2015 -0700 - - HHH-9737 : Miscellaneous bugs in unit tests when using non-default dialects - - (cherry picked from commit a6969ceb0abbd5f2111997738fdb90ebf458dd1c) - -commit d2c50f16f2cf3857e38c5d2368c723a75058e7d6 -Author: Steve Ebersole -Date: Tue Apr 21 13:49:06 2015 -0500 - - HHH-9727 - Slight redesign to bootstrapping APIs to allow for OGM bootstrapping - -commit e8af41637fc05cc3a528ac679395a336522bae82 -Author: Steve Ebersole -Date: Tue Apr 21 11:55:30 2015 -0500 - - HHH-9727 - Slight redesign to bootstrapping APIs to allow for OGM bootstrapping - -commit df8cc6d4be88d76f30f8a1f56fa3f751bffd46ad -Author: Gail Badner -Date: Mon Apr 20 17:45:15 2015 -0700 - - HHH-9250 : BigIntegerSequenceGeneratorTest.testBasics fails on MS SQL Server 2012 - - (cherry picked from commit 49fed0938e7d739f4debda926bd4607b68047a6d) - -commit 4541f7b5011d3b952de18c6adc2ec0e6d843cda9 -Author: Steve Ebersole -Date: Mon Apr 20 15:21:37 2015 -0500 - - HHH-9727 - Slight redesign to bootstrapping APIs to allow for OGM bootstrapping - -commit bf3669a7de8f01cd24266a0a58fd67f177d3f80b -Author: Steve Ebersole -Date: Mon Apr 20 12:18:34 2015 -0500 - - HHH-9727 - Slight redesign to bootstrapping APIs to allow for OGM bootstrapping - -commit 5fe83ba4c81cc9df7d68a7da7cec8986d6f3d310 -Author: Steve Ebersole -Date: Mon Apr 20 12:00:12 2015 -0500 - - HHH-9717 - Build script improvements - -commit 0993d78e97a6804b6d8b732dafcc5d42093b1339 -Author: Steve Ebersole -Date: Fri Apr 17 16:36:39 2015 -0500 - - HHH-9724 - More complete "temp table" coverage and allow Dialects to influence which strategy is used - -commit 06b6135a11189ba4e24d4f5085b69c94e6420474 -Author: Steve Ebersole -Date: Fri Apr 17 16:24:52 2015 -0500 - - HHH-9724 - More complete "temp table" coverage and allow Dialects to influence which strategy is used - initial work - -commit 7ca12c7d80b196bc5c982d14e1c1ca47d781e99e -Author: Brett Meyer -Date: Fri Apr 17 14:35:09 2015 -0400 - - HHH-9722 cleanup, removed StringHelper methods - -commit 1361925bc73a539bd6bd5d4a93de162e4a5b332b -Author: 10urshin <10urshin@gmail.com> -Date: Sun Apr 12 23:29:45 2015 +0300 - - HHH-9722 - - Changed all toLowerCase() and toUpperCase() to toLowerCase(Locale.ROOT), - toUpperCase(Locale.ROOT). - -commit f0029d49bc579d2b11f106af7463e9772fb218a6 -Author: Steve Ebersole -Date: Fri Apr 17 13:03:10 2015 -0500 - - HHH-9717 - Build script improvements - checkstyle and findbugs - -commit 9abb981ac2d4e6620be5c75aa6b9ce841efaaee3 -Author: Steve Ebersole -Date: Fri Apr 17 12:21:00 2015 -0500 - - HHH-9733 - Add checks for no-arg uses of String#toUpperCase and String#toLowerCase - -commit f77b861137a1bb734c45f9b39c4ecd84f57bccce -Author: Steve Ebersole -Date: Fri Apr 17 11:05:39 2015 -0500 - - HHH-9716 - Previously working schema creation fails on 5.0 - -commit b6ae9edb4e902837a68b4be0304549f16348a9fd -Author: Steve Ebersole -Date: Fri Apr 17 11:02:13 2015 -0500 - - HHH-9716 - Previously working schema creation fails on 5.0 - -commit 76d732d53ab2660412941d3947a40e4ba46958b2 -Author: Steve Ebersole -Date: Thu Apr 16 14:19:11 2015 -0500 - - HHH-9727 - Slight redesign to bootstrapping APIs to allow for OGM bootstrapping - -commit b1bbae27835f9535ba833dc25aaeb6263a06e213 -Author: Steve Ebersole -Date: Thu Apr 16 09:02:28 2015 -0500 - - HHH-9727 - Slight redesign to bootstrapping APIs to allow for OGM bootstrapping - -commit 2c968538a542fd5f6c705745f235be118c07370a -Author: Steve Ebersole -Date: Thu Apr 16 00:59:10 2015 -0500 - - HHH-9728 - Audit Settings to decide what should become a SessionFactoryServiceRegistry service - -commit 83f83c57dc7bad2ff716797a66a7d6d4fd0be5e7 -Author: Steve Ebersole -Date: Wed Apr 15 11:44:49 2015 -0500 - - HHH-9726 - Rename MetadataBuilderContributor to MetadataBuilderInitializer and pass it the StandardServiceRegistry - -commit 596753ea4b64d9a01a5318918e326a2f2cd15ec1 -Author: Steve Ebersole -Date: Wed Apr 15 10:56:48 2015 -0500 - - HHH-9717 - Build script improvements - removed source-generation.gradle (yaay!) - -commit f116ada16d01995850d7f5d71ec3a857cfadeb8e -Author: Steve Ebersole -Date: Fri Apr 10 15:30:13 2015 -0500 - - HHH-9717 - Build script improvements - fixed generated POM - -commit 018b5e11ed14381701ee2eccbf7f737f26928749 -Author: Steve Ebersole -Date: Fri Apr 10 12:06:24 2015 -0500 - - HHH-9717 - Build script improvements - applied new standalone XJC and AnimalSniffer plugins - -commit 650267077d9a08fe8d61bd090b7f132435c9b4dc -Author: Steve Ebersole -Date: Fri Apr 10 11:58:22 2015 -0500 - - HHH-9717 - Build script improvements - applied new standalone XJC and AnimalSniffer plugins - -commit da06b22dee739a142902f355b06ed8939721a581 -Author: Steve Ebersole -Date: Thu Apr 9 21:42:42 2015 -0500 - - HHH-9717 - Build script improvements - applied new standalone XJC and AnimalSniffer plugins - -commit 6e7357beeb65a30abb05020ffbe8560135e19cfc -Author: Steve Ebersole -Date: Thu Apr 9 11:36:04 2015 -0500 - - HHH-9717 - Build script improvements - applied new standalone XJC and AnimalSniffer plugins - -commit c11d2647437330abb75b62a1dd4f408eb99b54d6 -Author: Steve Ebersole -Date: Tue Apr 7 16:36:29 2015 -0500 - - HHH-9550 - Allow a dialect to specify the level of catalog/schema support - -commit c021d12ee2b16a22f985e8af2014e965b4bc2977 -Author: Steve Ebersole -Date: Tue Apr 7 16:36:13 2015 -0500 - - HHH-9550 - Allow a dialect to specify the level of catalog/schema support - -commit 978640909623ae014e1dfe92e0e2cf59b641bba5 -Author: Steve Ebersole -Date: Tue Apr 7 14:31:41 2015 -0500 - - HHH-9550 - Allow a dialect to specify the level of catalog/schema support - -commit a96385a6e0255d9a3ca1e3fda07bde23275827d4 -Author: Steve Ebersole -Date: Mon Apr 6 13:47:48 2015 -0500 - - HHH-9713 - Creating an index in the database incorrectly tries to qualify the index with table name for some databases - -commit b7273d93a2058196069d461cf4aebda077d82f1a -Author: Steve Ebersole -Date: Thu Apr 2 17:14:40 2015 -0500 - - HHH-9704 - Complete HHH-8805 work on 5.0; - HHH-9709 - @ForeignKey - -commit 22ca7125f74621c09f7c2eedbc399160ce2755d5 -Author: Steve Ebersole -Date: Thu Apr 2 17:02:23 2015 -0500 - - HHH-9704 - Complete HHH-8805 work on 5.0; - HHH-9709 - JPA @ForeignKey not consistently applied from annotation binding - -commit 4c690a8839113cd6850e1d2952e03a5030be1340 -Author: Sanne Grinovero -Date: Wed Apr 1 19:48:45 2015 +0100 - - HHH-9706 Review concurrency of ClassLoaderService and warn against reuse - -commit 6ec4e0cdba27cc530ae18157c2ad1df097009d66 -Author: Steve Ebersole -Date: Wed Apr 1 19:19:03 2015 -0500 - - Changes for AnimalSniffer - -commit 02e2644676a45b58312bf17f0326ebf709239378 -Author: Gail Badner -Date: Wed Apr 1 16:13:13 2015 -0700 - - HHH-9370 : Unidirectional one-to-many with key that is property-ref (test case) - -commit 7019db74fb958ef96ace75ce881b199507111284 -Author: Steve Ebersole -Date: Tue Mar 31 16:39:37 2015 -0500 - - release 5.0.0.Beta1 - -commit 7799d697cb080c0bd595f8864fae54d7bd2e74a0 (tag: 5.0.0.Beta1) -Author: Steve Ebersole -Date: Tue Mar 31 15:11:15 2015 -0500 - - release 5.0.0.Beta1 - -commit 256b2608ce6ac0165b939fdc07fa0da839985486 -Author: Steve Ebersole -Date: Tue Mar 31 14:42:40 2015 -0500 - - HHH-9265 - Extract EntityEntry behind a factory + interface; - HHH-9700 - Make EntityEntryFactory pluggable via EntityPersister - -commit 5c4dacb83e5cd966a932d5771318162e950e7dbf -Author: John O'Hara -Date: Fri Mar 20 16:27:06 2015 +0000 - - HHH-9265 - Extract EntityEntry behind a factory + interface - -commit f295d66d6e076bf3dc0bcb6df71ec7000ee224bf -Author: Steve Ebersole -Date: Tue Mar 31 13:01:57 2015 -0500 - - HHH-8844 - Add support for Java 8 date and time types (JSR-310) - -commit 410a785dfe40ae030bec31c4c06a5a7998f1feeb -Author: Brett Meyer -Date: Mon Mar 30 15:36:31 2015 -0400 - - HHH-9680 updated OSGi quickstarts, added necessary contracts to Envers blueprint, corrected a few uses of ReflectionManager - -commit 212f61a24cc4054b55a668f73a9127ccdd8bc9a1 -Author: Steve Ebersole -Date: Mon Mar 30 13:24:44 2015 -0500 - - HHH-9668 - Document new SessionFactory approach and APIs - -commit 4def797408c1956588c45e16076127e1be0763da -Author: barreiro -Date: Thu Mar 19 16:51:58 2015 +0000 - - [HHH-9690] reorganization of bytecode enhancer code - Enhancer class was split into 3 logical units: EntityEnhancer for regular entities; CompositeEnhancer for emmbeded entities; PersistentAttributesEnhancer to enhance the persistent fields of both types of entities - Added a few helper classes and re-worked the tests a bit as well - -commit e9230758b4e354022a1bb5cd1046c0609d5a966c -Author: Steve Ebersole -Date: Fri Mar 27 15:13:53 2015 -0500 - - HHH-9446 - ClassCastException on loaded entities under GlassFish 4.0 - -commit d5d066cb3dee7ff311360e35ea12a0c2cee1f9e6 -Author: Gunnar Morling -Date: Fri Mar 27 16:47:40 2015 +0100 - - HHH-8901 Creating forwarding base classes for SessionBuilder(Implementor) and SharedSessionBuilder - -commit 08f37c450201eac48c02f235a6831fd638fcc271 -Author: Steve Ebersole -Date: Fri Mar 27 13:42:48 2015 -0500 - - HHH-9492 - Migrate to new bootstrap API (MetadataSources, etc) - -commit d796acdbc27d19035fc8797ca6c23bc5e67cd3af -Author: Steve Ebersole -Date: Fri Mar 27 12:04:24 2015 -0500 - - HHH-9492 - Migrate to new bootstrap API (MetadataSources, etc) - -commit 30240beded183ac7dbd6a556bb579998d10558ae -Author: Gunnar Morling -Date: Fri Mar 27 12:14:51 2015 +0100 - - HHH-9689 Avoid NPE when trying to load non-existent properties resource - -commit 1f50efa34cc3f2fc93b9aebb759f3c972ab7c833 -Author: Steve Ebersole -Date: Thu Mar 26 22:53:27 2015 -0500 - - HHH-9524 - Make strategy for interpreting id-generator annotations pluggable - -commit 64c3e4c783cbc1b836fab5365d58829cd4797df3 -Author: Gail Badner -Date: Thu Mar 26 17:44:37 2015 -0700 - - HHH-8879 HHH-8994 : Embeddable with associations used as a Map key - -commit 5d365cfa00b23cba90a208815c1e5d6a0ba686dc -Author: Steve Ebersole -Date: Thu Mar 26 16:18:40 2015 -0500 - - HHH-9524 - Make it pluggable how GenerationType.AUTO is mapped - -commit 81d30aa03780227b5bc4e35e213e4082e87eeabd -Author: barreiro -Date: Thu Mar 26 01:41:23 2015 +0000 - - HHH-9679 - Fix hibernate-enhance-maven-plugin buid script - -commit 3b9b2eaa913394bee02e446c086353b9cd613846 -Author: Steve Ebersole -Date: Thu Mar 26 12:28:29 2015 -0500 - - HHH-9668 - Document new SessionFactory approach and APIs - -commit 599c10cd5af33ad3ae8e0e5eea73887ab85070e6 -Author: Steve Ebersole -Date: Thu Mar 26 09:57:49 2015 -0500 - - HHH-9492 - Migrate to new bootstrap API (MetadataSources, etc) - -commit a92ddea9ca2487709e26e6fd76b499c44f56df0e -Author: Steve Ebersole -Date: Thu Mar 26 00:25:52 2015 -0500 - - HHH-9492 - Migrate to new bootstrap API (MetadataSources, etc) - Gunnar's feedback - -commit 507726e929e758d5eca944f9c89b31a7987ad45a -Author: Steve Ebersole -Date: Wed Mar 25 15:36:17 2015 -0500 - - HHH-8844 - Add support for Java 8 date and time types (JSR-310) - -commit 9901f85f779d0c0c179cc19fc656fd96d5c8cf15 -Author: Steve Ebersole -Date: Wed Mar 25 09:34:45 2015 -0500 - - HHH-465 - order by nulls first / last - -commit 52fabe70bc91deb0fc7438ec052d959a583d21a0 -Author: Gunnar Morling -Date: Wed Mar 25 16:24:54 2015 +0100 - - HHH-8191 Remvoing redundant semicolon - -commit 117cb9cd2c0b9cc9606759b71134589492527ea0 -Merge: 4e0f2b3a7b bbaeaa6c58 -Author: Steve Ebersole -Date: Tue Mar 24 23:54:57 2015 -0500 - - Merge pull request #862 from magdalenamoeller/HHH-9556 - - HHH-9556 - enable query hints for SQL Server 2012 - -commit 4e0f2b3a7b1c13cfcc9995f908ac789f62a687c7 -Author: Steve Ebersole -Date: Tue Mar 24 23:49:09 2015 -0500 - - HHH-9300 - DB2Dialect generates invalid order by clause - -commit a4b5cf4597a0cfed374eaa12559873f5ea194155 -Author: Steve Ebersole -Date: Sat Mar 21 13:29:37 2015 -0500 - - HHH-9668 - Document new SessionFactory approach and APIs - -commit 37b4aeb7c985e98f38d8aa558d8915dacd853575 -Author: Andrea Boriero -Date: Wed Mar 25 01:38:39 2015 +0000 - - Fix javadoc for Java 8 - -commit 30ceca18c2654a80c6355c9a7c735d9667309255 -Author: Steve Ebersole -Date: Tue Mar 24 20:25:17 2015 -0500 - - HHH-8844 - Add support for Java 8 date and time types (JSR-310) - -commit e44b38f716bf397531bbe741efac384f8829aef8 -Author: Steve Ebersole -Date: Tue Mar 24 17:54:08 2015 -0500 - - HHH-8844 - Add support for Java 8 date and time types (JSR-310) - -commit 5f6d1d24f7945eb8a5acdb69d9595004ec4e462f -Author: Steve Ebersole -Date: Tue Mar 24 16:01:15 2015 -0500 - - HHH-8844 - Add support for Java 8 date and time types (JSR-310) - -commit 3e73948dae900e6d63030e1bc1bf5ac40e88e361 -Author: Steve Ebersole -Date: Mon Mar 23 21:02:45 2015 -0500 - - HHH-7375 - TimeZone of Calendar objects should be used in binding to JDBC statements - -commit 9883d7b11a313c3c8407524ac8cf2746474ca857 -Author: Steve Ebersole -Date: Mon Mar 23 15:27:02 2015 -0500 - - HHH-9680 - hibernate-osgi module has gone cra-cra again - -commit 98a4f3c67f88d4220dea214bad287312ddc86a88 -Author: Steve Ebersole -Date: Mon Mar 23 15:05:06 2015 -0500 - - HHH-9680 - hibernate-osgi module has gone cra-cra again - -commit 04a4f545795021be7b59a0dea0ac665dbd6ee052 -Author: Steve Ebersole -Date: Mon Mar 23 14:54:24 2015 -0500 - - HHH-8191 - Update Teradata Dialect for Teradata 14.0 - -commit 8d988c33b4cdc14ff4a476514b24c2858faf6aaf -Author: Steve Ebersole -Date: Mon Mar 23 14:36:41 2015 -0500 - - HHH-9677 - Upgrade Gradle - -commit 218569c42379e884de0c7845264351cede777243 -Author: Steve Ebersole -Date: Mon Mar 23 14:30:02 2015 -0500 - - HHH-9677 - Upgrade Gradle - -commit f6322b5cddb0063231eb590a24f9dddfbe7a1507 -Author: Steve Ebersole -Date: Mon Mar 23 11:19:02 2015 -0500 - - HHH-9678 - Change built-in SqlTypeDescriptor impls to not auto-register themselves with SqlTypeDescriptorRegistry - -commit c02e6c44fa254baf4306717d2d4d4387f58f62f8 -Author: Steve Ebersole -Date: Mon Mar 23 10:54:52 2015 -0500 - - HHH-9677 - Upgrade Gradle - -commit 72a50ae3e12b3040a8fe3d797bf8eeebacb2a826 -Author: Guillaume Smet -Date: Thu Nov 13 20:33:50 2014 +0100 - - HHH-9497 Remove call to Ehcache ClassLoaderUtil.getStandardClassLoader() - - It has been removed in Ehcache 2.8.3+. - -commit b70bc0080e8e206f83debf8f456fe323caccc01b -Author: Brett Meyer -Date: Sun Mar 22 00:49:08 2015 -0400 - - HHH-8769 gracefully handle the lack of dynamic mode support in Envers - -commit a05460a23fca0d0deaf0b3737f6879a2f6f6754c -Author: Felix Feisst -Date: Fri Feb 7 22:27:09 2014 +0100 - - Added regression test for HHH-8769 - -commit 715544febec6cd254cbb99b2dc6f0170953ac679 -Author: Brett Meyer -Date: Mon Jan 19 19:01:03 2015 -0500 - - HHH-8191 cleanup - -commit 027840018b26c9c16b9245676e3d2905da34e2eb -Author: Dave Repshas -Date: Thu Apr 18 17:32:09 2013 -0700 - - HHH-8191 Support Teradata 14.0 - -commit 27e8aae2794e6fe109f7cc74cf86fe3b303b69ea -Author: Steve Ebersole -Date: Sat Mar 21 15:54:56 2015 -0500 - - HHH-8697 - AttributeConverter not called when value is null; - HHH-9320 - AttributeConverter result ignored on extraction when ResultSet.wasNull - -commit 7a1c155099705749e73baaa97d6d0affeaf04944 -Author: Steve Ebersole -Date: Sat Mar 21 14:45:44 2015 -0500 - - HHH-9577 - Make UUID generation the default (AUTO) for UUID type; - HHH-9562 - Dialect specific UUID handling - -commit a381e368eb048c7a44e5b08e0a1603190ce1e5bc -Author: Andrej Golovnin -Date: Thu Nov 27 21:01:21 2014 +0100 - - HHH-9336 Avoid creation of TypedValue objects in - AbstractPersistentCollection#getOrphans(Collection, Collection, - String, SessionImplementor) for some ID types. - -commit 4615ae1018b0d83b7bc6f890a3287870a2d0dd86 -Author: Andrej Golovnin -Date: Thu Mar 12 21:25:09 2015 +0100 - - - HHH-9324: Avoids creation of LimitHandler instances for every query. - -commit 38c004431d006ac5173d0c095f97415b5e6267a6 -Author: Steve Ebersole -Date: Fri Mar 20 16:55:29 2015 -0500 - - HHH-9599 - AnnotationException occurs when applying @Nationalized and @Convert annotations to the same field - -commit 8a7bc2e7c159ff0acdfdaa076e0e8da1bbc59746 -Author: Steve Ebersole -Date: Fri Mar 20 15:38:16 2015 -0500 - - HHH-9605 - Query on an enum collection fails - minor changes - -commit 001b841934bd3efb369d86372f0edd37b27a358a -Author: obr -Date: Sun Mar 15 20:02:50 2015 +0100 - - HHH-9605: fix querying a collection of enums - -commit 2c8ded5ff3244590ca30eef6e3f5fabc702d0139 -Author: obr -Date: Sun Mar 15 20:02:21 2015 +0100 - - HHH-9605: Test for querying a collection of enums - -commit c271e03bccfe99e8d6da0111971d4fde784115fb -Author: obr -Date: Sun Mar 15 20:00:50 2015 +0100 - - HHH-9605: JPA Criteria Test for querying a collection of enums - -commit f45b37da8e50b423396f2cda09c4054f64bca4fc -Author: Steve Ebersole -Date: Fri Mar 20 15:08:03 2015 -0500 - - HHH-9495 - @Convert support for collections - -commit 8284b9ae2ce6de16d936fd6dc0d81b91d392edad -Author: Gail Badner -Date: Wed Mar 18 17:51:11 2015 -0700 - - HHH-9392 : SQLGrammarException while executing a entity graph with subgraphs - -commit 8e758fcd6b6bf81faa5df713f5aa935f6b172478 -Author: Gail Badner -Date: Wed Mar 11 22:03:06 2015 -0700 - - HHH-9392 : SQLGrammarException while executing a entity graph with subgraphs (test case) - -commit 2cff88cac76147ebb0da5bff8d3605c8a109fd26 -Merge: 22730624fc 1b7e112994 -Author: Steve Ebersole -Date: Fri Mar 20 12:26:16 2015 -0500 - - Merge pull request #910 from rvansa/HHH-9632_2 - - HHH-9632 Upgrade to Infinispan 7.1.0.Final - -commit 22730624fc267cd12bf1e6551158fa3057fd8d58 -Author: Steve Ebersole -Date: Fri Mar 20 11:17:00 2015 -0500 - - HHH-9042 - Envers fails with @Converter and AttributeConverter - -commit 180e714b7c47fe0a1f20d60cacc7fdc129dd7b0b -Author: Gail Badner -Date: Thu Mar 19 21:58:30 2015 -0700 - - HHH-9448 : Association is not fetched when EntityGraph has explicit fetch and query has implicit join - -commit 93cf72bfa16a85906eec814a9e050697791f3a71 -Author: Steve Ebersole -Date: Thu Mar 19 19:22:35 2015 -0500 - - HHH-9490 - Migrate from dom4j to jaxb for XML processing - -commit bd8acaebcaa75410b40afb614fc825f61b1ca212 -Author: Steve Ebersole -Date: Thu Mar 19 19:19:03 2015 -0500 - - HHH-8866 - HQL Query with enum and @Convert - -commit 8b9fc2d63aff6631caf7108704b1ebc4a5b606db -Author: Steve Ebersole -Date: Thu Mar 19 15:36:49 2015 -0500 - - HHH-9492 - Migrate to new bootstrap API (MetadataSources, etc) - -commit ffce4ffc2c6f4aec9cce7670c842a4eddfe97b7d -Author: Steve Ebersole -Date: Thu Mar 19 14:20:00 2015 -0500 - - HHH-9490 - Migrate from dom4j to jaxb for XML processing - hibernate-osgi - -commit 80bf715f0bda66bd1c333f8b5d4644c38188d0a7 -Author: Steve Ebersole -Date: Thu Mar 19 12:40:29 2015 -0500 - - HHH-9490 - Migrate from dom4j to jaxb for XML processing - hibernate-osgi - -commit 63a0f03c5ae773f96c92c02fba9d13133d02485b -Author: Steve Ebersole -Date: Wed Mar 18 20:21:33 2015 -0500 - - HHH-9654 - Adjust envers for 5.0 APIs + JAXB - -commit 1b7e112994413559484e6873f019c5e2c557506b -Author: rvansa -Date: Wed Mar 18 11:15:59 2015 +0100 - - HHH-9632 Upgrade to Infinispan 7.1.0.Final - * fixed default configuration path - * set schema to 7.1 - -commit 8a42f8a8ae8f561cfc309c6f93b275b1326547e7 -Author: Gail Badner -Date: Fri Mar 13 17:00:29 2015 -0700 - - HHH-9549 : Selecting treated root generates invalid HQL (added tests) - -commit 8468d834ef3e60bf412e2fdf30f10a9b1f3ce88e -Author: Gunnar Morling -Date: Fri Mar 13 12:04:51 2015 +0100 - - HHH-9451 Propagating entity entry extra state when using identity id generation strategy - - (cherry picked from commit 4bbf4cd1db02534a364543a3f6dd830da1ea099b) - -commit 04e7cfce70c74a092c0aec0f16a0f69f19d30c5e -Author: Sanne Grinovero -Date: Thu Mar 12 00:16:21 2015 +0000 - - HHH-9659 AnnotationMetadataSourceProcessorImpl uses a Logger.debugf method without matching parameters - -commit 6eb6f387219fc4ccb149a7ac1cbd9a341e232bb3 -Author: Sanne Grinovero -Date: Wed Mar 11 23:13:05 2015 +0000 - - HHH-9658 Refactor some of the existing logging tests - -commit c067fc2b42e4f0995a033b55c5dd0096a071527f -Author: Sanne Grinovero -Date: Fri Feb 27 10:56:23 2015 +0000 - - HHH-9658 Simplify the way tests assert on logging statements - -commit 965e044850f26e06455ac1eaf1ec385684b811cc -Author: Gail Badner -Date: Thu Mar 12 23:40:47 2015 -0700 - - HHH-9333 : TypeMismatchException when using composite-id and natural-id mappings - -commit 6c404c30f70ec87a0bba4521f1c4cc32f92e26c8 -Author: Gail Badner -Date: Thu Mar 5 12:28:38 2015 -0800 - - HHH-9642 : Join fetch not performing join fetch for @Embeddable with @OneToMany - -commit 24bafba2b04d0eb2c46e4f4b1982e4305182947b -Merge: 51c7bd1523 fb15ee548c -Author: Steve Ebersole -Date: Tue Mar 10 22:21:53 2015 -0500 - - Merge pull request #848 from golovnin/HHH-9328_newmaster - - HHH-9328 Avoid creation of Cascade objects at all - -commit 51c7bd15235166f8163203e76daf2eece835fc70 -Author: Bradley Plies -Date: Sat Dec 6 02:55:07 2014 -0600 - - HHH-5654 PostgreSQL Dialect will now correctly apply "for update of" for any necessary table aliases. Added test. - - Signed-off-by: Bradley Plies - -commit e70832d9dd31f176e0baac93af55fc0daede36ac -Author: Brett Meyer -Date: Thu Mar 13 14:41:28 2014 -0400 - - HHH-9044 - Create Oracle12cDialect - -commit 11095e709d8f61a7ecf2793680785c9e20823302 -Author: Steve Ebersole -Date: Tue Mar 10 21:38:51 2015 -0500 - - HHH-9044 - Create Oracle12cDialect - -commit 73a88ff65c3d008612229e4f01939000c836fcf7 -Author: zhouyanming -Date: Thu Mar 13 08:39:28 2014 +0800 - - HHH-9044 - Create Oracle12cDialect - -commit c2f62a528b5dc26a323b9d41ea6a8ab3d1ccc2b8 -Author: Steve Ebersole -Date: Tue Mar 10 21:33:05 2015 -0500 - - HHH-9167 - Support Postgres9.2 JSON data type - -commit efaa916a8e2b2c122f70f8f17f65c71fa28afe98 -Author: Brett Meyer -Date: Mon May 19 15:17:10 2014 -0400 - - HHH-9167 - Support Postgres9.2 JSON data type - -commit 588d02b6c2ff05c00a09dd130bb7000c24b13524 -Author: Mark Robinson -Date: Wed Mar 19 16:08:19 2014 -0700 - - HHH-9167 Add support for PostgreSQL's new JSON data type - - (cherry picked from commit 4a8bc1f25036e53fc3d4d701bbc5579de9d7dbdf) - -commit a0a9a4d1e895cbf6314ad51d76382c8af05ba13c -Author: Steve Ebersole -Date: Tue Mar 10 20:56:06 2015 -0500 - - HHH-8911 - ClassCastException between CompositeCustomType and ComponentType - -commit 6a6a7c322861d230e124d79d746266aee937c1a6 -Author: Steve Ebersole -Date: Tue Mar 10 20:48:54 2015 -0500 - - HHH-9141 - Remove deprecated PersistenceProvider from hibernate-entitymanager META-INF/services/javax.persistence.spi.PersistenceProvider - -commit b318d21cc8939bd55a1c608b2cca6e109261edb9 -Author: Steve Ebersole -Date: Tue Mar 10 20:44:10 2015 -0500 - - HHH-9655 - Add logging to help better track down tests that leave SessionFactories open - -commit 83756008d2e21be83b6798321ccb3c749ace5123 -Author: Steve Ebersole -Date: Tue Mar 10 19:36:54 2015 -0500 - - HHH-9655 - Add logging to help better track down tests that leave SessionFactories open - -commit 1abae7bfa240b341b1c21eefdef115c975ca26fa -Author: Steve Ebersole -Date: Tue Mar 10 19:28:56 2015 -0500 - - HHH-9655 - Add logging to help better track down tests that leave SessionFactories open - -commit ca31abfe6166756b8f67392372bd4fd201827dfa -Author: Steve Ebersole -Date: Tue Mar 10 17:10:35 2015 -0500 - - HHH-9490 - Migrate from dom4j to jaxb for XML processing; - HHH-9492 - Migrate to new bootstrap API (MetadataSources, etc); - HHH-7078 - Split NamingStrategy into ImplicitNamingStrategy/PhysicalNamingStrategy; - HHH-6005 - Better handling of implicit column naming with @ElementCollection of @Embeddables; - HHH-9633 - Add tests that explicitly test the "main" NamingStrategy impls - -commit 9caca0ce37d5a2763d476c6fa2471addcca710ca -Author: Steve Ebersole -Date: Tue Mar 10 11:55:51 2015 -0500 - - HHH-9490 - Migrate from dom4j to jaxb for XML processing; - HHH-9492 - Migrate to new bootstrap API (MetadataSources, etc); - HHH-7078 - Split NamingStrategy into ImplicitNamingStrategy/PhysicalNamingStrategy; - HHH-6005 - Better handling of implicit column naming with @ElementCollection of @Embeddables; - HHH-9633 - Add tests that explicitly test the "main" NamingStrategy impls - -commit aa31b26d322989276b978c4a8c511a70bc2a0fc8 -Author: Brett Meyer -Date: Tue Mar 10 12:45:54 2015 -0400 - - HHH-9647 added new jboss logging transitive dep to osgi runtime - -commit 800ceaa329976f7c06c9f82eb2e6ec371a952857 -Author: Sanne Grinovero -Date: Thu Mar 5 14:31:27 2015 +0000 - - HHH-9647 Upgrade related components - -commit 657bf6f59b56c36acd3a3308e8c55324fc76bbb7 -Author: David Pilato -Date: Thu Mar 5 13:44:00 2015 +0100 - - HHH-9647 Update jboss logging to 3.2.1.Final - - When using Hibernate 4 with Log4J2, all messages are printed on CONSOLE instead of using Log4J2. - Upgrading the `pom.xml` with: - - ```xml - - org.jboss.logging - jboss-logging - 3.2.1.Final - - ``` - - Fixes the issue. See [JBLOGGING-107](https://issues.jboss.org/browse/JBLOGGING-107). It worths upgrading Hibernate to depend on 3.2.0 (minimum) or 3.2.1 (latest). - -commit 63ae6dec38c6dbe9e6ad5b019efdd8808dc37a20 -Author: Sanne Grinovero -Date: Thu Mar 5 14:20:52 2015 +0000 - - Fix some whitespaces in hibernate-osgi.gradle - -commit fd95ccb398e4cc309242d7607d35387a22c605ac -Author: Sanne Grinovero -Date: Thu Mar 5 15:16:29 2015 +0000 - - Include a new .gitignore file for tooling/hibernate-gradle-plugin as it's generated by Eclipse - -commit cf11d3c3fda13985cc1056090f21313b25847c37 -Author: Brett Meyer -Date: Tue Mar 10 12:24:30 2015 -0400 - - hibernate-osgi test debugging README - -commit 94ad371bf36013222150f2919bbb9f94d9a49f2b -Author: Etienne Miret -Date: Sun Feb 8 23:01:25 2015 +0100 - - HHH-9247 Attribute "name" of named-attribute-node maps to "value" of annotation. - -commit 58e4c675d3f2a137c97b57d06d659b4c9b6a5c67 -Author: Etienne Miret -Date: Sun Feb 8 22:43:24 2015 +0100 - - HHH-9247 Add test for parsing named-attribute-nodes in orm.xml. - -commit 9973e90bcc423d2bdea7eecdfe9c271ec7f5361b -Author: Sanne Grinovero -Date: Fri Mar 6 21:43:20 2015 +0000 - - HHH-9648 Upgrade to HikariCP v. 2.3.3 (Java 6 compatible edition) - -commit f552f6499f9b8433ff38ab1a4f0c79094bd8ec37 -Author: Sanne Grinovero -Date: Fri Feb 27 14:47:21 2015 +0000 - - HHH-8788 removed unnecessary warning related to follow-on locking with Criteria and LockMode.NONE - -commit 91aee82b07405f1e4cceed37dc2d82d1f7666b78 -Author: David Pilato -Date: Thu Mar 5 09:04:29 2015 +0100 - - buildSessionFactory() should return a sessionFactory - - The example does not compile for obvious reason :) - -commit 9aebcf64e71d27540be5164894876ce0b79b6024 -Author: Brett Meyer -Date: Wed Mar 4 23:02:48 2015 -0500 - - HHH-9639 support unwrapping HikariCPConnectionProvider as DataSource - -commit 260ff03ae5e8cce0d1d56484e32825222e3046d5 -Author: Galder Zamarreño -Date: Mon Mar 2 09:49:39 2015 +0100 - - HHH-9632 Update to Infinispan 7.1.0.Final - -commit 9337f731853b5b62c8db843a197260091ac0fe90 -Author: Gail Badner -Date: Fri Feb 20 17:32:06 2015 -0800 - - HHH-9457 : EntityGraph with order by using Oracle10gDialect - -commit f46fe0ff25db8fd6ab8252ba0377d9bfe001e9c0 -Author: Kamil Szymanski -Date: Thu Feb 5 22:55:38 2015 +0100 - - HHH-9601 ordering column name fix in table schema in example 7.8 - -commit 033f084e9a3ce9febeb840f5feb5fca487b8e63c -Author: Kamil Szymanski -Date: Thu Feb 5 22:34:12 2015 +0100 - - HHH-9600 remove outdated info about cache concurrency strategies support - -commit 47294034e7f5fa9feb68bd19733166b321751f70 -Author: Gail Badner -Date: Wed Feb 18 13:22:21 2015 -0800 - - HHH-9448 : Association is not fetched when EntityGraph has explicit fetch and query has implicit join (test case) - -commit 021500885184181972888402a324fa5ad063a5e4 -Author: Gail Badner -Date: Wed Feb 18 11:30:50 2015 -0800 - - HHH-9621 : Add HQL query to warning about positional parameter usage - -commit 36cc2c836c5aed9b2f52500f9715f3de8fe40f5a -Author: Gail Badner -Date: Thu Feb 12 13:38:09 2015 -0800 - - HHH-9597 : Criteria creates invalid column aliases - -commit c9df7589f23fe9055fce9f52a01eafc24fb0baa4 -Author: Gail Badner -Date: Thu Feb 12 13:23:27 2015 -0800 - - HHH-9597 : Criteria creates invalid column aliases (test case) - -commit 264b0be40e4a31293e70c39438a107920be9c19f -Author: Gail Badner -Date: Wed Jan 21 16:52:55 2015 -0800 - - HHH-9523 : EnumeratedTypeTest - select from dual causes test failures on mssql, postgresql, db2 and sybase - -commit 7f17e50c72c4a51818282a68a224b72f12cda974 -Author: Brett Meyer -Date: Wed Jan 21 15:55:00 2015 -0500 - - HHH-9528 close InputStreams in jpamodelgen JpaDescriptorParser - -commit f1a9a9f0062e23881d51eac8175bf912d1f7a72d -Author: Gail Badner -Date: Tue Jan 20 23:01:51 2015 -0800 - - HHH-9091 : Collection deleted due to orphan removal fails with constraint violation - -commit 2d64e539aafd0434fd208ba93486ad597aa9475c -Author: Brett Meyer -Date: Tue Jan 20 10:46:29 2015 -0500 - - HHH-8494 cleanup - -commit be08e94aa5afb0a8580b7a17d3a54b9f01098087 -Author: hernan -Date: Sat Sep 28 21:06:49 2013 -0300 - - HHH-8494: Misleading log info during batch execution. - - * Added a boolean variable to indicate if during addToBatch method the - batchSize is reached and there is more than one batch execution. - * The logging about performing a batch execution is moved to - performExecution method. - * The logging indicating that there is no statement to execute in batch - is performed only if there was no previous batching execution. - -commit 6f6b3264f3b87ea1478c7af2e0b8ac8bb046be4a -Author: Eric Haas -Date: Fri Jan 16 14:22:46 2015 -0600 - - HHH-9043 - Added the ability to customize the modified field name for audited fields. - -commit 3cc8cb31131e44f08abd1578ce96ab023ffe3b5a -Author: Gail Badner -Date: Fri Jan 16 15:13:39 2015 -0800 - - HHH-9573 : Add EntityManager test case illustrating usage of query cache - -commit d933c7818553e04ca18107649cda83154147b8cd -Author: Gail Badner -Date: Wed Jan 14 15:06:53 2015 -0800 - - HHH-9568 : EntityManager.flush() does not behave properly with transient one-to-one association and no cascade (reverts HHH-9330) - -commit 083e8cf52ef18a7eaa965612a1829314fe0ff66a -Author: Gail Badner -Date: Wed Jan 14 14:46:25 2015 -0800 - - HHH-9568 : Move test case from CascadeTest to OneToOneOrphanTest - -commit 9969f9330f7f6f3c53127592c80a6c16e16d4078 -Author: Martin Simka -Date: Wed Jan 14 13:47:05 2015 +0100 - - HHH-9568 : EntityManager.flush() does not behave properly with transient one-to-one association and no cascade (test case) - - (cherry picked from commit 6b4260413928e86625b1f6f3d78de27b4583d423) - -commit 86efb982a7d172f098a8f6f08702d31f3d91653d -Author: Trask Stalnaker -Date: Thu Jan 8 11:48:05 2015 -0800 - - Update README with new gradle task names - -commit 4283f1ac480befd2c4e919299ee3c0b4bde9c082 -Author: Emond Papegaaij -Date: Mon Dec 22 14:50:38 2014 +0100 - - HHH-9549 : Selecting treated root generates invalid HQL - - (cherry picked from commit 5e3868f58bf50196bf48b78504b6a943d2a15ca0) - -commit bf3130cd1c7df7010b06a607693ae7341f2a66e8 -Author: Emond Papegaaij -Date: Mon Dec 22 14:48:29 2014 +0100 - - HHH-9549 : Selecting treated root generates invalid HQL (test case) - - (cherry picked from commit ea57113e814d302353343aecf67b93725e9c8da9) - -commit c7db015cc61e766dd51aa0c21f8c6144c611e2e9 -Author: Gail Badner -Date: Tue Jan 6 11:28:19 2015 -0800 - - HHH-9561 : Master version is 4.3.7-SNAPSHOT; should be 5.0.0-SNAPSHOT - -commit 5047f6fcc63e4598d673a38d6cec1a1ade068ddd -Author: Arcadiy Ivanov -Date: Sat Sep 27 02:19:01 2014 -0400 - - HHH-9419 : Remove after get with optimistic lock fails - - (cherry picked from commit c80a8c442a91b880a24ea32a79e48da3c4a205a8) - -commit b8923b1e391b9dbac57d414ee089368682474b54 -Author: Paul Ferraro -Date: Fri Aug 15 08:09:47 2014 -0400 - - HHH-9337 Region.destroy() attempts to remove a cache listener, but region class is not annotated with @Listener - - (cherry picked from commit 2f881c38b439eec6378e55b1c73e81bf10968010) - -commit cf728ede660ac76629c2621ea1e3f91cb58b5a9d -Author: Gail Badner -Date: Mon Jan 5 22:59:02 2015 -0800 - - HHH-9401 : SQL warnings are never logged due to incorrect condition check - - (cherry picked from commit a98ebc4ed4580daf0282abde45838e3f6184aef8) - -commit 4bf3b162ad00ee977d65c02ef0f6db6fe29bde85 -Author: Gail Badner -Date: Mon Jan 5 12:04:44 2015 -0800 - - HHH-9467 : Cannot enable NamingStrategyDelegator implementations using standalone schema tools - -commit bbaeaa6c58dc8dfff5d8935515e4993337755012 -Author: magdalena -Date: Sat Jan 3 13:38:29 2015 +0100 - - enable query hints for SQL Server 2012 - -commit 1b9cd19ca77753ecf0ba533d378a4a376b4af5d0 -Author: George Gastaldi -Date: Wed Dec 17 15:00:21 2014 -0200 - - HHH-9545: H2Dialect should use 'if exists' when dropping constraints - -commit 7854bc6769c1f0b73a6b54216fd1586fc19feffa -Author: George Gastaldi -Date: Wed Dec 17 18:29:10 2014 -0200 - - HHH-9500: H2Dialect shoud not drop constraints - - The constraints are automatically dropped when the table is also dropped. - Trying to drop a constraint on a table that doesn't exist present unnecessary error messages. - -commit 493808ddc14d93817dd4306c1f015f0fbb772742 -Author: Gail Badner -Date: Wed Dec 17 23:21:51 2014 -0800 - - HHH-8401 : Unit test fixes - - (cherry picked from commit 45511f10ae58e9460fd09e6da5c33b1332494cbf) - -commit 0c7f7369da4641ac0e240abfaa9229ba799051cd -Author: Brett Meyer -Date: Wed Dec 17 16:18:09 2014 -0500 - - HHH-9471 corrected OSGi test client bundle manifest, improved arquillian/felix logging setup - -commit 60d4fe5001cdc31affe800c73f32f13ac274c8b8 -Author: George Gastaldi -Date: Wed Dec 17 12:36:37 2014 -0200 - - HHH-6670: H2Dialect should use "if exists" when dropping sequences - -commit fa8383a22ea3b943e7cf773e71f4458b3121ab5c -Author: Gail Badner -Date: Tue Dec 16 21:05:01 2014 -0800 - - HHH-8401 : Support fractional seconds on MySQL 5.7 - - (cherry picked from commit fe94cda1d1a2ede18b5a577e3ac80db85a806ef3) - -commit c068b6f70c84476db7a0cd26e80171ff69e51e90 -Author: Gail Badner -Date: Tue Dec 2 22:06:53 2014 -0800 - - HHH-9091 : Cascaded collection delete fails due to wrong execution sequence (test case) - - (cherry picked from commit 3b57f1612d40ae74eb0001aa67e86182e3dfedcd) - -commit fb15ee548ca1c8fb80f77497271931404f54c19e -Author: Andrej Golovnin -Date: Thu Nov 27 20:43:44 2014 +0100 - - HHH-9328 Avoids creation of Cascade objects at all - by converting all methods of the Cascade class into - static methods. - -commit 2105f2a49dba7a847cd8e6dc077249146ea12e68 -Author: Gail Badner -Date: Wed Nov 26 15:35:22 2014 -0800 - - HHH-9330 : Test cases for orphanRemoval=true does not work in bidirectional relationships (without cascading) - - (cherry picked from commit 1ff9edfb81057535f436a32b3631a3bc0665bbe3) - -commit 68838823bd04030b3f6f73380f646c3b7b5aae3c -Author: Gail Badner -Date: Wed Nov 26 15:25:42 2014 -0800 - - HHH-9330 : orphanRemoval=true does not work in bidirectional relationships (without cascading) - - (cherry picked from commit ef3550eed5bac8bf4f6298493a9d771851843367) - -commit fa90757f040603a08e52535febf64df192b049fb -Author: Sanne Grinovero -Date: Mon Nov 17 15:58:04 2014 +0000 - - HHH-9508 Improve trace logging in ActionQueue - -commit 498214b5697c9822a0026592da07ab9583353d76 -Author: Sanne Grinovero -Date: Mon Nov 17 15:57:40 2014 +0000 - - HHH-9508 Avoid source syntax which doesn't work in Eclipse - -commit 82b376c5f6f5cafca6381adab8764fb6f525c672 -Author: Sanne Grinovero -Date: Sat Nov 15 19:04:17 2014 +0000 - - HHH-9498 Using C3P0 connection pool but not setting hibernate.connection.isolation results in a NumberFormatException - -commit 9a881907f56eb3d393775485af9256e0bea856b6 -Author: Gunnar Morling -Date: Thu Nov 6 10:47:34 2014 +0100 - - HHH-9479 Avoiding array list growth in ActionQueue constructor - -commit c7f58ab57e9eb536419b67433524666c0b0db719 -Author: Steve Ebersole -Date: Fri Nov 7 15:36:44 2014 -0600 - - HHH-9488 - Move scanning from HEM to core - -commit d9fc06b7dbbe6380dcf36549b6dacdf16be59c9c -Author: Steve Ebersole -Date: Fri Nov 7 11:01:18 2014 -0600 - - HHH-9487 - Improve AvailableSettings javadoc for session_factory_name / session_factory_name_is_jndi - -commit aac8afa090d25f1d4a325c5f60a2db86f9f77bc2 -Author: Steve Ebersole -Date: Fri Nov 7 09:14:21 2014 -0600 - - HHH-9476 - bytecode-enhanced lazy to-one does not force selection of foreign-key column(s) when association is fetched - -commit 66ce8b7fb55e612b8e9f9e4d75b9ba85f18056b5 -Author: Steve Ebersole -Date: Thu Oct 30 07:43:54 2014 -0500 - - HHH-9466 - Drop metamodel package from source - -commit b943525c80b411c9fa1f66b44f8a5b14f928bf34 -Author: Gail Badner -Date: Wed Oct 22 13:46:15 2014 -0700 - - HHH-9388 : fix Entity Manager bug explicitly enabling ImprovedNamingStrategyDelegator/LegacyNamingStrategyDelegator - -commit 460e9662146dbeda74c2cbb54d6964baf7c4f610 -Author: Gail Badner -Date: Mon Oct 20 16:35:00 2014 -0700 - - HHH-9455 : Unnecessary select count query in some cases - - (cherry picked from commit 552c1c06d513bd066c0a3c6386119ea33e083cf7) - -commit 52f2c3a002b65aa530a467f4fff7b5eb50d0dd92 -Author: Gail Badner -Date: Wed Oct 8 03:13:38 2014 -0700 - - HHH-9388 HHH-7079 : Default collection table and foreign key names are incorrect in some cases; deprecate NamingStrategy - - (cherry picked from commit e5a31caa09b56ace6ad4aa4ccb99a0ad63b1ad31) - - Conflicts: - hibernate-core/src/main/java/org/hibernate/cfg/HbmBinder.java - hibernate-entitymanager/src/test/java/org/hibernate/ejb/test/MyNamingStrategyDelegator.java - -commit 1cba98022ec0ccb30f6a68547c050663daf51a96 -Author: Gail Badner -Date: Wed Oct 1 23:59:05 2014 -0700 - - HHH-9388 HHH-7079 : Default collection table and foreign key names are incorrect in some cases; deprecate NamingStrategy - - (cherry picked from commit 36576046b8df859a672c90182522048dd18e1e74) - - Conflicts: - hibernate-core/src/main/java/org/hibernate/cfg/Ejb3JoinColumn.java - hibernate-core/src/main/java/org/hibernate/cfg/HbmBinder.java - hibernate-core/src/main/java/org/hibernate/cfg/Mappings.java - hibernate-core/src/main/java/org/hibernate/cfg/annotations/EntityBinder.java - hibernate-core/src/main/java/org/hibernate/cfg/annotations/TableBinder.java - hibernate-core/src/main/java/org/hibernate/metamodel/source/internal/IdentifierGeneratorResolver.java - hibernate-entitymanager/src/main/java/org/hibernate/ejb/AvailableSettings.java - hibernate-entitymanager/src/main/java/org/hibernate/ejb/Ejb3Configuration.java - -commit c60c97b468bea246906cbd11b28168ffa3e761c6 -Author: jmoore -Date: Fri Oct 10 11:54:11 2014 +0200 - - HHH-3868 Fix null pointer exception on merge of entity with transient component - -commit 83f29d1e1a3d0655d4f402636bc191ff05ad74ea -Author: Maxim Frolov -Date: Mon Mar 17 15:59:27 2014 +0100 - - HHH-8895: fixed - -commit d85f2c8d036efea7b0084bf1e73606c7174575fe -Author: Andrea Boriero -Date: Mon Sep 29 14:27:28 2014 +0100 - - HHH-8895 Add test - -commit fff49977ab990d65764704fd6617b775ca2032c3 -Author: andreas -Date: Fri Aug 29 10:01:52 2014 +0200 - - HHH-9369 Fix @Formula of enum type results in ClassCastException - -commit 193c8cef20775a798883e850c7cc3c4bb7ef24ed -Author: Sanne Grinovero -Date: Sat Aug 16 18:40:13 2014 +0100 - - HHH-9344 Convert QueryLoader to use nanoTime instead of currentTimeMillis - -commit 16b067cd7d51f903d726a6ec7c2eb136e2e22f24 -Author: Sanne Grinovero -Date: Sat Aug 16 18:29:07 2014 +0100 - - HHH-9344 Convert Loader to use nanoTime instead of currentTimeMillis - -commit 0d1460cc1e3f3cd4ddc9585dd729e9839bee3104 -Author: Sanne Grinovero -Date: Sat Aug 16 18:26:38 2014 +0100 - - HHH-9344 Convert QueryTranslatorImpl to use nanoTime instead of currentTimeMillis - -commit 23936fd510b6f63ba1bf9a173333052d0bb1d98f -Author: Sanne Grinovero -Date: Sat Aug 16 18:24:50 2014 +0100 - - HHH-9344 Convert DefaultResolveNaturalIdEventListener to use nanoTime instead of currentTimeMillis - -commit 067e38a78b042ba90a80d71ebb69c932496f184f -Author: Sanne Grinovero -Date: Sat Aug 16 18:17:01 2014 +0100 - - HHH-9344 Remove dead code from BatchTest - -commit 42cd3ff2cf3d1d8b07f14babaef932d2c23ce633 -Author: Sanne Grinovero -Date: Sat Aug 16 18:16:40 2014 +0100 - - HHH-9344 Guard against unneeded invocation to System.currentTimeMillis() in HQLQueryPlan - -commit d4d5fcc9e2386c14b4fd7d24b22bf26f25658df8 -Author: Gail Badner -Date: Thu Sep 11 12:49:44 2014 -0700 - - HHH-9390 : Default join column name (FK) for @ManyToMany uses owning entity primary table name (test cases) - -commit f2ae61abf63e71367542b2a3f05c41f3d04bbed1 -Author: Gail Badner -Date: Thu Sep 11 12:41:15 2014 -0700 - - HHH-9387 HHH-9389 : Default collection table and join column names generated for @ElementCollection (test cases) - - HHH-9387 HHH-9389 : Default collection join column names generated for @ElementCollection (test cases) - -commit c63bc19d8abc88aa91ee9cbad03a34999cf5a592 -Author: Gail Badner -Date: Wed Sep 10 12:57:55 2014 -0700 - - HHH-9327 : NamingStrategy regression (reverts HHH-9280) - - (cherry picked from commit 30c6e060dba6933702a347e4f82f4579604a2aab) - -commit 4505843f0211a5d592907a3f35324a54d0bd7937 -Author: Christian Beikov -Date: Tue Aug 19 03:12:41 2014 +0200 - - Added regression test for HHH-9327 - - (cherry picked from commit 3da903f064e9c4963efd1f2c21d69af70e4aa1f1) - (cherry picked from commit 1df6c45f8a1a16d16e9a33938787bd2a0c8f1b8c) - -commit 35edd5690700fdea153fa20487c2c7e3271dc2f2 -Author: Gail Badner -Date: Mon Aug 18 14:00:02 2014 -0700 - - HHH-8839 : Eager Map with entity key causes IllegalStateException: Collection element (many-to-many) table alias cannot be empty - -commit 153c4e32ef6b78a80280d67bd5ee00cf8db4d02a -Author: Gail Badner -Date: Tue Aug 12 16:11:54 2014 -0700 - - HHH-9090 : HQL parser is trying to reuse parent implied join for subquery - -commit b1c02c85cbc7e03c477129c998f5e8f6f2eced04 -Author: Brad Koehn -Date: Thu Apr 24 14:49:36 2014 -0500 - - HHH-9142 fixed a bug where joining to a non-class-based entity (EntityMode.MAP) would fail, added regression test. - -commit 78e208d3b4c6ea7b28475a8511bdac1b84f826b6 -Author: Steve Ebersole -Date: Mon Aug 4 15:15:27 2014 -0500 - - HHH-9312 - Database connection leak with JTA transaction tracking and background thread not releasing database connection - -commit 0f85e8476b9f742a7a2f79c787181c7166e1c6ce -Author: Henady Zakalusky -Date: Tue Jun 10 09:31:02 2014 +0300 - - HHH-8949 @QueryHint( name="javax.persistence.cache.retrieveMode", value="") does not work - -commit 72e9645d4b2592b0f84c60e89e311468c29163ca -Author: Steve Ebersole -Date: Mon Aug 4 13:32:51 2014 -0500 - - HHH-9312 - Database connection leak with JTA transaction tracking and background thread not releasing database connection - - (cherry picked from commit 9e1afbaf49dacb3e345666ca1f27b1a6e74d3de2) - -commit a0663f0d6c4185893dbcc2aec4f5fa28ddc8eb35 -Author: Gail Badner -Date: Tue Jul 29 16:54:18 2014 -0700 - - HHH-9305 : HQL FromElement is not reused in some cases resulting in an additional join - -commit d511980072eba255bed050ff4aad89af9fe96355 -Author: Brent Plump -Date: Wed Jul 16 22:28:19 2014 +1000 - - HHH-9290 : Do not truncate HT_ temporary table name prefix on Oracle - -commit 0f047187fd0a0623e963037d5bbbbd983980bf26 -Author: Andrea Boriero -Date: Wed Jun 25 17:00:54 2014 +0100 - - HHH-9251 Removed AsciiDoc from aggregateJavadocs gradle task - -commit 78aa10c0bacfea14fbf9e8e1adde3f0c820b7a7d -Author: Sanne Grinovero -Date: Fri Jul 18 14:01:38 2014 +0100 - - HHH-9294 move the number checking utility to a separate private utility - -commit 88cb320d160efb8bcb83200ab5772e808d26c541 -Author: barreiro -Date: Thu Jul 17 17:27:32 2014 +0100 - - HHH-9294 Reduce throw of NumberFormatException in BaseQueryImpl - -commit 53b7c6288c0f8aa87de9baf237f74128e7fa76fb -Author: Gail Badner -Date: Wed Jul 16 22:50:24 2014 -0700 - - 4.3.6.Final post release - -commit d6323457d275b138be3bf35e23bdf91a007356f2 (tag: 4.3.6.Final) -Author: Gail Badner -Date: Wed Jul 16 16:25:19 2014 -0700 - - 4.3.6.Final release - -commit 32403f3ac30e6be774f6605b7574913d24fc3eb4 -Author: Sanne Grinovero -Date: Sun Jul 13 23:31:44 2014 +0100 - - HHH-9288 Restore removed method ServiceRegistryBuilder#buildServiceRegistry used by Tools - -commit 89442d7c9e5462fe13aeca9853c416e878bde8bc -Author: Sanne Grinovero -Date: Sat Jul 12 13:32:07 2014 +0100 - - HHH-9285 Upgrade to Hibernate Commons Annotations version 4.0.5.Final - -commit 25575d2e7d5508a56845d9b2d3d9562bfd3e490f -Author: Gail Badner -Date: Wed Jul 9 22:28:54 2014 -0700 - - HHH-9282 : Revert HHH-9222 on 4.3 branch - -commit 365bfe99d857b7fa62108cff05fba28a5fb7b7e6 -Author: Gail Badner -Date: Wed Jul 9 19:31:50 2014 -0700 - - HHH-8310 : Lob proxy class loading problem - -commit 4007655045711ddf89925c76310f31f81530dfa6 -Author: Gail Badner -Date: Wed Jul 9 17:11:09 2014 -0700 - - HHH-5811 : Flush causes update query on field of type Byte[] - -commit ccffe0dea9d9d4aae05ffaaa9239ff5ac5b3346a -Author: Gail Badner -Date: Wed Jul 9 15:08:21 2014 -0700 - - HHH-9280 : Table name generated for @ElementCollection uses owning entity class name instead of mapped entity name - -commit ee0cf672d76c9cf2d72e833d3836d11bbf190e44 -Author: Steve Ebersole -Date: Wed Jul 9 14:05:35 2014 -0500 - - HHH-6005 - DefaultComponentSafeNamingStrategy breaks @ElementCollection of @Embeddables - testcase - -commit 953260e0aee63d0189b6a7d3279d33ee53ad9b40 -Author: Gunnar Morling -Date: Wed Jul 9 16:48:53 2014 +0200 - - HHH-8683 Adapting unit test to changed deserialize() method in 4.3 - -commit b95b8514d88510950951ae497d04ad7d21b55503 -Author: Gunnar Morling -Date: Thu Jul 3 23:22:20 2014 +0200 - - HHH-8683 Making EnumState a parameterized class, thus allowing to access its value more safely - -commit 4a38b25ec14fb724ec288d85abb892eb21ae9822 -Author: Gunnar Morling -Date: Thu Jul 3 23:10:59 2014 +0200 - - HHH-8683 Caching enum constants to avoid memory allocation by repeated calls to getEnumConstants() - -commit 5ad2663d1219cec1f17dde526dc0d01b46126c56 -Author: Gunnar Morling -Date: Thu Jul 3 15:45:52 2014 +0200 - - HHH-8683 Adding test for setting/getting attributes in compressed state int - -commit dedd24afc211a676da591259aee2f72eacf2dc15 -Author: Emmanuel Bernard -Date: Tue Jul 1 21:37:22 2014 +0200 - - HHH-8683 Class org.hibernate.engine.spi.EntityEntry consumes lots of memory - -commit d84c6b35aa439294aaf7e1502f9e5441df91fc47 -Author: Gunnar Morling -Date: Tue Jul 1 16:18:39 2014 +0200 - - HHH-8237 Applying type configured via @ColumnMapping#type() for constructor results - -commit 14c00abd6a629dfc45ea7145b957ea10168f57a8 -Author: Gunnar Morling -Date: Tue Jul 1 16:18:16 2014 +0200 - - HHH-8237 Applying type configured via @ColumnMapping#type() for scalar results - -commit de16eaf5a809b5fb26be7bf4404978ca07596115 -Author: Sanne Grinovero -Date: Tue Jun 24 23:55:52 2014 +0100 - - HHH-9258 OsgiSessionFactoryService does not handle ServiceContributors - -commit f9a49efd179f2c644674f9872d57a45f11a1dca3 -Author: Gail Badner -Date: Mon Jul 7 18:39:52 2014 -0700 - - HHH-9231 : Uncommitted data can remain in transactional collection cache after rollback if collection is initialized after flush - -commit 4851ab01dfc2c58c19bf08a68854593923907716 -Author: Gail Badner -Date: Wed Jun 18 10:02:37 2014 -0700 - - HHH-9231 : Avoid updating collection 2LC if contains entity added in tx - -commit 36e35207f6f30f0236844dbcf898714070ad8cfe -Author: Galder Zamarreño -Date: Wed Jun 11 12:01:09 2014 +0200 - - HHH-9231 Avoid updating collection 2LC if contains entity added in tx - - (cherry picked from commit 3b098a94d3463086a230d6dbc1254e9ecbf76cda) - - Conflicts: - hibernate-infinispan/src/test/java/org/hibernate/test/cache/infinispan/functional/BasicTransactionalTestCase.java - -commit 31bcb0ea0a73c32bbb430ac6eed54005f01a40f2 -Author: Gail Badner -Date: Thu Jul 3 11:46:56 2014 -0700 - - HHH-9106 : Merging multiple representations of the same entity (logging) - -commit 368cdc1966b2018e03a3a5a0a6cf420a9939c398 -Author: Gail Badner -Date: Thu Jul 3 11:21:26 2014 -0700 - - HHH-9106 : Merging multiple representations of the same entity (tests using StrategySelector) - -commit 6203b5da308ad45167ad0cbcc44214433b4e7f7b -Author: Gail Badner -Date: Thu Jun 26 22:10:01 2014 -0700 - - HHH-9106 : Merging multiple representations of the same entity (using StrategySelector) - -commit ceaf2e320fd743357beb8eb9f4a6524d0c96e60b -Author: Emmanuel Bernard -Date: Wed Jul 2 01:06:43 2014 +0200 - - HHH-9269 Store persister to ReferenceCacheEntryImpl to avoid costly lookup at read time - -commit 3b284d797ae27a600b5c3bf212f78ea8d294495e -Author: Sanne Grinovero -Date: Wed Jul 2 00:51:52 2014 +0200 - - HHH-9268 The NoopOptimizer used for default id generation doesn't need synchronization - -commit 4780f117c52e2eca99561374d6a912b0caad5068 -Author: Steve Ebersole -Date: Mon Jun 23 10:22:45 2014 -0500 - - HHH-9090 - HQL: parser is trying to reuse parent implied join for subquery - - (cherry picked from commit 133f0825a3e97b123b3fb88f7971ced6e20ef600) - -commit 3a8041953d950db15513cecc36db38ee286c8a30 -Author: Gail Badner -Date: Thu Jun 19 00:32:00 2014 -0700 - - HHH-9106 : (corrected test case to work on MySQL) - -commit ea5068ea7644268a55e72563c5b9e9d0bec8797f -Author: Gail Badner -Date: Wed Jun 18 17:03:42 2014 -0700 - - HHH-9234 : Test failure (testNaturalIdChangedWhileAttached) on SAP/SYBASE ASE - - (cherry picked from commit 257efd10254b40a41016ec29d4ee2e90bf6c4d87) - -commit 10e4ff5afb808ca91a0fedf47e837cdccdca47c7 -Author: Gail Badner -Date: Tue Jun 17 12:35:13 2014 -0700 - - HHH-9106 : Merging multiple representations of the same entity (improved logging) - - (cherry picked from commit fed3191eb7e4edb3dab7823219540c0d064669b9) - -commit 055b0cacaec4fbb136a1fc592fa00cb7e950eb61 -Author: Gail Badner -Date: Fri Jun 13 16:01:39 2014 -0700 - - HHH-9106 : Merging multiple representations of the same entity (entitymanager test cases) - -commit 2daaf9a1965b70897928ea222ea8708acaad3bbd -Author: Gail Badner -Date: Thu Jun 12 20:04:44 2014 -0700 - - HHH-9106 : Merging multiple representations of the same entity - -commit c7c5b015c134df993de4105a2bc3e70d7e14ad68 -Author: Gail Badner -Date: Thu Jun 12 14:50:45 2014 -0700 - - HHH-9239 HHH-9240 : FailureExpected test cases when merging entity copies with dirty collections - -commit 70532259faa14064cff8263cbb7ad6d82d607892 -Author: Gail Badner -Date: Thu Jun 12 01:46:23 2014 -0700 - - HHH-9106 : Merging multiple representations of the same entity merged - -commit af5791f6dd5b8b82e4786a146375e583c12037b7 -Author: Gail Badner -Date: Wed Jun 4 13:45:04 2014 -0700 - - HHH-9231 HHH-5690 : Test cases for transactional cache strategy - -commit dad4c64d5694262eee86f4645ac61dffa489b03e -Author: Gail Badner -Date: Tue Jun 3 21:28:24 2014 -0700 - - HHH-5690 : Entity cache after persist, flush, rollback (test case) - -commit e520c1c2c010ae0f0db42310ebfb88f12b11027c -Author: Brett Meyer -Date: Fri May 30 14:42:45 2014 -0400 - - HHH-9215 HHH-9214 HHH-9213 correcting Sybase test failures - -commit 43d8751e96d2c55e9b5d40b744ee3e758533a7a5 -Author: Brett Meyer -Date: Tue May 27 22:06:25 2014 -0400 - - HHH-8904 minor edits - -commit 9fe3862e55e53563fe59d82903cdb8fb25cc6939 -Author: Jeremy Whiting -Date: Tue Jan 28 19:11:07 2014 +0000 - - HHH-8904 documentation for build time bytecode enhancements - -commit a39eeed257ad189863a44d2de55e1e31d031e10d -Author: Brett Meyer -Date: Tue May 27 21:52:15 2014 -0400 - - HHH-9202 NPE in OneToOneLinkTest on oracle12c - -commit 95070f50a9a1e4d7fb0e2ff06331a4c9ef440187 -Author: Gail Badner -Date: Fri May 16 14:36:21 2014 -0700 - - HHH-9193 : Default audit behavior of mapped-superclass (test cases) - -commit 27da278f079dd7fb4ab00a43e1b548ce43ac8d2d -Author: Gail Badner -Date: Thu May 15 18:11:40 2014 -0700 - - HHH-9194 : Revert HHH-8908 fix - -commit d36b3a3e976faf0db8976c5e4a513216aead94cf -Author: Steve Ebersole -Date: Tue May 27 15:43:04 2014 -0500 - - HHH-9222 - Bulk delete and element collections - -commit 420296fd267c8bcf9501896fcc17446c55b1d272 -Author: Gail Badner -Date: Mon May 19 14:55:18 2014 -0700 - - HHH-9204 HHH-9205 : Restore AbstractCollectionPersister.doProcessQueuedOps() removed by HHH-9078; deprecate method added by HHH-9078 - -commit f549b88831ec23da7c44ef026b61f2cb8c5246ed -Author: Gail Badner -Date: Tue May 27 12:19:04 2014 -0700 - - HHH-9171 : Orphan removal does not happen for new entity element - -commit 1fc74feadab895d634cc9004d8044f9ec5cd2d5f -Author: Dimitris Mandalidis -Date: Tue Apr 29 20:44:01 2014 +0300 - - HHH-8885 MapJoin.key() produces unusable Path object - -commit 4ea068f2e9aa78e899a51e30d4caa79d0f188f88 -Author: Brett Meyer -Date: Fri Apr 25 11:53:11 2014 -0400 - - HHH-8818 TcclSafeAggregatedClassLoader - -commit ab8dd7966ad1410ddf0a9436985c33aa7c05c711 -Author: Brett Meyer -Date: Fri May 23 17:49:47 2014 -0400 - - HHH-9145 simplified JDBC check - -commit 3c776321db3dcca4918557fabba4d02ea4d6aa9b -Author: begmandev -Date: Fri Apr 25 08:09:43 2014 -0500 - - HHH-9145 Use JDBC Wrapper API for type checks - -commit 64a27ccadac90859560f186d4bb722b217e1ed96 -Author: Lukasz Antoniak -Date: Fri May 23 17:43:53 2014 -0400 - - HHH-9203 - ConcurrentNaturalIdCacheStatisticsImpl#getEntries() fails - with ClassCastException - - Conflicts: - hibernate-core/src/test/java/org/hibernate/test/naturalid/mutable/cached/CachedMutableNaturalIdStrictReadWriteTest.java - -commit 478e2e26eb9d7d8ccecc7d476cb6c50f97c20803 -Author: Lukasz Antoniak -Date: Mon May 19 09:13:04 2014 +0200 - - HHH-9201 - Evict cache instead of remove after transaction completion - -commit f4fe4108a9b173365198cd4cd68c45343941fa23 -Author: Brett Meyer -Date: Fri May 23 17:31:02 2014 -0400 - - HHH-8941 simplified the dialect function - -commit d7347c3f4805aa38bef8d4d6b111087f0a596231 -Author: dodgex -Date: Fri May 23 17:52:35 2014 -0400 - - [HHH-8941] add SQLFunctionTemplate for replace() to FirebirdDialect - - Conflicts: - hibernate-core/src/main/java/org/hibernate/dialect/FirebirdDialect.java - -commit d3f75ea0d9efb8ac512cc082bed50aefb7dba182 -Author: Steve Ebersole -Date: Thu May 22 11:02:38 2014 -0500 - - HHH-9138 - CastFunctionTest failing on most databases - - (cherry picked from commit c012c4d8de9aa68f42fed067184d2520594013d5) - -commit 14053b5928e9a1683825892437f9c6ab4612c41c -Author: Steve Ebersole -Date: Thu May 22 09:38:16 2014 -0500 - - HHH-9190 : consolidate contracts - - (cherry picked from commit fbe72e7b641fba2c95ce0b8867e080fb7e52613d) - - Conflicts: - hibernate-core/src/main/java/org/hibernate/engine/query/spi/ParameterMetadataRecognizerInitiator.java - -commit ac06799a551724b4ea654f13da1ac0f9064b6eb1 -Author: Gunnar Morling -Date: Mon May 19 14:23:13 2014 +0200 - - HHH-9190 Introducing QueryPlanFactory service contract in order to make creation of native query plans customizable - -commit ccdf6df3d6b24eca05df2005c3e955e6768b109c -Author: Gunnar Morling -Date: Mon May 19 14:33:15 2014 +0200 - - HHH-9190 Introducing ParameterMetadataRecognizer contract in order to make retrieval fo parameter meta-data for native queries customizable - -commit 07bc5ce877c0379ecd60d9a2c53de052db0005ef -Author: Lukasz Antoniak -Date: Sun May 18 14:45:56 2014 +0200 - - HHH-9200 - Natural id cache statistics are not cleared - -commit fdf2ae3df5fefd589c3694db61d87949d105854e -Author: Steve Ebersole -Date: Thu May 15 09:24:37 2014 -0500 - - HHH-9154 - keywords as parameter names - - gah... missed in initial commit for cherry-pick - -commit 1ed895a3737c211e8c895b0297f801daccfe85a9 -Author: Steve Ebersole -Date: Thu May 15 09:05:22 2014 -0500 - - HHH-9154 - keywords as parameter names - - (cherry picked from commit 5aff092e2bd06bcfc18eb6eec9983b2f97237d64) - - Conflicts: - hibernate-core/src/test/java/org/hibernate/test/hql/ASTParserLoadingTest.java - -commit eeeb4a884f3aed2482657267ed4d4b4144cb1308 -Author: Gail Badner -Date: Wed May 14 13:44:17 2014 -0700 - - HHH-9169 : SQLServer2012Dialect creates sequences starting from Long.MIN_VALUE - -commit 32054d860333b701b7e3975ca3805729667f1b25 -Author: Gail Badner -Date: Tue May 13 23:24:31 2014 -0700 - - HHH-9169 : SQLServer2012Dialect creates sequences starting from Long.MIN_VALUE - -commit fcaa6e8780d31240b9091cb740d2c09233b7c16d -Author: Gail Badner -Date: Tue May 13 22:42:28 2014 -0700 - - HHH-9169 : SQLServer2012Dialect creates sequences starting from Long.MIN_VALUE - -commit 56bcf3ae7f8f0c369517221ed5873ea7fa8f6986 -Author: Gail Badner -Date: Tue May 13 14:36:18 2014 -0700 - - HHH-9154 : HQL Parsing: unexpected token ':' (test case) - -commit 656997a82c3c3225016dd010cf38bdf226bac02a -Author: Brett Meyer -Date: Fri May 9 12:33:34 2014 -0400 - - HHH-9174 cache SqlExceptionHelper reference - -commit 8a2a78ff337e9a1cb6239743ee13c704411613d5 -Author: Brett Meyer -Date: Fri May 9 11:55:41 2014 -0400 - - HHH-9170 StatelessSession is accidentally 2LC enabled in some cases - -commit 5979046d05de629f53fb4ae3c1cbff0aeb18dbbf -Author: Brett Meyer -Date: Fri May 9 12:28:42 2014 -0400 - - HHH-9174 Increase performance - of SqlExceptionHelper#handleAndClearWarnings - Conflicts: - hibernate-core/src/main/java/org/hibernate/engine/jdbc/spi/SqlExceptionHelper.java - -commit 61d2c0c049143cc3ca2dc5e2d8d360ba7a94d236 -Author: Gail Badner -Date: Wed May 7 16:14:51 2014 -0700 - - HHH-9171 : Orphan removal broken for new element added by merge that is removed by later merge (test case) - -commit d259f8d62ad72653961887c35b0ad745d88173f2 -Author: Gail Badner -Date: Wed Apr 30 18:09:15 2014 -0700 - - HHH-9150 : Envers test table is too long causing Oracle failure - -commit 24b041986db8209c312202e3c71206f60208d62d -Author: Brett Meyer -Date: Mon Apr 21 09:45:01 2014 -0400 - - Revert "HHH-3730 Compare both ids in isModified instead of an object and an id" - - This reverts commit c7903392cd29c8e435763c3ffd8936bf1d9949b0. - -commit e541ab02df7b5f91d088b1e34ceaf8707d7f342a -Author: Jocki Hendry -Date: Tue Mar 25 15:22:34 2014 +0700 - - HHH-9080 - Can't add attribute node declared in superclass (inheritance) in EntityGraph - -commit 69c9950b398ee86f91d8ba34c32b25eeeb78ab6e -Author: Julien Fourment -Date: Fri Mar 28 17:59:49 2014 +0100 - - HHH-9093 - Fixed typo in error message when no implicit selection could - be found - -commit c7903392cd29c8e435763c3ffd8936bf1d9949b0 -Author: Guillaume Smet -Date: Wed Apr 9 23:47:41 2014 +0200 - - HHH-3730 Compare both ids in isModified instead of an object and an id - -commit ee8f26a4be938a8b564d01e5f3800571edec5006 -Author: msulima -Date: Sun Apr 20 14:12:20 2014 +0200 - - HHH-9136 - DatabaseMetadata: NPE hides exception in finally block - - Protection against NPE in finally block - - Little formatting fixes - -commit f693f5c32041e8b9653b905a3d11410d1c3eb181 -Author: Gail Badner -Date: Thu Apr 17 13:55:01 2014 -0700 - - HHH-8908 : Column of Embedded missing in Audit Table; reorg tests - -commit b3b231248241cf75e94e31184a011363c95e73f6 -Author: Gail Badner -Date: Wed Apr 16 16:34:20 2014 -0700 - - HHH-8908 : Column of Embedded missing in Audit Table; additional test, format, cleanup - -commit ce6018563ca9f26fdc1a7f900bbd1719fc043996 -Author: Gail Badner -Date: Mon Mar 31 13:24:47 2014 -0700 - - HHH-8908 : Column of Embedded missing in Audit Table - -commit e0677a1ae163189f196c64f7039bdd708daa2e4d -Author: Gail Badner -Date: Mon Mar 31 13:20:15 2014 -0700 - - HHH-8908 : Column of Embedded missing in Audit Table (test case) - -commit 025d2e2f44a6d3082273db3714462fc4ecc0b33a -Author: Steve Ebersole -Date: Tue Apr 8 16:35:17 2014 -0500 - - HHH-8980 - Instance of super-class not found because of joined subclass reference is an inner join - (cherry picked from commit 651b23b1739a1409dea7e4521f26185d48fbba71) - -commit ea62531a36492ba48b104accf008522eb0aef261 -Author: Brett Meyer -Date: Mon Apr 7 15:07:41 2014 -0400 - - HHH-8869 upgraded to HikariCP 1.3.5, replaced deprecated property - Conflicts: - libraries.gradle - -commit 80284b95564427d7d61b4cab2676831a0c67e329 -Author: Brett Meyer -Date: Fri Mar 28 13:14:00 2014 -0400 - - HHH-8869 fixes/simplifications for HikariCP 1.3.4 - Conflicts: - libraries.gradle - -commit e8a52e290437c510927106d33efe9e6350bc66e8 -Author: Brett Meyer -Date: Mon Mar 17 16:33:44 2014 -0400 - - HHH-8869 created hibernate-hikaricp connection provider - - Conflicts: - libraries.gradle - -commit f6399cd15956d6c3ac45b3a66f45ba6144e08fb5 -Author: Brett Meyer -Date: Tue Apr 8 11:19:05 2014 -0400 - - HHH-9107 throw WrongClassException if attempting to load incorrect - subclass from 2lc - -commit d997265b26afdbb72ab06d96e383b7984253ac38 -Author: Gail Badner -Date: Mon Apr 7 16:01:16 2014 -0700 - - HHH-9106 : Multiple detached representations of the same entity cannot be merged - -commit cbc79c2d61fc8c0d64dae90c61fe98990635c051 -Author: Steve Ebersole -Date: Fri Apr 4 16:00:45 2014 -0500 - - HHH-9100 - Improve CAST function support - (cherry picked from commit 137c2daf8171a9fb47df58cb119d23c10fddf105) - -commit b861b4d29fcddc416408759f70c1a74fa4d8f2a7 -Author: Brett Meyer -Date: Mon Apr 7 14:06:17 2014 -0400 - - HHH-9104 corrected BasicHibernateAnnotationsTest.testFilterOnCollection - test data cleanup - -commit 03586f3b7b4dac80568eddd62c1590dfbb6f7038 -Author: Brett Meyer -Date: Mon Apr 7 11:09:40 2014 -0400 - - HHH-9103 Dialect resolver should use a newer Oracle dialect for - Oracle12c - -commit 92ae4ac417def67ed9b075afef560dabcafa8eef -Author: Steve Ebersole -Date: Thu Apr 3 13:02:30 2014 -0500 - - HHH-9100 - Improve CAST function support - (cherry picked from commit 6ffbf8f3f3d22a2e65017e4b6a1717a1297a17b9) - -commit bbd2f1ae5b4bbc4c0717a7eac8f24493c94ac744 -Author: Steve Ebersole -Date: Thu Apr 3 08:35:44 2014 -0500 - - HHH-4700 - ClassCastException with parameter in CaseNode.getFirstThenNode() - (cherry picked from commit efa5dc2f6ca1b4f20725e2d58d6afac00dff10b6) - -commit 76526ab3e4f7c27f96611a8b1a308a4b40ff51d1 -Author: Steve Ebersole -Date: Wed Apr 2 14:44:06 2014 -0500 - - HHH-6747 - ClassCastException when rendering SimpleCaseExpression - -commit 29bbffe45e3837063ab389da9214c5c954613977 -Author: Gail Badner -Date: Wed Apr 2 12:25:52 2014 -0700 - - HHH-9002 : LoadQueryJoinAndFetchProcessor - wrong alias for OrderBy (released in 4.3.5) - -commit 8c1a5123a05bd6d123aba9e9bfd5a6a08920aa9b -Author: Brett Meyer -Date: Wed Apr 2 11:24:39 2014 -0400 - - 4.3.5.Final post release - -commit 7ee941e13c8de2f48986b2d58429ba5364b5fea0 (tag: 4.3.5.Final) -Author: Brett Meyer -Date: Wed Apr 2 10:06:55 2014 -0400 - - 4.3.5.Final release - -commit 18b4b55d0a8dc579cd42956180808056bd5b0dfa -Author: Brett Meyer -Date: Mon Mar 31 10:29:32 2014 -0400 - - HHH-9092 QueryBuilderTest.testMultiselectWithPredicates failing on - most databases - -commit decb673bddd5b31ea24b8dbfef04ae728e21dfe4 -Author: Gail Badner -Date: Thu Mar 27 20:01:39 2014 -0700 - - HHH-9089 : Test case that shows annotations on fields in nested embeddable collection elements are ignored - -commit 4bb7966102e377ec06256eb0136c2af8bfe6872c -Author: Steve Ebersole -Date: Wed Mar 26 13:14:35 2014 -0500 - - HHH-9073 - TREAT downcasting and result restrictions - -commit 4a9057f31c902af68dcba9757a2d7084cd5f8a88 -Author: Scott Marlow -Date: Wed Mar 19 10:10:26 2014 -0400 - - HHH-9073 - TREAT downcasting and result restrictions - -commit 33aeb4f7c288becc1fbceb1f00a6f7caa7996c75 -Author: Steve Ebersole -Date: Wed Mar 26 11:04:58 2014 -0500 - - HHH-8923 - Reconsider closing of ServiceRegistry instances - - Conflicts: - hibernate-core/src/main/java/org/hibernate/boot/registry/StandardServiceRegistryBuilder.java - -commit 96b9366f143b18f15e82fef9cc9e72b6b4e554d6 -Author: Brett Meyer -Date: Wed Mar 26 10:26:25 2014 -0400 - - HHH-8923 corrected test case - -commit 2c88c3998b978531d286bd8364153234137015fc -Author: Brett Meyer -Date: Tue Mar 25 17:51:32 2014 -0400 - - HHH-8923 corrected test case - -commit daf120b063bc0be40f27cce92ce84f1be629cd4b -Author: Steve Ebersole -Date: Thu Mar 20 14:47:57 2014 -0500 - - HHH-8923 - Reconsider closing of ServiceRegistry instances - -commit 1ec115c0d62d7e77a006bde87d82d38352967799 -Author: Brett Meyer -Date: Mon Mar 24 13:24:35 2014 -0400 - - HHH-9078 correct OrderColumn indexes for inverse, extra lazy collections - -commit 0e6ed807fb13234a8ab5e27d8253406f5233ed85 -Author: Steve Ebersole -Date: Fri Mar 21 12:06:04 2014 -0500 - - HHH-7971 - Enabling ENABLE_LAZY_LOAD_NO_TRANS results in trying to remove elements in collections - (cherry picked from commit 6f342358db3aa5618d60ec69f69f8c6cfb6eb611) - -commit 50c12d98b25c6cee8ba4784773df65f433e7b69e -Author: Alexander-Dukhno -Date: Fri Mar 21 17:14:09 2014 +0200 - - HHH-7971 create regression test case for lazy loading with property ENABLE_LAZY_LOAD_NO_TRANS = true - (cherry picked from commit 30205607efb5b1253bc19ea025800fc9b6493ca8) - -commit a86acaf0102c70a06229d2d46e389660c4f11986 -Author: Guillaume Smet -Date: Thu Mar 20 16:47:32 2014 +0100 - - HHH-9072 Fix name property of LoadEventListener.RELOAD - -commit c5bdec20b96a1179d70338644d8c2d5f1408001e -Author: Steve Ebersole -Date: Fri Mar 21 09:59:04 2014 -0500 - - HHH-9071 - Proxy narrowing loses the initialized state of the original proxy - -commit 2cf52cc7f1e1d8f918188d5166a3a869fc213cd8 -Author: Guillaume Smet -Date: Thu Mar 20 16:08:41 2014 +0100 - - HHH-9071 When an already initialized proxy is narrowed, initialize the new proxy - -commit 1c0841180d2244894cf55ad98317d9970ce53834 -Author: Guillaume Smet -Date: Wed Mar 19 19:04:32 2014 +0100 - - HHH-9067 Make HibernatePersistenceProvider easier to extend - - The ultimate goal is to be able to instantiate easily an HibernatePersistenceProvider - with a Spring managed interceptor. - -commit 156bebd8a1f84c9d8c7d4b5a8005fabf3af77556 -Author: Steve Ebersole -Date: Thu Mar 20 09:47:54 2014 -0500 - - HHH-8816 - Unable to instantiate AttributeConverter: root cause of exception hidden - -commit d023c7c95c14ea130813a9006fd2c9f6ffec1c63 -Author: Steve Ebersole -Date: Thu Mar 20 09:33:00 2014 -0500 - - HHH-8816 - Unable to instantiate AttributeConverter: root cause of exception hidden - -commit fc577724fb78031337ef71d4e21a018eba88ed98 -Author: Brett Meyer -Date: Tue Mar 18 17:52:37 2014 -0400 - - HHH-9064 Simplify/improve the hibernate-osgi tests - -commit 1178e70034e517abaa4029acd3c7aac83a4916c9 -Author: Steve Ebersole -Date: Mon Mar 17 14:21:35 2014 -0500 - - HHH-1582 : post-commit listeners and failed transactions - -commit c6ca3a4ef2278f82f0ba955978523058a4fcbb23 -Author: Shawn Clowater -Date: Thu Feb 27 16:55:08 2014 -0700 - - HHH-1582 - Added explicit PostCommit(Insert|Delete|Update)EvenLister interfaces to allow for separation of success/fail handling in post commit events. - Maintained current behavior by having the Entity actions call the existing API unless using one of the new interfaces. Added 2 test cases, 1 using the new interfaces and 1 using the existing interfaces. - -commit ccdddf468218021ef6be1fcc827e7f05ea493bff -Author: Brett Meyer -Date: Mon Mar 17 15:43:54 2014 -0400 - - HHH-9051 removing unnecessary System.out.println - -commit a9c0fd32431bff430cfd634ff87b0031f3733ed0 -Author: Brett Meyer -Date: Mon Mar 17 15:11:54 2014 -0400 - - HHH-9057 Correct ObjectNameNormalizer for mssql-style quoting - -commit 514f0960617e78aebfba870fc4aad9ac76ad417c -Author: Brett Meyer -Date: Mon Mar 17 14:46:36 2014 -0400 - - HHH-9056 - OneToOneTest.testPkOneToOneSelectStatementDoesNotGenerateExtraJoin fails - on oracle and postresql - -commit 7b349a2be804b8eb4f6a7d2263c8f346c2858293 -Author: Brett Meyer -Date: Mon Mar 17 13:41:37 2014 -0400 - - HHH-9054 QuoteTest violates unique key constraint on some DBs - -commit 1f3ff4ba95504470a74d7a80bf3f8e990b3bd144 -Author: Brett Meyer -Date: Mon Mar 17 13:12:26 2014 -0400 - - HHH-9052 ASTParserLoadingTest.testBooleanPredicate fails on most - databases - -commit 63881f137ed7a7c5d4e48f2a20e077d0d47ad6f3 -Author: Gail Badner -Date: Fri Mar 14 15:57:05 2014 -0700 - - HHH-9002 : Fetch many-to-many order by - -commit 7ca36585a902d7af878ff2f8e6b909f1789ff02d -Author: Libor Ondrusek -Date: Wed Mar 12 17:04:06 2014 -0400 - - HHH-9040 Added halt on error support for scripts importing - - Conflicts: - hibernate-core/src/main/java/org/hibernate/tool/hbm2ddl/SchemaExport.java - -commit 68918d29a301fdede7c99599a1059ced19da20be -Author: Brett Meyer -Date: Wed Mar 12 16:04:41 2014 -0400 - - HHH-8374 test case - -commit a689354db61c3ff4229f4c974c669e6eabd9116f -Author: sndyuk -Date: Fri Feb 28 20:06:01 2014 +0900 - - HHH-8374: Treat an entity wrapped by hibernate proxy equals a raw entity - -commit 10bec400d43ed6d7b13e1295fcd89996bb240019 -Author: Julien Herr -Date: Mon Feb 10 15:32:37 2014 +0100 - - HHH-9039 Typo - -commit 0b202af8f421e3fb25b2460fae2862afa52fc5b8 -Author: bleporini -Date: Wed Feb 5 07:53:16 2014 +0100 - - HHH-9039 Update collection_mapping.xml typos - -commit bb622e167f9073640889707e7e32cb82498f8d8d -Author: Evan Severson -Date: Wed Aug 21 12:48:42 2013 -0700 - - HHH-8815 Updated example code for session scoped interceptor - -commit 5a78f26d3bc5f26b7b50e138147ebfd9b7a9d5ed -Author: Jorgen Rydenius -Date: Tue Aug 20 12:32:20 2013 +0200 - - HHH-9037 Simplified debugging by improving the ClassCastException message from JavassistLazyInitializer. - -commit 8a4d736031b0c446b15eb54a0af1e9bc5b9bf3e4 -Author: Brett Meyer -Date: Wed Mar 12 12:52:54 2014 -0400 - - HHH-9034 ASTParserLoadingTest fails with postgresplus92 - -commit 60f4e6cf2876dd9c0fc1e24a3ac3abd13882a637 -Author: Brett Meyer -Date: Fri Mar 7 12:15:06 2014 -0500 - - HHH-9028 corrected Session#get for caching w/ polymorphism, improved - tests - -commit 5d3ed8946249934a1025bf91e80429600c3197f6 -Author: Guillaume Smet -Date: Fri Mar 7 15:07:00 2014 +0100 - - HHH-9028 Test case: when second level cache is enabled, the session returns the objects even if the class doesn't match - -commit 11e918f39bcd7e64b811a1966b58698eb4c2d4e0 -Author: Brett Meyer -Date: Thu Mar 6 12:13:04 2014 -0500 - - HHH-9024 correct TypedValue transients during de-serialization - -commit 69e25f5280a1aedad3bc709f105aca6b4dc8dc6f -Author: Brett Meyer -Date: Tue Mar 4 17:19:03 2014 -0500 - - HHH-7072 correcting test failure - -commit 171e2144588a9fc400b7b1a63d6ac045c59c3473 -Author: Brett Meyer -Date: Tue Mar 4 14:40:39 2014 -0500 - - HHH-7072 force recreation of element collections of components with all - nullable properties - -commit fab8b3a04a4e7ebfbb62d358c7272395abe22920 -Author: Brett Meyer -Date: Tue Mar 4 09:55:40 2014 -0500 - - HHH-9017 correct HSQL pooled sequences - -commit 94a490a04f119ced532855963d5d9bfb7acec946 -Author: Brett Meyer -Date: Mon Mar 3 10:57:21 2014 -0500 - - 4.3.4.Final post release - -commit 9ec172f7a939dce951746d8453e92bd5e33b95da (tag: 4.3.4.Final) -Author: Brett Meyer -Date: Mon Mar 3 10:55:02 2014 -0500 - - 4.3.4.Final release - -commit b8ad87dd53762d7100fb5289e30b7dd471cb2ab5 -Author: Brett Meyer -Date: Mon Mar 3 10:25:01 2014 -0500 - - 4.3.4.Final release - -commit b5f762c70bfc13ec474d53ccc8780389be1a5485 -Author: Brett Meyer -Date: Fri Feb 28 15:34:08 2014 -0500 - - 4.3.3.Final post release - -commit fa3bcd1bdab0c97ce1dac01fd34369ba0a8db34f (tag: 4.3.3.Final) -Author: Brett Meyer -Date: Fri Feb 28 14:35:41 2014 -0500 - - 4.3.3.Final release - -commit f51fead73962f3f9aacca9f554f354defc3aa45e -Author: Brett Meyer -Date: Fri Feb 28 14:00:26 2014 -0500 - - HHH-9010: Revert "HHH-8961 Reduce allocation cost of org.hibernate.cache.spi.CacheKey instances" - - This reverts commit f69e1a6b9f5b69f9c6bd36854bd77f4a8854fe4b. - -commit 835891433159261c213dac0816c99859aba23555 -Author: Brett Meyer -Date: Fri Feb 28 14:00:02 2014 -0500 - - HHH-9010: Revert "HHH-8961 corrected test failure" - - This reverts commit 0dc24f10812276f343f64afb39126e669f8782a8. - -commit fe30113b9dfec73f2249e6852fa68ddcdcc570f9 -Author: Brett Meyer -Date: Thu Feb 27 16:13:24 2014 -0500 - - 4.3.2.Final post release - -commit c83cec884a811dc4d91bba408014ed0a572d4849 (tag: 4.3.2.Final) -Author: Brett Meyer -Date: Thu Feb 27 15:54:38 2014 -0500 - - (correction) 4.3.2.Final release - -commit cffeb311f730a2520aa3511139631562abd5cfdc -Author: Brett Meyer -Date: Thu Feb 27 13:40:01 2014 -0500 - - 4.3.3.Final release - -commit ac16473511efbbd4a71756b7b1969473d5d33da9 -Author: Sanne Grinovero -Date: Wed Feb 26 15:03:56 2014 +0000 - - HHH-9003 Avoid allocating arrays in most methods of ComponentType - -commit 64f6ea7d610ea5e926ff299c1a161fbd4935e5b4 -Author: Sanne Grinovero -Date: Sun Feb 9 22:36:41 2014 +0000 - - HHH-8950 Avoid repeated array allocation for sqlTypes - -commit b840a9edc896c46d5b05624a93daeafca79573bc -Author: Brett Meyer -Date: Wed Feb 26 18:55:09 2014 -0500 - - HHH-8878 corrected id conflict in CoreMessageLogger - -commit 0f4886d63a3b23c20cd16ce65491840f0e62fdf3 -Author: Sanne Grinovero -Date: Wed Feb 26 01:45:46 2014 +0000 - - HHH-8878 Remove some dead code - -commit 8826c3037137f8c00769afc802e4fe2e5ddb9786 -Author: Sanne Grinovero -Date: Wed Feb 26 18:51:27 2014 -0500 - - HHH-8878 Avoid hot allocation in PooledLoOptimizer - - Conflicts: - hibernate-core/src/main/java/org/hibernate/id/enhanced/OptimizerFactory.java - -commit 5b2bd9aa4805507b9ecee5f6579617374a9da8d3 -Author: Sanne Grinovero -Date: Wed Feb 26 18:47:52 2014 -0500 - - HHH-8878 Fix logged message about PooledLoOptimizer being created - - Conflicts: - hibernate-core/src/main/java/org/hibernate/id/enhanced/OptimizerFactory.java - -commit 5475d9f964925cc36b258a751e982db46fcf9c52 -Author: Sanne Grinovero -Date: Wed Feb 26 17:41:22 2014 -0500 - - HHH-9001 Unnecessary Stack object being allocated in - org.hibernate.engine.internal.Cascade - - Conflicts: - hibernate-core/src/main/java/org/hibernate/engine/internal/Cascade.java - -commit 84f6fde1b33b36798f30f8f2adc557270b1dfbbb -Author: Brett Meyer -Date: Wed Feb 26 17:22:05 2014 -0500 - - Revert "HHH-8945 introduced "hibernate.session.initial_capacity" to reduce" - - This reverts commit 949adc92c23e64112129c72b2e849d9c12347da4. - -commit 927c2031d1cf3c696c9ea68ca3593adf3ff69e43 -Author: Brett Meyer -Date: Wed Feb 26 17:21:55 2014 -0500 - - Revert "HHH-8945 increased default map size" - - This reverts commit d3d2c4c5492e60c1bf3e5b5462943b4bc490027c. - -commit 3b2a09d2e7146bc3cee7c95bdec8203fc3dbef36 -Author: Lukasz Antoniak -Date: Mon Feb 24 22:18:08 2014 +0100 - - HHH-8968 - Fix and test by FiatLox - -commit 34a45c57227489bdec998017fa8029e2e1499a5c -Author: Sanne Grinovero -Date: Mon Feb 24 17:06:04 2014 +0000 - - CheckStyle: Improve formatting of org.hibernate.event.spi.LoadEvent - -commit 49e28ee34e7a5b4e4552971ff25119a1f5ba9b53 -Author: Sanne Grinovero -Date: Mon Feb 24 16:51:14 2014 +0000 - - HHH-8984 Reintroduce the previous EntityEntry constructor as a deprecated delegate (for stable branches only) - -commit 70a7c7a8210cc8e67043a3cce5ecf57b72d894f2 -Author: Sanne Grinovero -Date: Mon Feb 24 16:47:29 2014 +0000 - - HHH-8984 EntityEntry slimming: remove EntityMode and tenantId fields - -commit 5bdef580bd2f1f9f7ce2d05a3fe0e61401e2d668 -Author: Sanne Grinovero -Date: Sat Feb 22 00:02:30 2014 +0000 - - HHH-8991 Cache lookup of identifier Type and associated EntityPersister for each EntityType - -commit de927ce547463a431d218c33d1801c9dfa2e8165 -Author: Furkan Kamaci -Date: Thu Feb 20 14:10:58 2014 +0200 - - HHH-8989 - Logic mismatch between AbstractQueryImpl and LimitHelper for setMaxResults(0) is fixed. - -commit a7b4d6dcb27d775a4764408626f6c8d6ca78087d -Author: Brett Meyer -Date: Tue Feb 18 22:08:32 2014 -0500 - - HHH-8983 log/clear Statement warnings on JdbcCoordinator#release - -commit 0dc24f10812276f343f64afb39126e669f8782a8 -Author: Brett Meyer -Date: Tue Feb 18 16:00:56 2014 -0500 - - HHH-8961 corrected test failure - Conflicts: - hibernate-infinispan/src/test/java/org/hibernate/test/cache/infinispan/functional/cluster/EntityCollectionInvalidationTestCase.java - -commit 85e158d16180acd44df338d5fe47354a3a30b437 -Author: Sanne Grinovero -Date: Tue Feb 18 00:54:59 2014 +0000 - - HHH-8977 Guess reasonable size for ArrayList and IdentitySet for Query perform - -commit d3d2c4c5492e60c1bf3e5b5462943b4bc490027c -Author: Brett Meyer -Date: Tue Feb 18 14:53:34 2014 -0500 - - HHH-8945 increased default map size - -commit 11ab464d9b3e8307ba04ad972e0ccf943c92be5d -Author: Sanne Grinovero -Date: Tue Feb 11 01:19:08 2014 +0000 - - HHH-8954 Avoid LockOptions allocation in LoadEvent unless strictly required - -commit f69e1a6b9f5b69f9c6bd36854bd77f4a8854fe4b -Author: Sanne Grinovero -Date: Wed Feb 12 11:35:36 2014 +0000 - - HHH-8961 Reduce allocation cost of org.hibernate.cache.spi.CacheKey instances - - Remove tenantId field from CacheKey: use a different type when tenants are needed. - Also remove the Type as we should be able to rely on the entityOrRoleName String. - -commit af5804a49cc8a93a61733def6e1df779d6a2e02e -Author: Sanne Grinovero -Date: Tue Feb 18 13:05:46 2014 +0000 - - HHH-8939 Reduce contention on initialization of ColumnNameCache instances by loaders - -commit 949adc92c23e64112129c72b2e849d9c12347da4 -Author: Brett Meyer -Date: Mon Feb 10 15:00:56 2014 -0500 - - HHH-8945 introduced "hibernate.session.initial_capacity" to reduce - StatefulPersistenceContext's Map#resize calls - -commit bc8533366ac031728f93d0b9f67f80561899deac -Author: Andrej Golovnin -Date: Tue Feb 4 22:05:06 2014 +0100 - - HHH-8950 Avoid useless creation of an array in #getColumnSpan(Mapping). - -commit 61fb6609073ab1eaec9bb48a680022c7ca10c959 -Author: Brett Meyer -Date: Wed Feb 12 13:00:42 2014 -0500 - - HHH-8814 simplified the test a bit - -commit 6660bd8d37d17a0450783758d1ff80eb81f8a695 -Author: Benoit GUERIN -Date: Tue Feb 11 11:01:11 2014 +0100 - - HHH-8814 : test case - -commit 37c4e172af33c83d0b310bc93096f6fdb404d333 -Author: Benoit GUERIN -Date: Mon Dec 23 10:01:55 2013 +0100 - - HHH-8814 : Sequence generators on HSQLDB starts on 1 by default - -commit fa707a7de7fe9903399cd41bb420c957a322f2d3 -Author: Brett Meyer -Date: Tue Feb 11 15:16:23 2014 -0500 - - HHH-8946 corrected bug in register(ResultSet, Statement), improved - javadoc - -commit f3da202b4c02182f174f3565ccf54491ef67b041 -Author: Sanne Grinovero -Date: Fri Feb 7 18:28:20 2014 +0000 - - HHH-8946 Optimize JdbcCoordinatorImpl for CPU performance - - - unnecessary HashMap lookups - - size HashMap allocations appropriately - - a leak of tracked statements - - complex logging logic - -commit 7f9dc27de9e0965f404218e6d8e71263c32adc0a -Author: Sanne Grinovero -Date: Sat Feb 8 01:23:06 2014 +0000 - - HHH-8947 Refactor also the Alternative registry to use the new ConcurrentServiceBinding - -commit 324d5536e4d4108515f87e76183dd2a5270f44b2 -Author: Sanne Grinovero -Date: Fri Feb 7 18:56:57 2014 +0000 - - HHH-8947 Optimize performance of ServiceRegistry for intense lookup, small contents and almost no writes - -commit cb58f0bd68cee6d9a07caadb8a9518af01faa86f -Author: Brett Meyer -Date: Mon Feb 10 17:24:09 2014 -0500 - - HHH-3482 corrected imports - -commit b97a1b3749a8298e2c0175f032bf6ac061526d8f -Author: Brett Meyer -Date: Mon Feb 10 17:10:00 2014 -0500 - - HHH-3482 formatting - -commit b47dd338d2b85271a25df85f121003d840275f63 -Author: mukhanov -Date: Sun Jan 12 15:06:08 2014 +0400 - - HHH-3482 Fixed StatelessSession inserting bug + test - -commit 76aede601f97e0bec7d699e2f9c5003160a9d130 -Author: Brett Meyer -Date: Mon Feb 10 16:40:21 2014 -0500 - - HHH-8845 formatting - -commit 6329be56fff50e88f7b9360e0213479a29cac647 -Author: Paul Lysak -Date: Thu Jan 23 22:59:34 2014 +0200 - - HHH-8845 - More informative error message - -commit 9f215c84759193ca852423cdee961b2ed53284cf -Author: akotlyarov -Date: Sat Jan 25 22:40:16 2014 +0200 - - HHH-7205: Added catching exception for executing session.get when session cache contains proxy for non-existing object - -commit acd7c3046fb3de5e22168aac52d564efb117ae0a -Author: Brett Meyer -Date: Mon Feb 10 16:24:37 2014 -0500 - - HHH-7205 test assertion - -commit 2ecd96158e51908aa8416ba97e5af0abae05744b -Author: akotlyarov -Date: Sat Jan 25 22:16:07 2014 +0200 - - HHH-7205: Added test to show bug exists when execute session.get after session.load for not-existing entity - -commit 50d1be9e2d13e2f0fdcab6ae808612fa2440d43b -Author: Thomas Jones-Low -Date: Wed Jan 22 12:07:24 2014 -0500 - - HHH-8930 Make the rebuildSessionFactory() method be more aggressive about closing - -commit 4656176ea99927c20ea3eae7b3e73778d7349e02 -Author: Thomas Jones-Low -Date: Tue Dec 31 19:45:23 2013 -0500 - - HHH-8900 annotations OneToOne test fail with some sequence supporting - dialects - - Conflicts: - hibernate-core/src/test/java/org/hibernate/test/annotations/onetoone/OneToOneTest.java - -commit 0fa057c150e9dbf64d005a3a2219361e3882fe01 -Author: Brett Meyer -Date: Fri Feb 7 11:50:27 2014 -0500 - - HHH-8921 in-memory value generation (INSERT) only works if - hibernate.id.new_generator_mappings is enabled - -commit 29cf10b3e21dd573c74a4c440404d66da84133e7 -Author: Brett Meyer -Date: Fri Feb 7 11:10:19 2014 -0500 - - HHH-8942 log level checks should not be static - -commit 3e40bfab129bf669cd26ee156f526e6ba754bf9f -Author: Sanne Grinovero -Date: Fri Feb 7 11:06:08 2014 -0500 - - HHH-8942 Micro polishing in hot method of TransactionCoordinatorImpl - - Conflicts: - hibernate-core/src/main/java/org/hibernate/engine/transaction/internal/TransactionCoordinatorImpl.java - -commit 629b653cc7dd25821fa7b625702af4f8976a4b37 -Author: Brett Meyer -Date: Fri Feb 7 10:01:24 2014 -0500 - - HHH-8922 ClassLoaderServiceImpl#getResources should use LinkedHashSet to - preserve ordering - -commit bbe47141962886b5ab0a2bd54e11eb5c7e5d851f -Author: Brett Meyer -Date: Fri Feb 7 09:57:06 2014 -0500 - - HHH-8942 reorganized TransactionCoordinatorImpl#attemptToRegisterJtaSync - to further reduce log level checks - -commit 687682a62059e8695c9f5cda7eee2f22562ac10f -Author: Brett Meyer -Date: Thu Feb 6 14:04:47 2014 -0500 - - HHH-8942 reduced logging hits in TransactionCoordinatorImpl - -commit 4ef7cd9696d3aa8fa7347943624050341a0e9cd6 -Author: Brett Meyer -Date: Tue Feb 4 12:30:53 2014 -0500 - - HHH-8777 corrected configurations used in pom plugin - -commit 4fd5bc25b9bedbffc6f8837ae0e0f56c47b60813 -Author: Brett Meyer -Date: Tue Feb 4 12:03:59 2014 -0500 - - HHH-8747 evictQueryRegions should evict the default region - -commit 518bda7a43c0709f0846f0cac6d39a96486b67a3 -Author: Brett Meyer -Date: Fri Jan 31 11:39:02 2014 -0500 - - HHH-8777 dynamically generate descriptor dependencies - - Conflicts: - .gitignore - hibernate-enhance-maven-plugin/src/main/resources/META-INF/maven/plugin.xml - hibernate-enhance-maven-plugin/src/main/resources/META-INF/maven/plugin.xml.original - tooling/hibernate-enhance-maven-plugin/src/main/resources/META-INF/maven/plugin.xml - -commit be4f2e186dffaa7520b3df24fd567cc010ea3ba9 -Author: Jeremy Whiting -Date: Thu Dec 19 15:09:40 2013 +0000 - - HHH-8777 Completed implementation of Maven Enhance Plugin fixing issue - with - missing descriptor files. Mojo will automatically hook into build - lifecycle compile phase. - - Conflicts: - hibernate-enhance-maven-plugin/src/main/java/org/hibernate/bytecode/enhance/plugins/MavenEnhancePlugin.java - settings.gradle - tooling/hibernate-maven-plugin/hibernate-maven-plugin.gradle - -commit 24a8b63b40fd96c39ab6c1d1837e7aa9fb5d7aec -Author: Brett Meyer -Date: Thu Jan 30 13:15:50 2014 -0500 - - HHH-8914 double negation broken on JPA criteria - -commit 2a55763e4043e9126b0b56275ccdb2c66710bef7 -Author: Brett Meyer -Date: Thu Jan 30 11:52:27 2014 -0500 - - HHH-8822 ValueHolder fields need to be transient if owned by a - Serializable class - - Conflicts: - hibernate-core/src/main/java/org/hibernate/metamodel/internal/MetadataImpl.java - -commit 612e795ad2db491060bfc72d70fffa1bd2ceb7e2 -Author: Lukasz Antoniak -Date: Wed Jan 29 22:29:47 2014 +0100 - - HHH-8912 - Test case - (cherry picked from commit e025725f663da0b56e3895e9f9ca846e3d444a78) - -commit 7c7c65f42e52cb449537d5aef876a0baf07c2477 -Author: Labi0 -Date: Fri Dec 27 17:09:48 2013 -0500 - - HHH-8912 - @NotFound applied to *-to-one relation in superclass - (cherry picked from commit 1e7b03a2aeb65102706435fde3cfa0f084282cc1) - -commit 556e31fb2d8f5ae20763d7ef40f42cb669c0c5c1 -Author: Steve Ebersole -Date: Tue Jan 28 17:23:19 2014 -0600 - - HHH-8853 - Tomcat jdbc-pool interceptor exception - (cherry picked from commit 86d5ab0d818b8029cc5e0310ae5c64338d0f47ef) - -commit cfcf5089be7fa54dc9533d32297fc075f607bb34 -Author: Brett Meyer -Date: Tue Jan 28 17:19:06 2014 -0500 - - HHH-8674 - fixed usage of deprecated method - Configuration#buildSessionFactory() in documentation - -commit ef8efc7ae6d789f8120f68a9a7d2347f5849690b -Author: akotlyarov -Date: Sat Jan 18 22:39:16 2014 +0200 - - HHH-8674 - fixed usage of deprecated method Configuration#buildSessionFactory() in documentation - -commit 99e6883d1ce37f26564f25ee049e4bb8a85ea034 -Author: Brett Meyer -Date: Tue Jan 28 16:43:33 2014 -0500 - - HHH-8903 bi-directional fetches in entity graphs - -commit d28b3fe9db77efbcb8fc7ef1ed1b9d1ace730f09 -Author: Christian Bauer -Date: Sun Jan 19 14:15:27 2014 +0100 - - HHH-8903 Inverse @OneToMany ignored in entity graph - -commit 522ce1d974d59250cf788cef3bf4d4886d0cb9e7 -Author: Lukasz Antoniak -Date: Wed Dec 4 01:30:47 2013 +0100 - - HHH-8243 HHH-8329 - Avoid flushing in validity audit strategy - (cherry picked from commit f0bd12f823af3e5adec0978f7fc41b48d5c4e47c) - -commit d59387cd010950c0c1f31ffea09d0e6732bcfe2a -Author: Brett Meyer -Date: Wed Jan 22 15:17:37 2014 -0500 - - HHH-8864 count distinct tuples for postgres and h2 - -commit 95566f772f2ab7ec71aa2453034d9dbab26c2e06 -Author: Steve Ebersole -Date: Wed Jan 22 12:32:15 2014 -0600 - - 4.3.1 release - -commit 3ca7da3dd00cb1421c3515584b1cd76336f0c4ba (tag: 4.3.1.Final) -Author: Steve Ebersole -Date: Wed Jan 22 11:43:17 2014 -0600 - - 4.3.1 release - -commit 28334c77beb3d63e38683a123fe79d6e0b2319ac -Author: Steve Ebersole -Date: Wed Jan 22 11:14:18 2014 -0600 - - HHH-8773 - Remove cleaning as release task dep - (cherry picked from commit 79ee394e0af398d31edbed1527e14716b5f73228) - -commit 6dedb5ec4385cc3eb3d305341d59b266ba3d8315 -Author: Steve Ebersole -Date: Wed Jan 22 09:50:55 2014 -0600 - - HHH-8773 - Remove cleaning as release task dep - (cherry picked from commit 1fddb2c95ac6dbfd67248d72087b425626bba895) - -commit dcad957f19b23ade0553f77f6d8f48a8804d1c1c -Author: Jesse Sightler -Date: Fri Jan 17 22:35:39 2014 -0500 - - HHH-8884 : Made this only remove "and " and " and" - - Made this only remove "and " and " and" as otherwise tables named "android" end up being queried as "roid". - (cherry picked from commit 84b032da1df4260d1f80ce48d8ad7907146a8030) - -commit 0765dcee54b4b56d2433d9deee04b78e9310f608 -Author: Brett Meyer -Date: Mon Jan 20 18:36:06 2014 -0500 - - HHH-2988 test case - -commit 01a2ca7ec16a76b54499592ab7f6c959a3fd37cb -Author: davidmuzik -Date: Mon Aug 5 18:11:51 2013 +0200 - - HHH-2988 Update UnionSubclassEntityPersister column quoting - -commit b9e2e6935ccbf9964dfebb7037ff52ac462b44a7 -Author: Brett Meyer -Date: Mon Jan 20 15:07:48 2014 -0500 - - HHH-8404 test case - -commit 4ac4ed23db46ac9003e370341df09bc13c636e09 -Author: Benjamin Tegarden -Date: Fri Aug 2 12:41:53 2013 +0800 - - HHH-8404: Correctly render 'ListIndexExpression' - -commit 7f8d791943b1b9812dcf78cb8d5cc8842ff59e7d -Author: Steve Ebersole -Date: Thu Jan 16 11:37:20 2014 -0600 - - HHH-8865 - Create topical guide for logging - (cherry picked from commit fa4f0850c37d043e092c62f15503e6d8939c0428) - -commit 61c66f1d2cc7f29bcbc13e544b0a04e603a07543 -Author: Henrik Hoffmann -Date: Sat Jan 11 01:48:01 2014 +0100 - - HHH-8850 - fixed ex. when calling addScalar to NamedSQLQuery - - changed list instanciation from java.util.Arrays.ArrayList to - java.util.ArrayList when creating SQLQueryImpl from an - NamedSQLQueryDefinition. - - added testcase - -commit 7c69c7fb95033a46a00d1ec14af767634137cd6c -Author: Brett Meyer -Date: Tue Jan 14 22:51:03 2014 -0500 - - HHH-8855 HHH-8640 corrected EntityGraph loadplan strategy, support inheritance in SubGraphs - -commit d0a699de68342fce5ab25323503a2e0021925ecf -Author: Steve Ebersole -Date: Wed Jan 15 12:42:44 2014 -0600 - - HHH-8865 - Create topical guide for logging - (cherry picked from commit 2d26135a5ae518fb3a1a280f587c8eac5323b199) - -commit cd964a9aca13d82ff10308f2370a92caf95cbb30 -Author: Brett Meyer -Date: Tue Jan 14 19:38:44 2014 -0500 - - HHH-8855 corrected EntityGraph loadplan strategy, testcase cleanup - -commit aff694bf417b178da1c431aca915bdb9d129187d -Author: Christian Bauer -Date: Sat Jan 11 17:08:23 2014 +0100 - - HHH-8855 Failing test for multiple @ManyToOnes load graph - -commit 151719b7642cbd62c9a14827f2744890a74d76f5 -Author: Steve Ebersole -Date: Tue Jan 14 18:28:30 2014 -0600 - - HHH-8812 - JPAOverriddenAnnotationReader and @Convert annotations - (cherry picked from commit 56e6db38fc57774f44a5d6c7b178a6dc8c955e33) - -commit bb267297c1a80b0c82822cd43204a54bd629a23a -Author: Brett Meyer -Date: Tue Jan 14 14:30:05 2014 -0500 - - HHH-8863 correct StatisticalLoggingSessionEventListener partial flush - timing - -commit 78a62acc2d3e86c7229df970111813eef0598cb0 -Author: Brett Meyer -Date: Fri Jan 10 15:59:00 2014 -0500 - - HHH-5289 remove unnecessary security checks in property accessors - -commit 7bd5ef0fd9893b533912b817cebd9affc753617f -Author: Steve Ebersole -Date: Fri Jan 10 14:29:01 2014 -0600 - - HHH-8735 - Do not log deprecation warning from org.hibernate.ejb.HibernatePersistence#getProviderUtil - (cherry picked from commit 945463e3fe905669e590ffe9cba80b9cc76c529a) - -commit e463f6b6194d16695031ed2565acdbdb32af7061 -Author: Steve Ebersole -Date: Fri Jan 10 13:43:19 2014 -0600 - - HHH-8730 - uploadDocumentation task needs to stage aggregated javadocs before rsync - (cherry picked from commit 40a8657de5b3b07671a867a6faa35fbb64844463) - -commit 5963b6a4beb0811c3c8e6e0e33e5080137bc4f75 -Author: Brett Meyer -Date: Fri Jan 10 14:13:24 2014 -0500 - - HHH-2188 Query metadata gives NPE for polymorphic queries - -commit 9a9a95e104d9dbd02cbc97196c483a290112a4d7 -Author: Brett Meyer -Date: Fri Jan 10 13:15:37 2014 -0500 - - HHH-8638 global quoting breaks UC on FK - Conflicts: - hibernate-core/src/test/java/org/hibernate/test/annotations/quote/User.java - -commit 458b2dc772ce2298316f0cc0aba253f48b501110 -Author: Steve Ebersole -Date: Fri Jan 10 09:35:27 2014 -0600 - - HHH-8842 - Hibernate can't handle JodaTime Converters result (possible bug) - (cherry picked from commit 6fb5a899bdc81f720ec01fe506bfc25c4d8759d1) - -commit 5620744c5395e5c9fb8641a2b04ceadcd26e074d -Author: Steve Ebersole -Date: Thu Jan 9 13:49:18 2014 -0600 - - HHH-8809 - Support @Converter on Enumerations - (cherry picked from commit dd086407255247870bcce3164b0037e04ea4d684) - -commit 37255e688ab06840b9e1168581df82f4e60ddda3 -Author: Steve Ebersole -Date: Thu Jan 9 13:35:04 2014 -0600 - - HHH-8807 - Wrong type mapped when using AttributeConverter - (cherry picked from commit 20d813f457a92bfa2e2bd6778c533981037e22c8) - -commit 4fc9c70b0c0b33aaabc429c294f97d6763ac4932 -Author: Brett Meyer -Date: Thu Jan 9 14:41:07 2014 -0500 - - HHH-8821 corrected failing test - -commit a76a7e9b42575f00360ca02481e754c044526e07 -Author: Brett Meyer -Date: Thu Jan 9 14:26:29 2014 -0500 - - HHH-8756 cleanup - -commit f4f5264cd22a0be8fced13fb60f8f5f49a86644d -Author: Rune Steinseth -Date: Fri Jan 3 10:12:01 2014 +0100 - - HHH-8756 test cases for non select queries when lock mode is set to NONE - -commit a32b5dfa749fa6d36851af7b4aad27a803672bc4 -Author: Rune Steinseth -Date: Thu Nov 28 14:20:56 2013 +0100 - - HHH-8756 relaxed validation on non select queries when lock mode is set to NONE - -commit c4c33943f2df52f39587832655fe6517b19eb853 -Author: Brett Meyer -Date: Thu Jan 9 14:20:11 2014 -0500 - - HHH-8811 collection read causes open cursors - -commit e3040599f109cfbe517c9766b5477ff213b2cbce -Author: Brett Meyer -Date: Thu Jan 9 13:50:33 2014 -0500 - - HHH-8821 Scanning for META-INF/orm.xml does not work on Windows in jpa - mode - -commit bd0892a87d3646517438bdc8315c6a17e946c326 -Author: Brett Meyer -Date: Thu Jan 9 13:16:00 2014 -0500 - - HHH-8831 changed exception type, formatting - -commit f8d853bdc19080235f9c8c6eaf3834c75f2199d1 -Author: Christian Beikov -Date: Fri Apr 26 16:10:18 2013 +0300 - - HHH-8831 improved exception message - - When having @JoinColumn in a @CollectionTable that do not point to valid columns, the message can be really confusing. These new lines will actually enrich the exception which is thrown that the problem appeared on a specific property of a specific class. - - Please include this, since it is not always clear what the actual problem is with a mapping when an exception occurs. - -commit 770a1cb32fefb70e16438e0c7dba66035419feae -Author: Brett Meyer -Date: Thu Jan 9 11:59:13 2014 -0500 - - HHH-8827 corrected @SortNatural and @SortComparator, test case - -commit 26f19d0b4c7161aebb5f2b7223ea323901c03a94 -Author: Lukasz Antoniak -Date: Tue Nov 19 23:27:26 2013 +0100 - - HHH-8699 - Multiselect with boolean predicate - -commit 94753eae57bac98a5c3895f20bdb3e7d40c5a4f7 -Author: Brett Meyer -Date: Mon Jan 6 19:11:54 2014 -0500 - - HHH-3453 updated list of Dialects in docs - -commit b3e79f3f408d2cde16ea58d46747ee7291c95907 -Author: Brett Meyer -Date: Mon Jan 6 12:38:12 2014 -0500 - - HHH-3051 corrected CustomLoader returnTypes (different approach) - -commit 99a6fc07b62a0d14badeaf80f73a997747707fed -Author: Brett Meyer -Date: Thu Jan 2 17:44:18 2014 -0500 - - HHH-8790 added @Filter deduceAliasInjectionPoints info and examples to - user guide - -commit 2a90123991925931dd8ad83c56df33e87162b60a -Author: Brett Meyer -Date: Thu Jan 2 14:39:33 2014 -0500 - - HHH-3051 corrected Loader returnTypes - -commit fcd6f1b330f0bd4e9df05e52b043df4464ce5b4a -Author: Brett Meyer -Date: Tue Dec 17 14:28:48 2013 -0500 - - HHH-2298 WARN if using build-in conn pool - -commit 9def347be7de956ceaccd9b0869e83976c2d22c0 -Author: Brett Meyer -Date: Tue Dec 17 10:07:15 2013 -0500 - - HHH-8790 improved Filter javadoc - -commit b38365e0237094a145db6f34e7188d709b05876b -Author: Brett Meyer -Date: Tue Dec 17 10:01:31 2013 -0500 - - HHH-8790 add "escape" keyword to Template - -commit 32088f195ada4bd6a653c7856fc3191dc95dfd41 -Author: Steve Ebersole -Date: Mon Dec 16 15:25:02 2013 -0600 - - 4.3.0.Final - -commit 09b2f11afb7296ff8756d6dd5df98df75e883e48 -Author: Brett Meyer -Date: Mon Dec 16 14:02:23 2013 -0500 - - HHH-8655 Classloader conflicts with embedded OSGi frameworks - -commit 90a08ec3a2cd358016844190293ff0a40e68daff -Author: Gail Badner -Date: Mon Dec 16 10:50:22 2013 -0800 - - HHH-8774 : Add Javadoc for load plans - -commit eb5f6050685634e8adff17c1dcc1495ece82b750 -Author: Gail Badner -Date: Fri Dec 13 14:42:23 2013 -0800 - - HHH-8774 : Add Javadoc for load plans - -commit c901e5f95186e5fd07335a83e594890276b443ad -Author: Gail Badner -Date: Thu Dec 5 14:52:34 2013 -0800 - - HHH-8774 : Add Javadoc for load plans - -commit 26820e8a7768dd890fd57cef9205d7a977bdc721 -Author: Steve Ebersole -Date: Fri Dec 13 10:40:36 2013 -0600 - - HHH-6911 - Write DiscriminatorValue to DiscriminatorColumn when combined with InheritanceType#JOINED - -commit faba70203a67bc6dfb377b32e559cb3dfe63ab51 -Author: Galder Zamarreño -Date: Fri Dec 13 15:59:37 2013 +0100 - - HHH-8772 Remove removal test for PutFromLoadValidatorTest - -commit b70148a85a4cc6f7ab72c0b79a514439eccb9520 -Author: Steve Ebersole -Date: Fri Dec 13 00:56:03 2013 -0600 - - HHH-6911 - Write DiscriminatorValue to DiscriminatorColumn when combined with InheritanceType#JOINED - -commit 5329bba1ea724eabf5783c71e5127b8f84ad0fcc -Author: Steve Ebersole -Date: Fri Dec 13 00:11:25 2013 -0600 - - HHH-6911 - Write DiscriminatorValue to DiscriminatorColumn when combined with InheritanceType#JOINED - -commit e64e89b2cc6285bb624747a57377414b4f93e0db -Author: Brett Meyer -Date: Thu Dec 12 16:21:31 2013 -0500 - - HHH-8794 cleanup and formatting - -commit a2fcfc602b54b9f96d49efae7788f5d2266059f9 -Author: Matus Zamborsky -Date: Thu Dec 12 12:34:39 2013 +0100 - - HHH-8794 Support for @OrderBy without specifying attribute - -commit 3de5e65b6356a00fe51ce8abd6d3792b6f51232a -Author: Brett Meyer -Date: Thu Dec 12 14:14:13 2013 -0500 - - HHH-3541 minor xml tag correction in docs - -commit be272b66804b3f674208c18b123aff573101d26d -Author: Sanne Grinovero -Date: Thu Dec 12 18:00:15 2013 +0000 - - Fixing a typo and missing blank line in root README file - -commit 4627f7f4898769d5e9e193e7ebfba1aff73262bb -Author: Brett Meyer -Date: Wed Dec 11 13:46:54 2013 -0500 - - HHH-7630 allow joined subclass ordering to explicitly reference natural - -commit 8e2c9c7faf48ade05d1b705927b22c748cf3712d -Author: Brett Meyer -Date: Tue Dec 10 20:55:13 2013 -0500 - - HHH-8765 corrected hbm2ddl for turkish locale - -commit 637c8b4b08fab8c07406371a19c2674f67eb705d -Author: Brett Meyer -Date: Tue Dec 10 20:33:45 2013 -0500 - - HHH-8783 corrected logic - -commit e1366904fa6d820d4b7720e9150b78e03349d2c4 -Author: Brett Meyer -Date: Mon Dec 9 18:08:19 2013 -0500 - - HHH-3604 add MySQL engine to table generators - -commit 1811b48f722027757776836e348cefaf8f6ebeef -Author: Brett Meyer -Date: Mon Dec 9 15:14:56 2013 -0500 - - HHH-8783 use JPA @JoinColumn(@ForeignKey(name=...)) for constraint name - -commit 46aeb988c85f430f936d189afd0581133d89a8ce -Author: Brett Meyer -Date: Mon Dec 9 14:02:39 2013 -0500 - - HHH-8784 @Generated(ALWAYS) w/ DDL default not inserting - -commit 3883d7ca2dee218b29f64eca5cae52f62b63f73b -Author: Galder Zamarreño -Date: Mon Dec 9 17:44:43 2013 +0100 - - HHH-8772 Bigger naked invalidation timeout for PutFromLoad unit test - - * Test expects that the two invalidteKey calls happen within the naked - invalidation timeout. If they don't, the test would fail since the - second invalidate key would be removed. Increase the timeout - considerably to avoid the issue. - -commit 75f209aa358607e3a75c3bfad56c63cb81e067ee -Author: Brett Meyer -Date: Fri Dec 6 15:54:45 2013 -0500 - - HHH-8763 osgi quickstart updates - -commit c2f115e5c91784324eada013bf606f875a112130 -Author: Brett Meyer -Date: Wed Dec 4 10:13:23 2013 -0500 - - HHH-8763 osgi extension point test cases - -commit 7ee5fa104d6f81b8e49820766fdabae558ec5b64 -Author: Brett Meyer -Date: Wed Dec 4 10:12:53 2013 -0500 - - HHH-8763 osgi quickstart updates - -commit 3ff64a55c53df26cd10193d7efef272dcc549972 -Author: Brett Meyer -Date: Tue Dec 3 23:40:45 2013 -0500 - - HHH-8763 OsgiServiceUtil#getServiceImpls broken - -commit b3219affcd928130026b3ffa0720644feba63be3 -Author: Brett Meyer -Date: Wed Dec 4 15:37:25 2013 -0500 - - HHH-4638 add Firebird to StandardDialectResolver - -commit f5d1e20b12ff530eba95e8837dd68979a81c843f -Author: Steve Ebersole -Date: Thu Dec 5 14:33:00 2013 -0600 - - 4.3.0.CR2 release - -commit e8d687982613e80bfb36c063e62c55f3d57149c8 (tag: 4.3.0.CR2) -Author: Steve Ebersole -Date: Thu Dec 5 13:42:48 2013 -0600 - - 4.3.0.CR2 release - -commit 5b01205107bef2cdea47e4b5ac5384c7be48227b -Author: Brett Meyer -Date: Wed Dec 4 10:30:33 2013 -0500 - - HHH-8761 corrected osgi doc failure - -commit cb8d6c4e0669bf7efe7ebc4afba8286c558f7209 -Author: Gail Badner -Date: Tue Dec 3 15:20:08 2013 -0800 - - HHH-8750 : Move load plan implementations from spi to internal - -commit 850578c1e8ebbcaae9e2364eebbbf175b747d1f9 -Author: Gail Badner -Date: Tue Dec 3 14:21:38 2013 -0800 - - HHH-8744 : Add Javadoc for load plans - -commit c9bc9e7512c0dd6d21c53e7d30fdc468d3f55a45 -Author: Gail Badner -Date: Mon Dec 2 17:53:10 2013 -0800 - - HHH-8750 : Move load plan implementations from spi to internal - -commit a2c543e08831d8e82f9ecf9df990ed7b132cb543 -Author: Gail Badner -Date: Wed Nov 27 15:35:34 2013 -0800 - - HHH-8750 : Move load plan implementations from spi to internal - -commit ebedc75e0fb1a3c1d11bed59855aba63d0b54757 -Author: Gail Badner -Date: Wed Nov 27 01:23:46 2013 -0800 - - HHH-8750 : Move load plan implementations from spi to internal - -commit c1887675103a704d7cd83a2d1e7367db9d2edf72 -Author: Gail Badner -Date: Wed Nov 27 00:08:12 2013 -0800 - - HHH-8750 : Move load plan implementations from spi to internal - -commit 14a9d776b1d60ac33a421aac6f96f7a4a8a00a20 -Author: Gail Badner -Date: Tue Nov 26 23:09:24 2013 -0800 - - HHH-8744 : Add Javadoc for load plans - -commit 49ff975f7d5cd9666a1e6d6386381b038cf51d2b -Author: Steve Ebersole -Date: Mon Dec 2 22:11:00 2013 -0600 - - HHH-8733 - General build cleanup - -commit cacede97512c36a29a5fed857578ac035c24b4bf -Author: Steve Ebersole -Date: Mon Dec 2 21:04:53 2013 -0600 - - HHH-8733 - General build cleanup - hibernate-testing - -commit 055a750a53f24324dad9a7fe84e5aae2806c0c43 -Author: Steve Ebersole -Date: Mon Dec 2 20:53:19 2013 -0600 - - HHH-8733 - General build cleanup - -commit 5acd232e10ec0632a66ee82e4f50350ff3ea6251 -Author: Brett Meyer -Date: Mon Dec 2 14:24:58 2013 -0500 - - HHH-8761 Hibernate OSGi 4.3.0.CR1 can't discover services - -commit 8d67d64fc215fc234c8ffe26e42ec06661c4cf46 -Author: Lukasz Antoniak -Date: Thu Nov 28 20:36:59 2013 +0100 - - HHH-8701 - Fix JPQL TYPE operator test - -commit e0d6cdc0f79a5c75c910e5c26cd21ab40a6e0932 -Author: Brett Meyer -Date: Mon Dec 2 12:43:45 2013 -0500 - - HHH-8760 improve EntityGraph JPQL query hint test - -commit 685e33ae0c4dee4b21f9b8466d1d4cc763c0d1f9 -Author: Brett Meyer -Date: Mon Dec 2 10:19:08 2013 -0500 - - HHH-8759 removed java 7 dependency in OsgiClassLoader - -commit d430846076bc3efb23c85d7f0ada7a590c3da68b -Author: Brett Meyer -Date: Wed Nov 27 21:20:39 2013 -0500 - - HHH-5065 improved exception message on Configuration#getRootClassMapping - -commit bb53193a75a058f5def2ec0797d4e5248b999ede -Author: Brett Meyer -Date: Wed Nov 27 18:06:06 2013 -0500 - - HHH-8749 Error flushing with a many-to-many Map defined with - unique="true" and cascading orphan delete - -commit 73f0e7b29d70825d5b92954fbf691392eac5c826 -Author: Steve Ebersole -Date: Tue Nov 26 17:56:30 2013 -0600 - - HHH-8733 - General build cleanup - hibernate-testing - -commit b580b8e723c9e29c7e44618a33315cec67b3d14c -Author: Steve Ebersole -Date: Tue Nov 26 17:53:31 2013 -0600 - - HHH-8733 - General build cleanup - hibernate-testing - -commit 14d0116af2270f721ab23eb92c76606ac8c1c712 -Author: Steve Ebersole -Date: Tue Nov 26 17:48:25 2013 -0600 - - Revert "HHH-8733 - General build cleanup - hibernate-testing" - - This reverts commit bc2855b323a9b0560c812c3c0636fb6330c9f6c9. - -commit cea1096b12a1b302f6b2aab65f61da33eb47ba14 -Author: Steve Ebersole -Date: Tue Nov 26 17:48:09 2013 -0600 - - Revert "HHH-8733 - General build cleanup - hibernate-testing" - - This reverts commit 17a58ae0330d49c873932a8c59ab4912f5286de4. - -commit 0252895354b0acfbb255023c7213ea509ee7b04a -Author: Steve Ebersole -Date: Tue Nov 26 17:47:53 2013 -0600 - - Revert "HHH-8733 - General build cleanup - hibernate-testing" - - This reverts commit b692fbc3071703e90edd1ccd6287bc82cf4295ef. - -commit 5f0927fed6c9620a191d3598ef818c10d1c23fa5 -Author: Steve Ebersole -Date: Tue Nov 26 17:47:34 2013 -0600 - - Revert "HHH-8733 - General build cleanup - hibernate-testing" - - This reverts commit 2a9a17c79cf580aedb96563ef2e2ca6e7afe57f3. - -commit 2a9a17c79cf580aedb96563ef2e2ca6e7afe57f3 -Author: Steve Ebersole -Date: Tue Nov 26 16:38:15 2013 -0600 - - HHH-8733 - General build cleanup - hibernate-testing - -commit b692fbc3071703e90edd1ccd6287bc82cf4295ef -Author: Steve Ebersole -Date: Tue Nov 26 16:37:12 2013 -0600 - - HHH-8733 - General build cleanup - hibernate-testing - -commit 88c811bead4f261ac7ba8207235ecc6f03aa8391 -Author: Brett Meyer -Date: Tue Nov 26 13:56:20 2013 -0500 - - HHH-8748 replace Javassist's ProxyObject with Proxy - -commit 17a58ae0330d49c873932a8c59ab4912f5286de4 -Author: Steve Ebersole -Date: Tue Nov 26 13:55:29 2013 -0600 - - HHH-8733 - General build cleanup - hibernate-testing - -commit bc2855b323a9b0560c812c3c0636fb6330c9f6c9 -Author: Steve Ebersole -Date: Tue Nov 26 13:53:18 2013 -0600 - - HHH-8733 - General build cleanup - hibernate-testing - -commit ee5f5b3c69ffe7d1ca21be30133b76b71d9f9218 -Author: Brett Meyer -Date: Tue Nov 26 13:03:51 2013 -0500 - - HHH-8733 removed sourceSet handling in OSGi manifest generation - -commit d1023821b151e583c078cfcf3ffb1580e73acc23 -Author: Steve Ebersole -Date: Tue Nov 26 10:43:50 2013 -0600 - - HHH-8733 - General build cleanup - -commit aabd904ec63a127bff3b1094fae663e99249779e -Author: Brett Meyer -Date: Mon Nov 25 13:39:35 2013 -0500 - - HHH-8733 temporary fix for eclipse task - -commit f24e47018174035634ff75192deb505d9e5ffe72 -Author: Brett Meyer -Date: Mon Nov 25 13:35:25 2013 -0500 - - HHH-8341 JtaTransaction logs excessive HHH000426 warning - -commit 1566586fbf4f753104fb5d2ee09acff88d721cbb -Author: Brett Meyer -Date: Mon Nov 25 10:24:13 2013 -0500 - - HHH-8743 EntityReferenceInitializerImpl#resolveEntityKey throws - Exception in case of entityKey != null - -commit 783831f113495edb32e41624ac930a4c45ac62ea -Author: Steve Ebersole -Date: Mon Nov 25 01:07:35 2013 -0600 - - HHH-8741 - More checkstyle cleanups - -commit 8fe5460ec03942e974d4aae7d9060e20bab7f990 -Author: Steve Ebersole -Date: Sun Nov 24 20:07:37 2013 -0600 - - HHH-8741 - More checkstyle cleanups - -commit 66d3902ec23d30c82bb5447a98453334e6864ff0 -Author: Steve Ebersole -Date: Sun Nov 24 17:42:54 2013 -0600 - - HHH-8741 - More checkstyle cleanups - -commit 3a2c9f83e64115125e6f4267257a7f8a4213d643 -Author: Steve Ebersole -Date: Sun Nov 24 17:20:23 2013 -0600 - - HHH-8741 - More checkstyle cleanups - -commit b103b2a0ad3af744f72b05bf22ade807f058a125 -Author: Steve Ebersole -Date: Sun Nov 24 15:39:24 2013 -0600 - - HHH-8741 - More checkstyle cleanups - -commit 77c85353ab3f50634143bdab5204b5cde4cf67ab -Author: Steve Ebersole -Date: Sun Nov 24 15:29:50 2013 -0600 - - HHH-8741 - More checkstyle cleanups - -commit 4c91944fd922ff0a1e8c402c80bf18315ba828ed -Author: Steve Ebersole -Date: Sun Nov 24 15:20:45 2013 -0600 - - HHH-8741 - More checkstyle cleanups - -commit 7b69aaacb3ef6b479506289bf0ec8db12ffdb611 -Author: Steve Ebersole -Date: Sun Nov 24 15:16:12 2013 -0600 - - HHH-8741 - More checkstyle cleanups - -commit cd590470c0059981537e558a5ff6d114fd24df61 -Author: Steve Ebersole -Date: Sun Nov 24 09:44:51 2013 -0600 - - HHH-8741 - More checkstyle cleanups - -commit b6c9a56136a6c682ad408ab73d258181ea0496a4 -Author: Steve Ebersole -Date: Sat Nov 23 21:40:59 2013 -0600 - - HHH-8741 - More checkstyle cleanups - -commit e59a0170af6a9899738efdf75f6f1ae7c72505c2 -Author: Steve Ebersole -Date: Sat Nov 23 21:30:05 2013 -0600 - - HHH-8741 - More checkstyle cleanups - -commit 241868e1dd4e9b31a0d03d2e0de2b8684b4f80fc -Author: Steve Ebersole -Date: Sat Nov 23 10:06:53 2013 -0600 - - HHH-8741 - More checkstyle cleanups - -commit 8ec17e68e7f740fe788bacc809fd387f66e2b916 -Author: Steve Ebersole -Date: Sat Nov 23 00:06:06 2013 -0600 - - HHH-8741 - More checkstyle cleanups - -commit ffecce514ed05626ae50c837f515d5a1ce9de133 -Author: Steve Ebersole -Date: Fri Nov 22 21:20:27 2013 -0600 - - HHH-8733 - General build cleanup - -commit f9aa122b5e439966c21d3e343c6f4d938b2abfff -Author: Steve Ebersole -Date: Fri Nov 22 19:46:05 2013 -0600 - - HHH-8733 - General build cleanup - -commit 50d17da87034fe4ad753e8318e40bee8211b130e -Author: Steve Ebersole -Date: Fri Nov 22 18:57:02 2013 -0600 - - HHH-8733 - General build cleanup - -commit 5d09464c67ddf79276d3bdc9a7382f17f89575a4 -Author: Gail Badner -Date: Fri Nov 22 16:22:36 2013 -0800 - - HHH-8684 : Named output parameters don't work for stored procedure call - -commit 9c96e23488242db058b21f23cde45861455343f1 -Author: Steve Ebersole -Date: Fri Nov 22 16:28:43 2013 -0600 - - HHH-8739 - Tracking of JTA Synch registration thread - -commit 1b3829a95dcdcb2baf250c8c27f6ca96f93399b5 -Author: Steve Ebersole -Date: Fri Nov 22 15:28:28 2013 -0600 - - HHH-8733 - General build cleanup - -commit 608bdefc9a5e654838584d01c416b41d4526482b -Author: Steve Ebersole -Date: Fri Nov 22 15:12:39 2013 -0600 - - HHH-8739 - Tracking of JTA Synch registration thread - -commit c1612fe004b5748cabd0b7d52214fb5318574929 -Author: Steve Ebersole -Date: Fri Nov 22 14:51:56 2013 -0600 - - HHH-8733 - General build cleanup - -commit 11033040e636ae871f9db34c4f95cfed2ed61768 -Author: Brett Meyer -Date: Fri Nov 22 14:19:36 2013 -0500 - - HHH-8738 NPE in HibernateUtil if no default ehcache configuration - -commit 6f25adcfd25e44cbed3760c26862ec69c4cb7470 -Author: Steve Ebersole -Date: Thu Nov 21 13:46:03 2013 -0600 - - HHH-8734 - Update to Gradle 1.9 - -commit d47e9daf88bebfcd89f83d7419333d246be4b8c2 -Author: Brett Meyer -Date: Wed Nov 20 10:46:58 2013 -0500 - - HHH-8689 regression test - -commit c418ea147f60579d14a4061d3d8e24f509c624e4 -Author: Galder Zamarreño -Date: Thu Nov 21 13:29:18 2013 +0100 - - HHH-8624 Update to Infinispan 6.0.0.Final - -commit c7fa16abe9061956858672b102f363a0a592a4e7 -Author: Galder Zamarreño -Date: Thu Oct 17 15:12:45 2013 +0200 - - HHH-8623 Cache should be up to date after region eviction - - * Region clear now happens within the transaction of the caller, - if any. Otherwise, a new transaction is started in order to do the - clear within a transaction and so deal with situations where cache - statistics are queried outside of a transaction. - * Cache updates after the region eviction should be allowed to - happen, so if region eviction happened within the transaction, a - putFromLoad() is mapped to a normal put instead of a PFER call, - so that the data is accessible for the current transaction. This is - not an issue for situations where region has not evicted because - the session cache will have data that's been accessed in the - transaction. - * Transaction manager could be null, if region non-transactional - -commit 7788092173149a89f194a53896d3e31e0599c713 -Author: Galder Zamarreño -Date: Thu Oct 17 15:05:31 2013 +0200 - - HHH-8624 Update to Infinispan 6.0 snapshot - - * Snapshot update is only to verify that the testsuite passes with - the latest Infinispan fixes for ISPN-3639. - -commit f9c8ec9f2a6b6ed679d7250005bec46a4ca7e83c -Author: Brett Meyer -Date: Wed Nov 20 16:52:56 2013 -0500 - - 4.3.0.CR1 post-release - -commit 4e37d0ad8a5790307fc98a6d8493a368e716a00a -Author: Brett Meyer -Date: Wed Nov 20 15:51:17 2013 -0500 - - 4.3.0.CR1 post-release - -commit b1d38a2040aa1689b648f5200dead1c7f21e6a21 (tag: 4.3.0.CR1) -Author: Steve Ebersole -Date: Wed Nov 20 12:18:52 2013 -0600 - - release 4.3.0.CR1 - -commit 7deda8c34bfeed28c72517e6cbe78a622ef3e739 -Author: Steve Ebersole -Date: Wed Nov 20 11:31:54 2013 -0600 - - HHH-8720 - Create an index for the topical guides - -commit 412d5d6fca676afdc536909d4befda1d4ca5e536 -Author: Gail Badner -Date: Wed Nov 20 04:18:22 2013 -0800 - - HHH-8662 : Deprecate functionality for initialized many-to-many collections of proxies - -commit f679a3c783a2dbdd23a4c9f2677a2a1f2942c598 -Author: Gail Badner -Date: Wed Nov 20 02:21:31 2013 -0800 - - HHH-8597 : Rename org.hibernate.loader.plan2 to org.hibernate.loader.plan - -commit 8e2f2a9da6cd3748dbc2ebb203a7027c45c463d2 -Author: Gail Badner -Date: Wed Nov 20 01:38:46 2013 -0800 - - HHH-8597 : Delete org.hibernate.loader.plan2 and related code - -commit b42b759a0da192c6dec7c988e6cb1df79fb273a1 -Author: Gail Badner -Date: Tue Nov 19 23:09:14 2013 -0800 - - HHH-8722 HHH-8723 : Reorg AbstractLoadPlanBuildingAssociationVisitationStrategy and add Any support - -commit eeb5a3f2c2a7b28948c5efbdc01e07e6191012f4 -Author: Gail Badner -Date: Tue Nov 19 21:48:22 2013 -0800 - - HHH-8722 HHH-8723 : Reorg AbstractLoadPlanBuildingAssociationVisitationStrategy and add Any support - -commit ed4fafeb5020e7597aed2769d712af71543fd234 -Author: Gail Badner -Date: Tue Nov 19 20:04:14 2013 -0800 - - HHH-8722 HHH-8723 : Reorg AbstractLoadPlanBuildingAssociationVisitationStrategy and add Any support - -commit 9d8fa394e3c3deead2e023559e3e0e2de4696bfd -Author: Gail Badner -Date: Tue Nov 19 19:05:38 2013 -0800 - - HHH-8722 HHH-8723 : Reorg AbstractLoadPlanBuildingAssociationVisitationStrategy and add Any support - -commit 7693826b7796f2122f0a8a20e83bdc73791ea1ec -Author: Gail Badner -Date: Tue Nov 19 14:16:31 2013 -0800 - - HHH-8722 HHH-8723 : Reorg AbstractLoadPlanBuildingAssociationVisitationStrategy and add Any support - -commit ec348c32fde4a035752bff2536c893c277c0d18c -Author: Gail Badner -Date: Mon Nov 18 22:42:03 2013 -0800 - - HHH-8722 HHH-8723 : Reorg AbstractLoadPlanBuildingAssociationVisitationStrategy and add Any support - -commit de7cddc8797d41c469ca2823cdb5806d7f0bb252 -Author: Gail Badner -Date: Mon Nov 18 21:44:06 2013 -0800 - - HHH-8722 HHH-8723 : Reorg AbstractLoadPlanBuildingAssociationVisitationStrategy and add Any support - -commit 4e6f3a975357cda4519df8972f5be95cf7ff0745 -Author: Steve Ebersole -Date: Tue Nov 19 17:29:22 2013 -0600 - - HHH-8692 - Document value generation feature - -commit 475aba7c0f533223014e33329c2dfe3e43ba7f84 -Author: Steve Ebersole -Date: Tue Nov 19 14:11:05 2013 -0600 - - HHH-8720 - Create an index for the topical guides - -commit 834a71bc6d679ea695a46075597f663ceed4b69c -Author: Brett Meyer -Date: Tue Nov 19 18:09:28 2013 -0500 - - HHH-8721 CoreMessageLogger conflicts - -commit 8580b2916139047798ac64cc2eea5fc6205b3b87 -Author: Steve Ebersole -Date: Tue Nov 19 11:28:01 2013 -0600 - - HHH-8709 - SynchronizationCallbackCoordinator is calling Thread.currentThread way too often - -commit fe6263936e9956a105db4b23473f6bdc1fbbaa65 -Author: Brett Meyer -Date: Mon Nov 18 18:27:37 2013 -0500 - - HHH-8686 FumTest hangs on mysql55 - -commit 465c3b1e9c9fe76a22d04a3c8eb0b4aa104abaee -Author: Steve Ebersole -Date: Mon Nov 18 16:17:31 2013 -0600 - - HHH-8684 - Named output parameters don't work for stored procedure call - -commit 162e1659c38514ef2822a3e44a5ad1d361854ac1 -Author: Steve Ebersole -Date: Mon Nov 18 15:49:55 2013 -0600 - - HHH-8684 - Named output parameters don't work for stored procedure call - -commit 67d8a538871c19ef01801c5b57d232bbc4a2a0f1 -Author: Steve Ebersole -Date: Mon Nov 18 15:36:23 2013 -0600 - - HHH-8700 - Update ORM modules using JPA metamodel generator to use the new module - -commit da6ee1e5bc936d4ada6d39a5ee3e4b5dce6a601b -Author: Steve Ebersole -Date: Mon Nov 18 14:48:10 2013 -0600 - - HHH-8693 - asciidoc is not integrated into release workflow - -commit 9a3b1417c63662c5fbd212ae615c7d5168b3b7c4 -Author: Sanne Grinovero -Date: Sat Nov 16 22:36:10 2013 +0000 - - HHH-8703 Remove need to support EntityKey de-serialization without having access to a SessionFactory - -commit d6fa2b286447e17f926906cf6867e508d6a5b87e -Author: Steve Ebersole -Date: Mon Nov 18 08:29:14 2013 -0600 - - HHH-8703 - Remove NonFlushedChanges api - -commit 220a27af64cd1f7b2b6c3e12c670e5a1f8e49ec2 -Author: Sanne Grinovero -Date: Wed Nov 13 21:47:03 2013 +0000 - - HHH-8682 org.hibernate.engine.spi.EntityKey consumes a lot of memory - -commit 15adff22ce7585a5a92b3a59f108fddfc305b96e -Author: Sanne Grinovero -Date: Wed Nov 13 14:44:48 2013 +0000 - - HHH-8679 Relax synchronized block in Loader#wrapResultSetIfEnabled - -commit e64376eb2bd59b3cdb10297a5e30fd87aa98893b -Author: Sanne Grinovero -Date: Wed Nov 13 14:32:21 2013 +0000 - - HHH-8698 ColumnNameCache wraps and unwraps int to Integer multiple times - -commit 61a75accf5a6e8d20444726a46b52a211f0bc9e9 -Author: Sanne Grinovero -Date: Wed Nov 13 14:10:37 2013 +0000 - - HHH-8680 Relax synchronized block in TableGenerator#generate - -commit be44a1984e0dd35be062f28203beb7baba6d7633 -Author: Sanne Grinovero -Date: Wed Nov 13 13:55:05 2013 +0000 - - HHH-8681 NonNullableTransientDependencies should initialize identityMap lazily - -commit b2479bf00de3290d92d08c259775000484c9c2a4 -Author: Sanne Grinovero -Date: Wed Nov 13 22:52:38 2013 +0000 - - Whitespace and style fixes (only) - -commit 7f82763843aa0d2fab4f086b7d08b4622fc65728 -Author: Steve Ebersole -Date: Sat Nov 16 14:07:35 2013 -0600 - - HHH-8704 - ManyToOneType#scheduleBatchLoadIfNeeded creates EntityKey instances even if absolutely not necessary - -commit 449c55836515835a152d95996eae6a7a1e90798b -Author: Steve Ebersole -Date: Fri Nov 15 13:04:18 2013 -0600 - - HHH-8654 - Ability to get notified of interesting Session events - -commit 1e74abf5118cccd0f2c6e71de76be36d50453576 -Author: Steve Ebersole -Date: Fri Nov 15 12:01:14 2013 -0600 - - HHH-8654 - Ability to get notified of interesting Session events - -commit 9e58a6de69e09d37d476ca13888114aefd3e612c -Author: Steve Ebersole -Date: Wed Nov 13 18:23:48 2013 -0600 - - HHH-8694 - Move hibernate-maven-plugin and hibernate-gradle-plugin under tooling sub directory - -commit f073b979d4ae647b9ec3c1fd9c0dc44a09dac5ad -Author: Steve Ebersole -Date: Wed Nov 13 15:57:35 2013 -0600 - - HHH-8654 - Ability to get noitified of interesting Session events - -commit b7f17e94128be5d1bd2736a5a2f2175c478d6a77 -Author: Gail Badner -Date: Fri Nov 8 18:39:16 2013 -0800 - - HHH-8629 : Integrate LoadPlans into collection initializers - -commit fdf211fdd1d6e31bbdcd920eb95a6bd4f1d62d77 -Author: Gail Badner -Date: Thu Nov 7 12:50:17 2013 -0800 - - HHH-8629 : Integrate LoadPlans into collection initializers - -commit faca8f5dd40add9b954921bb7da2be9ae3a58d1c -Author: Hardy Ferentschik -Date: Tue Nov 12 16:07:00 2013 +0100 - - HHH-8483 Deleting obsolte settings.gralde in metamodel-generator project and making sure artifact is correctly named in root level settings file - -commit fe82f74a0589104bba0c13740bb8db3aaf68e0ba -Author: Strong Liu -Date: Mon Nov 11 20:54:24 2013 +0800 - - ignore target director from git - -commit 0d643af4f51a57431fe5192d9be80efbfd5891cb -Author: Hardy Ferentschik -Date: Thu Oct 31 12:08:36 2013 +0100 - - HHH-8483 Adding creation of metamodelgen ascidoc to the build. Removing obsolete docbook files - -commit 197ef85ef74d40d6f4b825dc3bac1af09e1c6b63 -Author: Hardy Ferentschik -Date: Wed Oct 30 17:03:22 2013 +0100 - - HHH-8483 Converting the docbook documentation for metamodelgen to ascidoc - -commit 5618ea53e39e47e1da5e21081cb9823048c8ac92 -Author: Hardy Ferentschik -Date: Tue Oct 29 17:39:35 2013 +0100 - - METAGEN-104 Making sure that determination of bean properties takes method name and return type into consideration - -commit b98c45f9046e66be323bfe4e259053d213695642 -Author: Hardy Ferentschik -Date: Tue Oct 29 17:36:13 2013 +0100 - - METAGEN-104 Improving the way the test source directory is discovered - -commit 052012776eb4fa0a5c6f5d398905db5605973919 -Author: Hardy Ferentschik -Date: Mon Oct 28 19:38:01 2013 +0100 - - HHH-8483 Deleting readme - -commit 9cd2851373bd1c119a9e2ef71f1d4415d29fe1e0 -Author: Hardy Ferentschik -Date: Mon Oct 28 18:53:01 2013 +0100 - - HHH-8483 Changing the license header to LGPL - -commit ff235d8c5560c26cfdd420b577afb7aeaeac3603 -Author: Hardy Ferentschik -Date: Mon Oct 28 15:16:47 2013 +0100 - - HHH-8433 Making sure javadocs and release tasks work - -commit f25ea587501d42d21fd2747bed08056e439a543b -Author: Hardy Ferentschik -Date: Fri Oct 25 21:53:32 2013 +0200 - - HHH-8483 Moving metamodelgen documentation into documentation module - -commit 7c8984469b0c690ac04c56a87d154cf14a005a26 -Author: Hardy Ferentschik -Date: Fri Oct 25 21:27:45 2013 +0200 - - HHH-8483 Getting metamodel-generator:build working - -commit dfe7fab4229f2192c595b9b33d9b71fb940b49b9 -Author: Hardy Ferentschik -Date: Fri Oct 25 20:38:39 2013 +0200 - - HHH-8483 Removing Gradle wrapper files, license.txt and changelog, since they are obsolete in the case of metamodel-generator being a sub-project of ORM - -commit cc6f4233732fe2fb1361f0f7cf9826c328e6a430 -Author: Hardy Ferentschik -Date: Fri Oct 25 12:31:40 2013 +0200 - - METAGEN-103 Adding package-info files and trying to get the file ending right for the Shops - -commit a12b9d7fd5c42b5b0ab4c44bddad73c8cc35d05c -Author: Hardy Ferentschik -Date: Thu Oct 24 16:36:33 2013 +0200 - - METAGEN-103 Fixing existing checkstyle violations - -commit 5fbcad2e8819cbc1c44a706d0d4ffaad5d66568d -Author: Hardy Ferentschik -Date: Thu Oct 24 16:29:17 2013 +0200 - - METAGEN-102 Upgrading Hibernate and JPA version - -commit bf5b146191a5c8f7efa6a56bc5a5a2c0c76f25a4 -Author: Hardy Ferentschik -Date: Thu Oct 24 16:07:45 2013 +0200 - - METAGEN-98 Switching to JUnit, adding a custom test runner and the annotations @WithClasses, @WithMappingFiles, WithProcessorOptions and @IgnoreCompilationErrors - -commit b51b230c577ee2ff668f9f099369bceeb75a1e1d -Author: Hardy Ferentschik -Date: Wed Oct 23 11:23:37 2013 +0200 - - METAGEN-101 Removing obsolete resources - -commit 4ba59c529fceea3effae926b3bb362fdb61e7c41 -Author: Hardy Ferentschik -Date: Tue Oct 22 16:32:38 2013 +0200 - - METAGEN-101 Adding release tasks and removing pom.xml - -commit fdbfbd03ec31f44bfd1e8f6daea7b9e394b0d764 -Author: Hardy Ferentschik -Date: Tue Oct 22 15:55:07 2013 +0200 - - METAGEN-101 Adding checkstyle plugin and making some style fixes (not 100% Hibernate ORM compatible yet) - -commit 0c6b6010069e87ed8c55e08c367f50e2d1e5bb56 -Author: Hardy Ferentschik -Date: Tue Oct 22 14:28:59 2013 +0200 - - METAGEN-100 Exclude generated JAXB classes from JavaDocs - -commit f68234727b52ccba7dffbe7b247c7a96e7a01485 -Author: Hardy Ferentschik -Date: Fri Oct 11 17:31:59 2013 +0200 - - METAGEN-101 Switching to Gradle - - - Basic build config - - Adding Maven publish configuration - - Adding javadocs configuration - -commit cac6d00342e8571ef86bd536602d868e53d60a32 -Author: Hardy Ferentschik -Date: Fri Aug 9 16:18:33 2013 +0200 - - METAGEN-91 Making sure that field annotated with @EmbeddedId gets added as singular attribute - - Updating tests - -commit 44aaa41339a6f534a09882de29b85e377c92358c -Author: Gunnar Morling -Date: Thu Aug 8 16:31:16 2013 +0200 - - METAGEN-85 Merging members for embeddedables and mapped superclasses lazily in order to consider only members with correct access type - -commit 042368ed3e7d39abc0f44bb9e333fd366b932ab8 -Author: Gunnar Morling -Date: Thu Aug 8 12:23:20 2013 +0200 - - METAGEN-85 Fixing typo and some raw type warnings - -commit 399bc3542f3765d54f1d77a4bad49cc0e24a338e -Author: Gunnar Morling -Date: Thu Aug 8 11:53:55 2013 +0200 - - METAGEN-94 Initializing members of mapped superclasses lazily in order to correctly take access type declared by subtypes into account - -commit b61dc5cc98bac54ff7e048706b0e516c237c2126 -Author: Gunnar Morling -Date: Tue Aug 6 16:50:25 2013 +0200 - - METAGEN-94 Adding "test-output" to .gitignore - -commit 17d640f5f5be5820c822bf43c78f415febed95c4 -Author: Gunnar Morling -Date: Thu Aug 8 10:51:42 2013 +0200 - - METAGEN-86 Clean-up (using right company name in new files, removing $Id from SVN times) - -commit 190b736f6cff2e991f10bd63dee7d0c08a7412a4 -Author: Gunnar Morling -Date: Thu Aug 8 10:46:51 2013 +0200 - - METAGEN-86 Using simple flag for tracking XML metadata completeness - -commit d49407b23d24fae1bf7d5bd83d345dd791bb5064 -Author: Hardy Ferentschik -Date: Wed Aug 7 16:42:17 2013 +0200 - - METAGEN-86 Checking now each mapping file for xml-mapping-metadata-complete. Technically this is not 100% correct since we don't differentiate between persistence units. - -commit 8ace40f3514af37ae595f3ac89c7c0510f36f284 -Author: Hardy Ferentschik -Date: Wed Aug 7 16:06:11 2013 +0200 - - METAGEN-86 Adding missing processor option - -commit 7b8b7ead72af8c7394e9dfee7d78b45861aefd7f -Author: Gunnar Morling -Date: Thu Aug 8 10:16:02 2013 +0200 - - METAGEN-92 Some clean-up (comments, headers, unused imports, typos) - -commit fb132b281c962a8c6f76e72b94924a8e947f3b78 -Author: Hardy Ferentschik -Date: Wed Aug 7 21:55:12 2013 +0200 - - METAGEN-92 Renaming XmlParser to better reflect its function - -commit 5bdb35256901127a3d249e69bb8afc32e0507bc3 -Author: Hardy Ferentschik -Date: Wed Aug 7 18:08:48 2013 +0200 - - METAGEN-92 removing '// $Id:$', reminder of svn times :-) - -commit 944ab85bf1d1904ff585aeaee6f405267e814376 -Author: Hardy Ferentschik -Date: Wed Aug 7 18:05:08 2013 +0200 - - METAGEN-92 Fixing wrong warning message - -commit 9a56f39bb2b7be7ae7e6bc833b87a372220f7340 -Author: Hardy Ferentschik -Date: Wed Aug 7 14:50:52 2013 +0200 - - METAGEN-92 Adding ability to process JPA 2.0 and 2.1 configuration files. 2.0 configuration files will be transformed by an EventReader to 2.1 - -commit 79f7957f0b8b41f7119ddad8283df3c4926e792b -Author: Hardy Ferentschik -Date: Tue Aug 6 13:47:47 2013 +0200 - - METAGEN-88 Using System.getProperty( line.separator ) in ImportContextImpl now - -commit 2cdccbaf8fd285a28749ff86f0d202a8beaaef6c -Author: Guillaume Smet -Date: Tue Aug 6 17:35:14 2013 +0200 - - METAGEN-83 Updating versions of dependencies and Maven plugins - -commit 90b023af3e084b01eb77938c72204e3c7d5540c5 -Author: Hardy Ferentschik -Date: Mon Dec 3 12:10:28 2012 +0100 - - METAGEN-90 Adding testcase - -commit c75bd2a0af8e1b03e1612de62791437f15a622aa -Author: Hardy Ferentschik -Date: Wed Mar 14 14:29:35 2012 +0100 - - METAGEN-83 Fixing JAXB incompatabilties - see also HV-528 - -commit 999632b6679ba98467bb0acb7102d0a9c34fb540 -Author: Hardy Ferentschik -Date: Wed Mar 14 14:28:52 2012 +0100 - - METAGEN-83 Removing unused constant - -commit 5cacd68cfadd9b6c61cfb05035c8a72e13500590 -Author: Sanne Grinovero -Date: Wed Mar 14 13:06:28 2012 +0000 - - METAGEN-83 Should not use path separator but file separator - -commit 73502abf60e2f546340051f8eaa2f0393a63a0f9 -Author: Sanne Grinovero -Date: Wed Mar 14 12:22:49 2012 +0000 - - METAGEN-83 Update hibernate-jpa-2.0-api to 1.0.1.Final - -commit 39a21d96b3b1419dd8d8b88d9bf92eaa53f9516f -Author: Sanne Grinovero -Date: Wed Mar 14 12:21:59 2012 +0000 - - METAGEN-83 build: specify file encoding - -commit fbbe605511161f3bc86e8a8541130d29a97a515e -Author: Sanne Grinovero -Date: Wed Mar 14 12:18:54 2012 +0000 - - METAGEN-83 build: update Maven plugin versions - -commit 0c18c38a55071e26857290361c918f781e59b6c6 -Author: Guillaume Smet -Date: Sun Mar 11 02:29:19 2012 +0100 - - METAGEN-82 Fixed a few inconsistencies in the way @MappedSuperClass - are considered - -commit 0ff88cff1fba4ef29570df6fc9577b8930cebb36 -Author: Hardy Ferentschik -Date: Mon Mar 12 12:43:41 2012 +0100 - - METAGEN-81 Formatting and moving test into its own method annotated with @TestForIssue - -commit 7bb932f5050e5696b77d1d7e98a22fdaeb4caeb3 -Author: Guillaume Smet -Date: Sun Mar 11 01:54:03 2012 +0100 - - METAGEN-81 Fixed the propagation of the access type to the @Embeddable - entities via the @Embedded link even if the access type is determined from the containing entity hierarchy - -commit f946f604717b6a23b0cfc8eb01a6ee3c4967df46 -Author: Hardy Ferentschik -Date: Wed Jan 25 16:59:34 2012 +0100 - - METAGEN-79 Unified skipGeneratedAnnotation and addGeneratedAnnotation - -commit d5110ad8bcaaba2daab6c8a114a0be69171219b6 -Author: Igor Vaynberg -Date: Mon Jul 18 11:53:44 2011 -0700 - - METAGEN-69 - -commit d155b709239f9924d8c5a72d38908347154e3c4a -Author: Hardy Ferentschik -Date: Wed Jan 25 15:35:57 2012 +0100 - - METAGEN-75 Allowing a resource path to not start with a leading / - - Updating dependencies - -commit 8177e5b84081ac8e7fb2763b2b2ac4b6ae4dc52a -Author: Hardy Ferentschik -Date: Wed Jan 25 15:08:58 2012 +0100 - - METAGEN-73 Adding the fqcn of the processor as value of @Generated. - - Also adding an option to add the generation date. - -commit 802cbcd546bb731c7adb2bff6aaab621e92b9b01 -Author: Hardy Ferentschik -Date: Fri Jan 20 13:11:25 2012 +0100 - - METAGEN-76 Fixing StringUtil#isPropertyName to ignore hashCode as persistent property - -commit 4c968d7f7ac8618c5df92815570b9dbacb3f41ad -Author: Hardy Ferentschik -Date: Fri Jan 20 12:16:36 2012 +0100 - - METAGEN-79 Adding skipGeneratedAnnotation flag. Deprecating addGeneratedAnnotation. - -commit 4ac9cbfdb37481b972580471332bbc1cdd3720b6 -Author: Hardy Ferentschik -Date: Fri Jan 20 11:57:18 2012 +0100 - - METAGEN-79 TestUtil#getFieldFromMetamodelFor() used now Class.getDeclaredField() to only access fields defined in the actual class - -commit 2d245a37983804ce864f2b76dab8b5a3f6a99841 -Author: Hardy Ferentschik -Date: Tue Jan 17 18:52:57 2012 +0100 - - METAGEN-57 Adding support for embedded id to XmlMetaEntity and adding testcase - -commit 807fa02bbf7ae8c3ed5fc2b69369248c38b93b7a -Author: Hardy Ferentschik -Date: Tue Jan 17 17:58:50 2012 +0100 - - METAGEN-57 import cleanup - -commit 6249793c48374aedf328c41ca66158d93a78de2d -Author: Hardy Ferentschik -Date: Tue Jan 17 16:54:06 2012 +0100 - - METAGEN-66 Updating testcase - -commit 86ced8bbf4ce5c62013dea484e267e207124e4aa -Author: Hardy Ferentschik -Date: Thu Jul 7 17:34:51 2011 +0200 - - METAGEN-66 Adding testcase - -commit 66b04e8f6605795fc480ecf022aec5bfaf89a779 -Author: Hardy Ferentschik -Date: Tue Jan 17 16:38:13 2012 +0100 - - METAGEN-67 making sure that mapped superclasses without Id annotation get a default access type - -commit 6146563ee8211fd3ace366ae234785071cb6a6e5 -Author: Hardy Ferentschik -Date: Tue Jan 17 16:30:23 2012 +0100 - - METAGEN-67 removing comment - -commit e8233364ea002d59ecdc958c49f19ae2a45ed15f -Author: Hardy Ferentschik -Date: Tue Jan 17 16:30:02 2012 +0100 - - METAGEN-67 removing obsolete method - -commit 434145e75df0f5ebe079cf604cc158908ed0594a -Author: Hardy Ferentschik -Date: Tue Jan 17 14:57:26 2012 +0100 - - METAGEN-52 Removing unused functions - -commit bd37d376aa3c77d62db33fb4749beab1f55bf7b2 -Author: Hardy Ferentschik -Date: Tue Jan 17 14:42:12 2012 +0100 - - METAGEN-52 Removing remaining compile time dependency for javax.persistence classes - -commit 214e357d133221755ae7b1f6982d22c3cd7c002a -Author: Hardy Ferentschik -Date: Tue Jan 17 14:03:12 2012 +0100 - - METAGEN-67 Renaming tests to reflect actual problem - -commit 99f40d7e06699be04c677d23d6feb5e88cca5d09 -Author: Hardy Ferentschik -Date: Tue Jan 17 13:49:32 2012 +0100 - - METAGEN-67 Removing direct access to JPA persistence - -commit 8d1a767b3547c0fb3ce03512909276cc241fcff0 -Author: Hardy Ferentschik -Date: Tue Jan 17 11:55:46 2012 +0100 - - METAGEN-67 Updating testcase - mapped super class does now not contain an id - -commit 170d2c9bff056bd5ec06c81e0fd19d6b0c51c0e8 -Author: Hardy Ferentschik -Date: Tue Jan 17 11:55:18 2012 +0100 - - METAGEN-67 Formatting - -commit eb4521b1e9efb7335ce1812da379d5fd944e7717 -Author: Hardy Ferentschik -Date: Tue Jan 17 11:43:17 2012 +0100 - - METAGEN-62 Package renaming - -commit e67bd078f2d78675f63acbe99af9f61c53500ce3 -Author: Hardy Ferentschik -Date: Thu Jul 7 16:05:10 2011 +0200 - - METAGEN-67 Adding testcase - -commit 5c71acf9237581d27b12a28505d7faf6f9c13ae7 -Author: Hardy Ferentschik -Date: Tue Jan 17 11:30:57 2012 +0100 - - METAGEN-62 Adding support for SortedMap and SortedSet - -commit f52e81f2571893129dd27c51fb8b8fca15d08f3e -Author: Hardy Ferentschik -Date: Thu Jul 7 16:30:54 2011 +0200 - - METAGEN-62 adding testcase - -commit 9e9b7541b5ebef3c35c40c5ede192022405c41c5 -Author: Hardy Ferentschik -Date: Mon Jan 16 16:52:55 2012 +0100 - - METAGEN-64 Making sure that non mapped classes in the hierarchy don't destroy the mapped class hierarchy - -commit 1cfdb8a67d163ea8ab23142fcfd42b559ed816a0 -Author: Hardy Ferentschik -Date: Mon Jan 16 15:54:16 2012 +0100 - - METAGEN-50, METAGEN-63 Added processor option to add @SupressWarnings annotation - - Updated documentation and made sure that documentation and implementation related to ormXml is in sync - -commit 54411e47b6ea93173703da29a7d45dcfd9abc5b6 -Author: Hardy Ferentschik -Date: Mon Jan 16 15:21:33 2012 +0100 - - METAGEN-50, METAGEN-63 Added processor option to add @SupressWarnings annotation - - Updated documentation and made sure that documentation and implementation related to ormXml is in sync - -commit 105748e7dd956cc1132c50c6d92735b559bef35b -Author: Hardy Ferentschik -Date: Mon Jan 16 13:09:19 2012 +0100 - - METAGEN-65 Updating the configuration of the maven annotation processor plugin - -commit 0f1cc39d9c17d3713657e84759151631a4bcdc48 -Author: Hardy Ferentschik -Date: Mon Jan 16 12:45:49 2012 +0100 - - METAGEN-78 Replacing @SupportedSourceVersion(RELEASE_6) with 'public SourceVersion getSupportedSourceVersion()' - -commit f88284036f8a48f13f9b036d8453f26136ff8226 -Author: Hardy Ferentschik -Date: Mon Feb 14 19:39:52 2011 +0100 - - METAGEN-55 Formatting - -commit 05c4251b7848dab3a4a18ffb3e03ad7d7a4d8b9e -Author: Hardy Ferentschik -Date: Mon Feb 14 19:39:39 2011 +0100 - - METAGEN-55 Adding license header - -commit e0e6fb097011c87ce3cf2b61bd566dff39031835 -Author: Hardy Ferentschik -Date: Mon Feb 14 19:08:13 2011 +0100 - - METAGEN-54 Cleaning up the code and making use of StringUtil.getPropertyName instead of adding a new helper method in XmlMetaEntity - -commit 5bdd8c33116432221fb0c60fe86777eb18be9539 -Author: Hardy Ferentschik -Date: Mon Feb 14 18:56:50 2011 +0100 - - METAGEN-54 Renamed test and fixed typo in test method - -commit cb900355a72740b74dce3c51b25e687f98ea0200 -Author: Hardy Ferentschik -Date: Mon Feb 14 18:31:29 2011 +0100 - - METAGEN-54 Added license headers - -commit 29b18cb62c2a525130a27628f55878ac848e2258 -Author: Martijn Blankestijn -Date: Sun Feb 13 14:03:04 2011 +0100 - - METAGEN-54 Extra check on return type from a method - -commit 643f58ef0f309d57bb16c356fb2161cbb3eb7dca -Author: Martijn Blankestijn -Date: Sun Feb 13 13:18:00 2011 +0100 - - METAGEN-54 XML-only field access type Set attribute not generated - -commit 32c02d2523039d4b1110d922cfcee95e64264a0f -Author: Hardy Ferentschik -Date: Fri Dec 3 11:17:11 2010 +0100 - - METAGEN-48 Updating the assembly configuration - - Now the metamodelgen jar gets included. We are also making sure that .git - is not included or IDE config files - -commit b73a5fd2ad15e017d7b44e22c4b2278b14ea8b4a -Author: Hardy Ferentschik -Date: Thu Dec 2 14:55:26 2010 +0100 - - METAGEN-49 Making sure that elements don't get removed from the collection while iterating over it - -commit 8b2c7b4909f783728fce0eb34cb48f970ed52a76 -Author: Hardy Ferentschik -Date: Thu Dec 2 14:53:36 2010 +0100 - - METAGEN-49 changing current version - -commit ef927a664c183daee3f4b7c2da1552af95caaefb -Author: Emmanuel Bernard -Date: Tue Nov 9 18:16:59 2010 +0100 - - METAGEN-47 Improve documentation on IntelliJ's configuration - - Reuse the same generated dir beteen IntelliJ and Maven - Add the necessary modules for generation - -commit cfc18b6cf883dc0c54beca9d037ac7c699eea204 -Author: Hardy Ferentschik -Date: Tue Nov 2 12:48:04 2010 +0100 - - METAGEN-45 Removed the second compilation. It should not be needed. - -commit b3a2c67317d29ab45b5f60054e00094e2a57b414 -Author: Hardy Ferentschik -Date: Mon Oct 18 15:15:27 2010 +0200 - - METAGEN-42 Updated persistence_2_0.xsd - -commit cfba25db99025386c0bc51a10e89e7a517cc68ac -Author: Hardy Ferentschik -Date: Fri Oct 15 17:18:50 2010 +0200 - - METAGEN-41 Updated readme and pom - -commit 4cc9058b0e68392fd3cf87c16df2e6e04b2d01e5 -Author: Hardy Ferentschik -Date: Fri Oct 15 17:03:18 2010 +0200 - - METAGEN-41 Removed all svn keyword substitution releated tags $ - -commit 5f9e26746f0e884c963010f17a46a0cc2a7b915f -Author: Hardy Ferentschik -Date: Fri Oct 15 10:07:04 2010 +0000 - - METAGEN-40 Taking care of entities in default package - -commit 3e0ecf66c0a61b7c5f0edc409d83c4c26841ed2e -Author: Hardy Ferentschik -Date: Thu Oct 7 12:22:12 2010 +0000 - - METAGEN-28 Unrelated coding style fixes - -commit 31a549765061a289e6c776d9f6f72db023764b75 -Author: Hardy Ferentschik -Date: Thu Oct 7 12:21:20 2010 +0000 - - METAGEN-28 Added check for @Type to isBasicAttribute(). Made sure @Type is not directly referenced. Added test. - -commit 1720d85543929bc715b2392dd4d4003f4b4934b6 -Author: Hardy Ferentschik -Date: Thu Oct 7 08:04:03 2010 +0000 - - METAGEN-37 fixed TypeUtils.extractClosestRealTypeAsString and added test - -commit 9dcc29c6ef363bc19195e1c26bcde7eef4f6354d -Author: Hardy Ferentschik -Date: Wed Oct 6 11:16:11 2010 +0000 - - METAGEN-35 Actual code changes and tests for the issue. - -commit d01ae40533e3ccc54175f39f67a943f94290422c -Author: Hardy Ferentschik -Date: Mon Oct 4 13:45:28 2010 +0000 - - METAGEN-36 - -commit ba43b863f5a8cd2da8540a59afd280e96e9cc545 -Author: Hardy Ferentschik -Date: Mon Oct 4 09:14:07 2010 +0000 - - METAGEN-32 Updated documentation - -commit e83b0ca9b2e8be59067db9d78d22e24c78a29846 -Author: Hardy Ferentschik -Date: Fri Oct 1 15:38:46 2010 +0000 - - METAGEN-33 Added 'addGeneratedAnnotation' option - -commit 000d5533f4aad111d3334b8db5706cbd0ed4b783 -Author: Hardy Ferentschik -Date: Fri Oct 1 14:18:53 2010 +0000 - - METAGEN-7 Assuming now that 'xml-mapping-metadata-complete' is specified for a pure xml configuration. This way I can be more specific in @SupportedAnnotationTypes - -commit 489c46b4be8bed0492f8a833ba1fc78c6d331aed -Author: Hardy Ferentschik -Date: Mon Sep 27 17:28:10 2010 +0000 - - METAGEN-30 - -commit 6098243f7ac36e5edd0cff257f38fa8161ee3474 -Author: Hardy Ferentschik -Date: Mon Sep 27 11:30:37 2010 +0000 - - METAGEN-38 Added support for Blob and a corresponding test. - -commit 1f666641d8845ff5fd3f705bfca5200935b12cb6 -Author: Hardy Ferentschik -Date: Fri Sep 24 14:04:23 2010 +0000 - - METAGEN-39 Cleanup of POM - -commit 402d21cd44fd5caa75f409c5f83691d84a6051b4 -Author: Hardy Ferentschik -Date: Wed May 12 17:17:45 2010 +0000 - - METAGEN-29 adding handling of type variables in AnnotationMetaEntity - -commit 521b477e8e8d8fcadb4e33b702bf1216bafd7efb -Author: Hardy Ferentschik -Date: Wed Apr 21 09:01:47 2010 +0000 - - METAGEN-31 - -commit f80bf48a5bb59e359f180f0957338b815449809f -Author: Hardy Ferentschik -Date: Wed Mar 10 14:28:56 2010 +0000 - - METAGEN-26 Updated readme and docbook sources - -commit 67a89cb2d7d8507bc4a3abec8ea437e59c8ffd46 -Author: Hardy Ferentschik -Date: Mon Feb 22 21:59:43 2010 +0000 - - METAGEN-27 - -commit 22db734897d8bf91d161645a4ffaea7838065f9a -Author: Hardy Ferentschik -Date: Thu Feb 18 01:07:46 2010 +0000 - - METAGEN-24 Create a mechanism to check whether xml files have changed - -commit 443ae2de29fa59f4ac831c7c68748f99b38656b6 -Author: Hardy Ferentschik -Date: Mon Feb 15 22:40:30 2010 +0000 - - METAGEN-4 - -commit 787359a073ecd7b33744d3a032973171801c4914 -Author: Hardy Ferentschik -Date: Mon Feb 15 16:09:26 2010 +0000 - - METAGEN-25 Ensure that the default package name gets used in all cases where class names can be specified - -commit 9fb1f05259af07da6ca9543179f3cc6f1bfbc3aa -Author: Hardy Ferentschik -Date: Thu Feb 11 21:08:01 2010 +0000 - - METAGEN-22 Some cleanup and optimisatons prior adding new functionality - -commit 6e039d710b63a18f6048bed5df91bd04aa19e208 -Author: Hardy Ferentschik -Date: Thu Feb 11 19:37:09 2010 +0000 - - METAGEN-22 Some cleanup and optimisatons prior adding new functionality - -commit 7856f66eb9ed2bfd624a96d849cad27148416b3c -Author: Hardy Ferentschik -Date: Thu Feb 11 17:50:02 2010 +0000 - - METAGEN-4 Added a start for the documentation - -commit 813339a647d23ead6f4df13f4eefc959d45a5eeb -Author: Hardy Ferentschik -Date: Mon Feb 1 20:49:09 2010 +0000 - - METAGEN-9 Extended infrastructure to allow the specification of persistence.xml - -commit f82b6a7d3ce741378e66f4c97fb20bd5fa7d664e -Author: Hardy Ferentschik -Date: Fri Jan 29 20:07:40 2010 +0000 - - METAGEN-19 Support @MapKeyClass overriding of the key class - -commit 1f021a6fd2f22eddce206186c38a355d1022adb0 -Author: Hardy Ferentschik -Date: Thu Jan 28 16:56:51 2010 +0000 - - METAGEN-17 Consider XML for targetEntity - -commit 149f8ae8f4ae06fa51ace4fd5f6450bd85677b49 -Author: Hardy Ferentschik -Date: Tue Jan 26 21:42:19 2010 +0000 - - METAGEN-18 Support @ElementCollection.targetClass + its XMl equivalent - -commit 19d68006f3e8899f30bbc790b4de758d16de7045 -Author: Hardy Ferentschik -Date: Tue Jan 26 18:06:40 2010 +0000 - - METAGEN-14 - -commit 6f3b00354daf8bdc62fffd12fd3940d9fcaeac7c -Author: Hardy Ferentschik -Date: Tue Jan 26 17:48:54 2010 +0000 - - METAGEN-21 - -commit 3088900b2a41f3464e184091635a80bab33cd6e6 -Author: Hardy Ferentschik -Date: Tue Jan 26 02:58:26 2010 +0000 - - METAGEN-16 Code makes use of getAnnotation() instead of getAnnotationMirrors() - -commit bc1e9f14922039ff88d11f3f1d066fc2f388738d -Author: Hardy Ferentschik -Date: Fri Jan 22 20:48:42 2010 +0000 - - METAGEN-6 Split XML parsing code out into its own class. - -commit d5f15a172f935b82ac9b5fe4945064ee9aa8c7ab -Author: Hardy Ferentschik -Date: Fri Jan 22 20:18:31 2010 +0000 - - METAGEN-10 - Switched to using Diagnostic.Kind.OTHER for debug messages. Only message in default mode is now "Hibernate JPA 2 Static-Metamodel Generator [version]" - -commit 76d2d32a4a809db9edf3b2d0701c0f6a58117192 -Author: Emmanuel Bernard -Date: Fri Jan 22 18:52:56 2010 +0000 - - METAGEN-20 better example names - -commit b78ebb332cb5bdca84cdf91d8cffc26bd2ca7e77 -Author: Emmanuel Bernard -Date: Fri Jan 22 18:38:53 2010 +0000 - - METAGEN-20 support raw collections and honor targetEntity - -commit d4dac16e32986272b0f1dbc40cdb2f8febc23a30 -Author: Emmanuel Bernard -Date: Fri Jan 15 17:58:18 2010 +0000 - - METAGEN-15 use the first upper bound when the type to be exported is a generic. - -commit 33d734f33a81a513949221eeca464167649f1315 -Author: Steve Ebersole -Date: Sun Dec 13 00:17:33 2009 +0000 - - METAGEN-11 Upgrade JPA dependency to hibernate-jpa-2.0-api-1.0.0-CR-1 - -commit 41c79d533c70c64c18c85cd225bb4a7e39a72599 -Author: Hardy Ferentschik -Date: Fri Nov 6 18:23:48 2009 +0000 - - METAGEN-8 - Made sure that the right element type is extracted in case the is a ElementCollection on Map. - I think however, there are more problems. We only cover the java.util.Map case. We need to take care of subclasses as well. - -commit fe0038ce143924c4420b9d84bfd86ee93ccfe458 -Author: Hardy Ferentschik -Date: Fri Nov 6 16:02:26 2009 +0000 - - METAGEN-5 - Added an additonal option which can be passed to the processor in order to print debug messages. Passing of the parameter is via -Adebug=true - -commit 0e9f97ce2f0ad912d4871fdc397767f552e87b00 -Author: Hardy Ferentschik -Date: Wed Nov 4 16:01:22 2009 +0000 - - METAGEN-2 - Added support for arrays. Arrays are now added to the metamodel as SingularAttribute. - We don't, however, cover the case yet where there is a @*ToMany annotation on the array - -commit 95da451ce754af086c6e01a7ec0dde1414dabad7 -Author: Hardy Ferentschik -Date: Tue Nov 3 14:52:05 2009 +0000 - - METAGEN-3 - -commit 31901374fc15460a4697e1ae2fa4cec113774b3d -Author: Hardy Ferentschik -Date: Tue Jul 7 09:04:46 2009 +0000 - - METAGEN Start of JPA metamodel processor project - -commit 1e39c4b07fe53f63ac32ee538df1bfeafa52252f -Author: Gunnar Morling -Date: Wed Nov 6 12:18:21 2013 +0100 - - HHH-2907 Adding @UpdateTimestamp generator annotation - -commit fb0d0c5cf71a990e12ba4df22176486180424f84 -Author: Gunnar Morling -Date: Wed Nov 6 12:17:51 2013 +0100 - - HHH-2907 Adding @CreationTimestamp generator annotation - -commit fd57a751b4a34675d80609f0924319fc312fff85 -Author: Gunnar Morling -Date: Wed Nov 6 10:10:15 2013 +0100 - - HHH-2907 Retrofitting @Generated, making it a generator annotation type - -commit cc30269b8412aad046a2111f5782cccebfe25965 -Author: Gunnar Morling -Date: Wed Nov 6 12:29:06 2013 +0100 - - HHH-2907 Adding support for annotation based value generation strategies - -commit a860e6559d00cb72da943eab6cebcef4c2c7dc41 -Author: Gunnar Morling -Date: Fri Nov 1 16:43:46 2013 +0100 - - HHH-2907 Changing ValueGenerator contract in order to allow implementations performing work using the JDBC connection - -commit 9938937fe768f8e544378d5bda60c8d644b5b566 -Author: Steve Ebersole -Date: Fri Nov 8 12:35:14 2013 -0600 - - HHH-8637 - Downcasting with TREAT operator should also filter results by the specified Type - -commit 246ce294a85647fb290857d16b2156743ef5a3bd -Author: Scott Marlow -Date: Fri Nov 8 09:51:31 2013 -0500 - - HHH-8688 EntityGraph should add AttributeNode's for basic NamedAttributeNode - -commit 7de7b7c2352340047160d138edd89169ac30f01f -Author: Strong Liu -Date: Fri Nov 8 21:18:37 2013 +0800 - - HHH-8688 fix org.hibernate.jpa.test.graphs.named.multiple.NamedEntityGraphsTest failure - -commit 17937f8d7972d8accf8dc53d5cf9219e65b01e98 -Author: Scott Marlow -Date: Thu Nov 7 16:52:59 2013 -0500 - - HHH-8688 recreated tck failure, will fail to get AttributeNode's from the graph - -commit 99ae2a7be51dd99cadc3257dcc39d854c14212b4 -Author: Strong Liu -Date: Fri Nov 1 14:46:39 2013 +0100 - - HHH-8285 Adding more tests - -commit 90ee768f456549867c03dbcb80be394f32997f5f -Author: Strong Liu -Date: Thu Oct 31 17:30:32 2013 +0100 - - HHH-8285 Initial JPA 2.1 entity graph support (EntityManager.find()) - -commit b3871f319b83667a399287173b283304b21be6fd -Author: Strong Liu -Date: Thu Oct 31 17:22:03 2013 +0100 - - HHH-8285 Initial JPA 2.1 entity graph support (EntityManager.find()) - -commit dd28adb1ae1517e7eb0cee6eb1aa943cfe404b6e -Author: Gail Badner -Date: Wed Nov 6 12:42:00 2013 -0800 - - HHH-8629 : Integrate LoadPlans into collection initializers - -commit e65abd026cd1a4df581324d9dfbaa9c390a9eabd -Author: Lukasz Antoniak -Date: Wed Nov 6 21:25:06 2013 +0100 - - HHH-8497 - Fix and test - -commit 3b85ae86586cc7e816255c5fdaa72d07a4872380 -Author: Strong Liu -Date: Wed Nov 6 10:19:29 2013 +0800 - - HHH-8671 WithClauseTest.testWithClause fails on all QA databases - -commit e012809fb28bca4b998f2fa1d4b19fe0b27e9cea -Author: Brett Meyer -Date: Thu Oct 31 08:41:23 2013 -0400 - - HHH-6004 improved HashMap performance in StructuredCacheEntry - -commit bdf0186a7fb290ee7870d0204f9aafb641f2521b -Author: Steve Ebersole -Date: Thu Oct 31 07:51:23 2013 -0500 - - HHH-7539 - Interceptor.afterTransactionCompletion not called when transaction completes via JTA sync - -commit 560b274fb7563ca86a2ac4ba6acaf3bc473d9105 -Author: Gail Badner -Date: Thu Oct 31 12:37:49 2013 +0100 - - HHH-8662 : Deprecate functionality for initialized many-to-many collections of proxies - -commit dd44ad459a43376704bde000eb11209a944dfe78 -Author: Brett Meyer -Date: Thu Oct 31 07:01:22 2013 -0400 - - HHH-7927 Enabling globally_quoted_identifiers breaks schema validation - if TableGenerator is used - -commit e1eef18d6223f489e31b9b32a1de5b81da431bbd -Author: Gail Badner -Date: Fri Oct 25 12:54:59 2013 -0700 - - HHH-8629 : Integrate LoadPlans into collection initializers - -commit 0e4c2a9ed5f7d4f4863ab678de9ffe74fe251676 -Author: Brett Meyer -Date: Thu Oct 31 06:30:17 2013 -0400 - - HHH-8627 corrected stupid test mistake - -commit 32b93b9788bd54c0055ef8f5eb339da76b85dbb6 -Author: Brett Meyer -Date: Thu Oct 31 05:22:05 2013 -0400 - - HHH-6167 correct Ejb3Column.checkPropertyConsistency error message - -commit 6242632b76086d23491149bbffd76b89a566d545 -Author: Brett Meyer -Date: Thu Oct 31 04:45:04 2013 -0400 - - HHH-8627 compile error in test case - -commit ca2d0578ffe8dba5876729880929ff25655d5d85 -Author: Brett Meyer -Date: Fri Oct 18 14:53:28 2013 -0400 - - HHH-8627 Support EntityGraphs through JPA Query hints - -commit 52d095be9735a04e913bd8f8344c67f86a6b19a0 -Author: Steve Ebersole -Date: Wed Oct 30 10:45:19 2013 -0500 - - HHH-8660 - NamedEntityGraphDefinition built too early - -commit 4e527d0f3ed35a2eb1daf8e5f85450478d5e9a2b -Author: Andrew Clemons -Date: Tue Oct 29 07:48:55 2013 +1300 - - HHH-8228 - enable foreign keys in HANA dialects by defaulting to 'ON UPDATE CASCADE' - -commit f52c14a65227311b51bd50888bc8bec2aa3db237 -Author: Strong Liu -Date: Tue Oct 29 15:53:46 2013 +0100 - - Revert "HHH-8285 Moving jpa/internal/metamodel and jpa/graph from hem to core" - - This reverts commit 61483966a7ea139aa0989bdde112e57e55e3599f. - -commit 61483966a7ea139aa0989bdde112e57e55e3599f -Author: Strong Liu -Date: Tue Oct 29 12:10:45 2013 +0100 - - HHH-8285 Moving jpa/internal/metamodel and jpa/graph from hem to core - -commit 1658a477fb1f07665c7275f83de59698a1bdcd69 -Author: Steve Ebersole -Date: Tue Oct 29 03:05:53 2013 -0500 - - HHH-8647 - hibernate.cache.use_reference_entries + queries - -commit 11152ea06fd00199e7301dae08b18715db6daeb5 -Author: Brett Meyer -Date: Mon Oct 28 14:26:59 2013 -0400 - - HHH-8528 correct docs and quickstarts to support stopping/restarting a - client bundle - -commit 485096a78bbd87470ac7dc8ab1d6c99fa0a03b23 -Author: Gunnar Morling -Date: Fri Oct 25 23:49:23 2013 +0200 - - HHH-8636 Wrapping all exceptions into PersistenceException in HibernatePersistenceProvider - -commit e135566c0e4cf78f7558c53ff71077f44a12d062 -Author: Brett Meyer -Date: Mon Oct 28 12:40:06 2013 -0400 - - HHH-8646 use ServiceTracker in OsgiServiceUtil - -commit 2bac8d8cbe1e83b440ebecc6a6c3b5df5ef683f4 -Author: zuchos -Date: Wed Oct 2 17:37:31 2013 +0200 - - HHH-8505: Additional test cases - -commit c9d4305bf191bcc95ceb7c5a4d6db740c71629c0 -Author: zuchos -Date: Wed Oct 2 13:46:03 2013 +0200 - - HHH-8505: Fixed todos - -commit e971a8e14a845df2dbef85f2fc71a10cbbb39d3d -Author: zuchos -Date: Tue Oct 1 11:08:23 2013 +0200 - - HHH-8505: Test that counts the revisions - -commit 4e93c91050b3b4a037b4b8c04017fa41c0e6c758 -Author: zuchos -Date: Tue Oct 1 10:40:21 2013 +0200 - - HHH-8505: Test suplemented with List of user types - -commit 180639a18be3d72fd88ac4b15e730ebee28640b2 -Author: zuchos -Date: Tue Oct 1 09:57:00 2013 +0200 - - HHH-8505: Test suplemented with user type - -commit b11c14f00c1f5cbc221bbfe416fd76e4b457e18c -Author: zuchos -Date: Tue Oct 1 09:10:06 2013 +0200 - - HHH-8505: Missing assert statement in test - -commit 03449c1d375c5e9fd58b617b35ed343d4b258469 -Author: zuchos -Date: Mon Sep 30 19:37:25 2013 +0200 - - HHH-8505: Reformating to hibernate code style - -commit 631616ec7409b6ec2ea22caed853e7160f85d908 -Author: zuchos -Date: Mon Sep 30 19:33:49 2013 +0200 - - HHH-8505: Small improvements to tests - -commit 6bc1d2ef0126f1715e1b13a7efada6400247fa13 -Author: zuchos -Date: Mon Sep 30 19:24:21 2013 +0200 - - HHH-8505: Query test cases & small fixes - -commit 4e810effe54ad6ded945766dcec2a90ad2c509cf -Author: zuchos -Date: Mon Sep 30 14:26:16 2013 +0200 - - HHH-8505: Query tests - -commit bf469ca0e410f4c5bd470fdcc9e67d52accbd787 -Author: zuchos -Date: Mon Sep 30 12:47:01 2013 +0200 - - HHH-8505: More advanced tests - -commit 7c492ddbc34febd2e0d8817e33423826f4173e72 -Author: zuchos -Date: Mon Sep 30 11:49:49 2013 +0200 - - HHH-8505: Advanced test - OneToOne & ManyToOne - -commit 0aefe3a55b7ef6fe77fb00fb22c4db607107c88f -Author: zuchos -Date: Mon Sep 30 10:01:26 2013 +0200 - - HHH-8505: boolean added to test - -commit 7dd862eeb5c046f2ddab5670161530c9a5ac24c0 -Author: zuchos -Date: Mon Sep 30 10:01:01 2013 +0200 - - HHH-8505: Better test for proxy generator - -commit f70189f41678c9107d8e8268ff40f20d9ebd847c -Author: zuchos -Date: Fri Sep 27 13:20:33 2013 +0200 - - HHH-8505: Auditing of dynamic components - -commit fcaf413accc46a00282298238cdf783d761e746b -Author: Brett Meyer -Date: Mon Oct 28 06:38:32 2013 -0400 - - HHH-8643 test case - -commit 77825fefd69c11ed9a2822dbfffc1e34ff798a6d -Author: Steve Ebersole -Date: Fri Oct 25 13:17:57 2013 -0500 - - HHH-2907 - ability to apply 'generation strategy' to generated properties - -commit 19057a4685fda7ade0e70ba99c66cb59023e98fc -Author: Brett Meyer -Date: Wed Oct 23 13:03:36 2013 -0400 - - HHH-8617 correcting test failure - -commit 203140a197b6a619e6f271210f1677022429df97 -Author: Brett Meyer -Date: Wed Oct 23 12:58:25 2013 -0400 - - HHH-8617 Revert "HHH-8517 strip time from Date descriptors" - - This reverts commit 9dba10cf9e06f581828d40003953ab54761926a3. - -commit 8e556f00299cc222c449bedc50b29914b023d9b5 -Author: Brett Meyer -Date: Tue Oct 22 22:29:45 2013 -0400 - - HHH-8579 corrected test case - -commit 1c1dd913dd1d7b490d029a04e127936867f234a3 -Author: Brett Meyer -Date: Tue Oct 22 14:41:16 2013 -0400 - - HHH-8633 register synch in OsgiJtaPlatform - -commit 0dfbad406b18d7ed4d6cecd54b5c1e02df4ee709 -Author: Brett Meyer -Date: Tue Oct 22 16:54:19 2013 -0400 - - HHH-8579 force english locale for query alias generation - -commit 859eaaa1c5056432696c7ebeff5e03adbcea8bec -Author: Steve Ebersole -Date: Thu Oct 17 15:18:32 2013 -0500 - - HHH-8619 - Account for "shadow" services as part of ServiceRegistry impls - -commit c88494698e81343b7fb92a6084f6d862f61dfc49 -Author: Steve Ebersole -Date: Thu Oct 17 11:08:30 2013 -0500 - - HHH-8625 - Wrong warning about deprecated persistence provider - -commit 381198c2065ada380360e59a1d72e9b18e8c0234 -Author: Scott Marlow -Date: Thu Oct 17 09:21:00 2013 -0400 - - HHH-8477 use unwrapped query - -commit a1e3849e5dcc0c8cabf19ce02228e019f534b99c -Author: Brett Meyer -Date: Wed Oct 16 17:21:00 2013 -0400 - - HHH-8573 refactored test case - -commit af03365c866dcc9c463aaaebb4c75e8a85d6460c -Author: Vasily Kochnev -Date: Sun Sep 29 22:40:20 2013 +0600 - - HHH-8573: Persister is taken according to the actual type of the replaced object - -commit 3a75f9fb4eeb376d3f45caca27baa85532477572 -Author: Vasily Kochnev -Date: Sun Sep 29 22:35:36 2013 +0600 - - HHH-8573: Test case illustrating creation of a superclass instance when - subclass instance needed - -commit 202e46eef26198eee7a323102e97f5b82158272e -Author: Steve Ebersole -Date: Wed Oct 16 15:12:58 2013 -0500 - - HHH-8621 - NPE in BasicConnectionCreator - -commit 1cb6be9d102752a4352ca5df3609303461c3ffec -Author: Brett Meyer -Date: Wed Oct 16 14:35:43 2013 -0400 - - HHH-8612 correct FumTest's use of Date in a composite PK - - Conflicts: - hibernate-core/src/test/java/org/hibernate/test/legacy/FumTest.java - -commit 11ce89e0ff4cead2e68d7ee55de93d4965572839 -Author: Steve Ebersole -Date: Tue Oct 15 16:00:32 2013 -0500 - - HHH-8607 - Start Topical Guide - Service Registries - -commit 67ee00a4226f7e0df11a79e99c98efe90f42c436 -Author: Steve Ebersole -Date: Tue Oct 15 15:54:33 2013 -0500 - - HHH-8607 - Start Topical Guide - Service Registries - -commit b5f52887082e88331586165c99d2ccc6f5b5cd51 -Author: Brett Meyer -Date: Tue Oct 15 14:45:58 2013 -0400 - - HHH-8611 FlushIdGenTest requires identity support - -commit 1e42894fa767db2f9f63946bdb2b2ab92fed0fd8 -Author: Juergen Zimmermann -Date: Mon Oct 7 15:48:38 2013 +0200 - - HHH-8032 OptimisticLockException with message of the wrapped StaleObjectStateException - -commit 716db5d11669c5381225d55072439a191b4feb89 -Author: Sanne Grinovero -Date: Sun Oct 13 23:25:39 2013 +0100 - - HHH-8611 DelayedPostInsertIdentifier needs to implement Comparable - -commit 7df8873e879281790a4ea37297956343b3fb3956 -Author: Steve Ebersole -Date: Mon Oct 14 20:12:47 2013 -0500 - - HHH-8607 - Start Topical Guide - Service Registries - -commit cb58851b9f2d7291c105f525a1bb35cd3ff45246 -Author: Steve Ebersole -Date: Mon Oct 14 20:11:53 2013 -0500 - - HHH-8607 - Start Topical Guide - Service Registries - -commit ba3c2f656f6a8d84576bd6cdb01e1e4964e694c6 -Author: Steve Ebersole -Date: Mon Oct 14 18:08:49 2013 -0500 - - HHH-8613 - ClassCastException in AbstractLoadPlanBuildingAssociationVisitationStrategy - -commit 67fccf231b7529df525b554b9fdf25d41c9455fe -Author: Steve Ebersole -Date: Mon Oct 14 16:56:31 2013 -0500 - - HHH-6838 - Query Paramater Binding should quote strings - -commit a96cc4bfbd6bc399287ff4a75ea2b0a8e87532c5 -Author: Steve Ebersole -Date: Mon Oct 14 14:12:23 2013 -0500 - - HHH-8607 - Start Topical Guide - Service Registries - -commit 51508921a0df05954a58d0f63aa58c7a990cd1a3 -Author: Brett Meyer -Date: Mon Oct 14 13:23:20 2013 -0400 - - HHH-6859 correct AbstractEntityManagerImpl#determineCacheStoreMode - -commit 94dd246bf4494df04469b25f7398b77f256bdd51 -Author: Brett Meyer -Date: Mon Oct 14 10:28:39 2013 -0400 - - HHH-8605 supportsTuplesInSubqueries false in sqlserver/sybase - -commit efd1278447252dfc372dfd89a4afcf2fe8f124c4 -Author: Steve Ebersole -Date: Mon Oct 14 09:21:14 2013 -0500 - - HHH-8607 - Start Topical Guide - Service Registries - -commit 162c41f9b763f2a2ef40f40391f4f37bdc07b333 -Author: Steve Ebersole -Date: Fri Oct 11 16:07:02 2013 -0500 - - HHH-8607 - Start Topical Guide - Service Registries - -commit 2fc60011e5d2dacd875d98738dc911cf4f7983eb -Author: Brett Meyer -Date: Thu Oct 10 14:45:45 2013 -0400 - - HHH-6484 remove orphaned one-to-one when association replaced while managed - -commit 2cc6b08ff2ffa0a5986268d92d0a25c3e9d36611 -Author: Steve Ebersole -Date: Fri Oct 11 10:30:57 2013 -0500 - - HHH-8607 - Start Topical Guide - Service Registries - -commit e5e5ef14ebcf6ce195e5eadc2e6ab3cafcec68f7 -Author: Lukasz Antoniak -Date: Thu Oct 3 10:45:35 2013 +0200 - - HHH-8567 - Query identifier properties - -commit f675b67c27e5c3025c80ec37baddc22e6ba6ab43 -Author: Brett Meyer -Date: Thu Oct 10 11:27:28 2013 -0400 - - HHH-8228 cleanup, formatting, check for empty constraint alter table - statements before executing - -commit c986fe9121bed7397ca771a5b28d1caa989a57ed -Author: Andrew Clemons -Date: Thu Oct 10 16:05:18 2013 +1300 - - HHH-8228 - support for SAP HANA - -commit 4d04f40fe01f08d0baf6d89fc10534f280f9d289 -Author: Brett Meyer -Date: Wed Oct 9 21:28:20 2013 -0400 - - HHH-8074 CascadingAction REFRESH should pass the entityName - -commit 6863c3da8209691c98888a8df038efb855c0bb06 -Author: Steve Ebersole -Date: Wed Oct 9 15:00:23 2013 -0500 - - 4.3.0.Beta5 release - -commit 1380068dc06edb813dc3ef59989e589e5fab5085 (tag: 4.3.0.Beta5) -Author: Steve Ebersole -Date: Wed Oct 9 13:38:13 2013 -0500 - - HHH-8354 - New dirty-checking options based on bytecode enhancement - -commit 6258647c24161906052bd34357b710466209e4fa -Author: Steve Ebersole -Date: Wed Oct 9 13:21:19 2013 -0500 - - 4.3.0.Beta5 release - -commit cf903b78f0fabe5756ce653f2a20a1c5fa39a2c9 -Author: Ståle W. Pedersen -Date: Wed Jul 10 16:14:09 2013 +0200 - - HHH-8354 - New dirty-checking options based on bytecode enhancement - -commit d476eb7e1641273160c2f3058219b0df38dac744 -Author: Strong Liu -Date: Thu Oct 10 01:14:26 2013 +0800 - - HHH-8601 remove slf4j infavor of log4j - -commit d1aef40dcb687c0c2526540396d88119d696abc4 -Author: Strong Liu -Date: Thu Oct 10 00:28:19 2013 +0800 - - HHH-8601 remove commons-logging and upgrade slf4j - -commit 2bb453ce35c831fb3264d9b08daf2132d551dc41 -Author: Brett Meyer -Date: Wed Oct 9 11:38:23 2013 -0400 - - HHH-7130 cleanup - -commit a9aaf8786141afba5a4380d1600b39b50a799cef -Author: Zbyněk Roubalík -Date: Wed Oct 9 14:35:48 2013 +0200 - - HHH-7130 Query cache eviction logging - -commit 2009a940b67751325a36aed96db84db1f51c46bf -Author: Brett Meyer -Date: Wed Oct 9 11:15:15 2013 -0400 - - HHH-8276 removing blank package-info.java - -commit bf440a4231fac86c16997e66174e13366f64ce4a -Author: Gail Badner -Date: Wed Oct 2 13:21:45 2013 -0700 - - HHH-8276 - Fix NullPointerException when hibernate.max_fetch_depth is not configured - -commit edc4a04a63837b1dd59e924f4863b8c85172e7c5 -Author: Steve Ebersole -Date: Tue Oct 1 18:07:56 2013 -0500 - - HHH-8276 - Fix AnyType handling during Nullability checking - -commit 479b873f5b59f9b81ca2d156b1c0a9c81c5cf3cd -Author: Steve Ebersole -Date: Tue Oct 1 17:20:14 2013 -0500 - - HHH-8276 - Fix AnyType handling during Nullability checking - -commit f111600e1fa0b143ab0b43b1c853248a49bae393 -Author: Gail Badner -Date: Mon Sep 23 16:11:27 2013 -0700 - - HHH-8276 - Integrate LoadPlans into UniqueEntityLoader (PoC) - -commit 4420fa71d670440e77083edfbcd3dd278abdf23c -Author: Strong Liu -Date: Tue Sep 24 05:33:13 2013 +0800 - - HHH-8276 - Integrate LoadPlans into UniqueEntityLoader (PoC) - -commit ee02fafbba6b9b95c3a58955bfc786801cae410e -Author: Gail Badner -Date: Tue Sep 17 17:04:27 2013 -0700 - - HHH-8276 - Integrate LoadPlans into UniqueEntityLoader (PoC) - -commit 1e79efd10a6848c129d4534923569316e28e94da -Author: Gail Badner -Date: Tue Sep 17 14:26:37 2013 -0700 - - HHH-8276 - Integrate LoadPlans into UniqueEntityLoader (PoC) - -commit 9e1acbac41a1bf8e5a99bc3e1ed9c96d5c2cdec5 -Author: Gail Badner -Date: Mon Sep 16 17:27:54 2013 -0700 - - HHH-8276 - Integrate LoadPlans into UniqueEntityLoader (PoC) - -commit c607e30051348f7715b5310b9ae776a3350c6353 -Author: Strong Liu -Date: Mon Sep 16 15:17:16 2013 +0800 - - HHH-8276 - Integrate LoadPlans into UniqueEntityLoader (PoC) - -commit 77d7deb0f398db1a61e2a0205964e072bb62e5b9 -Author: Gail Badner -Date: Fri Sep 6 17:03:40 2013 -0700 - - HHH-8276 - Integrate LoadPlans into UniqueEntityLoader (PoC) - -commit d6ac5359a7e826dc28073f0e9561084a614f3b1d -Author: Gail Badner -Date: Wed Sep 4 13:49:57 2013 -0700 - - HHH-8276 - Integrate LoadPlans into UniqueEntityLoader (PoC) - -commit 803c73c55502ec14fa14c39367112a2aac31477e -Author: Strong Liu -Date: Thu Aug 29 04:07:18 2013 +0800 - - HHH-8276 - Integrate LoadPlans into UniqueEntityLoader (PoC) - -commit 8638aac01a87394b8041a8a2e9e0d620eec9425b -Author: Strong Liu -Date: Tue Aug 27 14:27:53 2013 +0800 - - HHH-8276 - Integrate LoadPlans into UniqueEntityLoader (PoC) - -commit 4defc8a5d631efcfcc6fbf1be68244a3d7c9c206 -Author: Gail Badner -Date: Mon Aug 12 12:10:13 2013 -0700 - - HHH-8276 - Integrate LoadPlans into UniqueEntityLoader (PoC) - -commit 438dd9c180f9936325db15884dc62780207305fc -Author: Strong Liu -Date: Mon Aug 19 14:17:57 2013 +0800 - - HHH-8276 - Integrate LoadPlans into UniqueEntityLoader (PoC) - -commit 7d2867bf5380909167aeb8ab70ce0ade0da0a602 -Author: Strong Liu -Date: Fri Aug 16 19:12:18 2013 +0800 - - HHH-8276 - Integrate LoadPlans into UniqueEntityLoader (PoC) - -commit 712fb95b8a31685ae411b2144365d18f1869d6ff -Author: Strong Liu -Date: Thu Aug 15 18:15:18 2013 +0800 - - HHH-8276 fixing FooBarTest.testRefresh - -commit aaadcd74ee893273bb94ca302d3a88c0989ee203 -Author: Strong Liu -Date: Thu Aug 15 00:00:33 2013 +0800 - - HHH-8276 - Integrate LoadPlans into UniqueEntityLoader (PoC) - -commit c5f3ddeccb251d83a94c3db73f1e780d6676378c -Author: Strong Liu -Date: Fri Aug 9 04:21:32 2013 +0800 - - HHH-8276 - Integrate LoadPlans into UniqueEntityLoader (PoC) - -commit c83fd30d2390eefe3a4cc2aca2dd5e4bef3953e8 -Author: Strong Liu -Date: Fri Aug 9 02:50:38 2013 +0800 - - HHH-8276 - Integrate LoadPlans into UniqueEntityLoader (PoC) - -commit 6f8fdddd8421644b49f5f579150f815a20d354be -Author: Gail Badner -Date: Fri Aug 2 11:27:43 2013 -0700 - - HHH-8276 - Integrate LoadPlans into UniqueEntityLoader (PoC) - -commit 0481eb856ba253301c70cba90be3e069b3043df8 -Author: Gail Badner -Date: Mon Jul 29 23:39:04 2013 -0700 - - HHH-8276 - Integrate LoadPlans into UniqueEntityLoader (PoC) - -commit ba0d14546cb3b1126e263f743bba75ca90a5781b -Author: Gail Badner -Date: Mon Jul 29 13:26:16 2013 -0700 - - HHH-8276 - Integrate LoadPlans into UniqueEntityLoader (PoC) - -commit e1105fb6d3d3148dfeb4578851661d2f6912832c -Author: Steve Ebersole -Date: Thu Jul 25 19:35:02 2013 -0500 - - HHH-8276 - Integrate LoadPlans into UniqueEntityLoader (PoC) - -commit f32c73616014996c07a973870ac150a6acc451b9 -Author: Steve Ebersole -Date: Thu Jul 25 17:17:02 2013 -0500 - - HHH-8276 - Integrate LoadPlans into UniqueEntityLoader (PoC) - -commit b10c51eec7a14ae9b85cba47200b704bea5b7e73 -Author: Steve Ebersole -Date: Thu Jul 25 13:12:36 2013 -0500 - - HHH-8276 - Integrate LoadPlans into UniqueEntityLoader (PoC) - -commit af1061a42da6ffa19948173cc2510de291f57e52 -Author: Steve Ebersole -Date: Wed Jul 24 21:43:55 2013 -0500 - - HHH-8276 - Integrate LoadPlans into UniqueEntityLoader (PoC) - -commit 18079f346d5d0ffb3b2e5ac594e3e26296d591e7 -Author: Steve Ebersole -Date: Thu Jul 11 12:32:00 2013 -0500 - - HHH-8276 - Integrate LoadPlans into UniqueEntityLoader (PoC) - Initial reworking to remove SQL references (for reuse in Search, OGM, etc) and to split out conceptual "from clause" and "select clause" into different structures (see QuerySpaces) - -commit dc7cdf9d8803ff58191a35907414b7dd81210422 -Author: Steve Ebersole -Date: Thu Jun 20 16:21:51 2013 -0500 - - HHH-8276 - Integrate LoadPlans into UniqueEntityLoader (PoC) - -commit 456d61bd4e73f1c3f5bfe000e232c22e4875a948 -Author: Steve Ebersole -Date: Wed May 29 08:26:28 2013 -0500 - - HHH-8276 - Integrate LoadPlanAdvisor into UniqueEntityLoader (PoC) - -commit 290133158ce91815e5e727de9bd39793b3e1a7a6 -Author: Brett Meyer -Date: Tue Oct 8 21:08:15 2013 -0400 - - HHH-8595 jandex upgrade in hibernate-osgi BND - -commit c8d0204c4f7a910437529d0272007132e0892594 -Author: Steve Ebersole -Date: Tue Oct 8 17:15:38 2013 -0500 - - HHH-8595 - Update Jandex to 1.1.0.Final - -commit 6991903fdcef6afce42d13b8ba2b41b119b94898 -Author: Steve Ebersole -Date: Tue Oct 8 17:05:02 2013 -0500 - - HHH-8594 - Update to "final" version of jboss-transaction-api_1.2_spec once it is "final" - -commit cb30fefd878621b97157c96cc4af4254290452a4 -Author: Steve Ebersole -Date: Tue Oct 8 16:31:59 2013 -0500 - - HHH-8445 - Implement REF_CURSOR support for StoredProcedureQuery - -commit 6d097d202b1e10853678a87b7b60ad083a0e33f8 -Author: Brett Meyer -Date: Tue Oct 8 14:17:52 2013 -0400 - - HHH-8328 Typo in Query.list Javadoc - -commit 10383fb4bb8648a5627de74f8233f1332d11f9a3 -Author: Brett Meyer -Date: Tue Oct 8 13:24:23 2013 -0400 - - HHH-8434 CriteriaUpdate with multiple assignments incorrect - -commit ceead77b62c8f5dfd39e8a4bfdfdb96059ae0534 -Author: Brett Meyer -Date: Tue Oct 8 12:44:27 2013 -0400 - - HHH-8509 malformed LOG.tracef() - -commit 4e3d17c0d48183900bfcb00f5c4a3b4d8b7a53d1 -Author: Steve Ebersole -Date: Tue Oct 8 09:19:22 2013 -0500 - - HHH-8453 - Investigate improving DriverManager-based connection pooling - -commit 9671a4a727ddc0ae59cd1cc2eaafc4d093b42f9c -Author: Steve Ebersole -Date: Mon Oct 7 19:55:52 2013 -0500 - - HHH-8453 - Investigate improving DriverManager-based connection pooling - -commit e2697399935417367acdd8e1e365fc008aba4259 -Author: Brett Meyer -Date: Mon Oct 7 17:50:59 2013 -0400 - - HHH-7513 check for natural id resolution in NaturalIdCacheKey - -commit bb5e03cb64b238f7042b16d2243fa96e95b877d9 -Author: Brett Meyer -Date: Fri Sep 20 11:32:13 2013 -0400 - - HHH-7513 test cleanup - -commit 7cf6a6272ab3089c7eaa51d531cefab062661ed5 -Author: Guenther Demetz -Date: Thu Aug 9 11:46:18 2012 +0200 - - HHH-7513 testcase - -commit b20ac395cb8c2a0c94acc4a559f570c63950f346 -Author: Steve Ebersole -Date: Mon Oct 7 16:29:10 2013 -0500 - - HHH-8577 - ClearListener: allow to listen for clear events - -commit 3d366a526e4e90f80edea0a0111eb31bd7810ee3 -Author: Steve Ebersole -Date: Mon Oct 7 14:38:16 2013 -0500 - - HHH-8561 - hibernate.dialect_resolvers causes failures - -commit 4428464d096c6a1fff3023cb707a2384ab6c0ffb -Author: Scott Marlow -Date: Mon Oct 7 13:23:24 2013 -0400 - - HHH-8593 EntityManager.refresh should throw EntityNotFoundException if the entity no longer exists in the database - -commit bc31357436119d0e65ffb625ff03e3aec4f7faf4 -Author: Brett Meyer -Date: Mon Oct 7 15:15:29 2013 -0400 - - HHH-6255 correctly handling quoting fk names - -commit 0593cbbc5afa6f17bbfe21424ce9d7231219f2e5 -Author: Brett Meyer -Date: Mon Oct 7 14:30:48 2013 -0400 - - HHH-2155 mysql dialect should not generate automatically index for - foreign key - -commit 0ba9a3a2891d1609ac7d0e73452245524ea5c24a -Author: Brett Meyer -Date: Mon Oct 7 12:14:17 2013 -0400 - - HHH-7150 added Cache#evictAllRegions - -commit 4a898c55244587faeaf6eef585221d3601ca929b -Author: Steve Ebersole -Date: Fri Oct 4 13:39:52 2013 -0500 - - HHH-7689 - Error executing batch should abort rest of batch for "cleanliness" sake - -commit 0e164d1c9d3e5c5389bfb877f9e48881d5b95625 -Author: Steve Ebersole -Date: Fri Oct 4 12:31:29 2013 -0500 - - HHH-7689 - addToBatch in BatchingBatch blows out of error handling and doesn't abort the batch - -commit ca3b22a18c384860bb80421202a21b7059d42c41 -Author: Brett Meyer -Date: Fri Oct 4 11:40:41 2013 -0400 - - HHH-8580 clearing a map collection caused NPE - -commit 075bc8620907ba8d3ef6ac20c585035184574428 -Author: Steve Ebersole -Date: Thu Oct 3 16:52:35 2013 -0500 - - HHH-7689 - addToBatch in BatchingBatch blows out of error handling and doesn't abort the batch - -commit fa6a222ab1dd9925d95f211f38c951e0db4095ad -Author: Scott Marlow -Date: Tue Oct 1 16:05:09 2013 -0400 - - HHH-8586 Synchronization beforeCompletion/afterCompletion should check if EM is closed and this helps us pass the tck entityManagerFactoryCloseExceptions test. - -commit a3f48ec06fa303dc4eacb5367a7c2f6b5126cd72 -Author: Steve Ebersole -Date: Wed Oct 2 16:03:27 2013 -0500 - - HHH-8584 - Prefer returning UNKNOWN from PersistenceUtilHelper - -commit 3e24ee50b6e87e84620b3f2f2f013cd3e7521281 -Author: Steve Ebersole -Date: Wed Oct 2 16:02:13 2013 -0500 - - HHH-8584 - Prefer returning UNKNOWN from PersistenceUtilHelper - -commit 20756e3f9d5a503379687dae878c8525c1f0844d -Author: Brett Meyer -Date: Wed Oct 2 15:52:27 2013 -0400 - - HHH-3812 minor fix in envers docs - -commit fdcfeca511a18f0674ac1dc4363edab2a22f70c3 -Author: Brett Meyer -Date: Wed Oct 2 15:46:07 2013 -0400 - - HHH-4118 warn if hibernate.hbm2ddl.auto has unrecognized value - -commit 85bb1e11466ef7cd1e13e1b13cf873862362934f -Author: Steve Ebersole -Date: Wed Oct 2 13:40:31 2013 -0500 - - HHH-8548 - HHH-3047 causes regressions - -commit 1755f002603084abd31d9f2e1f3c228f6a1e26b8 -Author: Brett Meyer -Date: Wed Oct 2 13:45:49 2013 -0400 - - HHH-5744 check ResultSet#hasNext in GUIDGenerator - -commit bd93745aecdc3713f594117135042c0f067c7ac8 -Author: Steve Ebersole -Date: Wed Oct 2 12:14:04 2013 -0500 - - HHH-4577 - 2L query cache: Low performance of flush and commit due many unnecessary (pre)invalidate calls on UpdateTimestampsCache - -commit 739b88c5ced5f620de24c94891f3b7758883fca6 -Author: Brett Meyer -Date: Wed Oct 2 12:57:45 2013 -0400 - - HHH-5818 exception message typo - -commit 31ad26731c84e96d532755e1e45f1ffc4ae1674b -Author: Steve Ebersole -Date: Wed Oct 2 11:49:51 2013 -0500 - - HHH-4577 - 2L query cache: Low performance of flush and commit due many unnecessary (pre)invalidate calls on UpdateTimestampsCache - -commit 7faae967ca17b43596fab5446379d11c41450355 -Author: Brett Meyer -Date: Wed Oct 2 10:01:29 2013 -0400 - - HHH-6576 NPE in Ehcache HibernateEhcacheUtils - -commit 36770456637466a3fb79c123bd6914d29014db19 -Author: Brett Meyer -Date: Tue Oct 1 12:18:22 2013 -0400 - - HHH-8520 apply global quoting to HBM columns - -commit f17d8ad7c3579f0f91f6dd8adbe3131c3d6998fd -Author: Brett Meyer -Date: Mon Sep 30 16:34:26 2013 -0400 - - HHH-8578 correct DeleteExecutor's use of where-clause - -commit ffa67243b818359bfbbb3a013d1b15dc89a2ca31 -Author: Steve Ebersole -Date: Mon Sep 30 13:43:30 2013 -0500 - - HHH-8576 - Query not properly locking non-versioned entities associated with PersistenceContext - -commit 7c6b358d4fd4775c5a9d381de7d855acaacdc296 -Author: Steve Ebersole -Date: Thu Sep 26 15:40:49 2013 -0500 - - HHH-8551 - Cannot use with-clause on the RHS of a join - -commit 2060e95c40f2dfe21d30aae272d0345227ad43ea -Author: Brett Meyer -Date: Fri Sep 27 16:24:03 2013 -0400 - - HHH-8537 @UniqueConstraint naming non-existent column leads to NPE - -commit f79271d60ecab8507912cfafce20f24c7122421e -Author: Steve Ebersole -Date: Thu Sep 26 14:53:22 2013 -0500 - - HHH-8563 - javax.persistence.Query#getLockMode should throw ISE in some cases - -commit 0d7854a15d3ec8807d4d3a8e7eeed246bbaabd84 -Author: Steve Ebersole -Date: Thu Sep 26 12:22:36 2013 -0500 - - HHH-8560 - Add (trace/debug) logging of SQL ResultSet mapping info - -commit 1a621666e1a7e68192593c5f5c740469d839c6e6 -Author: Brett Meyer -Date: Tue Sep 24 17:09:32 2013 -0400 - - HHH-8551 Cannot use with-clause on the RHS of a join - -commit 00626002964a7c144412fd16086767ca7b9ee012 -Author: Steve Ebersole -Date: Wed Sep 25 13:29:45 2013 -0500 - - HHH-8550 - Order of remove/delete calls important for associated data - -commit f2b272f468b94e5eae0363733a97ee3067e6aa1b -Author: Steve Ebersole -Date: Wed Sep 25 13:19:49 2013 -0500 - - HHH-8550 - Order of remove/delete calls important for associated data - -commit 185fa1d68bea73377d0e08eaf8502d1c9c179fb3 -Author: Steve Ebersole -Date: Wed Sep 25 10:09:36 2013 -0500 - - HHH-8550 - Order of remove/delete calls important for associated data - -commit c28748f98975ada38ed55a92173fc2e5b6a31210 -Author: Brett Meyer -Date: Wed Sep 25 14:22:37 2013 -0400 - - HHH-8502 synchronize AuditConfiguration#destroy - -commit a20b0bd9eab00fa83f330da0670ee0cc09adbf78 -Author: Brett Meyer -Date: Wed Sep 25 12:09:33 2013 -0400 - - HHH-8556 QueryStructure#collectCorrelatedJoins should add - correlationRoots implementing Join - -commit 9e5ba931fb59caf4aec8e7bba8d33c3f0a23e9dc -Author: Brett Meyer -Date: Tue Sep 24 23:58:16 2013 -0400 - - HHH-8553 hibernate-osgi needs to support alternative locations for - hibernate.cfg.xml - -commit 55d941944db27e4724cfdb0696b8eac33cf8efa0 -Author: Brett Meyer -Date: Tue Sep 24 22:30:55 2013 -0400 - - HHH-8503 whoops - -commit a5e00f3201241c0180c6d4a6966a0b8ba41598c9 -Author: Brett Meyer -Date: Tue Sep 24 22:04:40 2013 -0400 - - HHH-8503 invoke determineDialect instead of constructDialect when - hibernate.dialect is blank - -commit 3740a5b37b85f54e964070c12a9805f13becd9e3 -Author: Brett Meyer -Date: Tue Sep 17 13:29:43 2013 -0400 - - HHH-8476 Bulk delete doesn't cascade delete on join table - -commit 86b2fa4317b7d9fba70e18cbdb7c4cc7d4dd1dd9 -Author: Steve Ebersole -Date: Tue Sep 24 15:13:15 2013 -0500 - - HHH-8549 - JPQL TREAT keyword handling is currently case sensitive - -commit ae3f1117e0e9aac566dc2104248dde04f4bf6f22 -Author: Steve Ebersole -Date: Mon Sep 23 16:05:22 2013 -0500 - - HHH-8529 - AttributeConverter not applied to @ElementCollection - -commit 0e40a9e6fc1ab6f7fc192084ca3cee4cb1cf67b7 -Author: Steve Ebersole -Date: Mon Sep 23 13:05:51 2013 -0500 - - HHH-8543 - Complete org.hibernate.ejb.HibernatePersistence deprecation - -commit 498735aa3791097e0fc25e918d47336f359fa5ae -Author: Steve Ebersole -Date: Mon Sep 23 12:55:55 2013 -0500 - - HHH-8478 - AttributeConverters need to be applied to JPQL and Criteria queries - -commit 2243fa68ffb336efef5be42a1b64a44788cd0bcf -Author: Brett Meyer -Date: Wed Sep 18 18:01:31 2013 -0400 - - HHH-8521 LockMode should be checked on query execution, not during call - to setLockMode - -commit 903321fe92f43860b557aee1e2d1a72fe4a6aacd -Author: Steve Ebersole -Date: Sun Sep 22 19:57:02 2013 -0500 - - HHH-8542 - javax.persistence.Query#setLockMode should throw ISE if not a SELECT JPQL or Criteria query - -commit ccd1fb07c88674725d80e320d1739bcb333a0d73 -Author: Steve Ebersole -Date: Sun Sep 22 15:36:21 2013 -0500 - - HHH-8541 - EntityManager#getLockMode should technically throw TransactionRequiredException if transaction is not active - -commit b839720cd3ee6a36a33297d4e901497fb7fa7c09 -Author: Steve Ebersole -Date: Sun Sep 22 15:03:03 2013 -0500 - - HHH-8540 - Throw ISE on attempts to create EntityManager using any form of createEntityManager accepting SynchronizationType if RESOURCE_LOCAL - -commit c9c2e0427a843c7d7ac2382cffe2bfaab0ab1436 -Author: Steve Ebersole -Date: Sun Sep 22 14:59:17 2013 -0500 - - HHH-8540 - Throw ISE on attempts to create EntityManager using any form of createEntityManager accepting SynchronizationType if RESOURCE_LOCAL - -commit 1f9c157db6e69c64407514d4baa5e6db9d21a91c -Author: Steve Ebersole -Date: Sun Sep 22 14:41:00 2013 -0500 - - HHH-8539 - @Column#table naming primary table fails - -commit 2bb866a616df23ac9229b0accdf167da47ebd40b -Author: Steve Ebersole -Date: Sun Sep 22 14:20:25 2013 -0500 - - HHH-8534 - Metamodel#managedType(SomeMappedSuperclass.class) returns null - -commit a1ff3a29cb2b8be776bc6ff0b8481733651b322e -Author: Steve Ebersole -Date: Sat Sep 21 16:55:05 2013 -0500 - - HHH-8529 - AttributeConverter not applied to @ElementCollection - -commit 4473f0302f55f3b5843acc9596b17746a2c4be74 -Author: Steve Ebersole -Date: Sat Sep 21 14:06:57 2013 -0500 - - HHH-8529 - AttributeConverter not applied to @ElementCollection - -commit 4d5174f55f966d8fe426f079a384e7c1aa2fcb7c -Author: Steve Ebersole -Date: Fri Sep 20 22:05:24 2013 -0500 - - HHH-8533 - Add tests of JPA Metamodel handling for MappedSuperclass and mixed @Id/@IdClass declaration - -commit 9360f4d9d43ced8468bec11b2e26b6c447906f37 -Author: Steve Ebersole -Date: Fri Sep 20 20:42:43 2013 -0500 - - HHH-8533 - Add tests of JPA Metamodel handling for MappedSuperclass and mixed @Id/@IdClass declaration - -commit bfb05f5694d7246da7c96c0a15a5c80a9455f7a9 -Author: Steve Ebersole -Date: Fri Sep 20 14:27:10 2013 -0500 - - HHH-8532 - ManagedType#getAttribute(String) should throw IAE rather than return null - -commit bf0eed907fc12f9bce4855071cb096e75dd8e62f -Author: Steve Ebersole -Date: Fri Sep 20 12:02:08 2013 -0500 - - HHH-8530 - Align JPA "positional parameter" handling in javax.persistence.Parameter impl - -commit 99be129200eb5be5d76a90cca1acad0771361744 -Author: Becca Gaspard -Date: Wed Sep 11 23:36:43 2013 -0700 - - HHH-8495 - Support ilike in Hibernate Envers - -commit 1889562bede3b091afa869e010f10942282a725c -Author: Steve Ebersole -Date: Thu Sep 19 17:57:19 2013 -0500 - - HHH-8525 - Hook in XML overriding of ConstructorResult for sql-result-set-mapping - -commit 9dba10cf9e06f581828d40003953ab54761926a3 -Author: Brett Meyer -Date: Thu Sep 19 14:36:02 2013 -0400 - - HHH-8517 strip time from Date descriptors - -commit 075da4fdf0779bb6f06a1b3dda4995de1df753c4 -Author: Steve Ebersole -Date: Thu Sep 19 13:55:55 2013 -0500 - - HHH-8523 - Incorrect parameter binding for Calendar and TemporalType - -commit 5a3233b9159d3934187fbc397b6404fb6ea7a808 -Author: Steve Ebersole -Date: Thu Sep 19 13:19:29 2013 -0500 - - HHH-8523 - Incorrect parameter binding for Calendar and TemporalType - -commit 611e097a04514232909984a57dc5760a12baa935 -Author: Brett Meyer -Date: Thu Sep 19 12:42:45 2013 -0400 - - HHH-8522 CompositeIdTypeBindingTest.testCompositeTypeBinding fails on - sybase157 - -commit 280313dac47d56ce564bef210076ba694e148c4b -Author: Steve Ebersole -Date: Wed Sep 18 18:54:20 2013 -0500 - - HHH-8518 - Validate EMF#addNamedQuery transfers all query settings - -commit 2f145d3985738df7ad46863649e79c657b0d2e8c -Author: Lukasz Antoniak -Date: Sat Aug 24 19:49:03 2013 +0200 - - HHH-8432 - Expanding parameters in IN clause - -commit 5a7d37aa80a2acb1a9daa678d00bdb916ce79114 -Author: Steve Ebersole -Date: Wed Sep 18 15:12:45 2013 -0500 - - HHH-8518 - Validate EMF#addNamedQuery transfers all query settings - -commit 346d958c20d9727a32ebfa8253a128d13bc1136f -Author: Steve Ebersole -Date: Wed Sep 18 14:17:59 2013 -0500 - - HHH-8518 - Validate EMF#addNamedQuery transfers all query settings - -commit feaac3b9177f1aad1ffaa601a319c3b93d94d0b1 -Author: Brett Meyer -Date: Wed Sep 18 12:19:31 2013 -0400 - - HHH-4910 docs, javadocs, formatting, minor refactoring - -commit bcd6185809ecf9202267134d646037e8acdd0939 -Author: Andy2003 -Date: Fri Sep 6 10:09:06 2013 +0200 - - HHH-4910 The collection cache is evicted if a related collection element is inserted, removed or updated - - HHH-4910 minor fixes - - HHH-4910 make this feature configurable - -commit 66b222c8bf0f63112e2317d1db808c3d634f3517 -Author: Brett Meyer -Date: Wed Sep 18 11:11:31 2013 -0400 - - HHH-8516 EnumeratedTypeTest.testTrimmedEnum fails on oracle - -commit a4d4152204a5adc1aa21495bfabafae65369bfa7 -Author: Steve Ebersole -Date: Wed Sep 18 09:52:14 2013 -0500 - - HHH-8514 - EntityManager#createQuery(CriteriaQuery) should throw IAE rather than ISE - -commit 31f50f328024b83f65f55856df25182cb92c5ed8 -Author: Steve Ebersole -Date: Wed Sep 18 08:48:51 2013 -0500 - - HHH-8515 - EntityManager#createStoredProcedureQuery( String, String...) should throw IAE if result set mapping name(s) do not exist - -commit 75dc1138dec88e8026381dee65e9582e053af809 -Author: Steve Ebersole -Date: Wed Sep 18 08:10:08 2013 -0500 - - HHH-8514 - EntityManager#createQuery(CriteriaQuery) should throw IAE rather than ISE - -commit 37d2e1804a5038481b901ccf357f2147dba7533d -Author: Steve Ebersole -Date: Wed Sep 18 07:51:01 2013 -0500 - - Added some simple tests for using the JPA Cache API - -commit a2881b3a35a3c220ad7e80c33f3bfbd0112a5084 -Author: Steve Ebersole -Date: Tue Sep 17 17:28:58 2013 -0500 - - HHH-8498 - Full ConstructorResult handling - -commit 4b2667cc40c3830188c6401f5a19bde90a8b609d -Author: Brett Meyer -Date: Tue Sep 17 16:29:29 2013 -0400 - - HHH-1835 added stddev to MySQLDialect - -commit d538b9f2e305f24fd0afea69c7bb63d94b04a53f -Author: Brett Meyer -Date: Tue Sep 17 16:19:46 2013 -0400 - - HHH-8504 add MySQL5Dialect to StandardDatabaseInfoDialectResolver - -commit 2fd4a75a7869fd0e36584e3ba1146efdf67a32e4 -Author: Steve Ebersole -Date: Tue Sep 17 13:11:55 2013 -0500 - - HHH-8510 - Add a Logger which is able to monitor the creation of new Sessions at DEBUG/TRACE level - -commit 8dae133bbab95e872dcaf9ee05437023e32dd611 -Author: Steve Ebersole -Date: Mon Sep 16 15:38:17 2013 -0500 - - HHH-4577 - 2L query cache: Low performance of flush and commit due many unnecessary (pre)invalidate calls on UpdateTimestampsCache - -commit 7bca11a5047e5346c10779d7d663e63f7c4ecb25 -Author: Anton Marsden -Date: Fri Aug 2 22:13:32 2013 +1200 - - HHH-4577: Improved performance of ActionQueue - - The ActionQueue has been seriously refactored. An ExecutableList class - has been created to manage each list of actions, and it includes - serialization behaviour that was previously in ActionQueue. Prevalidate - behaviour has changed - prevalidate is now called once per execution - list rather than once per execution. A test case has been added for - ExecutableList. There is also a new method on the Executable interface. - -commit 34459efc2ec81cf49576aa7f49fbdb7f9e3b7aec -Author: Steve Ebersole -Date: Mon Sep 16 06:37:20 2013 -0500 - - HHH-8502 - EnversIntegrator#disintegrate needs to check config for null - -commit e903b3d3cfa188b048e3d6f2d55670ead4a33e5c -Author: Juergen Zimmermann -Date: Thu Sep 12 18:04:44 2013 +0200 - - HHH-8394 Wrong processing of package-info.java on Windows - -commit ea7f1e805c01200afbe5551aeef1cdd8d2a99850 -Author: Arlo Louis O'Keeffe -Date: Thu Aug 29 13:44:25 2013 +0200 - - HHH-8500 Interbase does not have a boolean type - -commit f08ede48082414f8842cc26ba1f8b741c8cf3396 -Author: Steve Ebersole -Date: Thu Sep 12 12:15:12 2013 -0500 - - HHH-8499 - Prepare for 4.3 Beta4 release - -commit 6dcb4e3b51ed7d9054830173a0e2d83e823b5e56 (tag: 4.3.0.Beta4) -Author: Steve Ebersole -Date: Thu Sep 12 12:14:28 2013 -0500 - - HHH-8499 - Prepare for 4.3 Beta4 release - -commit 300300e1afb05d1a9004dd413b42b870f05cb438 -Author: Steve Ebersole -Date: Thu Sep 12 11:44:23 2013 -0500 - - HHH-8499 - Prepare for 4.3 Beta4 release - -commit 6968cbdfeef1387e38b68a50be9c7e19fe11bfa3 -Author: Steve Ebersole -Date: Thu Sep 12 11:37:30 2013 -0500 - - HHH-8487 - Auto-flush on JPA native SQL query - -commit 9e54c418aba33feb3e95b5f8f54df8ded6dee3a9 -Author: Steve Ebersole -Date: Thu Sep 12 11:32:51 2013 -0500 - - HHH-8499 - Prepare for 4.3 Beta4 release - -commit 93a67bec94dbf55124aaf9bdc097218812f717ba -Author: Farah Juma -Date: Wed Sep 11 13:17:09 2013 -0400 - - HHH-8492: Making the validator factory available via EntityManagerFactory.getProperties().get("javax.persistence.validation.factory"). - -commit 580af7e61be1562006aa0b026f3fe0dc9b0883dc -Author: Brett Meyer -Date: Thu Sep 12 10:43:08 2013 -0400 - - HHH-8496 TableCatalog and TableSchema arguments mistaken in DB update-script. - -commit d0b556ece6913b01cb5ecf8fd0245aae768f03ef -Author: Steve Ebersole -Date: Thu Sep 12 08:49:52 2013 -0500 - - HHH-8459 - Improved handling of JPA schema-generation target files - -commit 0bf29bc2fd522b4cd268e498147de44c4bf4d467 -Author: Steve Ebersole -Date: Thu Sep 12 07:09:49 2013 -0500 - - HHH-8493 - Implement ConstructorResults handling - -commit 312283cb0ed9d97bf5f935446d49d8836eb33604 -Author: Brett Meyer -Date: Wed Sep 11 15:46:02 2013 -0400 - - HHH-8491 formatting and improved readability - -commit d224991d1b97599ac359b6939285675aa42ee3cd -Author: Christian Beikov -Date: Mon May 13 19:55:13 2013 +0200 - - HHH-8491 Improved implementation for locale string parsing - -commit 069529915590f67649fef104e44027435fdf2e05 -Author: minman -Date: Wed Sep 4 19:05:31 2013 +0200 - - HHH-8472 @Lob annotation applies to both key and value of Map - -commit 7444c6c1393a45a5a0bcd3408f60661822ee0e95 -Author: java4dev@ -Date: Sat Sep 7 13:57:48 2013 +0200 - - HHH-8297 Typo in error message: "contains phyical column name" - -commit eef090d5bf8ce2acb9a100cc7ef569d23855a893 -Author: Brett Meyer -Date: Wed Sep 11 10:59:57 2013 -0400 - - HHH-8364 corrected test - -commit 34965da78f3c77dc542c0437ccae383d2b3871a5 -Author: beamerblvd -Date: Sat Aug 17 01:36:45 2013 -0500 - - HHH-8364 exclude-unlisted-classes parsing handles content incorrectly - - Parsing for exclude-unlisted-classes handles content within the element incorrectly. The value correctly defaults to false. and true are correctly parsed as true. However, false is incorrectly parsed as true. This commit fixes that. - -commit 3869845ee0737677270f72740a30cdd31cfc8182 -Author: Brett Meyer -Date: Wed Sep 11 10:52:35 2013 -0400 - - HHH-8364 test case - -commit d9310b13f7a12aa886b94f5c1132b48aa1de827f -Author: Steve Ebersole -Date: Wed Sep 11 12:00:17 2013 -0500 - - HHH-8490 - Remove buildDashboard dependency on check - -commit bcb84dd49b89d56791eb7bee8979784cbca0b07b -Author: Scott Marlow -Date: Wed Sep 11 12:22:55 2013 -0400 - - HHH-8442 certain EntityManager operations (createQuery()) should rollback the TX for when Runtime exceptions are thrown - -commit 4027f131e3c968b1be471ffe52469908eb65edde -Author: Steve Ebersole -Date: Wed Sep 11 10:52:48 2013 -0500 - - HHH-8487 - Auto-flush on JPA native SQL query - -commit c6fbd4be4c7094823a36c94ab5b0b45d2938ec81 -Author: Steve Ebersole -Date: Wed Sep 11 09:18:04 2013 -0500 - - HHH-8487 - Auto-flush on JPA native SQL query - -commit 05dcb8f5c1112106a3ca394ade70a9e6c9747d34 -Author: Steve Ebersole -Date: Tue Sep 10 18:46:23 2013 -0500 - - HHH-8486 - javax.persistence.Tuple#get(String,Class) impl does not validate type - -commit a3f1c247bcf81b1383d5112a601d730be90c0572 -Author: Steve Ebersole -Date: Tue Sep 10 17:16:11 2013 -0500 - - HHH-8480 - JPA Predicate#not() on a simple predicate should leave the operator as AND, not mutate it to OR - -commit cbd828217ac6849c5bb9e47564da8ded19f580ba -Author: Steve Ebersole -Date: Tue Sep 10 16:07:39 2013 -0500 - - HHH-8485 - Apply newly extracted version-injection plugin - -commit 08ab72dc5cca2ddbc985fba9f5594e9360a2d499 -Author: Brett Meyer -Date: Mon Sep 9 19:35:01 2013 -0400 - - HHH-8470 scripted hibernate-osgi test properties in Gradle, cleaned up - test environment - -commit 1fc9efb2a20c61fea6b696089520ca8f41ba426d -Author: Steve Ebersole -Date: Mon Sep 9 15:35:55 2013 -0500 - - HHH-8469 - Application of JPA 2.1 AttributeConverters - -commit b8b586a65ea07e32874c02fbbb8a1395ec98f56c -Author: Steve Ebersole -Date: Mon Sep 9 14:14:27 2013 -0500 - - HHH-8477 - Cannot create named queries at runtime - exception results - -commit d995bb9bb91314239488a40c754a86239b9d74a5 -Author: Brett Meyer -Date: Mon Sep 9 14:40:39 2013 -0400 - - HHH-8153 Criteria on Enum mapping defined in hbm.xml fails. - -commit 9db5400f8f06a0c631e579a6361336a5bcd44b73 -Author: Brett Meyer -Date: Mon Sep 9 10:41:50 2013 -0400 - - HHH-8470 corrected felix properties...again - -commit f198392364c3520e4ac04ba480515b0f7b7d279a -Author: Scott Marlow -Date: Fri Sep 6 14:42:55 2013 -0400 - - HHH-8442 certain EntityManager operations (e.g. StoredProcedureQuery.execute()) should rollback the TX for when Runtime exceptions are thrown - -commit 29ab1766c02b38c2eb3b1c2b54e3c1b3cc0a17b9 -Author: Brett Meyer -Date: Fri Sep 6 15:55:36 2013 -0400 - - HHH-8363 SessionFactoryServiceRegistryImpl should not call parent#destroy, test failures, formatting - -commit 360567beac7b81afffdd35ae037a40f372efd6ce -Author: Tomaz Cerar -Date: Fri Sep 6 20:26:01 2013 +0200 - - HHH-8363 Some more mem leak fixes - -commit fa341c66e9826a7f6a80083e9c84490116607e73 -Author: Brett Meyer -Date: Thu Sep 5 18:47:30 2013 -0400 - - HHH-8363 destroy the parent ServiceRegistry and stop its provided - -commit 3fdffcbcd41921e7ebf1effb390a0c91062bbd1e -Author: Brett Meyer -Date: Thu Sep 5 15:07:31 2013 -0400 - - HHH-8363 cleanup and formatting - -commit 5011b4a30edfa32ab37f6f7041af0f8b6535e845 -Author: Tomaz Cerar -Date: Wed Sep 4 19:22:20 2013 +0200 - - HHH-8363 ClassLoaderServiceImpl should be defined as Stoppable - - - also fix problem with JpaIntegrator holding references to beanmanager - -commit 8a0d301ba576dadda676768564022cfe971fdc6e -Author: Brett Meyer -Date: Fri Sep 6 15:47:47 2013 -0400 - - HHH-8474 accounted for Gradle 1.7's BND upgrade - -commit 9348c23e008f4b195b594c7e616658bdf69e4054 -Author: Steve Ebersole -Date: Fri Sep 6 16:47:07 2013 -0500 - - HHH-8469 - Application of JPA 2.1 AttributeConverters - -commit 1f6daa67854e1fd6c464fe3d2a98bda1047b252d -Author: Steve Ebersole -Date: Thu Sep 5 22:30:52 2013 -0500 - - HHH-8469 - Application of JPA 2.1 AttributeConverters - -commit cf7bb0dcec89924d430bc4ae0f6cb267e9d77bc1 -Author: Steve Ebersole -Date: Fri Sep 6 13:14:36 2013 -0500 - - HHH-8309 - Create hibernate-orm subprojects for maven and gradle plugins - -commit 41e29b7bade1f885a5683a2e9bf94e29096cc8e9 -Author: Steve Ebersole -Date: Fri Sep 6 10:54:08 2013 -0500 - - HHH-8474 - Upgrade to Gradle 1.7 - -commit ffd950956c4cd2f5a7e93a7423308e20caaf7814 -Author: Steve Ebersole -Date: Fri Sep 6 10:30:15 2013 -0500 - - HHH-8467 - Compiling should trigger animal-sniffer execution - -commit 46c962e9b04a883e03137962b0bdb71fdcfa0c4e -Author: Brett Meyer -Date: Thu Sep 5 13:46:44 2013 -0400 - - HHH-8468 cleanup and simplification - -commit 91a289e3a93f748d922ef3e712dc16591514d90f -Author: s.vasilyev -Date: Wed Sep 4 18:50:24 2013 +0400 - - HHH-8468 - @JoinColumn(table = "...") doesn't use NamingStrategy - -commit 0cce06fb54878222d51a9f9f5c28c091a5cc1454 -Author: s.vasilyev -Date: Tue Sep 3 20:45:35 2013 +0400 - - HHH-8468 test case - -commit a450630f3648fe4c0dde0b7e82c56af09d5b5112 -Author: Brett Meyer -Date: Thu Sep 5 12:39:55 2013 -0400 - - HHH-8464 normalize quoting on join column - -commit a5705e011e28b6502d9f460d6bceced474244a80 -Author: Brett Meyer -Date: Wed Sep 4 23:16:00 2013 -0400 - - HHH-8284 build SessionFactory before JPASchemaGenerator use to kick off - integrators - -commit 6963dc88d0fd1522997b4e0d28438f1f9ca93e0f -Author: Brett Meyer -Date: Wed Sep 4 22:38:18 2013 -0400 - - HHH-8316 JandexHelper uses ClassLoaderService - -commit 40ac5094a1e0abeb5241f845f0e48cfe75eddf5a -Author: Brett Meyer -Date: Wed Sep 4 18:19:59 2013 -0400 - - HHH-8465 corrected check in EnversListenerDuplicationStrategy - -commit 9acb43599b7e01248aa7501f0bee615b4f8c49dc -Author: Brett Meyer -Date: Wed Sep 4 18:13:29 2013 -0400 - - HHH-8462 Handle elements in orm.xml - -commit 151dd1531b033974149066d7f6af742724f0c422 -Author: Steve Ebersole -Date: Tue Sep 3 11:42:54 2013 -0500 - - HHH-8469 - Application of JPA 2.1 AttributeConverters - -commit 21c3e2bd800f6d6630cb3dc4796f9161c611ab9d -Author: Scott Marlow -Date: Tue Sep 3 10:56:54 2013 -0400 - - HHH-8463 upgrade to javassist 3.18.1-GA - -commit 9f10ec5e74a85b57a86291537918944ddd557434 -Author: Brett Meyer -Date: Thu Aug 29 15:06:59 2013 -0400 - - HHH-8454 added numeric types to MySQLDialect#getCastTypeName - -commit a9e85716f11fdbcfbd4bcedd19faafefb279946d -Author: Brett Meyer -Date: Thu Aug 29 13:49:17 2013 -0400 - - HHH-8454 corrected failing test for MySQL - -commit 91dace33b32e4e6d9b5f90310adda101b1b63911 -Author: Steve Ebersole -Date: Tue Aug 27 16:16:53 2013 -0500 - - HHH-8459 - Improved handling of JPA schema-generation target files - -commit 939c1f2743de8ba4de927394494dc062699a5633 -Author: Steve Ebersole -Date: Mon Aug 26 13:50:22 2013 -0500 - - HHH-8445 - Implement REF_CURSOR support for StoredProcedureQuery - -commit 7146435a429bc6e9e834163b500e7defccfbc846 -Author: Scott Marlow -Date: Thu Aug 1 21:36:58 2013 -0400 - - HHH-8406 - fix for EntityManagerFactoryRegistry not being thread safe - -commit cd812b6d65a7b14f3b8546f05609a3d01a7ab3d0 -Author: Steve Ebersole -Date: Sun Aug 25 21:08:49 2013 -0500 - - HHH-8413 - Rename ProcedureResults -> ProcedureOutputs - -commit e42e786e8d540c2fcf23f11c04266a807920cc70 -Author: Steve Ebersole -Date: Sun Aug 25 21:03:56 2013 -0500 - - HHH-8442 - StoredProcedureQuery.execute() should rollback the TX for certain exceptions - -commit 1a59e9194b0e5dfdfc5b76db5bc2c54c82217822 -Author: Steve Ebersole -Date: Sun Aug 25 20:01:00 2013 -0500 - - HHH-8454 - Criteria queries sometimes lead to SQL like "... where ? in (?,?)" - -commit 0ecb76f9d573cbbbab516bedc4da3fdc1bb53430 -Author: Steve Ebersole -Date: Sun Aug 25 09:41:56 2013 -0500 - - Tests for @ConstructorResult mapping of stored procedure results - -commit 8cfa73c3a11f3c183020166e2ed56becf8e714f0 -Author: Steve Ebersole -Date: Sun Aug 25 01:17:20 2013 -0500 - - HHH-8452 - Better parameter handling for JPA criteria queries - -commit bfe564e810041cb1257f7941e6e2a7da09ad37fb -Author: Steve Ebersole -Date: Sat Aug 24 19:24:25 2013 -0500 - - HHH-8444 - Fix criteriaapi failures from JPA 2.1 TCK - -commit 8b65113ada4ec487b07caf6dba9292c7d11ba566 -Author: Brett Meyer -Date: Thu Aug 22 22:32:21 2013 -0400 - - HHH-3047 Increase max alias length for Oracle dialects from 10 to 30 - -commit 88559e20611abf59a74f2ca50be9f301b872050a -Author: Steve Ebersole -Date: Thu Aug 22 15:23:21 2013 -0500 - - HHH-8450 - Predicate#not now required to return new instance - -commit d91ed8942c987e4629caa0cebed72e90d6bf85c2 -Author: Brett Meyer -Date: Thu Aug 22 15:35:52 2013 -0400 - - HHH-4699 test case - -commit ad5dd18aacf1b7fd3b0b9d520a9a5d9d91b95827 -Author: Kristian Marinkovic -Date: Wed May 15 21:23:32 2013 +0200 - - HHH-4699 trim value from database before Enum.valueOf() - - this change fixes the problem with fixed size columns with enum values - that are right padded. - -commit 0b488b92a056750a7c072c9bd64f0ad18dc77d92 -Author: Steve Ebersole -Date: Thu Aug 22 10:01:53 2013 -0500 - - HHH-8111 - AttributeConverter doesn't override built-in type mappings - -commit d2c5734c6e32ab7b44e9216a583f69a305dbd8b7 -Author: Steve Ebersole -Date: Thu Aug 22 09:27:40 2013 -0500 - - HHH-8111 - AttributeConverter doesn't override built-in type mappings - -commit 9f86babd880b785b965f7f1b55d58dc6a6943ada -Author: Steve Ebersole -Date: Wed Aug 21 13:14:23 2013 -0500 - - HHH-8111 - AttributeConverter doesn't override built-in type mappings - -commit 8ccbd7d1212804dc27e7c0e84edf08db128710c0 -Author: Brett Meyer -Date: Wed Aug 21 15:38:41 2013 -0400 - - HHH-8068 formatting and cleanup - -commit d0a7a017a501e726ac9bd22c029bdc76418160ef -Author: ammachado -Date: Wed Mar 13 14:42:39 2013 -0300 - - HHH-8068 Suggestion for improvement. - -commit 9ee5392456333ef93baaf866025e5f7f00ed2e92 -Author: Brett Meyer -Date: Wed Aug 21 15:15:25 2013 -0400 - - HHH-7915 test case and cleanup - -commit 7ef045ae2c5e0ab3541a45f059d1b2b840832ee1 -Author: chris-manning -Date: Thu Jan 10 10:58:45 2013 +0000 - - HHH-7915 Include referenced columns when creating foreign keys from the included table - -commit 10930af5160f0b5d8aad37876e9618d978e947b6 -Author: Brett Meyer -Date: Tue Aug 20 19:49:27 2013 -0400 - - HHH-2692 corrected failing test - -commit f1e4bfbffdd7de412e35ec9599678a0b5569b3e3 -Author: Manuel Bernhardt -Date: Tue Aug 20 19:33:36 2013 -0400 - - HHH-2692 Handling subqueries in INSERT...SELECT, disallowing use of - :parameters in SELECT if not in INSERT...SELECT, additional test cases - - Conflicts: - hibernate-core/src/main/java/org/hibernate/hql/ast/tree/SelectClause.java - hibernate-core/src/test/java/org/hibernate/test/hql/BulkManipulationTest.java - -commit 6ad0d4cfbefb8a198c52a14b8b4665fdf0a28e24 -Author: Manuel Bernhardt -Date: Tue Aug 20 19:30:35 2013 -0400 - - HHH-2692: Correctly reporting type mismatch in select...insert - - Conflicts: - hibernate-core/src/main/java/org/hibernate/hql/ast/tree/IntoClause.java - hibernate-core/src/test/java/org/hibernate/test/hql/BulkManipulationTest.java - -commit 9304c2b3e94cb289f6144fcce8982beac9dc392e -Author: Manuel Bernhardt -Date: Tue Aug 20 19:29:17 2013 -0400 - - Least-effort fix for HHH-2692 - - Conflicts: - hibernate-core/src/main/java/org/hibernate/hql/ast/HqlSqlWalker.java - hibernate-core/src/main/java/org/hibernate/hql/ast/tree/IntoClause.java - hibernate-core/src/main/java/org/hibernate/hql/ast/tree/SelectExpressionList.java - hibernate-core/src/test/java/org/hibernate/test/hql/BulkManipulationTest.java - -commit 51deee1e66b9ae00f99484f10de65832eb8874f8 -Author: Jeremy Whiting -Date: Tue Aug 20 10:54:17 2013 -0400 - - Added Maven plugin to enhance Entities during build time. - - Conflicts: - settings.gradle - -commit 12225133e7630c8e1eb62d31608105dd403538e7 -Author: Jeremy Whiting -Date: Fri Jul 19 15:53:20 2013 +0100 - - Changed dependencies to use root project libraries configuration. Renamed the gradle build file to conform to project standard for a module. Fixed findbugs reported issues. Removed unnecessary classes and instead use an anonymous class. - -commit bfbb6a77a9e428c8ed1579978a926681298e0c20 -Author: Jeremy Whiting -Date: Wed Jun 26 08:45:14 2013 +0100 - - Added Gradle plugin to provide build time support for enhancing entity objects. - -commit bf168ca24ef0c328bd53d6d32e79f66b99ac56db -Author: Steve Ebersole -Date: Mon Aug 19 16:06:51 2013 -0500 - - HHH-8111 - AttributeConverter doesn't override built-in type mappings - -commit ad5c0f1f82f0b2ddf1d00727c41a2371879a2293 -Author: Anton Marsden -Date: Sun Jul 28 12:56:22 2013 +1200 - - HHH-5920: improve the performance of PersistentClass - -commit 7bcf161d36d5b1e59fba1ae32e8e2d692c2fd33d -Author: Steve Ebersole -Date: Mon Aug 19 14:53:56 2013 -0500 - - HHH-8111 - AttributeConverter doesn't override built-in type mappings - -commit 5a7d179f81d235ba7be9b9248f75d6f2a156744b -Author: Brett Meyer -Date: Mon Aug 19 13:26:18 2013 -0400 - - HHH-8423 corrected one un-cleaned-up test - -commit 4431f3428ce59cadde22977c9dd7490f4bc6662a -Author: Steve Ebersole -Date: Mon Aug 19 09:19:36 2013 -0500 - - HHH-8444 - Fix criteriaapi failures from JPA 2.1 TCK - -commit 7bdcdca4398121ea91554ed01d983285297805da -Author: Steve Ebersole -Date: Fri Aug 16 11:54:31 2013 -0500 - - HHH-8444 - Fix criteriaapi failures from JPA 2.1 TCK - -commit d5ceb600629706db4e26ccd86e3a1f7bbc2e4270 -Author: Steve Ebersole -Date: Fri Aug 16 09:40:48 2013 -0500 - - HHH-8444 - Fix criteriaapi failures from JPA 2.1 TCK - -commit b12ad4f5ccb7d68ed771f66408be7bbe854122a2 -Author: Steve Ebersole -Date: Fri Aug 16 09:11:59 2013 -0500 - - HHH-8444 - Fix criteriaapi failures from JPA 2.1 TCK - -commit 714d48880d8a57d7d45c660665e6d9e543090913 -Author: Brett Meyer -Date: Fri Aug 16 12:34:24 2013 -0400 - - HHH-8447 HQL delete with multiple subqueries failing (incorrect alias - used) - -commit cc550c08a89eb0a83f1376829d8aa65dd43add14 -Author: Brett Meyer -Date: Thu Aug 15 15:18:59 2013 -0400 - - HHH-8441 Hibernate is trying to add values to an Immutable List - -commit 6162a4b3944470dcd7b50ec6940bd1969fea3812 -Author: Steve Ebersole -Date: Thu Aug 15 19:01:07 2013 -0500 - - HHH-8444 - Fix criteriaapi failures from JPA 2.1 TCK - -commit 05144811e428fac1b5ecc811938e6dd113d1bc2c -Author: Brett Meyer -Date: Thu Aug 15 10:10:44 2013 -0400 - - HHH-8440 added mssql2012 to StandardDatabaseInfoDialectResolver - -commit 5981fc19b5ca4b0bba9669f8f4092b2aa0ec2257 -Author: Brett Meyer -Date: Wed Aug 14 11:59:51 2013 -0400 - - HHH-8440 Support sequences with a new SQLServer2012Dialect - -commit b1759cb7c213700480521b5874c053aaa87e3378 -Author: Brett Meyer -Date: Tue Aug 13 14:58:32 2013 -0400 - - HHH-8383 ExceptionInInitializerError when changing System properties - while Environment class is initialized - -commit 4f2088856fffefe7741035c0dfc8b2a613edb7d2 -Author: Strong Liu -Date: Wed Aug 14 00:39:40 2013 +0800 - - HHH-7216 'java.lang.IllegalStateException: No supertype found' thrown on query with COUNT aggregate function - -commit 858c68364ac7e21acd3243ab30cf9ade5ca4c2e7 -Author: Brett Meyer -Date: Tue Aug 13 11:03:29 2013 -0400 - - HHH-8439 optional OSGi manifest imports in envers - -commit cc992e0e1a1637c3758b0c0d929454a6ae29394b -Author: Brett Meyer -Date: Tue Aug 13 10:28:31 2013 -0400 - - HHH-8183 re-activating test now that QA allows Synonym creation - -commit 90532087d54d4e6e0829d28e653ebd45e3329d1d -Author: Brett Meyer -Date: Wed Aug 7 11:44:44 2013 -0400 - - HHH-7959 gracefully handle non-transactional entity cache - -commit a745f93bfa382d5698af4f3e0fc99c89da5d56bb -Author: Darren Evenson -Date: Tue Aug 6 10:45:06 2013 -0500 - - HHH-8427 Typo in documentation - Basic Mapping - -commit b7975a65fb9c69e90f707402933808fbf3a14616 -Author: Darren Evenson -Date: Tue Aug 6 10:11:19 2013 -0500 - - HHH-8055 error in docs - associations and joins - meaning is opposite of intended meaning - -commit 38e2d37d39dae97bdbb95d5013302d3aa67f2319 -Author: Darren Evenson -Date: Tue Aug 6 09:59:04 2013 -0500 - - HHH-4141 Typo: "declared" incorrectly spelled ("decalred") - -commit e5af57585b77c5769bdcf0daa19e734b9edd0ca0 -Author: Brett Meyer -Date: Tue Aug 6 11:52:46 2013 -0400 - - HHH-8428 comment & cleanup - -commit 023862728fe59e90f6e7faaf592abc122548febd -Author: Karl von Randow -Date: Tue Jun 18 15:12:43 2013 -0700 - - HHH-8428 Protect SessionFactoryRegistry.getNamedSessionFactory(String) from NPE - -commit a2da42999737c61475df3b4a9999bd8f0a30aa89 -Author: Brett Meyer -Date: Tue Aug 6 11:18:13 2013 -0400 - - HHH-8426 Add defaultScrollMode to Dialect - -commit 6c708e2180fa2ea01c8bb56bf43d9b9139224c3b -Author: Brett Meyer -Date: Tue Aug 6 10:43:29 2013 -0400 - - HHH-8420 multiple test-only fixes from matrix failures - -commit 4140661b826450664cb21407235498d536f0482c -Author: Lukasz Antoniak -Date: Mon Jul 29 10:47:23 2013 +0200 - - HHH-7807 - key-many-to-one cascade removal tests - -commit 456dfd83f98e09630bac44afec9cfe8a070e91be -Author: Lukasz Antoniak -Date: Mon Aug 5 23:42:05 2013 -0400 - - HHH-7807 - Cascade delete revisions - - Conflicts: - documentation/src/main/docbook/devguide/en-US/Envers.xml - hibernate-envers/src/main/java/org/hibernate/envers/configuration/GlobalConfiguration.java - hibernate-envers/src/main/java/org/hibernate/envers/configuration/metadata/AuditMetadataGenerator.java - -commit 5255c5074f2b1d8c020d490fb43e6e842fb251aa -Author: Jan Šimek -Date: Mon Aug 5 23:20:08 2013 -0400 - - ignoring collections and maps of any during populating JPA metamodel, - see HHH-6589 - Conflicts: - hibernate-entitymanager/src/main/java/org/hibernate/ejb/metamodel/AttributeFactory.java - -commit 96e80b2df30baf3b24284eab82e24bb0cc85df0e -Author: HGC -Date: Wed Jul 31 12:30:41 2013 +0100 - - HHH-8397: MultiLineImportFileTest failing on some platforms (Fix) - -commit b9d3fa55813707f70d4426085dfe91501e387148 -Author: Brett Meyer -Date: Mon Aug 5 14:05:04 2013 -0400 - - HHH-8420 multiple test-only fixes from matrix failures - -commit 3d595febc565e899630d2cc0d270708a16b8e3c1 -Author: Steve Ebersole -Date: Mon Aug 5 11:23:45 2013 -0500 - - HHH-8419 - Tie javax.persistence.Parameter instance to javax.persistence.Query instance - -commit 742b1b415670d476162a37f1e68af5268aa67199 -Author: Brett Meyer -Date: Wed Jul 10 01:37:13 2013 -0400 - - HHH-2736 query hints for Query and Criteria - -commit 6beb5acb4bdcbe07e981a6017d69b3c4f71a4480 -Author: Steve Ebersole -Date: Fri Aug 2 19:17:31 2013 -0500 - - HHH-8415 - Throw exception types expected by JPA spec wrt StoredProcedureQuery - -commit aea6b767ae6778d77a9ff9c1117ee973f4022462 -Author: Sanne Grinovero -Date: Thu Aug 1 23:28:44 2013 +0100 - - Micro-tuning for StandardListenerFactory - -commit 8aff7db2e0214db110627dd25a5440dab92eb661 -Author: Sanne Grinovero -Date: Thu Aug 1 23:28:26 2013 +0100 - - HHH-8410 NaturalIdXrefDelegate could miss some cached entries from naturalIdResolutionCacheMap - -commit 168c06d062eb8d3adf72587536cfad1677121fdc -Author: Sanne Grinovero -Date: Thu Aug 1 23:09:46 2013 +0100 - - HHH-8409 Improve usage of ConcurrentMaps by using putIfAbsent in StatefulPersistenceContext - -commit 1bed5873553937f111a5b3724a9966e625ac1440 -Author: Sanne Grinovero -Date: Thu Aug 1 22:50:42 2013 +0100 - - HHH-8408 LegacyHiLoAlgorithmOptimizer.noTenantState is accessed with inconsistent synchronization - -commit 1ea823e0b535d7d7ba49924e415156dd5d3a4fdf -Author: Sanne Grinovero -Date: Thu Aug 1 22:40:45 2013 +0100 - - HHH-8408 PooledLoOptimizer.noTenantState is accessed with inconsistent synchronization - -commit 4f1c8a4ba6902604c15aa70f07067f8f5fef7a56 -Author: Sanne Grinovero -Date: Thu Aug 1 21:55:12 2013 +0100 - - HHH-8407 Missing synchronization in DriverManagerConnectionProviderImpl#stop - -commit 59d2bff81b2c676673d731c20f59b0338a7a5068 -Author: Steve Ebersole -Date: Fri Aug 2 09:58:28 2013 -0500 - - HHH-8413 - Rename ProcedureResults -> ProcedureOutputs - -commit 49a2ee04b937e2c67ffaafafedde227267e52d2d -Author: Brett Meyer -Date: Fri Aug 2 10:41:11 2013 -0400 - - HHH-8414 enforce osgi test method ordering - -commit bf11088e70319533aa687d066c955c5d1969ac0b -Author: Lukasz Antoniak -Date: Fri Aug 2 12:37:20 2013 +0200 - - HHH-5845 - Collection proxy of deleted state - -commit f99e1e4b4afe81aa80fd01943c7be2de22656e84 -Author: Steve Ebersole -Date: Thu Aug 1 21:17:27 2013 -0500 - - HHH-8411 - StoredProcedureQuery : getResultList and hasMoreResults() mot implemented properly - -commit f4cc86f7ad45355ccef2c67edd3b929843263694 -Author: Steve Ebersole -Date: Thu Aug 1 17:08:15 2013 -0500 - - HHH-8405 - Track down tests that leak SessionFactories - -commit 580a71331cc07b1b56308559c7242395a9b8c0d6 -Author: Brett Meyer -Date: Thu Aug 1 14:42:47 2013 -0400 - - HHH-8390 generate FK after UK - -commit 31b881bc506cd17898b9e5042302620cd0e24093 -Author: Brett Meyer -Date: Thu Aug 1 14:27:14 2013 -0400 - - HHH-8388 updated hibernate-osgi.gradle to use libraries.gradle - -commit 2301fd215f68713f54a58d107f55c18a3dd05fe4 -Author: Brett Meyer -Date: Thu Aug 1 12:02:35 2013 -0400 - - HHH-8373 fix and test case - -commit dd1bec53fb9de01855ed7f58bdb1df5961c9a8ed -Author: Lukasz Antoniak -Date: Thu Aug 1 13:13:31 2013 +0200 - - HHH-8280 - Identifiers reuse option - -commit 80873328d15609849e58cbf9c524a977be764f1a -Author: Adar Dembo -Date: Wed May 29 17:53:59 2013 -0700 - - HHH-8280 - validity audit strategy breaks when entity IDs are reused - -commit c1d1695606c59b85d97e44477135cc2c526a17be -Author: Steve Ebersole -Date: Thu Aug 1 01:19:33 2013 -0500 - - HHH-8400 - Positional parameters defined on NamedStoredProcedureQuery not applied - -commit 1a3a2a52a2e15d04e41cd5c171fdb5cd4a5f26d5 -Author: Steve Ebersole -Date: Thu Aug 1 00:18:14 2013 -0500 - - HHH-8400 - Positional parameters defined on NamedStoredProcedureQuery not applied - -commit 3102edba8b201c6136bed246d46b5e5b8ece9239 -Author: Brett Meyer -Date: Wed Jul 31 14:41:45 2013 -0400 - - HHH-8399 corrected javassist in hibernate-osgi test - -commit 15e9b028b5dc12d45cf067a027e04df719032fd3 -Author: Steve Ebersole -Date: Wed Jul 31 11:16:40 2013 -0500 - - HHH-8398 - StoredProcedureQuery passed resultClasses chooses incorrect aliases to extract results - -commit d210c0cae2d2f2fddd788cc9079fa4fdac8d3366 -Author: Brett Meyer -Date: Wed Jul 31 12:26:29 2013 -0400 - - HHH-8389 removed a @FailureExpected - -commit 0a7725432eab6bf388e58c9ae14c57284e22726e -Author: Brett Meyer -Date: Wed Jul 31 12:10:05 2013 -0400 - - HHH-8399 Upgrade to Javassist 3.18.1-Beta1 - -commit cd1c80b82d84f8449e3478b08e6bfe21eedf5a9d -Author: Steve Ebersole -Date: Wed Jul 31 08:34:52 2013 -0500 - - HHH-8395 - JPA StoredProcedureQuery#getUpdateCount should prefer return -1 rather than throw exceptions - -commit 33b7e9f441b302525cd11f0fe7a653298590c0a8 -Author: Brett Meyer -Date: Tue Jul 30 11:58:46 2013 -0400 - - HHH-8388 Updated OSGi quickstarts and unit test for JPA 1.0.0.Final - -commit 033bf4a22e8ab361732c6d70baf62b9dc325c4c3 -Author: Steve Ebersole -Date: Fri Jul 26 18:26:33 2013 -0500 - - HHH-8385 - Check whether EMF is closed (throwing ISE if so) when indicated methods are called - -commit c101258e037c8e57df4597087a6c7dc589afca2c -Author: Steve Ebersole -Date: Fri Jul 26 18:12:52 2013 -0500 - - HHH-8389 - Look at JPA TCK StoredProcedureQuery related failures - -commit cf9bd9d13fbf0e115dc0eb18136c01e26ad02181 -Author: Steve Ebersole -Date: Fri Jul 26 14:22:53 2013 -0500 - - HHH-8388 - pull in final jpa-api 2.1 - -commit 8b7a92e170c4bc292b26989bbb516bcc50facde4 -Author: Steve Ebersole -Date: Fri Jul 26 13:00:01 2013 -0500 - - HHH-8388 - pull in final jpa-api 2.1 - -commit fb4697d51a64c5be5955c63f2ec28ab555084942 -Author: Steve Ebersole -Date: Fri Jul 26 00:41:03 2013 -0500 - - HHH-8386 - Commit transaction on connection used to export schema (JPA) - -commit c620eaa952786d011be2a9038a8f983607299334 -Author: Brett Meyer -Date: Wed Jul 24 11:43:20 2013 -0400 - - HHH-8378 Cleanup during Bundle#stop. Added shutdown unit test. - -commit 3ffc6ce6e8c1d872f122355f5efc51b1bd711d6b -Author: Brett Meyer -Date: Tue Jul 23 22:49:00 2013 -0400 - - HHH-8362 InformixUniqueDelegate - -commit cce9b8147170f23b3ea4e23e7ccef84cdeeef6b1 -Author: Brett Meyer -Date: Tue Jul 23 22:31:21 2013 -0400 - - HHH-8371 corrected failing test - -commit a2287b6c6d43b44f656632503401b7968c42bd86 -Author: Brett Meyer -Date: Tue Jul 23 22:02:38 2013 -0400 - - HHH-8371 Consider explicit column name's "_" in alias creation - -commit a9978a7c85b2f24f2bd9699bd5c3be48e45a3a08 -Author: Strong Liu -Date: Tue Jul 16 12:22:20 2013 +0800 - - simple doc typo - -commit 1825a4762c487135f0dd11b34c417210eb6ba100 -Author: Strong Liu -Date: Sat Jul 13 10:59:41 2013 +0800 - - HHH-8211 Checkstyle and FindBugs fix-ups - -commit 0433a539b443d0ca86f6234166e21a134ea4e2e1 -Author: Brett Meyer -Date: Thu Jul 11 19:10:00 2013 -0400 - - HHH-3078 copyright and refactored package - -commit 228d14e8bc2e69c9cfb12d6b1560fbc13841cb4c -Author: lgathy -Date: Tue Jul 9 16:19:57 2013 +0200 - - HHH-3078 Fixed bug with multiple classloaders and proxy class - -commit a300454a85511df178659c70e58f8283c1287d5f -Author: Laurent RICHARD -Date: Wed Jun 12 10:53:27 2013 +0200 - - HHH-8302 init c3p0 initialPoolSize with minPoolSize - - Adding C3P0_STYLE_INITIAL_POOL_SIZE directly to c3props doesn't work - because of prefix "c3p0." - Using setOverwriteProperty checks for the nullability of the value and - removes this prefix - -commit b9680484855fdc990fc7a7c7a5895865f7eca36d -Author: Laurent RICHARD -Date: Wed Jun 12 10:18:28 2013 +0200 - - HHH-8302 - add unit test - -commit a4fa28d6b8724845d1b7c413e5266e7edbf25b44 -Author: Strong Liu -Date: Thu Jul 11 09:38:40 2013 +0800 - - HHH-8358 Upgrade infinispan to 5.3.0.Final - -commit 9afc17a209095e8139f66aed85ea812bb660eeb2 -Author: Strong Liu -Date: Thu Jul 11 17:39:14 2013 +0800 - - HHH-8357 - remove dom4j proxy support - -commit c4f1084d20936839852ca1a80ddeb8900546ffde -Author: Brett Meyer -Date: Wed Jul 10 13:38:26 2013 -0400 - - HHH-8193 copyright dates - -commit 6c2937e3c8fde55b51fee1e67b855334756b7282 -Author: Lukasz Antoniak -Date: Wed Jul 10 13:26:57 2013 -0400 - - HHH-8193 - Reset input stream before binding - - Conflicts: - hibernate-core/src/main/java/org/hibernate/engine/jdbc/BlobProxy.java - hibernate-core/src/test/java/org/hibernate/test/type/descriptor/java/BlobDescriptorTest.java - -commit 2ecde3281125022eb7a0a3c15faa03cf147e93ee -Author: Guenther Demetz -Date: Tue Apr 9 11:10:05 2013 +0200 - - Bugfix proposal HHH-4294 - -commit d87cc16baa20fc3ab24cdd128977471974049288 -Author: Guenther Demetz -Date: Tue Apr 9 11:09:32 2013 +0200 - - Testcase HHH-4294 - -commit 1f51d125790874fce5a53474c47a4278f33465a2 -Author: Brett Meyer -Date: Wed Jul 10 11:36:37 2013 -0400 - - HHH-4261 comment and checkstyle - -commit 8ca6b276cac2ce7dd6f4aa411ca8f3c2ee9e7e68 -Author: amkad -Date: Tue Feb 12 17:21:06 2013 +0700 - - Changed test to reproduce HHH-4261 - -commit ff22f64bae388f70b2b8063e069a8c3aff8acf80 -Author: amkad -Date: Fri Feb 22 14:18:52 2013 +0700 - - Fixed @Any and @ManyToAny support in overridden JPA annotation reader HHH-4261 - -commit 519a469b118704e7d83a89e1250b4b1d28bd5be1 -Author: Brett Meyer -Date: Tue Jul 9 13:05:58 2013 -0400 - - HHH-8318 @SkipForDialect added - -commit c7707b23f001aa5f3224887897f716f8e5d820eb -Author: Brett Meyer -Date: Sun Jul 7 21:46:01 2013 -0400 - - HHH-8349 added PostgresPlus to DialectFactory - -commit d9870fffb8aef5309471ec2acfada14f2ca58397 -Author: JohnOhara -Date: Fri Jun 7 11:37:47 2013 +0100 - - HHH-8106 Fixed bug with Enhancement Task - -commit 34ef043223d01cc28192f7978f8ec5305464f051 -Author: Brett Meyer -Date: Wed Jul 3 10:04:40 2013 -0400 - - HHH-8336 upgraded to c3p0 0.9.2.1 - -commit 6de534f1f0d3b905865e67db56f234be7b335a4b -Author: Brett Meyer -Date: Tue Jul 2 16:50:01 2013 -0400 - - HHH-7996 temporarily using local hibernate-jpa-2.1-api jar until - SNAPSHOT is available - -commit 052886afeb7b0e4755d19131322bb0b1de9ff429 -Author: Brett Meyer -Date: Mon Jul 1 17:18:44 2013 -0400 - - HHH-6935 Use bit type for MySQLDialect's boolean - -commit 58622f3e109a35a6774d05b383cd0fcea70a11e6 -Author: Brett Meyer -Date: Wed Jun 12 16:50:06 2013 -0400 - - HHH-7996 arquillian-based OSGi unit test, minor CL fixes - -commit 17d9a2c1fc4c817a26d9ba08c65d10642b9722b0 -Author: Brett Meyer -Date: Mon Jul 1 14:03:51 2013 -0400 - - HHH-7116 Moved orderBy fix to AbstractEntityJoinWalker. Copyrights, - formatting, and checkstyle - -commit 87004f9815eeffad635d00ed25eda7894cb26b6d -Author: Tommy Knowlton -Date: Tue Jun 19 22:11:19 2012 -0600 - - HHH-7116 test case and fix - -commit 4ab29b481104e4136958a2e6b41e42af489255fc -Author: Brett Meyer -Date: Sat Jun 29 12:46:40 2013 -0400 - - HHH-8335 Hibernate OSGi not included in build's /lib - -commit 4ee9ade3532406a2a74fcfa3e21a490a69f4011d -Author: Brett Meyer -Date: Thu Jun 27 22:48:48 2013 -0400 - - HHH-8210 JdbcCoordinatorImpl logs excessive warnings with some - connection pools - -commit 97304a291defe24977ae9b962b185d8958727531 -Author: Emmanuel Bernard -Date: Thu Jun 27 15:50:50 2013 +0200 - - Add test for HHH-8314 - -commit b9185ac43bb9d6a8db7a8762bceaff884b720937 -Author: Brett Meyer -Date: Sun Jun 23 13:42:53 2013 -0400 - - HHH-8331 keep postgres81 as the default - -commit 81affe3afe95129e835c00e7623da482cc326007 -Author: Brett Meyer -Date: Sun Jun 23 13:17:28 2013 -0400 - - HHH-7002 added support for "if exists" on "drop constraint" - -commit edf1fa9fbcc8346b15459a7ed49915df1a3a048c -Author: Brett Meyer -Date: Sun Jun 23 13:17:05 2013 -0400 - - HHH-8331 Create PostgreSQL9Dialect - -commit c785c5e7a86b2671aab3be5e272cf4dad6abfeed -Author: Brett Meyer -Date: Fri Jun 21 10:51:42 2013 -0400 - - HHH-8319 checkstyle - -commit f1439b560142dd81d83c6142acb27956459e922f -Author: justinsubert -Date: Fri Jun 21 10:26:43 2013 +0100 - - HHH-8319 - -commit 4ab3caa78937687c2c48b0903fc40d9274d0fa32 -Author: Steve Ebersole -Date: Thu Jun 20 22:05:38 2013 -0500 - - HHH-8318 - Problem determining qualifier to use for column names from HQL query parser in certain circumstances - -commit 2c1605904d666e38f477835fccc121b470953d36 -Author: Brett Meyer -Date: Thu Jun 20 12:00:24 2013 -0400 - - HHH-8318 updated test case - -commit e4eadbb9fe0a9ec62bcb88dbcb474cbbf6150a8d -Author: Brett Meyer -Date: Tue Jun 18 13:33:45 2013 -0400 - - HHH-8318 test case - -commit d79d2d238c2b4a48860d9b374fcc744354d07cd2 -Author: Brett Meyer -Date: Tue Jun 18 13:05:56 2013 -0400 - - HHH-8288 Upgrade to Javassist 3.18 - -commit 899b306f2612311a88a7f1bf4175ea58d82e42e0 -Author: Strong Liu -Date: Sat Jun 15 08:15:19 2013 +0800 - - HHH-8312 - named parameters binding are not correct when used within subquery - -commit 6cabc326b8056f92005bd2c8d4fa01c9eb04f555 -Author: Strong Liu -Date: Sat Jun 15 15:58:48 2013 +0800 - - HHH-8312 - named parameters binding are not correct when used within subquery - -commit 6a71cbb991104176c32bbd5a697e724ac8429f3a -Author: Lukasz Antoniak -Date: Tue Jun 11 10:14:45 2013 -0700 - - HHH-8301 - SQLServer2005LimitHandler skips column alias generation - -commit f2d435ddc1342c154a0b10fd47b6bea862aa9ac9 -Author: Lukasz Antoniak -Date: Tue Jun 11 09:08:56 2013 -0700 - - HHH-8174 - Envers support for @NotFound - -commit b4ab20a97b472d4dfa2fe3a89da61363dc3e293b -Author: Brett Meyer -Date: Fri Jun 7 14:29:35 2013 -0400 - - HHH-8117 Add package export versions in OSGi manifests - -commit 4ed8006e5ab320a6a8855316cacde24b9c3a078f -Author: Brett Meyer -Date: Fri Jun 7 13:05:36 2013 -0400 - - HHH-8255 made a few hibernate-core imports optional in the manifest - -commit d283a6fc77c3c2a83960c1da19a8ef1715fa17be -Author: Brett Meyer -Date: Fri Jun 7 11:19:37 2013 -0400 - - HHH-8112 Added additional caveats to OSGi devguide - -commit d49f68f1e33a85da9035b7bd184fcee9ca520d62 -Author: ouzned -Date: Fri May 31 23:05:02 2013 +0200 - - HHH-8283 JdbcSQLException with CompositeCustomType and java.util.Date - -commit e2922ca5f503c690861bae886c43ae3c08cf135c -Author: Brett Meyer -Date: Wed Jun 5 18:35:36 2013 -0400 - - HHH-8265 Documented the reasoning for importing o.h.proxy and - javassist.util.proxy in the quickstarts. Added a load proxy test. - -commit 04f3249a1287cea26f4a28ee1f69adbc9abfee4f -Author: Brett Meyer -Date: Mon Jun 3 17:19:38 2013 -0400 - - HHH-8275 union-subclass generates bad alter table for unique constraint - -commit adcd61f0e1b1446313f55b267d108b62e9928688 -Author: Brett Meyer -Date: Wed May 22 16:28:15 2013 -0400 - - HHH-8112 quickstart tutorial chapter - -commit ab11440331d2704d3e4f6d9d7ebc9a6dbc0e6e47 -Author: Brett Meyer -Date: Tue May 21 18:03:37 2013 -0400 - - HHH-8112 osgi devguide - -commit af5e8c386994657a8ed385e992e8004692bda009 -Author: Steve Ebersole -Date: Fri May 31 01:14:18 2013 -0500 - - HHH-7841 - Introduce LoadPlan - -commit d874bc4737c50174bbfffd8dd4c09219e27c4e82 -Author: Steve Ebersole -Date: Wed May 29 13:42:26 2013 -0500 - - 4.3.0.Beta3 - -commit 9699ce41c2d2e807483fed999396d0955dfcfd55 (tag: 4.3.0.Beta3) -Author: Steve Ebersole -Date: Wed May 29 12:48:01 2013 -0500 - - 4.3.0.Beta3 - -commit 3bc26b64488e92ef0f2251d6f9c8e329924cc7eb -Author: Steve Ebersole -Date: Wed May 29 12:22:13 2013 -0500 - - HHH-8270 - Support for accessing JPA schema export script files specified by URL - -commit 51834421c58d5270762f78e7107730569ebea6ce -Author: Brett Meyer -Date: Sat May 25 20:29:09 2013 -0400 - - HHH-8273 Incorrect "unique-key" naming comment in docs - -commit 875495439ed5cdc63d4af091c9d3ec4c7c32e8d8 -Author: Brett Meyer -Date: Sat May 25 20:24:53 2013 -0400 - - HHH-8269 DenormalizedTable FK constraint names can be too long - -commit a5862017d8a1127c32289767334937adc123cf41 -Author: Steve Ebersole -Date: Fri May 24 12:01:54 2013 -0500 - - HHH-7841 - Redesign Loader - -commit 5ea40ce3f5ff3a122ff168bc6b3301cc04b241dd -Author: Strong Liu -Date: Thu May 23 16:09:28 2013 -0700 - - HHH-8266 Binding of named-stored-procedure XML element tries to create duplicate - -commit 7678fae6a52b778bf73b50163963a53e1ecf83ca -Author: Brett Meyer -Date: Thu May 23 15:07:48 2013 -0400 - - HHH-8144 corrected rsync args - -commit 80b07c028158ce88a41238f98633a0299311fa25 -Author: Steve Ebersole -Date: Wed May 22 12:41:37 2013 -0500 - - Update CONTRIBUTING.md - - Added note about checkstyles - -commit f1f8600b548b86defadd57c6b9518adf17200055 -Author: Brett Meyer -Date: Mon May 20 17:05:41 2013 -0400 - - HHH-8083 @OrderColumn not updated on @OneToMany cascade - -commit 4ee980d9ff4d93556d7050e98aa0443052750db3 -Author: Steve Ebersole -Date: Wed May 22 11:12:31 2013 -0500 - - HHH-8211 - Checkstyle and FindBugs fix-ups - -commit ad103b1c30e8e1be926c33d56a36b37ac86d3b9d -Author: Brett Meyer -Date: Tue May 21 19:54:41 2013 -0400 - - HHH-8112 added note about JPA 2.1 Aries fork - -commit 286800ec3499de449fae8e54e6a3238dcfe85212 -Author: Steve Ebersole -Date: Tue May 21 17:54:14 2013 -0500 - - HHH-8211 - Checkstyle and FindBugs fix-ups - -commit f2073113fca24b4196c651840d899c7184a8bc7c -Author: Brett Meyer -Date: Tue May 21 17:20:58 2013 -0400 - - HHH-8112 removed variables from POMs -- not supported by docbook - -commit 120dbbb3111c9f5f7c7d314e9a62b520e1933150 -Author: Steve Ebersole -Date: Tue May 21 16:24:23 2013 -0500 - - HHH-8257 - More concisely obtaining a JBoss logger - -commit 04c8e8c87ae3c1a49e5920ae9e5208f7c07c20a6 -Author: Brett Meyer -Date: Tue May 21 14:47:26 2013 -0400 - - HHH-8112 OSGi quickstart tutorial projects - -commit 21444339ecdba857fd315f453ac4800bebc49800 -Author: Strong Liu -Date: Tue May 21 09:46:30 2013 -0700 - - HHH-8247 Implement XML binding of NamedEntityGraph - -commit 19da1ad21181147e4c7b326898c12e79d8036e75 -Author: Brett Meyer -Date: Tue May 21 10:49:46 2013 -0400 - - HHH-8241 Reusing of scanner instance is impossible with Apache Aries JPA - -commit b2828115278b45fa7e703d80ac13dcaad5a036c4 -Author: Gail Badner -Date: Tue May 21 03:08:47 2013 -0700 - - HHH-7841 - Redesign Loader - -commit b846fa35b5b8850366df665eadb1b314f3c5a3c1 -Author: Gail Badner -Date: Tue May 21 00:51:15 2013 -0700 - - HHH-7841 - Redesign Loader - -commit a03d44f290deb8ccddc0827834e49e03fc8da275 -Author: Strong Liu -Date: Mon May 20 20:37:16 2013 -0700 - - HHH-8246 Implement XML binding of NamedStoredProcedureQuery - -commit ce77f159740b325c361e37b1cc8c62f5a78cd22d -Author: Brett Meyer -Date: Mon May 20 17:36:30 2013 -0400 - - HHH-2872 reverting an incorrect test case - -commit 91758f74ffa3c517af102e1211a1509723a7ec7f -Author: Steve Ebersole -Date: Mon May 20 15:17:09 2013 -0500 - - HHH-7582 - TableGenerator does not distinguish between different tenants (MultiTenant Schema based) - -commit 45d46b619b177e613afede3c2ec00a5cb7fe27bd -Author: Brett Meyer -Date: Mon May 20 11:18:46 2013 -0400 - - HHH-6813 Corrected EntityType#getRHSUniqueKeyPropertyName() and added - regression test. - -commit 8451c03ea565f8162f241d51496a46f9ed6c9e9b -Author: Steve Ebersole -Date: Sat May 18 11:39:44 2013 -0500 - - HHH-8211 - Checkstyle and FindBugs fix-ups - -commit 7a1d2de542ac517edb65bb48b8afd8dfe0b02207 -Author: Steve Ebersole -Date: Fri May 17 14:29:33 2013 -0500 - - HHH-8144 - Create a 'release' task that performs all tasks needed for doing a release - -commit 14993a4637dddf3a6c7f4cd833dfe63c6efa9a03 -Author: Steve Ebersole -Date: Fri May 17 12:49:47 2013 -0500 - - HHH-8223 - Implement @NamedEntityGraph binding - -commit 21ae220a4ce2da4f99a56b58a91639ce8d417956 -Author: Brett Meyer -Date: Fri May 17 13:22:46 2013 -0400 - - HHH-8254 throw HibernateException when transaction is rolledback by a - reaper thread - -commit 043d618c030a02b36a62e02c767f1fdee7d6c93b -Author: Gail Badner -Date: Thu May 16 20:30:00 2013 -0700 - - HHH-7841 - Redesign Loader - - HHH-7841 - Redesign Loader - - HHH-7841 - Redesign Loader - - HHH-7841 - Redesign Loader - -commit 7bd9ba2adfa3268eb4bd8fb326eaa71c2d2de658 -Author: Steve Ebersole -Date: Thu May 16 18:51:53 2013 -0500 - - HHH-8144 - Create a 'release' task that performs all tasks needed for doing a release - -commit 8290662c9d0617a7056e5ab9e72dc38003a2fe79 -Author: Steve Ebersole -Date: Thu May 16 18:34:36 2013 -0500 - - HHH-8144 - Create a 'release' task that performs all tasks needed for doing a release - -commit bc6f5d8a1728e83f519ebe3b3e0920f2411cab82 -Author: Brett Meyer -Date: Wed May 15 15:44:17 2013 -0400 - - HHH-6813 @Id @OneToOne cause NullPointerException during query - -commit 8b9ec5cca50022994aa7472d929983f30324d14e -Author: george-007 -Date: Wed May 15 20:18:49 2013 +0200 - - Update DefaultInitializeCollectionEventListener.java - -commit 24f1a15d077d64fda3b6f26ecb1f712a86556891 -Author: Brett Meyer -Date: Thu May 16 11:46:04 2013 -0400 - - HHH-8238 OsgiJtaPlatform null pointer exception - -commit 08215bad73d026b93368428132a759dff7f79c7a -Author: Brett Meyer -Date: Wed May 15 00:35:12 2013 -0400 - - HHH-2664 full join not working - -commit fca8f3c1afe4e9d7cd4f1d0e13f634d8943a8dce -Author: Brett Meyer -Date: Fri May 10 15:02:22 2013 -0400 - - HHH-8236 Update to hibernate-commons-annotations 4.0.2.Final - -commit 3e311a1370489338f6d3f8862935d7ec2689b2bf -Author: Scott Marlow -Date: Fri May 10 23:03:09 2013 -0400 - - HHH-8233 fix for exclude-unlisted-classes (was being ignored) - -commit 4dac8052d5655168d91124eaa9a1d4bda15b2ceb -Author: Gail Badner -Date: Mon May 13 13:28:01 2013 -0700 - - HHH-7841 - Redesign Loader - -commit 4620ff4b4fe670bbf121b709e9da6b418c24ee43 -Author: Gail Badner -Date: Mon May 13 11:54:13 2013 -0700 - - HHH-7841 - Redesign Loader - -commit dfe33ffa1a6f17c973783e464fcd6437a9e629e7 -Author: Gail Badner -Date: Thu Apr 25 12:07:52 2013 -0700 - - HHH-7841 - Redesign Loader - -commit 1337d36a798d9d33542bdfaa24f6ba2cff785e46 -Author: Steve Ebersole -Date: Fri May 10 15:28:03 2013 -0500 - - HHH-8235 - Drop database profiles upstream - -commit cf91fd7a4930052bfea4306866568da68ec261e8 -Author: Brett Meyer -Date: Fri May 10 12:53:28 2013 -0400 - - HHH-6813 @Id @OneToOne cause NullPointerException during query - -commit 5373be01dfefbcb57bd56640bfd2cde48b6095ce -Author: Steve Ebersole -Date: Fri May 10 11:10:29 2013 -0500 - - HHH-8232 - Upgrade to Gradle 1.6 - -commit 9a590c8e6900a4e421909b4fb761a7b311014686 -Author: Steve Ebersole -Date: Thu May 9 20:36:14 2013 -0500 - - HHH-8222 - Implement @NamedStoredProcedureQuery binding - -commit e9a54405c243e6b7895f17afbfe676284bab79c8 -Author: Steve Ebersole -Date: Thu May 9 20:33:19 2013 -0500 - - HHH-8232 - Upgrade to Gradle 1.6 - -commit 8e3770235b852024b6ff0ac7ff764b291d76fa61 -Author: Steve Ebersole -Date: Thu May 9 19:51:10 2013 -0500 - - HHH-8211 - Checkstyle and FindBugs fix-ups - -commit 6fe63e035c0bbc3b0af18052a51800f17b2e3208 -Author: Steve Ebersole -Date: Thu May 9 15:19:02 2013 -0500 - - HHH-8211 - Checkstyle and FindBugs fix-ups - -commit f841c2ab3b27d8bddcd6c13fc411c0fe9455884a -Author: Alex Snaps -Date: Wed May 8 16:23:40 2013 -0400 - - HHH-8211 FindBugs: Redundant null check removed - -commit ab47eae5b9657dbc6fef57f068822182d9621cd0 -Author: Alex Snaps -Date: Wed May 8 16:18:42 2013 -0400 - - HHH-8211 Fixed checkstyle issues in hibernate-ehcache module - -commit 0ff155d065b41ae212b303b8228b561425b9f17b -Author: Steve Ebersole -Date: Thu May 9 14:52:54 2013 -0500 - - HHH-8231 - Pass along IOException as cause when trying to open script outputs - -commit 8c95a6077a523c47482fbae14ab54b763fa73a23 -Author: Steve Ebersole -Date: Thu May 9 14:47:58 2013 -0500 - - HHH-8222 - Implement @NamedStoredProcedureQuery binding - -commit 40373412e05e91ad0aaf0feca06bc8515c6358b4 -Author: Steve Ebersole -Date: Tue May 7 21:18:40 2013 -0500 - - HHH-8220 - pom dependencies scope changed from compile to runtime - -commit 1df4b2ea3c98c74f3b6bbd42e266ee5c7ad60d27 -Author: Brett Meyer -Date: Tue May 7 16:02:37 2013 -0400 - - HHH-8226 table synonyms cannot find columns on Oracle - -commit f09a33760132a96d8836aa4fc17c393d8c03e20a -Author: Steve Ebersole -Date: Tue May 7 14:13:54 2013 -0500 - - HHH-5465 - HQL left join fetch of an element collection following a left join fetch of a one-to-one relationship causes NullPointerException - -commit 4c47ba13e3f96f9170d2d05f028ae2cf10cf1006 -Author: Christian Beikov -Date: Wed May 1 22:50:34 2013 +0200 - - HHH-5465 - HQL left join fetch of an element collection following a left join fetch of a one-to-one relationship causes NullPointerException (testcase) - -commit 9030fa015edfd7a3937cf186f8dd68519a7b2c32 -Author: Brett Meyer -Date: Fri May 3 17:24:44 2013 -0400 - - HHH-8217 Make generated constraint names short and non-random - -commit 9fc22a49be07b1699e6b70cbe0a38d83dd50682d -Author: Lukasz Antoniak -Date: Thu Apr 18 11:10:08 2013 +0200 - - HHH-7214 - Validation of duplicated discriminator values - -commit 51b9248c4bd91a6130825b50a30a41c11216a9fa -Author: Lukasz Antoniak -Date: Mon Apr 15 21:08:23 2013 +0200 - - HHH-6875 - Fix and test - -commit 2bc63badead578f90bcc269c9b56a25ab983f80b -Author: Steve Ebersole -Date: Tue May 7 08:02:00 2013 -0500 - - HHH-8220 - pom dependencies scope changed from compile to runtime - -commit 7004914ec0573d15c2e3c5431050131e4de27c34 -Author: Strong Liu -Date: Tue May 7 13:30:29 2013 +0800 - - HHH-8159 - Apply fixups indicated by analysis tools - -commit d67a96e813c16a363c7882e27aa773894b97bd83 -Author: Brett Meyer -Date: Mon May 6 19:56:13 2013 -0400 - - HHH-8225 EMF cannot be created, closed, then re-created in OSGi - -commit 1bf647b7ebd694caf4366f49c19825ede414b65c -Author: Gunnar Morling -Date: Thu May 2 19:11:35 2013 +0200 - - HHH-8218 - Upgrading to BV 1.1.0.Final and HV 5.0.1.Final - -commit 196885498bea1e8c9a365c333b9460c2094b2304 -Author: Gunnar Morling -Date: Fri May 3 12:59:06 2013 +0200 - - HHH-8219 - Removing references to methods added in Java 7 - -commit 77a4c3e52e3b1a369ba8031dcce8e3ea7f7b7e11 -Author: Gunnar Morling -Date: Fri May 3 12:33:40 2013 +0200 - - HHH-8219 - Adding Animal Sniffer plug-in to make sure only Java 6 APIs are used - -commit 23b6f6ab06a305b72e70c3623fe2404849f36fe5 -Author: Galder Zamarreño -Date: Mon May 6 11:44:56 2013 +0100 - - Add missing javadocs and fix rest of Checkstyle failures - -commit f40f814b001d20d6b33dd5c7b8b85bbf10968676 -Author: Brett Meyer -Date: Thu May 2 15:44:41 2013 -0400 - - 4.3.0.Beta2 post release - -commit 9a003f921b3ba0c9db2bbfa405f785976f588ef0 (tag: 4.3.0.Beta2) -Author: Brett Meyer -Date: Thu May 2 15:12:28 2013 -0400 - - 4.3.0.Beta2 release - -commit 3275855c5b634a2211d0683207a72deef455b321 -Author: Steve Ebersole -Date: Thu May 2 10:11:59 2013 -0500 - - HHH-8159 - Apply fixups indicated by analysis tools - -commit 364a47f2c746a5eeb1642102580a9daa8bc27fc9 -Author: Steve Ebersole -Date: Thu May 2 10:01:16 2013 -0500 - - HHH-8159 - Apply fixups indicated by analysis tools - -commit ad1d1ab8b4fa166de59bfcfbe57622e71b2448f9 -Author: Steve Ebersole -Date: Wed May 1 22:42:16 2013 -0500 - - HHH-8159 - Apply fixups indicated by analysis tools - -commit bfbc0b88a80bf2c4220c077795133f1ebbc7066f -Author: Steve Ebersole -Date: Wed May 1 18:53:55 2013 -0500 - - HHH-8159 - Apply fixups indicated by analysis tools - -commit 1b637030bd53a696cfcadd80d9a7cb3d08d4babb -Author: Christian Beikov -Date: Wed May 1 21:25:13 2013 +0200 - - HHH-8215 - Fix for windows build - -commit f83a2013b10a4993a379eb4e50d5acd79c346175 -Author: Brett Meyer -Date: Wed May 1 15:34:16 2013 -0400 - - HHH-7943 test fix - -commit 257d8ee370add4cf228c01229be120ab5648ae2c -Author: Brett Meyer -Date: Wed May 1 15:04:16 2013 -0400 - - HHH-7943 Corrected RegionFactoryInitiator for failing inifinispan tests - -commit 60513d2e2e96445a9090e2dc975e73ef703a52db -Author: Brett Meyer -Date: Wed May 1 14:13:22 2013 -0400 - - HHH-7995 Pushing class missed in previous commit - -commit 489ee4a734364db37a25a890760fa4a543867d6c -Author: Brett Meyer -Date: Wed May 1 14:10:53 2013 -0400 - - HHH-7943 Added support for ehcache and infinispan strategies and OSGi - services. Numerous ehcache and infinispan CL fixes. - -commit 9d134955c4f07de7b928e8c5ecbe727fc59c269d -Author: Steve Ebersole -Date: Wed May 1 14:00:49 2013 -0500 - - HHH-8212 - Add CLA ref to CONTRIBUTING.md - -commit 07a6abfab9987b4f46ec6951cb335be542fcb307 -Author: Steve Ebersole -Date: Wed May 1 13:46:23 2013 -0500 - - HHH-8159 - Apply fixups indicated by analysis tools - -commit 8c9ab58f444284e4f4ccd67fbf08759a53019ff1 -Author: Steve Ebersole -Date: Wed May 1 11:52:08 2013 -0500 - - HHH-8159 - Apply fixups indicated by analysis tools - -commit 2b20197249e2e94bc22b6d1be54b28458e36211c -Author: Steve Ebersole -Date: Wed May 1 11:28:23 2013 -0500 - - HHH-8207 - Locale conversion is broken - -commit b39fdbf1f8bfaf0e717deb5b8530bbe52534f665 -Author: Christian Beikov -Date: Sat Apr 27 11:54:09 2013 +0300 - - Fix string to locale conversion - - The original implementation didn't care about leading underscores. StringTokenizer skips leading separators which is actually wrong. new Locale("", "XX").toString() produces "_XX" which can't be converted back to the same locale with the original implementation. - -commit 4d04dfc0888bbb59c5a99d5fe13a2d37184eb28d -Author: Steve Ebersole -Date: Wed May 1 10:34:05 2013 -0500 - - HHH-8207 - Locale conversion is broken - -commit a1d190d6748ed8ec1675659a2f11e5eb63c5210f -Author: Steve Ebersole -Date: Wed May 1 09:23:31 2013 -0500 - - HHH-8159 - Apply fixups indicated by analysis tools - -commit fe9e2798decfac61dbfd24227288199446690145 -Author: Brett Meyer -Date: Tue Apr 30 23:58:25 2013 -0400 - - HHH-7944 envers classloader issues - Conflicts: - hibernate-envers/src/main/java/org/hibernate/envers/configuration/spi/AuditConfiguration.java - -commit 04fe84994d848536d591b6d592c5cf80fb9386dd -Author: Brett Meyer -Date: Tue Apr 30 23:51:44 2013 -0400 - - HHH-7995 Added support for TypeContributors in OSGi. Integrated with - envers - Conflicts: - hibernate-core/src/main/java/org/hibernate/cfg/Configuration.java - hibernate-entitymanager/src/main/java/org/hibernate/ejb/Ejb3Configuration.java - hibernate-osgi/src/main/java/org/hibernate/osgi/OsgiPersistenceProvider.java - hibernate-osgi/src/main/java/org/hibernate/osgi/OsgiSessionFactoryService.java - -commit 06fb9e70db2af2b39b8bb932c1b344718ff20944 -Author: Steve Ebersole -Date: Tue Apr 30 10:36:38 2013 -0400 - - HHH-7998 - Add TypeContributions contract - - Conflicts: - hibernate-core/src/main/java/org/hibernate/dialect/Dialect.java - hibernate-core/src/main/java/org/hibernate/metamodel/internal/MetadataImpl.java - hibernate-core/src/main/java/org/hibernate/metamodel/spi/TypeContributor.java - -commit 459c061eb62397aaadb751416e5147a8ac3fd7cf -Author: Steve Ebersole -Date: Tue Apr 30 15:31:10 2013 -0500 - - HHH-8159 - Apply fixups indicated by analysis tools - -commit 20866585f35691fb98b69cff352a4a7ee3f6edcb -Author: Steve Ebersole -Date: Tue Apr 30 14:40:44 2013 -0500 - - HHH-8159 - Apply fixups indicated by analysis tools - -commit 97e28200f0eb61d6b59bf782e8fb60559679c7a2 -Author: Steve Ebersole -Date: Tue Apr 30 13:27:38 2013 -0500 - - HHH-8159 - Apply fixups indicated by analysis tools - -commit 09a54fdc5457c5a2e0c1d3af0472f332063829c6 -Author: Steve Ebersole -Date: Tue Apr 30 09:30:04 2013 -0500 - - HHH-8159 - Apply fixups indicated by analysis tools - -commit 59d1facfb6bf3d015802bfa7acd86b12a182112b -Author: Steve Ebersole -Date: Tue Apr 30 09:26:55 2013 -0500 - - HHH-8159 - Apply fixups indicated by analysis tools - -commit fdb30196fcf051616550cb324cfe34c2f9c531db -Author: Steve Ebersole -Date: Tue Apr 30 08:51:04 2013 -0500 - - HHH-8159 - Apply fixups indicated by analysis tools - -commit bf781d4bf71be743420a62d4aacda2aff665608e -Author: Steve Ebersole -Date: Tue Apr 30 08:36:27 2013 -0500 - - HHH-8159 - Apply fixups indicated by analysis tools - -commit 9b37f2a297ddf264828a52734a0cf597e429327a -Author: Steve Ebersole -Date: Tue Apr 30 08:29:06 2013 -0500 - - HHH-8159 - Apply fixups indicated by analysis tools - -commit d2ec51489443672d47690fbaea6ca631335e574f -Author: Steve Ebersole -Date: Tue Apr 30 08:07:24 2013 -0500 - - HHH-8159 - Apply fixups indicated by analysis tools - -commit 1c690ca89b433548ec0b8840ce08b649c71664d9 -Author: Steve Ebersole -Date: Mon Apr 29 20:24:54 2013 -0500 - - HHH-8159 - Apply fixups indicated by analysis tools - -commit 3b8320da7e5b1282e1cad2e90830e2756885b8d8 -Author: Steve Ebersole -Date: Mon Apr 29 18:52:08 2013 -0500 - - HHH-8159 - Apply fixups indicated by analysis tools - -commit 0edd7b75b82b6038dfc3234ef3e3e4cde4a4acc9 -Author: Brett Meyer -Date: Mon Apr 29 11:50:11 2013 -0400 - - HHH-7943 C3P0 and Proxool OSGi support - -commit 30d63bf58fe9b15208340b860787d985f032d11a -Author: Brett Meyer -Date: Mon Apr 22 13:54:40 2013 -0400 - - HHH-7995 Auto-discovery of Hibernate extension points in OSGi - -commit 398000517f6fa1d7ef29f4b3ca827440af2f3a56 -Author: Brett Meyer -Date: Fri Apr 26 12:39:54 2013 -0400 - - HHH-7943 Reworked "Availability" concepts into "strategy registration - providers". Updated proxool and c3p0 to use strategy selection. - -commit 194cd5e4bdc369fe258e37e4303d1cd6d3af5363 -Author: Steve Ebersole -Date: Mon Apr 29 09:55:39 2013 -0500 - - HHH-8159 - Apply fixups indicated by analysis tools - -commit b51164aef6cadb5817f910f059a1c18ee8c4f68c -Author: Steve Ebersole -Date: Fri Apr 26 18:50:39 2013 -0500 - - HHH-8159 - Apply fixups indicated by analysis tools - -commit 021401835c52a607aa6b76a8d5ebcac53b516031 -Author: Steve Ebersole -Date: Fri Apr 26 14:10:54 2013 -0500 - - HHH-8159 - Apply fixups indicated by analysis tools - -commit fc02da1c12f6a7487b56e76cf817dc72da8314e6 -Author: Steve Ebersole -Date: Fri Apr 26 12:30:34 2013 -0500 - - HHH-8159 - Apply fixups indicated by analysis tools - -commit 48331ed8cf50c4862bb0c3304571430ed4070c66 -Author: Steve Ebersole -Date: Fri Apr 26 11:36:58 2013 -0500 - - HHH-8159 - Apply fixups indicated by analysis tools - -commit 42fd32a81aa6a7293785effff587635875e4f979 -Author: Steve Ebersole -Date: Fri Apr 26 11:19:54 2013 -0500 - - HHH-8159 - Apply fixups indicated by analysis tools - -commit e09d6855a2855aec178aa857115ca81f0adfb06e -Author: Steve Ebersole -Date: Fri Apr 26 11:04:40 2013 -0500 - - HHH-8159 - Apply fixups indicated by analysis tools - -commit eaef21076dd3726f6c28c81ee1c7961a40b0fd31 -Author: Steve Ebersole -Date: Thu Apr 25 17:38:43 2013 -0500 - - HHH-8159 - Apply fixups indicated by analysis tools - -commit b05b7800e186c72d2f06c864fe78b32293af200e -Author: Steve Ebersole -Date: Thu Apr 25 17:16:07 2013 -0500 - - HHH-8159 - Apply fixups indicated by analysis tools - -commit fecde044726fbaf122f1e0dc3d103361704f0bd3 -Author: Strong Liu -Date: Fri Apr 26 02:44:18 2013 +0800 - - HHH-8127 OutOfMemoryError when running tests - -commit ce08bdb7a856c87064ecb4f05ee463afbbd8707d -Author: Steve Ebersole -Date: Thu Apr 25 10:01:09 2013 -0500 - - HHH-8159 - Apply fixups indicated by analysis tools - -commit 955c99cc430ba65b1dcb46f4c389e94f28f09b30 -Author: Steve Ebersole -Date: Thu Apr 25 09:46:12 2013 -0500 - - HHH-8159 - Apply fixups indicated by analysis tools - -commit 932d85ba26238cc73ef5cfb0874548c7e9abd31a -Author: Strong Liu -Date: Thu Apr 25 19:02:51 2013 +0800 - - HHH-8203 HHH-8204 Hibernate 4.x can't work with proxool 0.9.1 - -commit dfc8c4b10fe280a22058726ea72674b5c9dfb0d9 -Author: Strong Liu -Date: Thu Apr 25 15:11:45 2013 +0800 - - Revert "HHH-8127 OutOfMemoryError when running tests" - - This reverts commit 11464ea0976343a27ddada0af4d0bca7182ce498. - -commit 377c3000712ea0968d4e2b9f5ef0a3a31b38f827 -Author: Brett Meyer -Date: Wed Apr 17 11:34:24 2013 -0400 - - HHH-8162 Make unique constraint handling on schema update configurable - -commit 4d461cc44ebe0f017c6a79471e8e8f77c48450fc -Author: Brett Meyer -Date: Wed Apr 24 15:42:44 2013 -0400 - - HHH-2872 test case - -commit 5fc70fc5ab89bc01940e4cf7816c4792da5b715c -Author: Steve Ebersole -Date: Wed Apr 24 13:28:26 2013 -0500 - - HHH-8159 - Apply fixups indicated by analysis tools - -commit 8c28ba84633982c9cb889b8d8375979f0035b56e -Author: Steve Ebersole -Date: Tue Apr 23 18:13:41 2013 -0500 - - HHH-8159 - Apply fixups indicated by analysis tools - -commit 900ad4be11ae008c1ed87fed190cb132e206ea1f -Author: Gail Badner -Date: Mon Apr 22 15:53:09 2013 -0700 - - HHH-7841 - Redesign Loader - -commit 8c7dfc9d285260b88ce95f25bf7b743650cb1631 -Author: Gail Badner -Date: Mon Apr 22 15:50:35 2013 -0700 - - HHH-7841 - Redesign Loader - -commit 63093dbfd9f227f059b38f33806a6882e3e34200 -Author: Steve Ebersole -Date: Mon Apr 22 17:14:29 2013 -0500 - - HHH-8159 - Apply fixups indicated by analysis tools - -commit 11464ea0976343a27ddada0af4d0bca7182ce498 -Author: Strong Liu -Date: Mon Apr 22 18:41:02 2013 +0800 - - HHH-8127 OutOfMemoryError when running tests - -commit 3343e6d6c36a96c2c9003f7ee016f59228d27ab9 -Author: Steve Ebersole -Date: Fri Apr 19 15:49:53 2013 -0500 - - HHH-8159 - Apply fixups indicated by analysis tools - -commit 6a388b754c2d17b690bf6095fe425c2202dbcc3f -Author: Steve Ebersole -Date: Fri Apr 19 14:35:22 2013 -0500 - - HHH-8159 - Apply fixups indicated by analysis tools - -commit bca73db4f991c44d7a4bbdbc40932a54894c7feb -Author: Gail Badner -Date: Fri Apr 19 02:16:38 2013 -0700 - - HHH-7841 - Redesign Loader - -commit b6fd7bf22379bcb05f4660a62f05520878b3a105 -Author: Gail Badner -Date: Fri Apr 19 02:15:59 2013 -0700 - - HHH-7841 - Redesign Loader - -commit 073bb53c8fdfc9f7bf27dd054136ae35945f83ce -Author: Gail Badner -Date: Thu Apr 18 14:23:33 2013 -0700 - - HHH-7841 - Redesign Loader - -commit f3298620ee7c4d62e5a971417430a6fd595346ea -Author: Gail Badner -Date: Thu Apr 18 13:17:29 2013 -0700 - - HHH-7841 - Redesign Loader - -commit 0416d3f24ad7f0a79ed5667b0097214a5cef0753 -Author: Steve Ebersole -Date: Thu Apr 18 13:40:56 2013 -0500 - - HHH-8146 - Update to use maven-publishing plugin - -commit 3600ffb7f2cdd3a4917221f3b0c4009ba0ebcadc -Author: Steve Ebersole -Date: Thu Apr 18 12:47:18 2013 -0500 - - HHH-7841 - Redesign Loader - -commit b8b9735cf5e772abe60023f30372a80b851dfaa6 -Author: Steve Ebersole -Date: Wed Apr 17 13:26:55 2013 -0500 - - simple build script fix for IDEA project generation - -commit a8f0552b81388dbf9e44d5b7dcbe78955963db49 -Author: Lukasz Antoniak -Date: Wed Apr 17 15:57:54 2013 +0200 - - HHH-8189 - Rollback audit records on flushed transaction rollback - -commit 83421940576f79e1079163f60ef5b7617a28975e -Author: Lukasz Antoniak -Date: Wed Apr 17 09:31:20 2013 +0200 - - HHH-5845 - Lazy loading of audited entites with revision type DEL - -commit 8eeef7af3b36f8d91bd974f811fa05eb0846603b -Author: Steve Ebersole -Date: Tue Apr 16 18:25:20 2013 -0500 - - HHH-8146 - Update to use maven-publishing plugin - -commit 079fd4ac0163aa1c3d66dafa9309a0ce6d5f41bf -Author: Brett Meyer -Date: Tue Apr 16 10:28:40 2013 -0400 - - HHH-8160 Corrected Import-Package in module manifests - -commit 3e160b9343ac48139a5979577d0d51640be31014 -Author: Strong Liu -Date: Tue Apr 16 12:41:24 2013 +0800 - - HHH-8186 Typo in docs, Caching section nonstrict != nontrict - -commit fafce001e7eb278ff868bbecf960b065661e68e7 -Author: Steve Ebersole -Date: Mon Apr 15 20:46:18 2013 -0500 - - HHH-7841 - Redesign Loader - -commit cbfa233ea1c54d63e7d5f0292e54071cf80b0813 -Author: Steve Ebersole -Date: Mon Apr 15 14:50:43 2013 -0500 - - HHH-7880 - SessionFactory.openStatelessSession() does not respect tenant identifier from CurrentTenantIdentifierResolver - -commit 1af972469271ef8b7eed66d8637938d6065142da -Author: Brett Meyer -Date: Mon Apr 15 13:00:53 2013 -0400 - - HHH-8183 Added setting to enable synonyms - -commit 15a0868bd707b7d9f0d0a84fe008d1f48fef6bb2 -Author: Baptiste Mathus -Date: Mon Apr 15 11:04:27 2013 +0200 - - Adding SYNONYM in the list of searched types. - -commit d9aa9d3cd213713f504c054bbafa57baca68da88 -Author: Steve Ebersole -Date: Mon Apr 15 11:21:02 2013 -0500 - - HHH-7974 - Session.getTenantIdentifier() not callable without active transaction - -commit 8429d2bcb8cec68dcd6f7aab8fa3d1b282af462b -Author: Steve Ebersole -Date: Mon Apr 15 10:36:17 2013 -0500 - - HHH-8173 - AvailableSettings constants for javax.persistence.schema-generation contain space - -commit a906d1ffb244d5ad8732a16f3756233da0e15b12 -Author: Steve Ebersole -Date: Mon Apr 15 09:50:33 2013 -0500 - - HHH-8137 - Javadoc generation is currently not playing nicely with Java7 javadoc changes - -commit f2b9ab8278aa724a5be6ce612c2699f17bb79c9c -Author: Lukasz Antoniak -Date: Sun Apr 14 22:25:46 2013 +0200 - - HHH-8171 - Cleanup - -commit 4796553a3f44e2263f7af245a94e4bebd2d43680 -Author: Kristoffer Lundberg -Date: Thu Apr 11 20:10:10 2013 +0200 - - HHH-8171 - SETORDINAL to support set of embeddables - -commit 8bca70e6a92462c8691d5738fb6860593bd1a36e -Author: Steve Ebersole -Date: Fri Apr 12 14:08:35 2013 -0500 - - HHH-7841 - Redesign Loader - -commit 1d9f6201a06a01c6228b545f6544fbd18599a312 -Author: Steve Ebersole -Date: Fri Apr 12 09:04:12 2013 -0500 - - HHH-7841 - Redesign Loader - -commit cbbadea5381a8dd12613202ff0a492cf34746aa5 -Author: Nikolay Shestakov -Date: Fri Apr 12 09:56:41 2013 -0400 - - HHH-7908 Logging level checking - - Conflicts: - hibernate-core/src/main/java/org/hibernate/internal/SessionFactoryImpl.java - -commit 03daecfe496b880daaea36fc58e6fe3d60528481 -Author: Zbyněk Roubalík -Date: Fri Mar 15 14:34:43 2013 +0100 - - Test fix: em2 should be closed before we do latch.countDown() - -commit 505904026de766c60ff00c5e201e486839452800 -Author: Brett Meyer -Date: Thu Apr 11 18:16:10 2013 -0400 - - HHH-7478 Corrected test for envers package changes - -commit 6be8b4aad03e42f8758df217546010371ec3ee23 -Author: Lukasz Antoniak -Date: Fri Feb 8 11:15:43 2013 +0100 - - HHH-7478 - Fix and test - -commit 7778aae3b7366137643f9dd3f1c088ca498051cb -Author: Jeremy Whiting -Date: Thu Apr 11 17:52:20 2013 -0400 - - HHH-8180 Checks for logging level. Logging level check moved to variable - outside for loop. - -commit bd315f01a98b2570ba294f14527f17185485c827 -Author: Lukasz Antoniak -Date: Sat Mar 30 18:02:48 2013 +0100 - - HHH-7357 - Constraint violation exception while inserting NULL to not nullable column - -commit 6d6dcdf26710c9fe6569088dfd1c942abc152c9b -Author: Lukasz Antoniak -Date: Mon Apr 8 15:53:58 2013 +0200 - - HHH-7605 - Event cache descriptive error messages - -commit fb54d0f3a50f61880f2a67dac5a59fbbe0273f71 -Author: Lukasz Antoniak -Date: Fri Mar 22 18:54:05 2013 +0100 - - HHH-8103 - Oracle LOBs with SequenceIdentityGenerator - -commit ba1b02ed22ea08a265b9df8fdaa1db85019051ae -Author: Steve Ebersole -Date: Thu Apr 11 14:57:43 2013 -0500 - - HHH-7841 - Redesign Loader - -commit 560a397a01e4ff7043a7c82bce4091e18ed8c49b -Author: Gail Badner -Date: Wed Apr 10 16:17:27 2013 -0700 - - HHH-7841 - Redesign Loader - -commit b3791bc3c3f2f4e11426381fc19398b99746ae9f -Author: Gail Badner -Date: Wed Apr 3 00:55:20 2013 -0700 - - HHH-7841 : Redesign Loader - -commit 3f8699c9139be43048c27c4e5a6069900cf72dde -Author: Steve Ebersole -Date: Wed Mar 27 09:11:11 2013 -0500 - - HHH-7841 - Redesign Loader - -commit 88d5c02d7f8c68b035445ca5d3d1ba87879c39b6 -Author: Steve Ebersole -Date: Wed Mar 27 08:29:24 2013 -0500 - - HHH-7841 - Redesign Loader - -commit 1b10ee72f534540f65eecf64946c652091a3d096 -Author: Steve Ebersole -Date: Wed Mar 27 08:17:50 2013 -0500 - - HHH-7841 - Redesign Loader - initial test of ResultSetProcessor - -commit 87012e81012ff10fc0ced74f6b86cccd7970cb9f -Author: Steve Ebersole -Date: Mon Mar 18 09:30:13 2013 -0500 - - HHH-8077 - Add MDC usage into attribute walking to help decode logs from recursive calls - -commit 6ea20fa308b5477c496f0520c1e6f4d604dac55f -Author: Gail Badner -Date: Tue Mar 26 23:18:46 2013 -0700 - - HHH-7841 : Add LoadQuery for generating SQL - -commit 8b7091e1c74b233d8bafdc961c501857de26df77 -Author: Steve Ebersole -Date: Tue Mar 12 10:57:25 2013 -0500 - - HHH-7841 - Redesign Loader - -commit 3d332371bd31841ee065b591b0e4f3e8cff1b3a2 -Author: Steve Ebersole -Date: Mon Mar 11 15:55:53 2013 -0500 - - HHH-7841 - Redesign Loader - -commit c75dafbeddc12c5d77ed1b893feb1f4163827216 -Author: Steve Ebersole -Date: Tue Mar 5 14:12:05 2013 -0600 - - HHH-7841 - Redesign Loader - -commit a102bf2c31d931044504ad460bee0435695042be -Author: Steve Ebersole -Date: Mon Mar 4 15:58:16 2013 -0600 - - HHH-7841 - Redesign Loader - -commit c259e157b0286b7c36859710215eca2e0da4fd4a -Author: Steve Ebersole -Date: Thu Apr 11 14:28:22 2013 -0500 - - HHH-8167 - Adding @NotNull to a @ManyToOne association with @JoinColumnsOrFormulas logs a ClassCastException - -commit 53f7b73adb88f19bd4e48667688b4298d96e2b9a -Author: Brett Meyer -Date: Thu Apr 11 14:18:58 2013 -0400 - - HHH-8178 Natural IDs generate one UniqueKey for all columns - -commit d39272a28052dc48fb1a53acb8361aa82b259088 -Author: Brett Meyer -Date: Thu Apr 11 12:40:14 2013 -0400 - - HHH-8175 Test fixes for postgresplus92 - -commit 35bd192556ba9318a96f9374a2dfb1557e5a1fb2 -Author: Lukasz Antoniak -Date: Thu Apr 11 09:12:23 2013 +0200 - - HHH-2403 - Test cleanup - -commit 692959a48e8f6f03ecdbade60a99d9879a61bdfb -Author: Steve Ebersole -Date: Wed Apr 10 16:24:43 2013 -0500 - - HHH-8170 - Deprecate Hibernate @ForeignKey in favor of JPA 2.1 introduced @ForeignKey annotation - -commit 33640ae2bdd37a0102e21f5a3ff8a47f0d6361b5 -Author: Steve Ebersole -Date: Wed Apr 10 15:09:45 2013 -0500 - - HHH-8164 - Deprecate @Sort in favor of @SortNatural and @SortComparator - -commit 9c3bad3b2dd443b71d8b323918c4396e46d37126 -Author: Brett Meyer -Date: Wed Apr 10 15:12:32 2013 -0400 - - HHH-8084 LobMergeTest fails on oracle - -commit 6386ba4d887e4ee83fec6d08d5700802f9caa235 -Author: Brett Meyer -Date: Wed Apr 10 14:46:08 2013 -0400 - - HHH-7944 Corrected envers JPA imports in manifest - -commit 54bc9fbf9db36e55a869a5a7bacbc6897ae2f18e -Author: Steve Ebersole -Date: Wed Apr 10 12:26:33 2013 -0500 - - HHH-8163 - Deprecate @IndexColumn and add @ListIndexBase - -commit 48063242912356065ced416ca1bfdbe415ca5124 -Author: Steve Ebersole -Date: Wed Apr 10 11:48:24 2013 -0500 - - HHH-8163 - Deprecate @IndexColumn and add @ListIndexBase - -commit bb5e07dce95a488e6cf62ea2983f6a17c6b7d762 -Author: Steve Ebersole -Date: Tue Apr 9 20:40:36 2013 -0500 - - HHH-8159 - Apply fixups indicated by analysis tools - -commit b8ebe0ef4da28329e0ca9141b74cea9437359ba9 -Author: Steve Ebersole -Date: Tue Apr 9 19:40:58 2013 -0500 - - HHH-8159 - Apply fixups indicated by analysis tools - -commit 34e7512c76b4634fbb264df5e71fcf5fa12d447f -Author: Steve Ebersole -Date: Tue Apr 9 19:38:12 2013 -0500 - - HHH-8159 - Apply fixups indicated by analysis tools - -commit 9ace3a6a082cb0784f7146530b94081f52303685 -Author: Brett Meyer -Date: Tue Apr 9 13:39:09 2013 -0400 - - HHH-7617 Gradle eclipse task missing src paths and test source generation - -commit ea9f478e0f30d3625b7611431415f535fdae5bb4 -Author: Steve Ebersole -Date: Tue Apr 9 12:58:18 2013 -0500 - - HHH-8159 - Apply fixups indicated by analysis tools - -commit 1a066dd6b351f45df0969554d10be6392fa2e2a6 -Author: Steve Ebersole -Date: Tue Apr 9 12:53:29 2013 -0500 - - HHH-8159 - Apply fixups indicated by analysis tools - -commit 06bb009dc6a5312ab7b8c8fb86d76d5c60378fef -Author: Brett Meyer -Date: Mon Apr 8 19:38:07 2013 -0400 - - HHH-8160 Support unmanaged JPA in 4.3.x - -commit 73891e06d5d6fa1daff49abc1cbff4caf13bdcb1 -Author: Brett Meyer -Date: Mon Apr 8 18:59:21 2013 -0400 - - HHH-8160 Corrected OSGi scanner - -commit cc4ef44670c827ab7fbdb15d93fcfacb8ecb2148 -Author: Brett Meyer -Date: Mon Apr 8 18:53:44 2013 -0400 - - HHH-8160 Updated for Gradle 1.5 OSGi plugin changes and package - versioning issues - -commit 802fcf7b4e2a6a587cfe4e5e5877d04fcaae66a7 -Author: Lukasz Antoniak -Date: Tue Apr 9 11:52:40 2013 +0200 - - HHH-8049 - Fix and test - -commit 96aa4a623911a7525e6a44a5ec8e83383abd8b5a -Author: Steve Ebersole -Date: Mon Apr 8 21:23:51 2013 -0500 - - HHH-8159 - Apply fixups indicated by analysis tools - -commit 826aa6301fbacb5567fdca05d64f81abd0284b62 -Author: Steve Ebersole -Date: Mon Apr 8 14:27:47 2013 -0500 - - HHH-8156 - Apply new Gradle plugins - -commit e019c2ac19d41fe75afbaf6482f1aa7a73c87485 -Author: Steve Ebersole -Date: Fri Apr 5 16:53:29 2013 -0500 - - HHH-8147 - Update to use distribution plugin for createing release bundles - -commit 38556485fe7c0cd22c1cf2eed229b7c7699eeb90 -Author: Zbyněk Roubalík -Date: Mon Apr 8 17:00:50 2013 +0200 - - HHH-8157 Adding DBAllocator labels for Postgresql 9.2, Postgres Plus 9.2 and IBM DB2 10 - -commit cf921df1d06c684fafd2c0a38949333de3f7ba6b -Author: Brett Meyer -Date: Fri Apr 5 12:15:48 2013 -0400 - - HHH-8092 Added comment about unique constraints in schema update. - -commit 5cc051e1dfeb5664d8d1eb9a289097d7f9bfb0e2 -Author: Lukasz Antoniak -Date: Mon Apr 8 14:43:29 2013 +0200 - - HHH-7944 - Separation of Envers API, SPI and internal packages - -commit 2b2f333593c1989624d332d47b1358afd1999a91 -Author: Steve Ebersole -Date: Fri Apr 5 15:15:11 2013 -0500 - - HHH-8147 - Update to use distribution plugin for createing release bundles - -commit e037fcb55f01af0fcb908608b400e639c5c1d09e -Author: Steve Ebersole -Date: Fri Apr 5 14:40:43 2013 -0500 - - HHH-8145 - Add MaxPermSize to test configuration - -commit 64cbd2fdd0afcf15bf7db7d57b3678e97f83f07f -Author: Steve Ebersole -Date: Fri Apr 5 14:38:23 2013 -0500 - - HHH-8151 - Consolidate defining "java language level" in one place - -commit 0c72623038cee349c3b6adafeb221e1a0f54c1c7 -Author: Steve Ebersole -Date: Fri Apr 5 14:30:56 2013 -0500 - - HHH-8152 - General cleanup - -commit 4213e3c13a2ae560f147aa62afe2d3d5030d57ab -Author: Lukasz Antoniak -Date: Fri Apr 5 11:50:33 2013 +0200 - - HHH-5845 - Cleanup - -commit 52ab4baafb0daea8bc3f5aaa83201b07ee81ef75 -Author: Adar Dembo -Date: Tue Mar 26 16:37:00 2013 -0700 - - HHH-5845 (partial fix) Lazy Loading of audited entites with revision type 'delete' - - Fixed for to-one associations, but not for one-to-many and other collection types. - -commit 378fc1378a15e78ea7cb749892c9ac5b95a89070 -Author: Steve Ebersole -Date: Thu Apr 4 14:30:53 2013 -0500 - - HHH-8143 - Create a 'generateSources' task that performs all generation tasks - -commit d68dcd9ae6c6785eade5ea5002104d8185a325c3 -Author: Brett Meyer -Date: Thu Apr 4 13:54:31 2013 -0400 - - HHH-7993 Support jar scanning in OSGi - -commit d6fe409a48d44c5c99cba054745431ff95425053 -Author: Steve Ebersole -Date: Thu Apr 4 13:42:17 2013 -0500 - - HHH-8142 - Create a 'compile' task that performs all copmpilations - -commit 26868ad3144c9883a481bc65f769675d8d5064c4 -Author: Steve Ebersole -Date: Thu Apr 4 13:01:39 2013 -0500 - - HHH-8141 - Upgrade to Gradle 1.5 - -commit 907a2750b6dbecb708b70f59757811efd18d5360 -Author: Steve Ebersole -Date: Thu Apr 4 07:51:18 2013 -0500 - - HHH-8138 - Log SQLException in DatabaseTarget with cause of schema export CREATE statement failure - -commit 2a96ed865dd76b02dfff6aa63c677dc7d9c65655 -Author: Steve Ebersole -Date: Thu Apr 4 07:47:43 2013 -0500 - - HHH-8137 - Javadoc generation is currently not playing nicely with Java7 javadoc changes - -commit 2c5cb697e12a1167300c910c1a25af8493c0a403 -Author: Steve Ebersole -Date: Wed Apr 3 12:17:58 2013 -0500 - - 4.3.0.Beta1 release - -commit 485a5314e96ff0b816644877f8bd2cc018faadf9 (tag: 4.3.0.Beta1) -Author: Steve Ebersole -Date: Wed Apr 3 11:39:14 2013 -0500 - - 4.3.0.Beta1 release - -commit 442c3268b35cdecd6b35c51a1527a0885aba1477 -Author: Steve Ebersole -Date: Wed Apr 3 11:20:52 2013 -0500 - - HHH-8113 - Persistence.createEntityManagerFactory() should run schema export if JPA properties are set - -commit 2f40949719fdb770e12716e8cb705a96046d24e3 -Author: Steve Ebersole -Date: Wed Apr 3 10:51:43 2013 -0500 - - HHH-8129 - Unify BaseQueryImpl and AbstractQueryImpl hierarchies - -commit e17819ed61659a8835a052a580893730cc3972b1 -Author: Brett Meyer -Date: Wed Apr 3 11:16:20 2013 -0400 - - HHH-8136 Correct "to_char" function in HSQL - -commit 47443bcf57cb4e66dbc02cd6c7e31459a0b4003c -Author: Brett Meyer -Date: Wed Apr 3 10:29:12 2013 -0400 - - HHH-8127 Corrected failing test - -commit bae5a85c26c88d1a732cda4caf597f0d1fdb7e68 -Author: Strong Liu -Date: Wed Apr 3 10:27:38 2013 -0400 - - HHH-8127 OutOfMemoryError when running tests - - Conflicts: - hibernate-core/src/test/java/org/hibernate/cfg/beanvalidation/ApplySchemaConstraintTest.java - hibernate-core/src/test/java/org/hibernate/test/annotations/entity/BasicHibernateAnnotationsTest.java - -commit ea8f587800d75bbbf16dbd06eb7a09967d8f2522 -Author: Steve Ebersole -Date: Tue Apr 2 20:39:37 2013 -0500 - - HHH-8121 - Make property-able JPA settings defined in persistence.xml available in EMF.getProperties() - -commit 076e17e5b130f2553ad03f18025ca8644d773f4a -Author: Steve Ebersole -Date: Tue Apr 2 20:10:44 2013 -0500 - - HHH-7957 - Integrate Latest draft(s) of the JPA 2.1 spec - -commit 831636768373449e73cf542aeb36581db49bef90 -Author: Steve Ebersole -Date: Tue Apr 2 14:55:19 2013 -0500 - - HHH-8113 - Persistence.createEntityManagerFactory() should run schema export if JPA properties are set - -commit 84520cd6e36e9207c41528cf9311cae905a86425 -Author: Steve Ebersole -Date: Tue Apr 2 14:46:08 2013 -0500 - - HHH-7957 - Integrate Latest draft(s) of the JPA 2.1 spec - -commit 04a9701f8b1c6a70e5edc5af932246083515f679 -Author: Steve Ebersole -Date: Mon Apr 1 08:23:41 2013 -0500 - - HHH-7714 - Add support for EntityMode.MAP to JPA Criteria API - -commit c694c26c1dd52003a590d086c50fceff7a0a7f0a -Author: Steve Ebersole -Date: Sun Mar 31 10:43:28 2013 -0500 - - HHH-7957 - Integrate Latest draft(s) of the JPA 2.1 spec - -commit bc85168015927f8fc086c812e0e29ab0f328f8c8 -Author: Steve Ebersole -Date: Fri Mar 29 12:43:17 2013 -0500 - - HHH-8122 - Scrub known-sensitive settings from EMF.getProperties() - -commit f77b068e91106d2f52efb85d9b07a91dd10c9481 -Author: Brad Koehn -Date: Wed Mar 27 09:41:19 2013 -0500 - - HHH-7714 Add support for EntityMode.MAP to JPA Criteria API - (cherry picked from commit 2758b8b49400b3aae6fbbfc78226f1f622f1bae5) - - Conflicts: - - hibernate-entitymanager/src/main/java/org/hibernate/jpa/criteria/predicate/InPredicate.java - hibernate-entitymanager/src/main/java/org/hibernate/jpa/internal/metamodel/MetadataContext.java - -commit 1b05455d1e9d3cc35e22466848fb7ccca644b19e -Author: Strong Liu -Date: Sat Mar 16 16:45:58 2013 +0800 - - HHH-7667 docs - -commit 06e3313f232d7c707f5b391da7bbfe76b69c885e -Author: Strong Liu -Date: Thu Mar 14 15:43:20 2013 +0800 - - HHH-7746 - docs - -commit 3c6f27a5dd6c0f16f7d8f7513122f474b9987234 -Author: Strong Liu -Date: Wed Mar 13 22:56:03 2013 +0800 - - HHH-7872 docs - -commit bc077b7e88932e28cece1a074d1e797b5ebd5329 -Author: Brett Meyer -Date: Wed Mar 27 18:34:24 2013 -0400 - - Revert "HHH-8095 Update javax.transaction dependency so that it auto-generates a" - - This reverts commit f2e4e32558301f779023f27cb3d8abe4bfaae369. - -commit e9e29a40be095445380794ec1993c7282efcb5a7 -Author: Brett Meyer -Date: Wed Mar 27 15:04:48 2013 -0400 - - HHH-8096 Re-work the OSGi class loading concepts - - Conflicts: - hibernate-entitymanager/src/main/java/org/hibernate/ejb/Ejb3Configuration.java - hibernate-entitymanager/src/main/java/org/hibernate/ejb/HibernatePersistence.java - hibernate-osgi/src/main/java/org/hibernate/osgi/HibernateBundleActivator.java - -commit f2e4e32558301f779023f27cb3d8abe4bfaae369 -Author: Tim Ward -Date: Wed Mar 27 12:16:29 2013 -0400 - - HHH-8095 Update javax.transaction dependency so that it auto-generates a - version range - - Conflicts: - libraries.gradle - -commit 7d99ca57f3da15a8843332e52e295bf7ea94254b -Author: Steve Ebersole -Date: Tue Mar 26 11:14:14 2013 -0500 - - HHH-7402 - Improve performance of named query registry - -commit dc193c32c588d609ab45ff96511d5f9219fed569 -Author: Brett Meyer -Date: Tue Mar 26 10:58:17 2013 -0400 - - HHH-7984 Handle Oracle statements on release - -commit 1ee3be2da791b7d5a37ec065611c9b786be6662e -Author: Strong Liu -Date: Tue Mar 26 16:35:16 2013 +0800 - - HHH-7869 code format - -commit 681528b7cc86b34fb02b2f8c2e21fa6b2939ee85 -Author: Strong Liu -Date: Mon Dec 17 14:09:14 2012 +0800 - - HHH-7869 simple improvement, using generic - -commit 8998b4154a6000b468e4b3432a2febdd1423a150 -Author: Strong Liu -Date: Mon Dec 17 14:08:51 2012 +0800 - - HHH-7869 bad performance problem with org.hibernate.internal.util.StringHelper#firstIndexOfChar - -commit bb231dd378888aefe99b3ff387ee871028420ba4 -Author: Brett Meyer -Date: Mon Mar 25 16:20:52 2013 -0400 - - HHH-6496 Added LOG - -commit a0bbf0d0296be2f4c13c948bafddd6f9d9238c22 -Author: Kamyar Sajjadi -Date: Mon Dec 17 15:49:02 2012 +0100 - - HHH-6496 - Changed line 200 returning real object instead of proxy - -commit d3867e9c1bbc63624b162de63b76b0c370536116 -Author: Hardy Ferentschik -Date: Thu Mar 14 19:52:42 2013 +0100 - - HHH-8100 Update to BV 1.1 (1.1.0.CR3 and matching Hibernate Validator 5.0.0.CR4); plus upgrade classmate to 0.8.0 - -commit 3bc89ad30f5ee2f1794541785a9ff6bdd3c82c3e -Author: Steve Ebersole -Date: Mon Mar 25 15:03:26 2013 -0500 - - HHH-8099 - CDI 1.1 - -commit 5e7b3601a974ecf0a2f2c60aedc6be1931388eef -Author: Lukasz Antoniak -Date: Thu Mar 21 08:26:41 2013 +0100 - - HHH-7984 - Oracle callable statement closing - -commit 31219e25d7b4b232705de5af92a6043e2277a793 -Author: Steve Ebersole -Date: Mon Mar 25 09:42:27 2013 -0500 - - HHH-8107 - JandexHelper.getValue() returns Boolean instead of boolean, causing ClassCastException - -commit d184cb3eb4b7721ac3e9729c2a38d85150e40d46 -Author: Steve Ebersole -Date: Sun Mar 24 12:09:52 2013 -0500 - - HHH-7462 - Make JACC service - -commit e4c1db1e8f11c00d005539ca9208dd73946800eb -Author: Steve Ebersole -Date: Sat Mar 23 13:55:48 2013 -0500 - - HHH-8088 - Redesign Scanner contract - -commit a646b9309e9c224d8d97e7ea2e1caf3b2914e2a4 -Author: Steve Ebersole -Date: Sat Mar 23 13:24:50 2013 -0500 - - HHH-8098 - JTA 1.2 - -commit 86aca3d1015580130d85f15fdba37aeb6c560392 -Author: Steve Ebersole -Date: Fri Mar 22 15:17:33 2013 -0500 - - HHH-7981 - Load (now) locally defined orm.xsd while processing orm.xml files - -commit 03a56f58b99e0da977e395ae0af5d71edb77fb2f -Author: Lukasz Antoniak -Date: Fri Mar 22 16:02:47 2013 +0100 - - HHH-8087 - Cleanup - -commit fa12131267440ac6ac3c9f8bc9f9cc8e9804642f -Author: Lukasz Antoniak -Date: Fri Mar 22 15:23:54 2013 +0100 - - HHH-8087 - Fix and test - -commit 4eba1320fa5be9974f5d5d5553da870fce8f9e12 -Author: Strong Liu -Date: Fri Mar 22 16:33:36 2013 +0800 - - JPA-43 Impl Index and ForeignKey for JPA 2.1 - -commit 4b698302a5919b5c12208b3f89476ad74ad254d0 -Author: Strong Liu -Date: Fri Mar 22 16:06:21 2013 +0800 - - JPA-43 Impl Index and ForeignKey for JPA 2.1 - -commit eeca84460ef36f93339f98fed3ab4b7047625da2 -Author: Steve Ebersole -Date: Wed Mar 20 19:26:16 2013 -0500 - - HHH-8088 - Redesign Scanner contract - -commit a1afa0ce35d46eba2061beea8ba9ebd9040dd009 -Author: Steve Ebersole -Date: Thu Mar 21 18:10:22 2013 -0500 - - HHH-7981 - Load (now) locally defined orm.xsd while processing orm.xml files - -commit 06ab065272d79ca6fe9c90da64b2e35059118a65 -Author: Brett Meyer -Date: Thu Mar 21 15:57:43 2013 -0400 - - HHH-1904 Hash the natural id unique key names - -commit 721016cccbf30e43b2942165b18b765418136ef4 -Author: Brett Meyer -Date: Thu Mar 21 09:52:04 2013 -0400 - - HHH-8085 QueryCacheTest.testGetByCompositeId fails on db2-97 -- DB2 SQL - Error: SQLCODE=-613 - -commit b5457f37e270211ea34b5ee8f684891dc38c6f59 -Author: Brett Meyer -Date: Thu Mar 21 09:33:58 2013 -0400 - - HHH-8092 Configuration#generateSchemaUpdateScript does not create unique - constraints - -commit 467daa22b077b5f0fbfc37a706371fd8839cecf2 -Author: Steve Ebersole -Date: Wed Mar 20 22:02:39 2013 -0500 - - HHH-7981 - Load (now) locally defined orm.xsd while processing orm.xml files - -commit fbdca39506fa5c052c7d3e2bae3afa2e42f7d382 -Author: Brett Meyer -Date: Wed Mar 20 16:30:52 2013 -0400 - - HHH-1904 Identifier too long - -commit da5dd819a3b6af9ce7c8496c59e02a6470af46f1 -Author: Brett Meyer -Date: Tue Mar 19 18:27:47 2013 -0400 - - HHH-8082 HQLScrollFetchTest.testScroll hangs on DB2-97 - -commit bd7840dd0fe6320e19a0acebbfd5156eca719a75 -Author: Lukasz Antoniak -Date: Fri Mar 15 22:17:35 2013 +0100 - - HHH-8072 - Fixing Sybase tests - -commit 8df33227be1276bba79a22a159b6109e36566186 -Author: Steve Ebersole -Date: Fri Mar 15 15:54:43 2013 -0500 - - HHH-8071 - Add debug/trace logging to HibernatePersistenceProvider - -commit 0f9fae51215ccc002b7141496eff26905c56505a -Author: timpeeters -Date: Mon Mar 11 17:15:34 2013 +0100 - - HHH-8076 Make javax.security and javax.validation optional - - Currently the OSGi manifest creation via Gradle automatically imports all packages that are used by hibernate-core. Although this saves you from having to list all the imports manually, it does mean that some optional dependencies suddenly become mandatory dependencies. I've updated the hibernate-core Gradle build file to make the hibernate-core dependencies on javax.security and javax.validation optional. This way you are not forced to have these dependencies available in your OSGi container. More information in HHH-7941. - -commit 79073a98f0e4ed225fe4608b67594196f86d48d7 -Author: Brett Meyer -Date: Thu Mar 14 17:36:41 2013 -0400 - - HHH-8073 Corrected column alias creation - -commit d2c4588c86ed61cdaaa451c17aff5fa87bb700a1 -Author: Brett Meyer -Date: Thu Mar 14 15:51:53 2013 -0400 - - HHH-8061 Added a supportsExpectedLobUsagePattern check - -commit 394b080a8942699382e92811d16f1c45cb2adcfb -Author: Brett Meyer -Date: Thu Mar 14 14:11:39 2013 -0400 - - HHH-4412 Corrected multiple test issues found in matrix CI - -commit c94870d9fd22d72b0bd114ccdb16e9beb992d881 -Author: Steve Ebersole -Date: Tue Jan 8 21:38:18 2013 -0600 - - HHH-7912 - Define edge-case behavior for Session.evict - (cherry picked from commit 0ffe6e711502200e5b07be7f81187eabce1d524f) - -commit 8c96a4a2c60cb7af0283cd4303033d2b09fda083 -Author: Steve Ebersole -Date: Thu Oct 25 09:26:54 2012 -0500 - - HHH-7667 - Investigate expanding bytecode enhancement support - (cherry picked from commit 30b3bd1564c59e794b002db0e8069ee4c8fbf96f) - -commit 60836cda1b530e0be35a87f69ca1fe252cffe7da -Author: Steve Ebersole -Date: Tue Oct 23 08:28:16 2012 -0500 - - HHH-7667 - Investigate expanding bytecode enhancement support - (cherry picked from commit 5506a48bea64763c538f585b6db98de2f4381360) - -commit 889405b3f51660698b1ef872877713dcf0f1497d -Author: Steve Ebersole -Date: Fri Oct 19 15:13:42 2012 -0500 - - HHH-7667 - Investigate expanding bytecode enhancement support - (cherry picked from commit 93f4fe0668c7a998d1a3b6bc9ec6e3cd7c9fca30) - -commit 3fd3fe1c9b37343f9d170f4e2af94358ce06e8ed -Author: Steve Ebersole -Date: Tue Oct 16 21:54:58 2012 -0500 - - HHH-7667 - Investigate expanding bytecode enhancement support - (cherry picked from commit 5dadc5afd246a1b9f006569e0851375c7ad56103) - -commit 4d1ff8f7185bc65c74eb74d7799487cb185fdac6 -Author: Brett Meyer -Date: Thu Mar 14 11:57:32 2013 -0400 - - HHH-7910 Corrected thread checking logic - -commit 11287c2e02414ea415779c6445927aa244af8f7d -Author: Lukasz Antoniak -Date: Wed Mar 13 20:43:14 2013 +0100 - - HHH-8061 - Fixing EnumSet test on Oracle - -commit 2c5098b9c6c6278dc3941aa90822afc0e4211490 -Author: Steve Ebersole -Date: Wed Mar 13 12:08:13 2013 -0500 - - HHH-7997 - Integrate changes to EntityGraphs - -commit e5df5541c7f1bb21ab30e366d5971fa487cb53a4 -Author: Steve Ebersole -Date: Wed Mar 13 11:56:49 2013 -0500 - - HHH-8067 - Hibernate's ManagedType#getDeclaredAttribute fails to find plural attributes - -commit 89fd64bc2ef7668d687fae7ffb7cb22b9400b037 -Author: Strong Liu -Date: Wed Mar 13 14:40:28 2013 +0800 - - HHH-7978 - Document new feature from HHH-5869 - -commit 8673e08e7f680a816c35f0f3f1fe2c58445923a0 -Author: Brett Meyer -Date: Mon Mar 11 17:08:12 2013 -0400 - - HHH-8061 envers tests failing on master-matrix CI - -commit 13dce3379a225d6c84d21501a748ed741cc099f6 -Author: Brett Meyer -Date: Mon Mar 11 16:41:22 2013 -0400 - - HHH-5732 Corrected test failing on SQL Server - -commit 38150802076dcbbddef46f8214fcc07a7fe67f3f -Author: Brett Meyer -Date: Mon Mar 11 15:40:51 2013 -0400 - - HHH-4412 Corrected multiple test issues found in matrix CI - -commit b6d740d6d21ad133180328cc357eae7b7dbe275a -Author: Brett Meyer -Date: Tue Feb 19 11:31:30 2013 -0500 - - HHH-7910 Transaction timeout can cause non-threadsafe session access by reaper thread - -commit 42f34227208bfdd9744aa79053c2a431138e2686 -Author: Brett Meyer -Date: Thu Mar 7 11:54:49 2013 -0500 - - HHH-7890 Quoting identifiers breaks @UniqueConstraint - -commit bdca6dc1e14e9c4dc102b5112d5161ee14f754ac -Author: Brett Meyer -Date: Wed Mar 6 17:56:43 2013 -0500 - - HHH-5732 @OrderColumn not updated if @OneToMany has mappedby defined - -commit b899d2b0063557764ed86656525d666efbbad673 -Author: Brett Meyer -Date: Wed Mar 6 10:05:18 2013 -0500 - - HHH-8022 Comments and copyrights - -commit 97e06d16ccf6cbde99578ab1995117612c5f9762 -Author: Lukasz Antoniak -Date: Tue Mar 5 23:13:41 2013 +0100 - - HHH-8022 - Reading REF CURSOR - -commit 31f43e3321f5c286a7eae492a9885f4185767278 -Author: Brett Meyer -Date: Wed Mar 6 09:31:57 2013 -0500 - - HHH-4412 Cleanup and copyrights - -commit 6cda7dc5777307cd5c66c8f4231923bdafbb3bf1 -Author: Janario Oliveira -Date: Fri Feb 1 16:30:11 2013 -0200 - - HHH-4412 - Created native query to insert, delete, update - -commit fd772a47db731b10d592d65c0aa72e4950491a8a -Author: Brett Meyer -Date: Tue Mar 5 20:26:44 2013 -0500 - - HHH-8037 Pulled duplicate code into StringHelper - -commit 6b368e951299ccd43eac2ca3227e27499e4f8df6 -Author: Barney -Date: Fri Mar 1 11:50:52 2013 +0100 - - HHH-8037 - Empty SQL statements with custom UniqueDelegate - -commit 5f8ba65ce1b5debac92ac1140171eaff6174329d -Author: Brett Meyer -Date: Tue Mar 5 16:46:21 2013 -0500 - - HHH-8053 HibernateBundleActivator should not register itself as a - PersistenceProvider - -commit 139474624f227bce86ee88659f1c6d68e1b70cf1 -Author: Steve Ebersole -Date: Tue Mar 5 14:43:49 2013 -0600 - - HHH-5732 - @OrderColumn not updated if @OneToMany has mappedby defined - -commit 98c12081ec969d383d48361d028eb185f06a8fc7 -Author: Lukasz Antoniak -Date: Mon Mar 4 22:17:47 2013 +0100 - - HHH-8036 - Fix and test - -commit e5f8039f311a6c4630c1aec2b2ba1fb6c9a491c7 -Author: Sanne Grinovero -Date: Sat Mar 2 20:28:05 2013 +0000 - - HHH-8044 Remove mention of unsupported cache providers from documentation - -commit 458152440e689caa0aa0b8853025e94782525088 -Author: Brett Meyer -Date: Thu Feb 28 16:43:27 2013 -0500 - - HHH-8025 Implemented eqOrIsNull and neOrIsNotNull criteria - -commit 1fdf4d7a07e523dc56274ea7a3813fea1385ffa8 -Author: Brett Meyer -Date: Thu Feb 28 15:24:25 2013 -0500 - - HHH-8025 Revert "HHH-2951 Restrictions.eq when passed null, should create a NullRestriction" - - This reverts commit 70454c9168129620089be47db0524652a4bd8c1e. - -commit db53c72a8528e8237f31bb349abdd756371e8732 -Author: John Verhaeg -Date: Thu Feb 28 15:00:16 2013 -0600 - - Modified CustomRunner to log when test classes and their methods begin processing, allowing other logged messages to be associated with the corresponding test or @BeforeClass method - -commit 7f52b476c91dab09e213f8a693d206aaaa3d7e41 -Author: Brett Meyer -Date: Thu Feb 28 10:57:28 2013 -0500 - - HHH-8010 Moved OsgiClassLoader handling into - BootstrapServiceRegistryBuilder - -commit 394458f6a65fcfafa5ca225755347f23c8324661 -Author: Brett Meyer -Date: Thu Feb 28 10:28:02 2013 -0500 - - HHH-8010 Support app-managed EntityManagerFactory and SessionFactory - creation by OSGi bundles - - Conflicts: - hibernate-core/src/main/java/org/hibernate/boot/registry/classloading/internal/ClassLoaderServiceImpl.java - hibernate-core/src/main/java/org/hibernate/cfg/Configuration.java - hibernate-core/src/main/java/org/hibernate/engine/jdbc/connections/internal/DriverManagerConnectionProviderImpl.java - hibernate-entitymanager/src/main/java/org/hibernate/ejb/Ejb3Configuration.java - hibernate-osgi/src/main/java/org/hibernate/osgi/HibernateBundleActivator.java - -commit 0e6d08d414ceca425281960b7b336f55c26cbddb -Author: Strong Liu -Date: Thu Feb 28 23:19:11 2013 +0800 - - JPA-43 - Impl Index and ForeignKey for JPA 2.1 - -commit 51a7df596e9c8b49b47914edbfb101caa5b08484 -Author: Lukasz Antoniak -Date: Thu Feb 28 13:22:14 2013 +0100 - - HHH-6613 - Support for audited @ElementCollection - -commit 8515ce197a108cbd2f0f55c33ece316dcd2a7850 -Author: Brett Meyer -Date: Wed Feb 27 15:18:16 2013 -0500 - - HHH-8026 Duplicate constraint names with unique=true - -commit 3335710a3899006baa1e095111fd34c3bff88e7a -Author: Strong Liu -Date: Thu Feb 28 00:20:51 2013 +0800 - - JPA-43 - Impl Index and ForeignKey for JPA 2.1 - -commit ed549f579375ebc43bc766c2075df2e5075a63fe -Author: Brett Meyer -Date: Fri Feb 22 14:38:10 2013 -0500 - - HHH-8001 Temporarily disabled failing tests - -commit a9cc4ab67c3ddae5de8341f9f9e15ef2de3abc26 -Author: Brett Meyer -Date: Fri Feb 22 13:55:41 2013 -0500 - - HHH-8029 Improve SimpleNationalizedTest - -commit 2e18376fbaf3a29184c2d90fa4b81976b0b8c25b -Author: Steve Ebersole -Date: Fri Feb 22 12:22:12 2013 -0600 - - HHH-7990 - Bootstrapping Hibernate fails if javax.validation API is on classpath but no provider - (cherry picked from commit 898bab28ca63021b2f472f4f02608301154aebb1) - - Conflicts: - - hibernate-core/src/main/java/org/hibernate/internal/CoreMessageLogger.java - -commit 3fa669831f1767976a43692f716435ea37e4153e -Author: Brett Meyer -Date: Thu Feb 21 11:10:13 2013 -0500 - - HHH-8021 test case - -commit ccb81b9c2512ba318e8d517981854655831b28ea -Author: Brett Meyer -Date: Wed Feb 20 16:54:00 2013 -0500 - - HHH-7519 Upgrade byteman version - -commit 4e126dcffc8959c6754c2cfdffc969cf02977822 -Author: Steve Ebersole -Date: Wed Feb 20 09:31:14 2013 -0600 - - HHH-6736 - Support for SELECT ... FOR UPDATE SKIP LOCKED / read past locking - -commit e0cfc6bf2ef614c5dc762a508205cc4812122989 -Author: Aleksander Blomskøld -Date: Sun Jan 27 18:58:35 2013 +0100 - - HHH-6736 Added support for SELECT ... FOR UPDATE SKIP LOCKED - -commit 59bb86978e1d75b0b873ad9c4af920696d1b7c9d -Author: Lukasz Antoniak -Date: Fri Feb 15 15:49:00 2013 +0100 - - HHH-7608 - Fix and test - -commit dcccc6c4b08c2a1172cf4406651cb66f1fa1def0 -Author: Lukasz Antoniak -Date: Tue Feb 19 13:45:12 2013 +0100 - - HHH-4150 - Fix and test - -commit dc311bb027fe2d94625f341765aae5abc43d74b0 -Author: Lukasz Antoniak -Date: Sat Feb 2 08:48:35 2013 +0100 - - HHH-6876 - Test case - -commit f4b45eb5a9085577ecacbfe82a2bc5eb31470863 -Author: Lukasz Antoniak -Date: Fri Feb 1 15:17:30 2013 +0100 - - HHH-2045 - HQL empty IN list - -commit a44cc3097a84f1df262bec5e56209309904edf79 -Author: Kamyar Sajjadi -Date: Tue Feb 19 15:07:21 2013 +0100 - - HHH-7952 Typo in Javadoc For TableGenerator/TableHiLoGenerator - -commit 89619201a33dfd6499a68965e8addedd48ff3dff -Author: Brett Meyer -Date: Tue Feb 19 14:35:59 2013 -0500 - - HHH-7889 Created SQL ClobTypeDescriptor#STREAM_BINDING_EXTRACTING for Sybase remapping. Reverting back to Lob extraction ignoring useStreamForLobBinding - -commit 7bf544716adec905fee62034e344bb43f98d0c84 -Author: Brett Meyer -Date: Tue Feb 19 14:15:21 2013 -0500 - - HHH-8019 Multiple tests creating identifiers too long for Oracle - -commit 1a20b129ca0be3d043cfc20db8195cf3ad600141 -Author: Brett Meyer -Date: Mon Feb 18 15:48:42 2013 -0500 - - HHH-7994 Improve OsgiClassLoader performance - - Conflicts: - hibernate-entitymanager/src/main/java/org/hibernate/ejb/Ejb3Configuration.java - -commit abb9c2b0b737ed763d9fe35f67a01a8a44c1cf27 -Author: Brett Meyer -Date: Mon Feb 18 14:32:14 2013 -0500 - - HHH-8018 Reverted back to BLOB_BINDING for extraction until investigated - -commit e406ddad555a67aa0c3c59aa953f2fe5dcd023e9 -Author: Brett Meyer -Date: Mon Feb 18 11:47:09 2013 -0500 - - HHH-8017 Correct SybaseDialect's getNullColumnString - -commit cf49796cf39cfd2a8ac29419bc3b0b1ade449558 -Author: Lukasz Antoniak -Date: Fri Feb 15 14:51:07 2013 +0100 - - HHH-8007 - Fix and test - -commit 212c50f5d7d6762a1c138f7a4ede2d11ebe4530f -Author: Brett Meyer -Date: Thu Feb 14 18:42:42 2013 -0500 - - HHH-8005 Sybase 15 - nullable column are not nullable (when created by - SchemaExport) - -commit 3797e2150ad3eb7b6ce6108f7550a3becf2e4133 -Author: Brett Meyer -Date: Thu Feb 14 18:12:08 2013 -0500 - - HHH-6841 Applied @SkipForDialects to a couple of tests - -commit 6b4b6cc27f06e8c01d358a99aa3a24b8fae2087d -Author: Lukasz Antoniak -Date: Mon Dec 17 14:48:42 2012 +0100 - - HHH-6841 - @SkipForDialects and @RequiresDialects - -commit 07539904ba7ff5cfbe60037dcb8f413945f98638 -Author: Brett Meyer -Date: Thu Feb 14 17:37:45 2013 -0500 - - HHH-4084 Corrected test compiling error - -commit 0e2fd9f970d69358199adb3decf5f38420d7da80 -Author: Nikolay Shestakov -Date: Sun Jan 20 00:04:42 2013 +0600 - - fix review remark - -commit 2725a7d49eec3fa5986285a64baae9de135fdb32 -Author: Nikolay Shestakov -Date: Sat Jan 19 19:32:15 2013 +0600 - - HHH-4084 @UniqueConstraint(columnNames="") causes StringIndexOutOfBoundsException - -commit bbfd960bc896344e8bfbca8e5a7697aa73a606aa -Author: Brett Meyer -Date: Thu Feb 14 16:53:37 2013 -0500 - - HHH-7889 Cleanup inconsistencies in Blob, Clob, and NClob type - descriptors - -commit 98e3b2ab975cbded82949ece0c17e486797025dc -Author: Vincent Cornet -Date: Thu Feb 14 15:55:01 2013 -0500 - - HHH-7889 - - Conflicts: - hibernate-core/src/main/java/org/hibernate/type/descriptor/sql/ClobTypeDescriptor.java - -commit 9069d7aed9fc41bff4d9303c35439f0842e62084 -Author: Brett Meyer -Date: Thu Feb 14 12:28:02 2013 -0500 - - HHH-8006 MergeCollectionEventTest & BadMergeHandlingTest fail on MySQL - -commit 54bb0cb28400a18a0f4c14667a217b8f115f4cab -Author: Brett Meyer -Date: Thu Feb 14 10:48:35 2013 -0500 - - HHH-7992 Updated to reflect Session SPI change - -commit 4d68ddf7b0f71d9f387e9732cf4b2d53d4ae2e33 -Author: Brett Meyer -Date: Tue Feb 12 17:38:11 2013 -0500 - - HHH-7991 Correct all instances of - Thread.currentThread().getContextClassLoader() - -commit 56867417e283b235aa0832affd43207cb9ea5327 -Author: Brett Meyer -Date: Wed Jan 23 18:22:03 2013 -0500 - - HHH-7527 Enterprise OSGi JPA support - -commit 18f0bd2f4ab111fde6db963dd447d22c8139f13d -Author: Brett Meyer -Date: Wed Feb 13 23:08:44 2013 -0500 - - HHH-8003 Create "sqlDropString" method in Dialect to handle "if exists" - correctly - -commit b5de4cda156707c112afee4cb37257a8997776db -Author: Brett Meyer -Date: Wed Feb 13 22:30:38 2013 -0500 - - HHH-7999 Oracle test failures due to lack of support for identity - columns - -commit 98a49b80b22ed222503c3420ef55c0efc30bd29e -Author: Brett Meyer -Date: Wed Feb 13 22:27:08 2013 -0500 - - HHH-8002 TransactionTimeoutTest#testTransactionTimeoutSuccess failing on - Oracle - -commit cc8395e280b55af678d35c2eb121750c90abc4f9 -Author: Brett Meyer -Date: Wed Feb 13 17:40:36 2013 -0500 - - HHH-7999 Create HQLScrollFetchTest for dialects that do not support - identity columns - -commit d6b3f373eae5b9ae847482d16c63ef6f8751dc5d -Author: Guillaume Smet -Date: Sun Feb 10 17:16:06 2013 +0100 - - HHH-7821 - Clear the entire BatchFetchQueue on flush. - Provide a safe guard against NPE in BatchFetchQueue.getCollectionBatch() by checking that CollectionEntry.getLoadedKey() is not null before adding it to the batch. - -commit 2040e44c03455d5f39b90e3548cf7da421e34aaf -Author: Guillaume Smet -Date: Sun Feb 10 17:19:15 2013 +0100 - - HHH-7821 - Clears the batch collection fetching queue on flush. - Provides a safe guard against NPE in BatchFetchQueue.getCollectionBatch() by checking that CollectionEntry.getLoadedKey() is not null before adding it to the batch. - -commit e722f6391f9d6c9c45de65c2ba400968676a8952 -Author: Guillaume Smet -Date: Sun Feb 10 18:11:14 2013 +0100 - - HHH-7970 - Fix broken logic in JPAOverriddenAnnotationReader.getCacheable(): if element is null, you have to consider the @Cacheable annotation - per gripe from Andreas Joseph Krogh - -commit 5a5d19273dc75502bae959c9ef3f3975dfcb7b9b -Author: Steve Ebersole -Date: Tue Feb 12 16:17:21 2013 -0600 - - HHH-7992 - Add a base Session delegator implementation - -commit ec11902a92e5b9ad06b94e7109427d1b7520d98e -Author: Sanne Grinovero -Date: Thu Mar 8 12:20:52 2012 +0000 - - HHH-7992 - Add a base Session delegator implementation - -commit c56bb23ef5da11aa7243e378c660ef4cd54f16ce -Author: Steve Ebersole -Date: Mon Feb 11 15:39:24 2013 -0600 - - HHH-5951 - Strategy for deciding JtaPlatform when an explicit one not specified - -commit 88c6dad9b00d3246e7a608636670116c7cf5d9f8 -Author: Steve Ebersole -Date: Fri Feb 8 11:13:18 2013 -0600 - - HHH-7957 - Integrate Public Review Draft of the JPA 2.1 spec : define XSD (working) - -commit 854c94bcc79cdd943279a26b964e0174a0b3c6d1 -Author: Steve Ebersole -Date: Wed Feb 6 16:41:18 2013 -0600 - - HHH-7957 - Integrate Public Review Draft of the JPA 2.1 spec : schema generation - -commit ec6494020b6b6e0bf2f0d07b49828e5cc1425799 -Author: Strong Liu -Date: Wed Feb 6 02:51:05 2013 +0800 - - HHH-7969 @SecondaryTable#indexes - -commit 13bf94b0d37a7fc35b763dd990b486f43647bcb1 -Author: Strong Liu -Date: Wed Feb 6 02:31:31 2013 +0800 - - HHH-7969 Deprecated hibernate's Index annotation - -commit 1d9b7a06a52b56b84844513d97c535eb00d0ed8a -Author: Strong Liu -Date: Wed Feb 6 00:09:08 2013 +0800 - - HHH-7969 initial @Table#indexes support - -commit a3083aaa7bac8efac2caec47d66d0d45931ce61c -Author: Steve Ebersole -Date: Sun Feb 3 18:03:55 2013 -0600 - - HHH-7957 - Integrate Public Review Draft of the JPA 2.1 spec : schema generation - -commit 9ab924041db36333b76e510b65ad73200ae0cfe9 -Author: Steve Ebersole -Date: Sun Feb 3 14:31:43 2013 -0600 - - HHH-7957 - Integrate Public Review Draft of the JPA 2.1 spec : schema generation - -commit 6599f710bb2202e180a3ec8af91dd4ec3d50700a -Author: Steve Ebersole -Date: Sun Feb 3 14:20:54 2013 -0600 - - HHH-7965 - Redesign DialectResolver contract - -commit 5c453fee8d2b93f9256d3ced07905df2d5ab8591 -Author: Steve Ebersole -Date: Thu Jan 31 09:17:19 2013 -0600 - - HHH-7957 - Integrate Public Review Draft of the JPA 2.1 spec : entity graph support - phase 1 - -commit 76c14b1697612f026b0d6c67670b5fd184d1cba5 -Author: Brett Meyer -Date: Fri Feb 1 12:59:39 2013 -0500 - - HHH-7829 NullPointerException when manually flushing One-To-One - relationship with orphan removal - -commit 470c7432c4fd1feec21924dd7a0a5e61b5c6d440 -Author: Brett Meyer -Date: Wed Jan 30 13:57:30 2013 -0500 - - Updated master version to 4.3.0-SNAPSHOT - -commit d702dfbc8c2bbd22863d853ceb3640dd794764c2 -Author: Lukasz Antoniak -Date: Wed Jan 30 15:49:10 2013 +0100 - - HHH-7948 - Fix and test - -commit c1317346acc5438d100c4de1664b67c449f2183e -Author: Strong Liu -Date: Wed Jan 30 17:10:11 2013 +0800 - - HHH-7930 Hibernate will crash with (custom) enum types when running with a logback.xml in debug mode - -commit c52864d188a9ad38068e89989a1aba39794982c3 -Author: Brett Meyer -Date: Tue Jan 29 15:11:11 2013 -0500 - - HHH-7580 Corrected a few failures after the cherry-pick into master - -commit d54a60448a891288e4819aa28e4974c7a2c92db7 -Author: Strong Liu -Date: Tue Jan 29 13:54:51 2013 -0500 - - HHH-7580 compile error - - Conflicts: - hibernate-infinispan/src/main/java/org/hibernate/cache/infinispan/InfinispanRegionFactory.java - hibernate-infinispan/src/main/java/org/hibernate/cache/infinispan/JndiInfinispanRegionFactory.java - hibernate-infinispan/src/test/java/org/hibernate/test/cache/infinispan/functional/cluster/ClusterAwareRegionFactory.java - -commit 7976e2396a8ac09c12ff34a3dafdb89115763f0f -Author: Steve Ebersole -Date: Tue Jan 29 13:52:35 2013 -0500 - - HHH-7580 - Complete 2-phase SessionFactory building design - - Conflicts: - hibernate-core/src/main/java/org/hibernate/SessionFactory.java - hibernate-core/src/main/java/org/hibernate/boot/registry/StandardServiceRegistryBuilder.java - hibernate-core/src/main/java/org/hibernate/internal/SessionFactoryImpl.java - hibernate-core/src/main/java/org/hibernate/metamodel/MetadataSources.java - hibernate-core/src/main/java/org/hibernate/metamodel/SessionFactoryBuilder.java - hibernate-core/src/main/java/org/hibernate/metamodel/internal/SessionFactoryBuilderImpl.java - hibernate-core/src/main/java/org/hibernate/metamodel/source/internal/JaxbHelper.java - hibernate-core/src/main/java/org/hibernate/metamodel/source/internal/MetadataBuilderImpl.java - hibernate-core/src/main/java/org/hibernate/metamodel/source/internal/MetadataImpl.java - hibernate-core/src/main/java/org/hibernate/service/spi/ServiceContributor.java - hibernate-core/src/test/java/org/hibernate/cfg/beanvalidation/ApplySchemaConstraintTest.java - hibernate-core/src/test/java/org/hibernate/metamodel/binding/BasicCollectionBindingTests.java - hibernate-core/src/test/java/org/hibernate/metamodel/internal/source/AssertSourcesTest.java - hibernate-core/src/test/java/org/hibernate/metamodel/source/annotations/entity/BaseAnnotationBindingTestCase.java - hibernate-core/src/test/java/org/hibernate/metamodel/source/annotations/xml/OrmXmlParserTests.java - hibernate-core/src/test/java/org/hibernate/metamodel/source/internal/MetadataImplTest.java - hibernate-core/src/test/java/org/hibernate/metamodel/spi/binding/AbstractBasicBindingTests.java - hibernate-core/src/test/java/org/hibernate/metamodel/spi/binding/AbstractUnsavedValueTests.java - hibernate-core/src/test/java/org/hibernate/metamodel/spi/binding/JoinedSubclassBindingTests.java - hibernate-core/src/test/java/org/hibernate/metamodel/spi/binding/basiccollections/AbstractBasicCollectionBindingTests.java - hibernate-core/src/test/java/org/hibernate/metamodel/spi/binding/onetomany/AbstractUnidirectionalOneToManyBindingTests.java - hibernate-core/src/test/java/org/hibernate/metamodel/spi/relational/AbstractGeneratedIdColumnTests.java - hibernate-core/src/test/java/org/hibernate/test/jdbc/internal/BatchingTest.java - hibernate-core/src/test/java/org/hibernate/test/service/schema/internal/ExistingDatabaseMetaDataImplTest.java - hibernate-entitymanager/src/main/java/org/hibernate/jpa/boot/internal/EntityManagerFactoryBuilderImpl.java - hibernate-entitymanager/src/main/java/org/hibernate/jpa/boot/internal/EntityManagerFactoryBuilderUsingMetamodelImpl.java - hibernate-infinispan/src/test/java/org/hibernate/test/cache/infinispan/NodeEnvironment.java - hibernate-testing/src/main/java/org/hibernate/testing/junit4/BaseCoreFunctionalTestCase.java - -commit c05238bad3cda475e1052d1097d62dc61a8844cd -Author: Lukasz Antoniak -Date: Tue Jan 29 19:03:06 2013 +0100 - - HHH-7948 - Fix and test - -commit 3bb0f246fc5e83c42e8837ab8f080906b7602c14 -Author: Lukasz Antoniak -Date: Mon Jan 28 14:07:53 2013 -0500 - - HHH-465 - Support for NULLS FIRST/LAST - - Conflicts: - hibernate-core/src/main/java/org/hibernate/cfg/Settings.java - hibernate-core/src/main/java/org/hibernate/criterion/Order.java - -commit c1cf5cd6e6f261e3988d7657e15e22d19ffcdcdb -Author: Strong Liu -Date: Mon Jan 28 13:29:12 2013 +0800 - - HHH-7947 remove not maintained 2LC from doc - -commit fcfecb82b7561c119e78c75f4d4ceb46d729aa50 -Author: Scott Marlow -Date: Thu Jan 24 22:14:26 2013 -0500 - - HHH-7861 EntityManager.find() should return null instead of EntityNotFoundException (spaces to tabs) - -commit 10defc52cd4eafa597a946ae84ae3007262846a3 -Author: Steve Ebersole -Date: Thu Jan 24 13:05:34 2013 -0600 - - HHH-7928 - Regression caused by HHH-6361 - -commit d492b303ce1e0e5e9c4adfbe3901ea2d3cb99318 -Author: Himavanth -Date: Thu Jan 24 13:23:21 2013 +0530 - - HHH-7933 boolean should be treated as bit in SQLServer - -commit 80128705fbb39273d4853eee8601c7f2bbd350c1 -Author: Kamyar Sajjadi -Date: Thu Jan 24 14:31:33 2013 +0100 - - Changed the URL to maven.apache.org insted of maven.org - -commit cb1b9a05af20713a7d673c0a4fa0536a6a4792c1 -Author: Steve Ebersole -Date: Thu Jan 24 11:59:40 2013 -0600 - - HHH-7928 - Regression caused by HHH-6361 - -commit 6263bef63e1205964e1ffa44268b878c2dd0af2c -Author: Scott Marlow -Date: Thu Jan 24 10:28:40 2013 -0500 - - HHH-7861 EntityManager.find() should return null instead of EntityNotFoundException (message improvement) - -commit 2f71f071ec710b89fae7e36ff48f4cd908883594 -Author: Lukasz Antoniak -Date: Thu Jan 24 08:27:48 2013 +0100 - - HHH-7934 - Test case - -commit 69230d1ebd39b4cdc62f333e91b500ce648f63a1 -Author: Lukasz Antoniak -Date: Thu Jan 24 07:52:49 2013 +0100 - - HHH-7934 - Fix and test - -commit 11e6fd5dafc3fc71e2ee1de6d99c111cc04c7de9 -Author: Brett Meyer -Date: Wed Jan 23 16:52:27 2013 -0500 - - HHH-3788 FirebirdDialect: current_date() function - -commit a0d97430fb373413ef624b7e717f74b62a6523cc -Author: Brett Meyer -Date: Wed Jan 23 15:56:05 2013 -0500 - - HHH-995 Order.ignoreCase() only works for VARCHAR types, not CHAR types - -commit f77e4d12d0e79a12da72fd928f7ec7d82ea21b9c -Author: Brett Meyer -Date: Wed Jan 23 15:26:02 2013 -0500 - - HHH-3869 Improve toString on SessionStatistics - -commit f28198054f134f1bab0b1a72a0b3cbdbb7d5f025 -Author: Brett Meyer -Date: Wed Jan 23 15:01:33 2013 -0500 - - HHH-2805 The class Order does not contain getters - -commit 6423754bccc3e1d862fa3417abe2b06fd35b64c5 -Author: Scott Marlow -Date: Thu Dec 13 11:53:43 2012 -0500 - - HHH-7861 EntityManager.find() should return null instead of EntityNotFoundException (change was merged into org.hibernate.jpa.spi.AbstractEntityManagerImpl) - -commit 99d9af748b96adc86a4d57aa7de46e56529241c7 -Author: Brett Meyer -Date: Tue Jan 22 19:05:08 2013 -0500 - - HHH-7520 BlobProxy.invoke Javadoc is incorrect - -commit ecf9b7c25858f18bc978e93c9d777bccda460fae -Author: Kamyar Sajjadi -Date: Fri Jan 18 15:52:50 2013 +0100 - - HHH-7520 - now the implementation and the javadoc should be the same - -commit c12766a82bfc0ac013031cc2093a7905c92e0bd4 -Author: Brett Meyer -Date: Thu Jan 17 14:23:43 2013 -0500 - - HHH-7304 Minor cleanup - -commit 213ce0d0607ea57fd5d704948a05be678f76cb58 -Author: Guenther Demetz -Date: Wed May 9 16:42:39 2012 +0200 - - HHH-7304 bugfix proposal - -commit 160547ecd1184e422f702c4033bb0b4054337bd7 -Author: Guenther Demetz -Date: Wed May 9 16:41:49 2012 +0200 - - HHH-7304 testcase - -commit 48cd9d3f7d45ca07ff7412212d303082f874c133 -Author: Guenther Demetz -Date: Wed May 9 18:07:27 2012 +0200 - - HHH-7304 new testcase entity class - -commit 5c5998aea929a3a9ee8230cc572320b27fc8163e -Author: Brett Meyer -Date: Wed Jan 16 18:28:09 2013 -0500 - - HHH-2951 test case - -commit 70454c9168129620089be47db0524652a4bd8c1e -Author: Nikolay Shestakov -Date: Fri Jan 4 21:59:16 2013 +0600 - - HHH-2951 Restrictions.eq when passed null, should create a NullRestriction - -commit 991342f2c269973378cd03f79959dee08d3c90ff -Author: Steve Ebersole -Date: Wed Jan 16 14:53:26 2013 -0600 - - HHH-7928 - Regression caused by HHH-6361 - -commit f7ca23e071297dd489c57507fa6ed060963ab9d8 -Author: Brett Meyer -Date: Tue Jan 15 13:23:59 2013 -0500 - - HHH-1917 updated comment - -commit 5a50ac90d5ef43bd21adff5c74a0dae44b1a3741 -Author: Brett Meyer -Date: Tue Jan 15 12:56:57 2013 -0500 - - HHH-1917 Bulk Delete on the owning side of a ManyToMany relation needs - to delete corresponding rows from the JoinTable - -commit 03520b928f1c69dbf128d083f31b13dc03f7d314 -Author: Lukasz Antoniak -Date: Mon Dec 31 12:24:39 2012 +0100 - - HHH-7781 - Fix and test - -commit 42bdb1b26d076f774236b4ead07f2b34733fa9d9 -Author: Brett Meyer -Date: Mon Jan 14 20:37:16 2013 -0500 - - HHH-7923 Revert to Javassist 3.15 - -commit 803acc3cad7d8d1908ebc46b78a2e9d4e349a49f -Author: Nikolay Shestakov -Date: Fri Jan 4 22:26:35 2013 +0600 - - HHH-2721 PostgreSQLDialect: function md5() always returns a string value - -commit d18d04909f00d8d4afa632cf2fdb7bcdc3e8a4f8 -Author: Brett Meyer -Date: Mon Jan 14 17:03:00 2013 -0500 - - HHH-1917 test case - -commit e7b188c924d08654be9fb53a46439692af664f6c -Author: Steve Ebersole -Date: Mon Jan 14 17:12:11 2013 -0600 - - HHH-5869 - Add suport for nationalized character mappings - -commit 8e38db58331f7be2ee4b580b9a1a4a43da20245a -Author: Lukasz Antoniak -Date: Mon Jan 14 21:36:23 2013 +0100 - - HHH-7918 - Completely recalculate entity state on merge - -commit 2a9f3ad9edacc76d02bae1a476550252d3cf83d1 -Author: Lukasz Antoniak -Date: Mon Jan 14 14:30:10 2013 +0100 - - HHH-7918 - Fix and test - -commit 6062eb67ea7f34ac66104a0b57f1edad681eaec0 -Author: Steve Ebersole -Date: Mon Jan 14 14:24:45 2013 -0600 - - HHH-7914 - Improve new stored procedure call support - -commit 9ce5c32dd7d11bc13c659f98ee4cc29b26c2e70e -Author: Brett Meyer -Date: Mon Jan 14 14:25:06 2013 -0500 - - HHH-7902 Replace JDBC proxies with a set of contracts/helpers - - HHH-7902 Merged JdbcResourceRegistry into JdbcCoordinator. Parts of - LogicalConnection moved into JdbcCoordinator as well. - - HHH-7902 Replaced Statement#close and ResultSet#close calls with - JdbcCoordinator#release - - HHH-7902 Enforced the use of StatementPreparer, instead of Connection - - HHH-7902 ResultSetExtractor. Replaced all instances of execute, - executeQuery, executeUpdate, etc. - - HHH-7902 Refactored AbstractReturningDelegate to give access to - jdbcCoordinator - - HHH-7902 Corrected test failures - - HHH-7902 Removed resource registry use from JdbcIsolation workers - - HHH-7902 Corrected a few bugs in JdbcCoordinator and ResultSetExtractor. - - HHH-7902 ResultSetExtractor -> ResultSetReturn. Reworked proxy tests to - test the new APIs. - - Conflicts: - hibernate-core/src/main/java/org/hibernate/internal/SessionImpl.java - hibernate-core/src/test/java/org/hibernate/sharedSession/SessionWithSharedConnectionTest.java - hibernate-core/src/test/java/org/hibernate/test/dialect/functional/SQLServerDialectTest.java - hibernate-core/src/test/java/org/hibernate/test/jdbc/proxies/BatchingTest.java - hibernate-core/src/test/java/org/hibernate/test/transaction/jdbc/TestExpectedUsage.java - hibernate-core/src/test/java/org/hibernate/test/transaction/jta/BasicDrivingTest.java - hibernate-core/src/test/java/org/hibernate/test/transaction/jta/ManagedDrivingTest.java - -commit 5de1677ce73b87024a3d93f62b92c55ab5774960 -Author: Steve Ebersole -Date: Fri Jan 11 17:47:29 2013 -0600 - - HHH-7914 - Improve new stored procedure call support - -commit 0713cea18098e6fdec50dfffb09b324bbc900571 -Author: Lukasz Antoniak -Date: Thu Jan 10 14:38:11 2013 +0100 - - HHH-7870 - Fix and test - -commit c8b20660ed56432a946e78794be147422e80ede6 -Author: Steve Ebersole -Date: Tue Jan 8 16:09:23 2013 -0600 - - HHH-7912 - Define edge-case behavior for Session.evict - -commit fbe24bc2cbc5bd0aeace7bd5b04bf7434e7f886d -Author: Brett Meyer -Date: Tue Jan 8 00:20:34 2013 -0500 - - HHH-7911 NPE in TwoPhaseLoad#initializeEntity - -commit e1c9c1e9a75e5142199d9d5a0c56ab6d546f66d3 -Author: Brett Meyer -Date: Mon Jan 7 12:27:36 2013 -0500 - - HHH-6643 Overrode getNotExpression in DB2Dialect - -commit 6aabd0a0e4aaa385ebfe47969b2c9ce586869df0 -Author: Brett Meyer -Date: Mon Jan 7 12:17:24 2013 -0500 - - HHH-7797 Deprecating mistakenly removed Dialect methods - -commit 7b9b9b39c0aa2deec0c80c018bc1967b4a511a0b -Author: Brett Meyer -Date: Fri Jan 4 14:50:50 2013 -0500 - - HHH-2448 Generate identical column aliases among cluster - -commit cb4a5ee91b5534a5858d3b133085d61de28fec81 -Author: Brett Meyer -Date: Fri Jan 4 13:35:56 2013 -0500 - - HHH-6643 Corrected intermittent test failure - -commit d803b9b3a7e87d59ebb35aa9858164b480476e8b -Author: Nikolay Shestakov -Date: Sun Dec 30 01:22:54 2012 +0600 - - HHH-3458 Register postgres random() function as "rand" in PostgresSQLDialect - -commit cd76f86f0207f1b014fcaf07c296c40854713a45 -Author: Brett Meyer -Date: Thu Jan 3 15:59:26 2013 -0500 - - HHH-6643 Criteria doesn't support a chaining of 2 not restrictions (sql - = not not criterion) - -commit 510f876ff060e37f75a76a6ae6b5768a6afe7df4 -Author: Brett Meyer -Date: Thu Jan 3 15:08:22 2013 -0500 - - HHH-7866 Cleanup and added a few more checks - -commit 5cf1b469dd9d0eee3482b4f33a2132b3ea7b9db0 -Author: Sanne Grinovero -Date: Fri Dec 14 15:43:52 2012 +0000 - - HHH-7866 Avoid redundant log level checking in StandardQueryCache - -commit bcf73bd32c2af2dc2dcb6e160f4b39e23c532253 -Author: Lukasz Antoniak -Date: Thu Jan 3 13:10:16 2013 +0100 - - HHH-7437 - Fix and test - -commit 9f4f817a73763c2418076ddb550a7b8399d53cc0 -Author: Strong Liu -Date: Mon Dec 31 23:20:05 2012 +0800 - - simple change, mostly are removing those unnesserary unboxing code. - -commit 781133164be32dcb6188227f4f8d5d5a8195c425 -Author: Strong Liu -Date: Mon Dec 31 22:00:51 2012 +0800 - - code format and fixing typo - -commit 1c0b5510557e31c608610b83584e32c6bf8b6d28 -Author: Nikolay Shestakov -Date: Sat Dec 29 00:13:50 2012 +0600 - - using ConcurrentHashMap for decrease synchronization - -commit b11c23fd452134a83062ca120d1ff48dc083c94d -Author: Lukasz Antoniak -Date: Mon Dec 24 14:53:09 2012 +0100 - - HHH-7561 - Fix and test - -commit 6c6df695350f917fe707b4f830e29c8c52c3f5d0 -Author: Strong Liu -Date: Tue Dec 25 19:25:47 2012 +0800 - - refactor, remove redundant type cast - -commit ada2a5327e6cc4433424b3c812791eaf867fd249 -Author: Strong Liu -Date: Mon Dec 24 03:10:38 2012 +0800 - - simple improvement and code format - -commit ceb96094f5b71640bf4537c2abced099e61540e5 -Author: Lukasz Antoniak -Date: Tue Dec 18 12:49:46 2012 +0100 - - HHH-6627 HHH-7752 - Test cases - -commit 0a17d4612a350785d6717c6bfd3f962a2b5d6752 -Author: Brett Meyer -Date: Wed Dec 19 14:48:59 2012 -0500 - - HHH-7872 corrected compiling issue - -commit 12c7ab93c377de74c3ef9f8baba05f19a9c63a51 -Author: Brett Meyer -Date: Wed Dec 19 14:48:11 2012 -0500 - - HHH-7797 Simplified UniqueKey creation and corrected a couple of - @UniqueConstraint bugs. - -commit 9c3998dade2af4b73d7745fa6e6d2788bd7872ce -Author: Steve Ebersole -Date: Wed Dec 19 09:24:36 2012 -0600 - - HHH-7872 - Improved L2 cache storage of "reference" data - -commit 2ff69d24c423d3e95e65606f1c836c975dc2a7c9 -Author: Steve Ebersole -Date: Tue Dec 18 13:46:40 2012 -0600 - - HHH-7872 - Improved L2 cache storage of "reference" data - -commit b0efdb4d1473f9c4d76dc6f208e3f2ee10cfe0af -Author: Galder Zamarreño -Date: Tue Dec 18 09:17:15 2012 +0100 - - HHH-7871 Write cache should not using LOCAL flag - - * Flags were not being applied in clustered environments because of - the use of classloader aware cache which was not forwarding them. - -commit 1d5bf1608e977dc861f4b6d4e299836fa0d23783 -Author: brmeyer -Date: Mon Dec 17 14:10:05 2012 -0500 - - HHH-7797 Corrected failing test that was exposed by src changes - -commit 41397f22d17d165dc03e291a81a172dcaed232d5 -Author: brmeyer -Date: Mon Dec 17 13:48:12 2012 -0500 - - HHH-7797 Use unique indexes on nullable columns for DB2. Correctly - handle @UniqueConstraint table annotations on second passes. - -commit b4e8c5a83bb1ef0c935e2b5f7242017ab19524e8 -Author: Steve Ebersole -Date: Mon Dec 17 10:58:04 2012 -0600 - - test asserting Hibernate handling of unclear jpa behavior wrt merging detached object with reference to transient object via non-cascaded association - -commit 9bec5d12ff248896d43abb15f8c8e097aafb6686 -Author: brmeyer -Date: Fri Dec 14 11:58:09 2012 -0500 - - HHH-7797 minor refactoring - -commit 49c8a8e4f07c00973ca8f98e8bdd05a7392991e5 -Author: brmeyer -Date: Fri Dec 14 11:45:35 2012 -0500 - - HHH-7797 Finished auditing dialects. Cleanup and javadocs. Completed - uniqueness test. - -commit 962d1e580dce2f36c5aef824d1439e79e878000c -Author: brmeyer -Date: Tue Dec 11 15:21:35 2012 -0500 - - HHH-7797 initial test case - -commit 7b05f4aed8845d4ccefce71eea438b81be10610e -Author: Brett Meyer -Date: Wed Dec 12 18:18:50 2012 -0500 - - HHH-7797 Initial attempt at using UniqueDelegate within metamodel - -commit 4204f2c5fef24c87808b21c537011f25e26e3eb0 -Author: brmeyer -Date: Tue Dec 11 14:00:48 2012 -0500 - - HHH-7797 Finished first take on UniqueDelegate and rolled into .cfg and - .mapping - -commit 953aec40adaf5e172eb6c936df71395868732b5d -Author: brmeyer -Date: Tue Dec 11 10:36:21 2012 -0500 - - HHH-7797 UniqueDelegate & DefaultUniqueDelegate - -commit 3a995f574dfa89682d4b70a23fd786dba8c859a6 -Author: Brett Meyer -Date: Fri Dec 7 16:19:54 2012 -0500 - - HHH-7797 Block "unique" syntax on a column if a constraint can/will be - used - -commit cb4e92a98d6e6cd3cf8ba23ba7b6b6f18f4f455f -Author: Gail Badner -Date: Wed Dec 12 10:37:40 2012 -0800 - - HHH-7771 : Deprecate obsolete Type, AssociationType, and TypeFactory methods - -commit 32e87656153f7b0da276b674ff24b1ba25fd195d -Author: Gail Badner -Date: Wed Dec 12 02:29:23 2012 -0800 - - HHH-7771 : Deprecate obsolete Type, AssociationType, and TypeFactory methods - -commit 2883cb85c37fbd6fd956f750fc8082aaa9be0fa1 -Author: Gail Badner -Date: Wed Dec 12 16:06:03 2012 -0800 - - HHH-7860 : Log a warning when embed-xml attribute is used in mappings - -commit dc3283f50a147f458bc2ca827530ff8455df325e -Author: Brett Meyer -Date: Wed Dec 12 16:16:31 2012 -0500 - - HHH-7856 Deprecate TableHiLoGenerator and TableGenerator - -commit 234c4915239589219a3896522d246b8f001ee074 -Author: Kamyar Sajjadi -Date: Wed Dec 12 16:37:46 2012 +0100 - - HHH-4562 - Fixed the typo in chapter 7.3.1. Added bigint after personId - -commit c0011f1cc60504123a3856516a0a4f6e19cdf63f -Author: Kamyar Sajjadi -Date: Wed Dec 12 14:27:55 2012 +0100 - - HHH-5973 - Replaced , with + in AuditInterceptor.java and in events.xml - -commit 669ec5002f475bf1cb8ff00dad812112a0b3fe41 -Author: Kamyar Sajjadi -Date: Wed Dec 12 10:47:31 2012 +0100 - - HHH-7029 - prependListeners changed to appendListeners in chapter 7.9.1. Integrator use-cases example - -commit c8aa47ba22218ba38360b27dca3e8c7cdd813e59 -Author: brmeyer -Date: Tue Dec 11 18:03:06 2012 -0500 - - HHH-7435 Performance bottleneck on Javassist - -commit b4e78a99e579114c5af6d1af1e62ab4f7fdb88d0 -Author: Scott Marlow -Date: Tue Dec 11 14:53:36 2012 -0500 - - HHH-7747 check if the code attribute is null when building the StackMapTable - -commit d26730fb3f7f4db6814a27a1cece03d28933bfe7 -Author: Scott Marlow -Date: Tue Dec 11 16:31:14 2012 -0500 - - HHH-7850 minor test package changes - -commit 58978a486f6d56697274c8a358e70b8925be0a62 -Author: Dustin Schultz -Date: Mon Dec 3 15:35:09 2012 -0700 - - HHH-7747 - Fixes CNFE regression for runtime field level class - enhancing. Also removes the usage of ClassPool.getDefault() and - creates a new ClassPool on each usage. - - HHH-7747 - Add the entity class to the ClassPool to support modular - classloading like OSGI. Remove unused import in FieldTransformer. - - HHH-7747 - Enhanced test to ensure that class enhancement sees all - classes of an entity. Added test to ensure that StackMapTables are - non-null for Javassist added methods. - -commit 8463057b85db928fe8d3aa0b4379bc5b0f255c71 -Author: Scott Marlow -Date: Mon Dec 10 18:43:55 2012 -0500 - - HHH-7850 BulkAccessorFactory Java 7 verify error resolved by JASSIST-163 BulkAccessorFactory.java.diff2 patch from Shigeru Chiba. - -commit 598c6d3d25a5f2095ba18000509466c9e25343bd -Author: brmeyer -Date: Mon Dec 10 14:16:20 2012 -0500 - - HHH-7849 Cleaner fix. Added additional regression test. - -commit c75b045adc3fc4ed908b2ed133646198d9aad5f7 -Author: brmeyer -Date: Mon Dec 10 14:15:53 2012 -0500 - - HHH-7849 Formatting - -commit 02825e9fd66be189fd94a9fa1f40c9d852cfc6ae -Author: mgrenonville -Date: Fri Dec 7 17:40:51 2012 +0100 - - HHH-7849 Unable to join on an embedded field - -commit afc49f435ffb6039205cad6a3e6a758ba950217d -Author: Shawn Clowater -Date: Thu Nov 15 10:01:32 2012 -0700 - - Changed the error handling for LazyInitializationException to go through the throwLazyInitializationException method so that the collection role is reported. - -commit d34e409f416fda98893c85ce6bb30feb88f000f9 -Author: brmeyer -Date: Fri Dec 7 12:12:49 2012 -0500 - - HHH-7811 grammar error in devguide for HB - -commit 47ddaad98d4c04b7c3043c032d3eb7c6363a2750 -Author: Kamyar Sajjadi -Date: Sun Dec 2 14:20:06 2012 +0100 - - HHH-7813 - Fixed the mistakes in code examples. All the examples was in chapter 4 (Batch processing). - -commit 18d10d6fde7c1cfe83ec94ee3f32dec24c7b01af -Author: Barney -Date: Tue Nov 27 13:34:07 2012 +0100 - - HHH-7826 - Generate 'unique' constraints in stable order - -commit 79cc807aae892826cbb0b2e119160e33081851ee -Author: brmeyer -Date: Fri Dec 7 11:28:16 2012 -0500 - - HHH-7839 Documentation bug at - SimpleNaturalIdLoadAccess.getReference(Object naturalIdValue) - -commit 263a84154e974c3e8691d2d894af9f841f6f109c -Author: brmeyer -Date: Fri Dec 7 11:16:48 2012 -0500 - - HHH-7840 org.hibernate.id.IncrementGenerator very slow - -commit 1f690e7aa6a5f4511084aac9526fe3e6812f2632 -Author: brmeyer -Date: Thu Dec 6 16:17:32 2012 -0500 - - HHH-7835 Updated the largeJar test to be completely isolated - -commit 230dc55d80bbef019736cea338ca1febbfdb8b21 -Author: brmeyer -Date: Thu Dec 6 14:58:10 2012 -0500 - - HHH-7835 Inefficient implementation of - JarVisitorFactory.getBytesFromInputStream - -commit 2fad160bd69df9ffa3b5b18272316a931692fdff -Author: brmeyer -Date: Thu Dec 6 14:26:13 2012 -0500 - - HHH-7835 Inefficient implementation of - JarVisitorFactory.getBytesFromInputStream - -commit da32690828d59c489241701c4107cc22033b519a -Author: Lukasz Antoniak -Date: Wed Dec 5 10:08:13 2012 +0100 - - HHH-7827 - Documentation - -commit 516577ea80b5b7ea72ead279bd804315f6faeb8d -Author: Lukasz Antoniak -Date: Wed Nov 28 17:36:40 2012 +0100 - - HHH-7827 - Correlating aggregated and outer queries - -commit 21ade0c798ed0fbb1444339af396325f324f94cb -Author: Steve Ebersole -Date: Fri Nov 30 12:09:15 2012 -0600 - - HHH-1168 - Problem combining locking and paging on Oracle - -commit 6e71a0907eba1a83ef50f3f6d4bf860c7df292e5 -Author: Steve Ebersole -Date: Thu Nov 29 12:33:54 2012 -0600 - - HHH-1168 - Problem combining locking and paging on Oracle - -commit 5707798b4b4a3a7b99fc47faf5575ec11be2c4e0 -Author: Strong Liu -Date: Wed Nov 28 23:35:08 2012 +0800 - - Revert "HHH-7612 - Fix and test" - - This reverts commit 14d1c626a5b3e678535aa23f689cadb0a0c34fd9. - -commit caf2ee420c171ad23a4745a6777cf2694de72a5d -Author: Steve Ebersole -Date: Mon Nov 26 17:49:55 2012 -0600 - - HHH-7825 - org.hibernate.type.descriptor.java.DataHelper is incompatible with FireBird JDBC - -commit dd280b8c27864be2699c0c1a427a70a6d9084d98 -Author: Steve Ebersole -Date: Mon Nov 26 13:19:08 2012 -0600 - - HHH-1168 - Problem combining locking and paging on Oracle - -commit 4785d7eb2e63f6d692908e84e29f64fa62b9a1a1 -Author: Steve Ebersole -Date: Mon Nov 26 10:34:59 2012 -0600 - - HHH-7233 - unmuck EntityManager#getSingleResult wrt auto-setting of max results - -commit 14d1c626a5b3e678535aa23f689cadb0a0c34fd9 -Author: Lukasz Antoniak -Date: Sat Nov 24 18:08:15 2012 +0100 - - HHH-7612 - Fix and test - -commit 468c58358edbf091e33642fa123ac3494d67738d -Author: Lukasz Antoniak -Date: Thu Nov 22 12:01:47 2012 +0100 - - HHH-7800 - Tests cleanup - -commit dadc43af23b1e8dd8623abc66a9ff6864993bc14 -Author: Csaba Varga -Date: Wed Nov 21 14:30:07 2012 +0100 - - HHH-7800: Fixed "maximize" doesn't work inside a disjunction issue - -commit cd3363151b77225458e37816f74c537cbc4798f6 -Author: Csaba Varga -Date: Wed Nov 21 13:38:32 2012 +0100 - - HHH-7800: added unit test to demonstrate broken behavior ("maximize" - does not work inside an AuditDisjunction) - -commit ff25434d1f6d48b35d58cdb0305f11504c498d2c -Author: Csaba Varga -Date: Wed Nov 21 12:12:17 2012 +0100 - - HHH-7800: Fixed "between" doesn't work inside a disjunction issue - -commit 54760bb61e9f34a432c1e57d11ebe21918530ed4 -Author: Csaba Varga -Date: Wed Nov 21 12:02:15 2012 +0100 - - HHH-7800: added unit test to demonstrate broken behavior ("between" - does not work inside an AuditDisjunction) - -commit 0118819133897e5355a0415de72fb1e39dcc67c0 -Author: Brett Meyer -Date: Wed Nov 21 14:08:13 2012 -0500 - - HHH-7819 Correct test issues found in CI hibernate-core-master-matrix - job - -commit 8df655aa6b2bbaa4d0766f194de638b5fdcf9a89 -Author: Brett Meyer -Date: Wed Nov 21 12:53:13 2012 -0500 - - HHH-7819 Correct test issues found in CI hibernate-core-master-matrix - job - -commit 5d2f21a01e939ed0f76b123aa12d74dc6c33b26b -Author: Steve Ebersole -Date: Tue Nov 20 15:57:33 2012 -0600 - - HHH-7816 - DDL opertations will incorrectly commit current transaction on Oracle XA - -commit 4b2871cfba53541d34a74a07b1fc588ce3eaaa51 -Author: Steve Ebersole -Date: Tue Nov 20 13:19:57 2012 -0600 - - HHH-1168 - Problem combining locking and paging on Oracle - -commit c01dd40a6566b62e3ae85f6c0024c147cf2d78ff -Author: Lukasz Antoniak -Date: Mon Nov 19 19:03:59 2012 +0100 - - HHH-5910 - Fix and test - -commit b0fa122cfc4abdd25aea51ad622ac4c4f4833454 -Author: Steve Ebersole -Date: Wed Nov 14 13:57:48 2012 -0600 - - HHH-7802 - Create a CONTRIBUTING.md file - -commit b012e983a66f9e0c57ccfbd2ca42b754a9944b0a -Author: Steve Ebersole -Date: Wed Nov 14 13:40:13 2012 -0600 - - HHH-7802 - Create a CONTRIBUTING.md file - -commit 32746ff07eae331e42a67083d66009d03bbb89a2 -Author: brmeyer -Date: Wed Nov 14 11:01:16 2012 -0500 - - HHH-7785 Reverting a few more Dialect supportsNotNullUnique changes - -commit 5b004e4cbd82970a9cb924251f4896b5956bc0a0 -Author: Lukasz Antoniak -Date: Wed Nov 14 16:15:43 2012 +0100 - - HHH-7780 - Proper enumeration named/ordinal discovery - -commit 65093aabf03f1b9803396e22b36c39bed6010f54 -Author: brmeyer -Date: Tue Nov 13 11:31:58 2012 -0500 - - HHH-7785 Reverting supportsNotNullUnique change in HSQL - -commit 2158bec47c5a8fa80613442c83e76464fcc36569 -Author: Steve Ebersole -Date: Mon Nov 12 14:21:01 2012 -0600 - - HHH-7643 - java.io.NotSerializableException org.hibernate.type.EnumType - -commit 07fc1627cdc97db8c6c9ffdef0c36a5a4aa3b4d0 -Author: Steve Ebersole -Date: Mon Nov 12 13:51:12 2012 -0600 - - HHH-7780 - many envers tests are failing - -commit 5ef8a667ff06ec3bbcee8cb41a37992f425f6e59 -Author: Steve Ebersole -Date: Mon Nov 12 12:13:52 2012 -0600 - - HHH-7777 - Deprecate XmlRepresentableType - -commit ec942edb486b11c88c26d7ddef14dbb96fd49ec5 -Author: Steve Ebersole -Date: Mon Nov 12 09:30:47 2012 -0600 - - HHH-7782 - Deprecate PersistentElementHolder, PersistentIndexedElementHolder, PersistentListElementHolder and PersistentMapElementHolder - -commit bcd15dc0eb7a07e5b44594c301e9564e8fce5d17 -Author: Steve Ebersole -Date: Mon Nov 12 08:54:55 2012 -0600 - - HHH-7777 - Deprecate XmlRepresentableType - -commit 97b1f0749e6159118a4f374e434f01316f1cbb3d -Author: Lukasz Antoniak -Date: Sun Nov 11 17:58:23 2012 +0100 - - HHH-3854 - Fix and test - -commit 3489b71dcac0d2c611ba6cea57096af99a8f0ab9 -Author: Strong Liu -Date: Sun Nov 11 23:26:35 2012 +0800 - - HHH-7773 - Backout HHH-7544 (Pull Request 379) - -commit 25036b088a14d4ae8365e7a96a821882f54f30cb -Author: Steve Ebersole -Date: Thu Nov 8 15:03:16 2012 -0600 - - HHH-7769 - Define short-names for built-in MultiTableBulkIdStrategy impls - -commit dffb86c52d7d07790894061c68c570655c8631b5 -Author: Steve Ebersole -Date: Thu Nov 8 13:09:48 2012 -0600 - - HHH-7768 - Names of invalid named queries incorrectly concatenated - -commit 2ecf840f0e9c72c6d70843ade25e14c2ca345669 -Author: Steve Ebersole -Date: Thu Nov 8 13:07:10 2012 -0600 - - HHH-7407 - Second collection-valued IN expression throws QuerySyntaxExpression - -commit 209763faa88b020418345751d114a5c8af770837 -Author: Steve Ebersole -Date: Thu Nov 8 11:56:11 2012 -0600 - - HHH-7767 - JoinWalker creates ".." substring in association path - -commit 9f462834daa74ea4eacfdddbdee36d7cb7fe4a4e -Author: Alex Kalashnikov -Date: Thu Nov 8 21:27:42 2012 +0400 - - HHH-7767 JoinWalker creates ".." substring in association path - -commit 785e2d869e0141e3f1b120667d0e612906b73274 -Author: Steve Ebersole -Date: Thu Nov 8 09:59:13 2012 -0600 - - HHH-7377 - NullPointerException in conjunction with natural IDs after Session.clear() - -commit 08e63ac4a8ff2aa8751181265bfd476e8656564b -Author: Steve Ebersole -Date: Tue Nov 6 13:12:13 2012 -0600 - - HHH-7757 - NOT IN row-value syntax ignores NOT - -commit 9ec6eedca868fa7999c32bedc75b97effd60b8d6 -Author: Galder Zamarreño -Date: Thu Nov 8 10:13:23 2012 +0100 - - HHH-7553 Upgrade to Infinispan 5.2.0.Beta3 - -commit 49ea5d65dfce29876e1ae42a63818215512dd477 -Author: Galder Zamarreño -Date: Wed Nov 7 16:53:01 2012 +0100 - - HHH-7763 No need to clear caches when these are going to be stopped - - * Make sure failures in stop won't affect other crucial stop operations - that could leave nodes unstopped. - -commit 4294e0faeec56818cb5242b89e141747f172e450 -Author: Steve Ebersole -Date: Tue Nov 6 11:21:38 2012 -0600 - - HHH-7645 - Enum property defined within orm.xml using enum-type string does not work - -commit 432dab34654e8f4f1d5430ee05c620ec45c8183c -Author: Steve Ebersole -Date: Tue Nov 6 08:26:11 2012 -0600 - - HHH-7748 - EnumType crashes because of unsupported JDBC API in Oracle - -commit 1176477e6ad8cff40118a39d1134076d2a31237f -Author: Steve Ebersole -Date: Tue Nov 6 00:38:56 2012 -0600 - - HHH-7758 - Write fetching Developer Guide chapter on fetching - -commit d11165d4d20df40876959bb002adf99ec7b028cd -Author: Steve Ebersole -Date: Fri Nov 2 13:54:20 2012 -0500 - - HHH-7749 - Allow setting system properties for tests on gradle command line - -commit 06b0faaf5770da47681d9d32e06ea204519a3846 -Author: Steve Ebersole -Date: Fri Nov 2 13:27:54 2012 -0500 - - HHH-7746 - Investigate alternative batch loading algorithms - -commit d41545e13b3abe7b0a8db54342a33d26632d2643 -Author: brmeyer -Date: Thu Nov 1 01:42:27 2012 -0400 - - HHH-7725 reverting build.gradle change - -commit 628145bb013cdc62e9df0baae13462501d549a52 -Author: brmeyer -Date: Thu Nov 1 00:58:49 2012 -0400 - - 4.1.8.Final release - -commit 174e9b8ab2f2de67dc012c43d4cb373ef8f9f450 -Author: brmeyer -Date: Wed Oct 31 17:15:23 2012 -0400 - - HHH-7725 unclosed Statement - -commit 3847ebb478eb33e7d2990c06b5d6c7af41f4f318 -Author: brmeyer -Date: Wed Oct 31 13:54:10 2012 -0400 - - HHH-5267 NPE when updating a detached entity with a one-to-one - association changed to null that is mapped with delete-orphan - -commit 1b5088a911c60584d2690014c924c6c3c9a20fcc -Author: Steve Ebersole -Date: Wed Oct 31 12:41:48 2012 -0500 - - HHH-7725 - Make handling multi-table bulk HQL operations more pluggable - -commit 0ab36bed8ccc70f3e30c9f0efe6a5060ccafc958 -Author: Steve Ebersole -Date: Wed Oct 31 11:22:33 2012 -0500 - - HHH-7725 - Make handling multi-table bulk HQL operations more pluggable - -commit 9f0bbe10a61303a665ad319ab92a3bb805d6801a -Author: Steve Ebersole -Date: Tue Oct 30 15:39:47 2012 -0500 - - HHH-7725 - Make handling multi-table bulk HQL operations more pluggable - -commit c94752d24322f1fe44a911038ca783f8ad9ab3c5 -Author: Steve Ebersole -Date: Tue Oct 30 14:02:53 2012 -0500 - - HHH-7725 - Make handling multi-table bulk HQL operations more pluggable - -commit 3e3b439e022b2cf3caf20c8b3e9c346723c832bf -Author: Steve Ebersole -Date: Tue Oct 30 12:25:55 2012 -0500 - - HHH-1570 - criteria-api: filtering by key-many-to-one causes invalid sql - -commit 4516dd45d6b002b4d85a7ff11808cbf604664622 -Author: brmeyer -Date: Tue Oct 30 12:17:50 2012 -0400 - - HHH-7728 added null checks - -commit c297d9326119fffa77d59fd10fa47686c7d28754 -Author: Thorsten Schäfer -Date: Tue Oct 30 16:19:36 2012 +0100 - - HHH-7728 Adapt hashcode to equals method - -commit 776470b85a496acc6f5d3436e6b6559d21bdad86 -Author: Thorsten Schäfer -Date: Tue Oct 30 16:06:43 2012 +0100 - - HHH-7728 Include schema and catalog in equals - -commit e1ad7c51dff5fc716e43bbe77b8b8b4097a630dc -Author: Thorsten Schäfer -Date: Mon Oct 29 11:18:11 2012 +0100 - - HHH-7728 Add equals method in the table class - -commit 0e3fe2b3d564abfc86750ba19e5bd6daf3aaa1a2 -Author: Lukasz Antoniak -Date: Tue Oct 30 16:54:56 2012 +0100 - - HHH-6349 - Test cleanup - -commit 7b093fbc31b0ea4de33fa6b60118475853d6b864 -Author: Erik-Berndt Scheper -Date: Tue Jun 28 17:29:24 2011 +0200 - - HHH-6349 Testcase: AuditJoinTable rows missing when detached entities with collections are merged into the persistence context - -commit 47ae4e3ced1caf77b4b3d18f6446bc285238caf1 -Author: Erik-Berndt Scheper -Date: Tue Jun 28 16:28:11 2011 +0200 - - HHH-6349 Testcase: AuditJoinTable rows missing when detached entities with collections are merged into the persistence context - -commit 363048f44a1fec9d20b8d25be7e4a1fae3ee5ce0 -Author: Lukasz Antoniak -Date: Tue Oct 30 08:48:28 2012 +0100 - - HHH-7669 - Oracle sequences ordered - -commit cbe1c77ad85c58be93964bd8b8fb624f654b7670 -Author: Strong Liu -Date: Tue Oct 30 15:39:58 2012 +0800 - - update README - -commit df809231c53d19cca6451ddda52982c916c4f2d2 -Author: Steve Ebersole -Date: Mon Oct 29 17:46:49 2012 -0500 - - HHH-7725 - Make handling multi-table bulk HQL operations more pluggable - -commit c22e7fd2144c493bdb21ad4f608c3d747b0edd55 -Author: Erik-Berndt Scheper -Date: Mon Oct 29 17:53:45 2012 -0400 - - HHH-6361 - Fixed ManyToManyAssociationClassCompositeIdTest broken by - CollectionType changes - -commit f9049a1fd286048c1f11affe915015fcca8e8af9 -Author: brmeyer -Date: Mon Oct 29 17:51:02 2012 -0400 - - HHH-6361 formatting - -commit 7bb43baf0b0a3def006fe625a3c349bd0138bd56 -Author: Erik-Berndt Scheper -Date: Mon Oct 29 17:46:00 2012 -0400 - - HHH-6361: Patch ensuring that collection events have the correct stored - snapshot after merging a detached entity into the persistencecontext - -commit 5c562411e6ab5b4a12b277d9eb05bf63dc4a93b5 -Author: brmeyer -Date: Mon Oct 29 17:34:59 2012 -0400 - - HHH-6361 Cleaned up test case - -commit d0aa9f5d9df9d6662fe2d1d21cc68aedb22d6c7b -Author: Erik-Berndt Scheper -Date: Thu Jul 14 16:01:49 2011 +0200 - - HHH-6361: Testcase demonstrating that collection events may contain wrong stored snapshot after merging a detached entity into the persistencecontext - -commit 3e69b7bd539f6c04e1489ef5ddc69e58a07ecf35 -Author: Steve Ebersole -Date: Mon Oct 29 16:29:14 2012 -0500 - - HHH-7725 - Make handling multi-table bulk HQL operations more pluggable - -commit 3305af5fe87204c1edd6f3ddc706f972677648dd -Author: Steve Ebersole -Date: Fri Oct 26 14:32:05 2012 -0500 - - HHH-1775 - collection batch fetching - -commit 0c5ad566b6c2d368b8acf510e203d8a567e8c487 -Author: brmeyer -Date: Mon Oct 29 14:24:43 2012 -0400 - - HHH-7733 NativeSQLQueriesTest failing on Postgres - -commit 718dd237f5fab7ad520cc71f77dbdb07d8495391 -Author: brmeyer -Date: Mon Oct 29 14:15:02 2012 -0400 - - HHH-7734: SerializableTypeTest#testNewSerializableType failing for - Oracle 11G R1 - -commit cdc8d4331c074065eaa4e224fd508f6f5bb8f53f -Author: brmeyer -Date: Mon Oct 29 13:46:47 2012 -0400 - - HHH-7732 QueryTest#testMemberOfSyntax failing on Oracle - -commit 5293c78d52575805046b752881cc35be678a3c11 -Author: brmeyer -Date: Mon Oct 29 12:38:36 2012 -0400 - - HHH-7730 SchemaExportManagedConnectionTest#testGenerateDdlToFile - failing on Oracle & Sybase - -commit eae079d283683497d50861c78d0d84b765255105 -Author: brmeyer -Date: Mon Oct 29 11:36:16 2012 -0400 - - HHH-5836 Mapping collection of entities with same name and notnull - constraints from two different entities results in duplicate property - mapping of Backref - -commit cbe619f9bac7f9a283889f14b054dad6d9e71992 -Author: Lukasz Antoniak -Date: Sun Oct 28 22:13:14 2012 +0100 - - HHH-7727 - Mark Envers demo as test source - -commit 4e434f6197a046e1ced4bf1cb3b12e1245dedf67 -Author: brmeyer -Date: Fri Oct 26 14:39:19 2012 -0400 - - HHH-7721 SQLFunctionRegistry findSQLFunction does not honor case - sensitivity - -commit c46c04631dfde15b2e23849e039d313a148c1523 -Merge: fb253b0297 e57c822cbc -Author: Steve Ebersole -Date: Fri Oct 26 12:58:18 2012 -0500 - - Merge branch 'master' of github.com:hibernate/hibernate-orm - -commit fb253b02976267c782130406ddd9667b07cc7969 -Author: Steve Ebersole -Date: Fri Oct 26 12:56:08 2012 -0500 - - HHH-1775 - collection batch fetching - -commit e57c822cbca56ab4d5621b045d1910ebb58da99c -Author: Galder Zamarreño -Date: Tue Oct 23 12:08:38 2012 +0200 - - HHH-7553 Use new Infinispan configuration exclusively - -commit cf9ef94f8ea07f759a73e262acebed970d6d62db -Author: Galder Zamarreño -Date: Tue Oct 23 09:27:27 2012 +0200 - - HHH-7553 Upgrade to Infinispan 5.2.0.Beta2 and fix testsuite - -commit d7e58c794dcdef423114e8b0a0086998dd240348 -Author: Galder Zamarreño -Date: Tue Aug 28 13:49:02 2012 +0200 - - HHH-7554 Transform global statistics override to new configuration - -commit 7cecc68fb1f72a8696cd81edbe58291e6a9693c3 -Author: Guenther Demetz -Date: Mon May 14 14:49:38 2012 +0200 - - HHH-1775 - -commit 226d2459ecc3eb832dc34e18bad32f958e97a522 -Author: brmeyer -Date: Fri Oct 26 11:26:44 2012 -0400 - - HHH-7724 JpaLargeBlobTest failing on multiple DBs - -commit 3d82bb1d640423479920b310271b4109ca1cd76f -Author: Esen Sagynov -Date: Fri Oct 26 11:17:17 2012 -0400 - - HHH-7717 Quoted "value" column name as "`value`" since it's a reserved - word in - CUBRID. - -commit d611f59832c39c52f80c5f485057d586d0b749d1 -Author: Esen Sagynov -Date: Fri Oct 26 11:17:04 2012 -0400 - - HHH-7717 Added a quoted "`data`" column name as this is a reserved word - in - CUBRID. - -commit 339b4363b1be96e4baf85b63be524887861bcb73 -Author: Esen Sagynov -Date: Fri Oct 26 11:16:46 2012 -0400 - - HHH-7717 Quoted table names in tests otherwise fail in CUBRID dialect as - these - names are reserved. - -commit f63352b0f76a01df01efa18fd5528b29a20c9fcb -Author: Esen Sagynov -Date: Fri Oct 26 11:16:15 2012 -0400 - - HHH-7717 Wrapped "SYS_USER" column names into "`SYS_USER`" as they can - be - reserved in some dialects which would cause a test failure. - -commit eb4b4ba0d2eb8a54564f2916dccfc79dcac25c3e -Author: Esen Sagynov -Date: Fri Oct 26 11:15:57 2012 -0400 - - HHH-7717 Wrapped "date" column names into "`date`" as they can be - reserved in - some dialects which would cause a test failure. - -commit d41b800bb00f7cff940cfe2ed1e3d4ca53eafbd3 -Author: Esen Sagynov -Date: Fri Oct 26 11:15:44 2012 -0400 - - HHH-7717 Wrapped additional "type" column names into "`type`" as they - can - be - reserved in some dialects which would cause a test failure. - -commit 76bb63c74c7199cf8271e001d19ee05342bb5a4c -Author: Esen Sagynov -Date: Fri Oct 26 11:15:28 2012 -0400 - - HHH-7717 Wrapped "time" column names into "`time`" as they can be - reserved in - some dialects which would cause a test failure. - -commit 36f519d02eb634c73e7302b23c0347bcac7cfee2 -Author: Esen Sagynov -Date: Fri Oct 26 11:15:13 2012 -0400 - - HHH-7717 Wrapped "value" column names into "`value`" as they can be - reserved in - some dialects which would cause a test failure. - -commit 61cb6f59f60b86c4f956db1765614ec03661434c -Author: Esen Sagynov -Date: Fri Oct 26 11:09:36 2012 -0400 - - HHH-7717 Added import to Tooth test for previously committed @Column. - -commit 014bc42a86db3941198e6d8f2b50c9df3e46da18 -Author: Esen Sagynov -Date: Fri Oct 26 11:08:41 2012 -0400 - - HHH-7717 Wrapped column names which may be reserved in some dialects. - Also added - column declarations for properties which lacked column attribute. - -commit d1b5b4b428b63e092004e16be657310c22eeddef -Author: Zbyněk Roubalík -Date: Fri Oct 26 10:51:54 2012 -0400 - - HHH-7723 Adding mssql2012 DBAllocator label. - -commit e4fbe2fc9932caeada83932322d7782b630cb144 -Author: Esen Sagynov -Date: Thu Oct 25 11:18:11 2012 -0400 - - HHH-7716 Added a fallback data type for cases when VARCHAR length is - over - 4000 - chars. - - In such cases the column type will be STRING which is equivalent to - VARCHAR(1,073,741,823). - -commit a0d02a066004f0649768e1ddce903bf46dd0ae6a -Author: Esen Sagynov -Date: Thu Oct 25 11:17:44 2012 -0400 - - HHH-7716 FIxed a bug which didn't allow BOOLEAN type to be saved to - CUBRID DB. - BIT(8) data type solves this issue. - -commit 220365600cd7692ede1977d366966a5828dc749c -Author: Esen Sagynov -Date: Thu Oct 25 11:17:30 2012 -0400 - - HHH-7716 Fixed a bug in CUBRIDLimitHandler. Now correctly processes - LIMIT - clause - in SQL. - -commit e7af2f4b76e62804a8d4e40e842b3f0b07bdca49 -Author: Esen Sagynov -Date: Thu Oct 25 11:17:13 2012 -0400 - - HHH-7716 Skip these tests for CUBRID dialect as temp tables aren't - supported yet. - - Raises: "HibernateException: cannot doAfterTransactionCompletion - multi-table deletes using dialect not supporting temp tables" - -commit 9be36661413f463a3becfef79a7289b4978a1dd5 -Author: Esen Sagynov -Date: Thu Oct 25 11:16:54 2012 -0400 - - HHH-7716 Skip this JoinedSubClassTest for CUBRID dialect as temp tables - are not - supported yet. - - Raises "HibernateException: cannot doAfterTransactionCompletion - multi-table deletes using dialect not supporting temp tables". - -commit b9145ab1320930977a7cea32d6b13809a5a9c621 -Author: Esen Sagynov -Date: Thu Oct 25 11:16:37 2012 -0400 - - HHH-7716 Skip testParameterMixing test for CUBRID dialect. - -commit d4ab63ccc05af7b9ba4d513d362fdfcc4c30b43a -Author: Esen Sagynov -Date: Thu Oct 25 11:16:20 2012 -0400 - - HHH-7716 Renamed smallint data type to short. Sinonyms in CUBRID but - internally - saved as short. - -commit 9534ffc94cb9de3e4f95d9f9bf7895bddf207c26 -Author: Esen Sagynov -Date: Thu Oct 25 11:16:01 2012 -0400 - - HHH-7716 Registered reserved words for CUBRID dialect. - -commit f647ecf7ae9215648134636ea9bd7983f041d466 -Author: Esen Sagynov -Date: Thu Oct 25 11:15:47 2012 -0400 - - HHH-7716 Added import for RowSelection used in buildLimitHandler. - -commit f52d0a9d635fcfb6ed85386bd812b00b3bfe1ca3 -Author: Esen Sagynov -Date: Thu Oct 25 11:15:31 2012 -0400 - - HHH-7716 Added imports for CUBRID limit handler. - -commit f0ebd2f37865a6acb8d976c52336706be4033da6 -Author: Esen Sagynov -Date: Thu Oct 25 11:15:10 2012 -0400 - - HHH-7716 Updated CUBRIDDialect. - - Added supported SQL functions and data types. Removed limit related - methods in favor of CUBRIDLimitHandler. Improved the dialect by - correctly setting values (true/false) for certain dialect features. - -commit b7855e944bab1e11abd2c17d804d13c813805e8f -Author: brmeyer -Date: Thu Oct 25 10:11:14 2012 -0400 - - HHH-7682 Audit records are not rolled back when transaction is rolled - back - -commit ac511bf72e3f4e5cb21eb6f085dda4481f212088 -Author: Lukasz Antoniak -Date: Thu Oct 25 12:56:27 2012 +0200 - - HHH-7690 - @EmbeddedId with @ManyToOne inside - -commit 61eaf4ce4e6a6704cc317dd5f22519d8752af56f -Author: brmeyer -Date: Wed Oct 24 23:10:38 2012 -0400 - - HHH-7359 accidentally committed TRACE log levels - -commit 30ea167c4180b58684f96203763c7c6fc5036a54 -Author: brmeyer -Date: Wed Oct 24 22:51:05 2012 -0400 - - HHH-7359 Added a new method to MessageHelper to intelligently handle - property-ref issues in logging. Rolled it out to as many MessageHelper - users as possible. - -commit 9968ce3adbed979414b0f2a9d054af7cbbad8d2f -Author: brmeyer -Date: Wed Oct 24 16:05:33 2012 -0400 - - HHH-7359 Corrected trace logging of HibernateProxy objects - -commit deaff9705e564b33b92b3eac9fdee89815ce1a44 -Author: brmeyer -Date: Wed Oct 24 13:39:36 2012 -0400 - - HHH-7513 Corrected trace logging for one-to-one cascading - -commit d62708924216f5531b469f0054889e740f1ba68a -Author: brmeyer -Date: Wed Oct 24 13:39:04 2012 -0400 - - HHH-7513 Corrected trace logging for collections using property-refs - -commit b115f56f57f7036544c9effc1fa8e91af9fadc13 -Author: brmeyer -Date: Wed Oct 24 00:27:37 2012 -0400 - - HHH-7479 formatting - -commit 1172fd94dcc08e9c1aefcfdf1e583b9dfc5c226f -Author: mutazkabashi -Date: Wed Oct 24 00:26:52 2012 -0400 - - HHH-7479 getForUpdateString() of HSQLDialect returns empty string. - -commit 6d718a24b0e096769ba3a31eccc8d4ebd7beedd6 -Author: Dmitry Geraskov -Date: Tue Oct 23 18:38:21 2012 -0400 - - HHH-7711 Added test for SchemaExport - -commit e7e28dd978925e4edd0b65d2ea17c86e16ea816d -Author: Dmitry Geraskov -Date: Tue Oct 23 18:37:33 2012 -0400 - - HHH-7711 Generate ddl to file even if scriptToConsole and - exportToDatabase are - set to false - -commit 1a00abc3a656975c2f57a0851b3408473d5c7570 -Author: brmeyer -Date: Tue Oct 23 17:44:36 2012 -0400 - - HHH-7669: JtaTransaction test fails on Oracle RAC - https://hibernate.onjira.com/browse/HHH-7669 - -commit 5e158e8861146de295f0eedca75f080296aef7e1 -Author: brmeyer -Date: Mon Oct 22 13:20:46 2012 -0400 - - HHH-7693 Formatting and duplicate code - -commit 1333725bcff2c13ce2c2ee30804892f46f8decc2 -Author: Bryan Turner -Date: Mon Oct 22 13:14:21 2012 -0400 - - HHH-7692 Use Postgres82Dialect for 9 and 9.1. - -commit 189a8d338664e9502c942065d0a6c966d834bc71 -Author: Bryan Turner -Date: Mon Oct 15 15:31:55 2012 +1100 - - HHH-7693 Use SQLServer2008Dialect for 2012. - - - Previously, SQL Server version 11 (SQL Server 2012) was an unknown - version, resulting in the SQLServerDialect - - Added version 11 to the switch statement so that SQLServer2008Dialect - is now returned by default, as SQL Server 2012 is much more similar - to SQL Server 2008 than SQL Server 2000 - - Added test cases to verify dialects for several SQL Server versions - -commit ec3f649ad5f83481cc41e6003f54884c49f018b4 -Author: brmeyer -Date: Fri Oct 19 17:10:16 2012 -0400 - - HHH-7698: In efficient LOB creations backed by streams - https://hibernate.onjira.com/browse/HHH-7698 - -commit 4fe494d13d3e6f373a17ae83bcb1cc81520a58c0 -Author: Sanne Grinovero -Date: Wed Oct 17 15:27:44 2012 +0100 - - HHH-7699 DriverManagerConnectionProviderImpl is not exact in counting checked-out connections - -commit e4300d279cc1383373f0974f8d3b0239e9b6fd10 -Author: Sanne Grinovero -Date: Wed Oct 17 15:22:21 2012 +0100 - - HHH-7699 More aggressive in checking log levels before creating log messages - -commit e27afb8ded690b5f094a8a06c43ada0aef135341 -Author: Sanne Grinovero -Date: Wed Oct 17 15:10:44 2012 +0100 - - HHH-7699 Proper code formatting of log statements - -commit a074d3244da44bfdd8c2e86fe679a20367bebc87 -Author: Galder Zamarreño -Date: Tue Sep 25 16:39:32 2012 +0200 - - HHH-7640 Improve single node Infinispan 2LC performance - - * Use an Infinispan cache to maintain pending puts, which avoids - the need to control it's memory consumption in the critical path - of putFromLoad. - * This cache is shared by all regions, and it's configured with - aggressive expiration settings to avoid piling up pending put - operations. - * Added a 2LC stress test that tests behaivour and performance - of 2LC under multiple situations, such as entity inserts, updates, - find via PK, find via query and deletes. - * Some other minor performance enhancements, such as avoiding - classloader aware cache wrapper if using 2LC locally. - * Remove cache adapter to reduce construction of useless objects. - * Cache flagged caches in order to avoid recomputing decorated - caches all the time, which reduces memory consumption. - * Skip locking for timestamp updates and separate timestamp region - implementations for local vs clustered scenarios. - -commit 2b4097aa49bd3415cd1c1170d5cb90244f7be3e9 -Author: Steve Ebersole -Date: Wed Oct 17 12:26:35 2012 -0500 - - HHH-7698 - In efficient LOB creations backed by streams - -commit 25a98fada3ad44b352b52eaa740f7279e1e0e2a8 -Author: brmeyer -Date: Wed Oct 10 22:01:32 2012 -0400 - - HHH-7674 DB locks not cleared on - LazyLoadingTest#testLazyCollectionLoadingWithClearedSession - -commit c9fd71fe579a9827cb4ccaf3a879ce3b8bd3e597 -Author: Steve Ebersole -Date: Wed Oct 10 13:21:12 2012 -0500 - - HHH-7683 - Optimize performance of AbstractLazyInitializer.prepareForPossibleSpecialSpecjInitialization() - -commit 11dcd9ab46d9474a54d79c5677804bceec2361e9 -Author: brmeyer -Date: Tue Oct 9 11:29:05 2012 -0400 - - HHH-6655 trim function on DB2 is broken - -commit 58fa4c2eac2a4d556077d11250fa804d23bb9ddf -Author: brmeyer -Date: Mon Oct 8 21:51:56 2012 -0400 - - HHH-4459 Query with Composite Primary Key parameter crashes when query - cache is on - -commit 199ee7860ebec5adbcb419d454634f47e24ff8c0 -Author: Steve Ebersole -Date: Wed Oct 3 08:18:32 2012 -0500 - - HHH-5209 - org.hibernate.hql.ast.QuerySyntaxException when running a JPQL query with a MEMBER OF on an @ElementCollection - -commit 4152ff660a01ae2e537d8fbaf650ed2df7bf1e85 -Author: Brett Meyer -Date: Thu Sep 27 11:32:00 2012 -0400 - - Revert "HHH-4098 VARBINARY should be BLOB in DB2400Dialect" - - This reverts commit 590020535c2d7b4bc105f27de9431c540aee8bd1. - -commit 590020535c2d7b4bc105f27de9431c540aee8bd1 -Author: brmeyer -Date: Wed Sep 26 21:33:52 2012 -0400 - - HHH-4098 VARBINARY should be BLOB in DB2400Dialect - -commit 8dbaefced41dfa17aa7681dcd0ae002ec039e1a1 -Author: brmeyer -Date: Wed Sep 26 17:33:54 2012 -0400 - - HHH-6972 Support PostgreSQL and Oracle LOBs - -commit 068c973cdef85fa75ba8d5ae206e313a221799f3 -Author: Oleh Faizulin -Date: Thu Sep 20 23:00:24 2012 +0300 - - HHH-7644 Correct memory leak - -commit 3e5184e6d7e7c9344880480802cf71d07a0f506a -Author: brmeyer -Date: Wed Sep 26 00:19:05 2012 -0400 - - HHH-6043 PostLoad method invoked before collection initialised - -commit 67beb085d3379d5be32103be4d1ee1fc9f867b7d -Author: brmeyer -Date: Tue Sep 25 23:33:13 2012 -0400 - - HHH-6043 PostLoad method invoked before collection initialised - -commit 121f495ff8b30bfae9487e675ea8a176ec6907ba -Author: brmeyer -Date: Mon Sep 24 12:19:22 2012 -0400 - - HHH-4635 Oracle ORA-24816 inserting and updating data for entities - containg LOB attributes - -commit 563af13c1f2465ad5b90969c06e5509a96423811 -Author: Steve Ebersole -Date: Fri Sep 21 08:36:00 2012 -0500 - - test failure fix - -commit 29ad8e9cb9b15ea7b8e7a795d5e13aaf61e8a254 -Author: Sanne Grinovero -Date: Fri Sep 21 14:26:26 2012 +0200 - - HHH-7633 Cache System#identity for IdentityMap reuse - -commit f85e9247e918c1ddb2b76a6e870f6ad730020788 -Author: Steve Ebersole -Date: Fri Sep 21 07:02:16 2012 -0500 - - HHH-7631 - Improve performance of UpdateTimestampsCache - -commit a8a3f9b11287ff2350aef9bc976ae990918a6f91 -Author: Steve Ebersole -Date: Thu Sep 20 10:04:27 2012 -0500 - - HHH-7626 - Add javadoc to annotations - -commit 5aad2bf84b8fee8ceb1c588cddc4a654007022a2 -Author: Steve Ebersole -Date: Thu Sep 20 06:48:25 2012 -0500 - - HHH-7621 - allow DataSource to be passed into EntityManagerFactoryBuilder - -commit d0f88347af9048e6756dc8a7b277495b7430563b -Author: Steve Ebersole -Date: Thu Sep 20 05:39:19 2012 -0500 - - HHH-7620 - allow ValidatorFactory to be passed into EntityManagerFactoryBuilder : reordered EMF builder processing to better allow late ValidatorFactory and DataSource (HHH-7621) passing - -commit 35b9a9d7854306e52fdad41813a8a09b20fadeae -Author: Shawn Clowater -Date: Fri Sep 14 18:22:50 2012 -0600 - - HHH-7603 Changed AbstractPersistentCollection so that it would behave in a similar manner as 4.1.6 when using the default lazy load behavior for collections. With the changes for HHH-7603 the AbstractPersistentCollection was throwing a NPE instead of a LIE in a very particular case. - Added test that simulates a use case from Hibernate Search 4.1.1 as far as I can tell. - -commit e7cb81857e84ab8eff4c23790fbfe0fc5e168bd4 -Merge: 8462677f53 595f068977 -Author: brmeyer -Date: Thu Sep 20 01:42:27 2012 -0400 - - Merge branch 'master' of https://github.com/hibernate/hibernate-orm.git - -commit 595f068977552d42652665c1654341117daf1d77 -Author: Steve Ebersole -Date: Thu Sep 20 03:47:30 2012 -0500 - - HHH-7620 - allow ValidatorFactory to be passed into EntityManagerFactoryBuilder - -commit 8462677f5352bd83f72d6a65b6436ad31f3644ce -Author: Ivan Sopov -Date: Fri Sep 14 13:03:26 2012 +0300 - - fix for HHH-7487 org.hibernate.type.EnumType incorrectly logs binded values, trace logging was done as it is done in BasicBinder with the String.format - -commit 500e0222b59368a47c0f4b2752480dd78c89acfd -Author: brmeyer -Date: Thu Sep 20 01:24:02 2012 -0400 - - HHH-6972 Support PostgreSQL and Oracle LOBs - -commit 54fdb87d300f4e5820e6ac9ac61861fe6ad647bb -Author: Sergiu Dumitriu -Date: Tue Aug 21 21:52:17 2012 -0400 - - HHH-7541: When using HSQLDB, inserting any CLOB value larger than 16Mb always fails with an exception - Fixed. - -commit 7d5ece822ceb8b44f2716655e565f0c7f24acb7b -Author: brmeyer -Date: Wed Sep 19 08:34:55 2012 -0400 - - HHH-7309 Natural-id not cached in shared cache after insert - -commit a176931349d2f74f371f1da8e45d17dfbab71c25 -Author: Guenther Demetz -Date: Wed May 9 11:46:49 2012 +0200 - - HHH-7309 bug-fix - -commit 7c218bbe11b8e3e27998a71f278f86bc5c974327 -Author: Guenther Demetz -Date: Wed May 9 11:45:06 2012 +0200 - - HHH-7309 testcase - -commit 6660d2412a4c4f0137442184cbfdfb95bda17f50 -Author: brmeyer -Date: Wed Sep 19 05:24:51 2012 -0400 - - HHH-7569 Correct test-only failures in hibernate-core-master-matrix CI - job - -commit 8c58af3b194cf019dfa7bbfb0546085acb6b909e -Author: brmeyer -Date: Wed Sep 19 04:19:09 2012 -0400 - - HHH-6972 Support PostgreSQL and Oracle LOBs - -commit 69442c6ea7e96f499e4615a2f702a1edb25d29f2 -Author: brmeyer -Date: Tue Sep 18 07:13:20 2012 -0400 - - HHH-7569 Correct test-only failures in hibernate-core-master-matrix CI - job - -commit f9c33a32b016365a6f07600ffd003c66083188d4 -Author: brmeyer -Date: Tue Sep 18 04:31:41 2012 -0400 - - HHH-7569 Correct test-only failures in hibernate-core-master-matrix CI - job - -commit cb60b0259cf8ef1d3d1f5848ef0316865dfd25bd -Author: brmeyer -Date: Tue Sep 18 01:33:41 2012 -0400 - - HHH-6682 add support for oracle "bitand" function to Oracle Dialect - -commit 9f720b2d73213000eb8ef3b0dccf0c7a3044feea -Author: brmeyer -Date: Tue Sep 18 01:20:42 2012 -0400 - - HHH-4635 Oracle ORA-24816 inserting and updating data for entities - containg LOB attributes - -commit 6a5bd555dec6af11e0a3aab013dff4d25bb799c0 -Author: brmeyer -Date: Mon Sep 17 06:00:19 2012 -0400 - - HHH-6682 add support for oracle "bitand" function to Oracle Dialect - -commit 9f7f572490e4d184383486f4f18eccc7748d05bc -Author: brmeyer -Date: Mon Sep 17 03:54:36 2012 -0400 - - HHH-6452 PostgreSQL Dialect does not fully implement NOWAIT locking - -commit b040866c2ce7e1ab7ba2f3a82be59d42d5f7d906 -Author: Emmanuel Bernard -Date: Fri Sep 14 11:00:30 2012 +0200 - - HHH-7597 Small error in AvailableSettings JavaDoc - -commit 3a72b45325ce8ac7350cc0c176656dcda3776b36 -Author: Gail Badner -Date: Thu Sep 13 12:30:15 2012 -0700 - - HHH-1283 : Join fetched collections using Query.scroll() is correct only for first entity - -commit 8eb7d8cf648fa7421f9bfe7131c8ed817ed66ac5 -Author: Gail Badner -Date: Wed Sep 12 23:46:50 2012 -0700 - - HHH-1283 : Join fetched collections using Query.scroll() is correct only for first entity - -commit 04ed36bf0a4efab3fb56004b3b0202757b280a46 -Author: brmeyer -Date: Tue Sep 11 18:29:53 2012 -0400 - - HHH-7586 Re-architect Type or TypeFactory dynamic descriptors - -commit 7ce07642cbfa7d1849933da63c7707044988639d -Author: brmeyer -Date: Mon Sep 10 21:37:29 2012 -0400 - - HHH-7586 Re-architect SimpleValue's reflection for dynamic descriptors - -commit 69bcccaa1a86a5ed7901d4dca9e51ee6b1af258a -Author: brmeyer -Date: Mon Sep 10 19:41:31 2012 -0400 - - HHH-7584 Sybase dialects attempting to use BLOB types - -commit 5306dda1c92c45b4b3f9870db1ff5339df69410c -Author: brmeyer -Date: Mon Sep 10 19:04:25 2012 -0400 - - HHH-7569 Correct multiple failures/issues in - hibernate-core-master-matrix CI job - -commit ae59da9322dbadbc4e418e20991b14650089c8bf -Author: brmeyer -Date: Fri Sep 7 10:09:09 2012 -0400 - - HHH-7569 Turned down AST logging due to stackoverflow - -commit f63b0c5f69b5b8281b897f544aff91f56ea6621a -Author: brmeyer -Date: Thu Sep 6 23:02:43 2012 -0400 - - HHH-7569 Correct multiple failures/issues in - hibernate-core-master-matrix CI job - -commit 86deac49f724a3594c8985bd4dcd643ba8c34c04 -Author: brmeyer -Date: Thu Sep 6 13:28:49 2012 -0400 - - HHH-7579 Oracle does not support "unique not null" - -commit 1a3199bfa8fa7fcabeb9e57d90a4aa2a29d5baa7 -Author: brmeyer -Date: Thu Sep 6 13:16:55 2012 -0400 - - HHH-5376 Tests contain invalid SQL - -commit c3861c6b3317d65fd6270c8444167f6aca81600c -Author: brmeyer -Date: Thu Sep 6 12:51:08 2012 -0400 - - HHH-7578 Sybase does not support "unique not null" - -commit 588d4be45be2d8941b88b4912ab1f6a9c659960f -Author: brmeyer -Date: Thu Sep 6 12:48:49 2012 -0400 - - HHH-7577 Dialect's supportsNotNullUnique not working when false - -commit cb1069a3d34a7ddb02511bce6b1173c3c7f16cc9 -Author: Gail Badner -Date: Tue Sep 11 14:35:07 2012 -0700 - - HHH-1283 : Added tests that reproduce the issue - -commit 7b486fc4a4742d9c3fb01c1a4ec613e444d52ede -Author: Steve Ebersole -Date: Fri Sep 7 12:03:48 2012 -0500 - - HHH-1658 - unexpected AST node on HQL UPDATE - -commit e9bd0afe8105573740d85a1a6634d0c6ab4fc39f -Author: Steve Ebersole -Date: Fri Sep 7 12:01:41 2012 -0500 - - HHH-1658 - unexpected AST node on HQL UPDATE - -commit 094c08cd087cdfff1b3909e10a1a95581ec75068 -Author: Steve Ebersole -Date: Thu Sep 6 08:41:37 2012 -0500 - - HHH-7575 - Hibernate Getting Started Guide refers to incorrect tutorial directory for annotations tutoral - -commit 7e0559ecdbfbb985b412ac5d4ea367f2e8995226 -Author: John Hardin -Date: Wed Aug 29 16:00:28 2012 -0500 - - HHH-7398 -- Added testTimeout() and modified AbstractBatchImpl.buildBatchStatement() accordingly. - -commit 8b632c214d137b7a744da611a797dc18520c2b56 -Author: brmeyer -Date: Wed Aug 29 11:53:29 2012 -0400 - - HHH-4394 Added test case - -commit 42de7604f8b04f8ed6ca5408bf942f291e9ac2e7 -Author: brmeyer -Date: Fri Aug 24 13:38:31 2012 -0400 - - Fix for HHH-7545 was missing a session close -- caused exception in 3.3 - backport. - -commit 7b04acd4f41f0790fd11f84db2d1d180e7dfd291 -Author: brmeyer -Date: Wed Sep 5 12:14:14 2012 -0400 - - HHH-7569 Merging test changes to master that were made only in 4.1 - branch - -commit 6a48cccd5d250fb25768fd9c7a28c750f002c6f9 -Author: Steve Ebersole -Date: Wed Sep 5 12:34:03 2012 -0500 - - HHH-7568 - Add JPA1.0 compound key compatability when orm descriptor file used to override annotations. - -commit 961caf770a4e6fd4e97d08aef83ee07b247a49e3 -Author: Jeremy Whiting -Date: Wed Sep 5 15:05:13 2012 +0100 - - HHH-7568 Added test case to check removal of compound key association items. Changed the detection of JoinColumns to work when orm/hbm xml is used. Added change to configure a property when JoinColumns annotation is used on entity definition. - -commit 40574b9d8ae064cf051e62bc0c96ae9e328ffb93 -Author: Steve Ebersole -Date: Wed Sep 5 11:28:13 2012 -0500 - - HHH-1123 - Cannot put more than 1000 elements in a InExpression - -commit 970bd8679e8e019a16e005d8db29c5c3681031fb -Author: brmeyer -Date: Tue Sep 4 18:41:51 2012 -0400 - - HHH-1123 Cannot put more than 1000 elements in a InExpression - -commit 6ac746fffce8cf920c70b20ce4a239d79ec0c08d -Author: Shawn Clowater -Date: Tue May 8 15:54:05 2012 -0600 - - HHH-7308 - - Change the beforeCompletion() method of the TransactionObserver() to call the beforeTransactionCompletion() method regardless of whether or not the session is open like the afterCompletion() method does when calling the afterTransactionCompletion() and also cleaned up the log message around session having after transaction events as this sort of logging had been previously moved to the close() method of SessionImpl. - -commit 4fe75d5a093902937c8247c6427566bdca474951 -Author: Strong Liu -Date: Wed Sep 5 17:21:36 2012 +0800 - - HHH-7371 Natural-id: ObjectNotFoundException when found entity is marked as deleted - -commit 8fa530a24773dce3d73c4dce588a057eebf74136 -Author: Strong Liu -Date: Wed Sep 5 17:06:40 2012 +0800 - - HHH-7300 - TypeDefs won't be found depending of files read-order - -commit e9d00d4b35cd05c6d94868182ea1c81817cecdcb -Author: Strong Liu -Date: Wed Sep 5 14:46:02 2012 +0800 - - Merge branches 'pb00067-patch-8' and 'master' - -commit a043701de75f78e6735cc08340939283b8077f57 -Author: Guenther Demetz -Date: Thu May 3 14:00:01 2012 +0200 - - HHH-7059 The DerbyDialect deprecation warning should appear no more, - when using one of the version-specific dialects - -commit 401d4902fd8e020d8af16cfae7b36b644ac08aa3 -Author: U-MateusPimenta\Mateus Pimenta -Date: Fri Aug 10 01:37:49 2012 -0300 - - HHH-7518 - -commit 072e64d26ac2e957a07792b3a89595bd206c9593 -Author: nrodrigues -Date: Sat Aug 18 17:27:12 2012 +0100 - - HHH-7532 - Override getForUpdateString with correct syntax - -commit e8b26952899426c2c3ead61cdd1ff3095c0dd134 -Author: Dustin Schultz -Date: Fri Aug 24 13:53:34 2012 -0600 - - HHH-7544 - Fixes java.lang.VerifyError by building StackMapTables at appropriate - places. - -commit 4e22fb9044e0664bce3d6a3bbe93a11248e7541e -Author: Steve Ebersole -Date: Tue Sep 4 16:08:28 2012 -0500 - - HHH-7566 - Activating JOIN fetch profile involving self-referential associations causes StackOverflowError - -commit 54f433541671da649d3ca8fe28c8fbbcd3c32f04 -Author: Steve Ebersole -Date: Tue Sep 4 15:00:48 2012 -0500 - - HHH-7203 - IdentityGenerator fails with JOINED Inheritance when inserting entity to PosgtreSQL - -commit 4450b127b2a03b4841d3e1e6a08d7f45dd602c16 -Author: Steve Ebersole -Date: Tue Sep 4 12:17:34 2012 -0500 - - HHH-7567 - Better checking when @Enumerated involved - -commit 076eccb7a21d8cdbc820a5d089645fabe9d6b933 -Author: Steve Ebersole -Date: Mon Sep 3 22:06:23 2012 -0500 - - HHH-5188 - Use provided enum type ordinal/string when reading - -commit ab64f5c3be0fbe757b49dfa7a39d9c2bf9903d80 -Author: Steve Ebersole -Date: Fri Aug 31 16:20:05 2012 -0500 - - HHH-7552 - New StrategySelectorService : initial auto-detection - -commit 98ad44e75d78615d49f7ac3558db9df009a310da -Author: Steve Ebersole -Date: Fri Aug 31 11:21:16 2012 -0500 - - HHH-7563 - Fallback for JBossAppServerJtaPlatform.locateUserTransaction() to look at "java:jboss" if "java:comp" not available - -commit 8e30a2b86d692ce135d4947edf2358deb69e1e38 -Author: Didier Villevalois -Date: Thu Mar 1 15:44:38 2012 +0100 - - HHH-7134 - Detection of wrong circularity when two tables with same name in different schemas - - Fixes FKSecondPass processing to take catalog and schema in accounts. Corresponding test class is - org.hibernate.test.cfg.WrongCircularityDetectionTest. - -commit 3e2be6a009e6783c30ad6483ff378770d5105f4b -Author: Steve Ebersole -Date: Thu Aug 30 10:45:35 2012 -0500 - - HHH-7557 - Map entries get deleted - -commit d4eade81991aed73e5768eff140b4349e479dcee -Author: brmeyer -Date: Wed Aug 29 17:58:11 2012 -0400 - - HHH-7560 ehcache unit test intermittently failing - (UnknownServiceException) - -commit 759620cecb4b36871d2b1b1824cad6b9069cf373 -Author: Steve Ebersole -Date: Wed Aug 29 11:16:17 2012 -0500 - - HHH-6823 - Short-name config values - -commit 37542fe1f17379ec3b4497a9736bcfca1b3cc488 -Author: Steve Ebersole -Date: Wed Aug 29 10:49:06 2012 -0500 - - HHH-6823 - Short-name config values - -commit 4ad49a02c9058831e2652e84de722220335b2780 -Author: Steve Ebersole -Date: Tue Aug 28 14:12:14 2012 -0500 - - HHH-7556 - Clean up packages - -commit d52a20a6933bbcc344839c0b0c8cb91fd2eb491f -Author: Steve Ebersole -Date: Mon Aug 27 15:18:21 2012 -0500 - - HHH-7552 - New StrategySelectorService : initial work - -commit 110c3a4b92b669ac439d0b4266f06b1043dcaccf -Author: Steve Ebersole -Date: Fri Aug 24 20:39:22 2012 -0500 - - HHH-7550 - Fix UP-TO-DATE checking for APT-based tasks - -commit 63a2f0d7dc22b7a34e7aaf7e9e7516bb235b4095 -Author: Steve Ebersole -Date: Fri Aug 24 20:32:45 2012 -0500 - - HHH-7387 - Integrate Draft 6 of the JPA 2.1 spec : CDI via reflection - -commit a9c28bf28f7b2c1f97d817c0461fbc5ad3064f56 -Author: Lukasz Antoniak -Date: Fri Aug 24 22:30:37 2012 +0200 - - HHH-7543 - Fix and test - -commit edfe8afaf1730b916e823f69f27c7c83ad8ce4e1 -Author: Lukasz Antoniak -Date: Thu Aug 23 23:51:46 2012 +0200 - - HHH-7212 - Fix - -commit 5327ac5396dd742907fb0c01b6d9a9faa6314c8b -Author: Gail Badner -Date: Thu Aug 23 01:06:38 2012 -0700 - - HHH-7545 : Aliases for a collection key and element column can collide causing one to be excluded - -commit 07d154fbf2ece9bf4e3c1487aa90da078c77e692 -Author: Strong Liu -Date: Thu Aug 23 23:02:51 2012 +0800 - - HHH-7514 fixing compile error - -commit fd8a45b2b246df9343adf2ec0df9acc298f69704 -Author: Steve Ebersole -Date: Wed Aug 22 13:41:16 2012 -0500 - - HHH-7514 - Upgrade to Jandex 1.1 - -commit 4282e23caa68a6e3a35cedd544d3fe9649c3c1d6 -Author: Steve Ebersole -Date: Sat Aug 18 12:30:21 2012 -0500 - - HHH-7387 - Integrate Draft 6 of the JPA 2.1 spec : CDI (small test change) - -commit c9ff6f2fe2406aa940787dead7e46b9c8a24e2be -Author: Steve Ebersole -Date: Fri Aug 17 18:31:13 2012 -0500 - - HHH-7387 - Integrate Draft 6 of the JPA 2.1 spec : CDI (small test change) - -commit f74cf0b83f24ae62f06e7a713aa01ae3524d6fa5 -Author: Steve Ebersole -Date: Fri Aug 17 18:19:25 2012 -0500 - - HHH-7387 - Integrate Draft 6 of the JPA 2.1 spec : CDI support - -commit d252a141d040c9715d3ff84a3198b631bfe00772 -Author: Thomas Einwaller -Date: Thu May 10 00:05:29 2012 +0200 - - https://hibernate.onjira.com/browse/HHH-3452 - Statistics for Criteria Queries - -commit af4fedc98b500230c8cb898e1d3d13e63f1f4bcb -Author: Steve Ebersole -Date: Thu Aug 16 15:20:32 2012 -0500 - - HHH-7527 - OSGI manifests for hibernate-orm - -commit 6b5a428b3fed930227ae6a17e3b876c07745d5a3 -Author: Steve Ebersole -Date: Thu Aug 16 14:21:21 2012 -0500 - - HHH-7527 - OSGI manifests for hibernate-orm : clean up org.hibernate.engine.spi package duplication between hem and core - -commit 52336f41509d73f9daba64cc61da4ecde7a117dd -Author: Steve Ebersole -Date: Thu Aug 16 11:27:59 2012 -0500 - - HHH-7524 - Enabling AvailableSettings.ENABLE_LAZY_LOAD_NO_TRANS results in leaking DB-connections - -commit 57393925725dc4455aed5771d61d0d85678445aa -Author: Steve Ebersole -Date: Wed Aug 15 14:33:34 2012 -0500 - - HHH-6823 - Short-name config values : transactions - -commit 773d0793f1194a021468c81d699843c84ca709cf -Author: Lukasz Antoniak -Date: Thu Aug 16 10:34:16 2012 +0200 - - HHH-4751 - Fix and test - -commit 7120b85bbc7085e3b5ce2e279614884ef0b99161 -Author: Steve Ebersole -Date: Wed Aug 15 13:47:21 2012 -0500 - - HHH-7521 - JBoss 7 / JPA 2.1 integration work - -commit d8651c3ba78abe0cd014df8ac966fa205502bbc4 -Author: Steve Ebersole -Date: Wed Aug 15 10:51:47 2012 -0500 - - HHH-7524 - Enabling AvailableSettings.ENABLE_LAZY_LOAD_NO_TRANS results in leaking DB-connections - -commit cd480fbd2b280339966d46a4119a8d62baa91f3d -Author: Steve Ebersole -Date: Tue Aug 14 09:54:28 2012 -0500 - - HHH-7472 - Introduce a "schema management" service - -commit 94aa561e19cde40ec50de4019ac65807a3ea2be7 -Author: Sanne Grinovero -Date: Sat Aug 11 21:58:38 2012 +0300 - - HHH-7367 Upgrade to Infinispan 5.1.6.FINAL - -commit b38e160cbaf62084fd33b3510e0825da54913e97 -Author: Steve Ebersole -Date: Mon Aug 13 11:46:29 2012 -0500 - - HHH-7521 - JBoss 7 / JPA 2.1 integration work - -commit fae0d3f49877a5a11a7ac5cef25bb91235906fab -Author: Strong Liu -Date: Thu Aug 9 14:43:11 2012 +0800 - - HHH-7509 NPE regression in second level cache - -commit 8e73bb056e8f3d52eced1ddf22c2d8c58a4d8261 -Author: Scott Marlow -Date: Wed Aug 8 21:46:54 2012 -0400 - - HHH-7509 fix NPE in second level cache - -commit 0068625ee7d09f81d435756cdfb53aeaf8a83581 -Author: Strong Liu -Date: Wed Aug 8 21:12:59 2012 +0800 - - HHH-7508 Debug logging throws MissingFormatArgumentException when using non standard Optimizer - -commit da241cb7ac72e0fa5af4dec39d80773054e891f5 -Author: Strong Liu -Date: Wed Aug 8 20:54:40 2012 +0800 - - HHH-7385 change to use gradle 1.1 - -commit 851da741a3f4fdbe57b99afa1cdd72ca8aab3c02 -Author: Strong Liu -Date: Wed Aug 8 19:08:38 2012 +0800 - - HHH-7385 change to use gradle 1.1 - -commit 7a82349f7557b21ac6f094ec1751db9bf3cd1690 -Author: Strong Liu -Date: Wed Aug 8 17:09:11 2012 +0800 - - HHH-7385 change to use gradle 1.1 - -commit 9a7d3ee81c87919e5af380ece5dd5cf6ec086a5f -Author: Gail Badner -Date: Wed Aug 8 00:32:35 2012 -0700 - - HHH-7493 : Documentation still refers to dom4j as an entity mode - -commit 467258cffa105943877596b58c48beece070a29d -Author: Steve Ebersole -Date: Tue Aug 7 14:51:13 2012 -0500 - - HHH-7457 - Enable loading of collections thats been detached from session - -commit a1c9ed775686e0ace4e3e38c85581000ce647ccc -Author: Ståle W. Pedersen -Date: Wed Jul 18 21:00:01 2012 +0200 - - HHH-7457 - enabled hibernate to reattach a collection that hasnt been loaded to the session. - note: this can cause data to be loaded outside a transaction. use with caution. - -commit a385792178688ddea1814997506c2b217b89fb84 -Author: Steve Ebersole -Date: Tue Aug 7 14:03:07 2012 -0500 - - HHH-7305 - NPE in LogicalConnectionImpl when multi tenancy is used without providing a release mode manually - -commit 9aa88b9a24c4f649d84705cf3e3d64ca9174e2f2 -Author: Lukasz Antoniak -Date: Tue Aug 7 19:07:56 2012 +0200 - - HHH-7157 - Fix and test - -commit d0e13b664ae86d16c9d7d745c5b4f137756589ea -Author: Strong Liu -Date: Tue Aug 7 15:08:23 2012 +0800 - - HHH-7108 HHH-6608 - -commit 45118e729d8f4f6b8cd22aa71f91bb25a0556fa8 -Author: Steve Ebersole -Date: Mon Aug 6 18:26:22 2012 -0500 - - HHH-7502 - Problems with multi-tenancy and 2nd level cache - -commit 7f10972048ede7f06c4f18af7e5924b0d97e5eb5 -Author: Strong Liu -Date: Mon Aug 6 14:37:27 2012 +0800 - - HHH-2808 CLONE -Impossible to define caching for a subclass's collection in hibernate.cgf.xml - -commit 1ec1254babb900798cb118ca28185b58ec93b055 -Author: Tair Sabirgaliev -Date: Sun Jul 22 02:13:54 2012 +0600 - - Test: order of affects caching configuration - -commit c9d6d61adfc5ae60525c3d93a495de6fb999af73 -Author: Strong Liu -Date: Mon Aug 6 13:08:24 2012 +0800 - - HHH-7446 bug-fix - -commit 8b9f171a034f7604853d4c4bc1ffa78a8e2991fe -Author: Guenther Demetz -Date: Fri Jul 20 10:29:19 2012 +0200 - - HHH-7446 bug-fix - -commit 76730924264964148445ff221669ea588a14ca52 -Author: Guenther Demetz -Date: Fri Jul 20 10:28:33 2012 +0200 - - HHH-5281 test-case - -commit 8de0f9e875deb01123ec1fa845cee415fa54c4bf -Author: Eric Dalquist -Date: Wed Aug 1 10:40:49 2012 -0500 - - HHH-7468 Recreate toString value holder after deserialization - -commit 9c859d04327af32534c0c3fd389f4a105f2125f5 -Author: Lukasz Antoniak -Date: Thu Jul 26 06:53:54 2012 +0200 - - HHH-6662 - More descriptive test names - -commit 414e6111a88949ecf458e1a988ba1ade7aa54116 -Author: Lukasz Antoniak -Date: Wed Jul 25 23:23:17 2012 +0200 - - HHH-6662, HHH-7445 - Fix and test - -commit 183c914f5769f7072fd9ff8d5591e816dfc0c353 -Author: Steve Ebersole -Date: Tue Jul 24 14:59:27 2012 -0500 - - HHH-6204 - JoinColumn on non key field fails to populate collection - -commit 6f1423a8e3091fc68a3ea4eda1f1d454d3cb9308 -Author: Steve Ebersole -Date: Thu Jul 19 08:56:31 2012 -0500 - - update master build SNAPSHOT target to 4.2 - -commit 693185a8acc843c2254d820944a1a2a7985ea39a -Author: Steve Ebersole -Date: Wed Jul 18 18:19:47 2012 -0500 - - Re-applying commit for HHH-6304 missed during rebase of JPA 2.1 branch with master due to JPA package refactoring - -commit 30d8fdaa8b32ab6799c8f1746a177be0c4946a25 -Author: Steve Ebersole -Date: Wed Jul 18 15:41:03 2012 -0500 - - HHH-7451 - Integrate Draft 7 of the JPA 2.1 spec : more ejb->jpa rename - -commit 06d44951c62c5c4c02d1d2d77b644f6a9b6ad3a6 -Author: Steve Ebersole -Date: Tue Jul 17 18:13:02 2012 -0500 - - HHH-7451 - Integrate Draft 7 of the JPA 2.1 spec : more ejb->jpa rename - -commit 6a65c3e7e6470a820bdba3aa860809e945e1070d -Author: Steve Ebersole -Date: Tue Jul 17 17:44:12 2012 -0500 - - HHH-7451 - Integrate Draft 7 of the JPA 2.1 spec : SynchronizationType - -commit f8d06216e5b218672a45691651f2fe7842ee663e -Author: Steve Ebersole -Date: Mon Jul 16 20:45:09 2012 -0500 - - HHH-7451 - Integrate Draft 7 of the JPA 2.1 spec : criterias - -commit 219707df1d85596af9fda12cbb7a65c612d71bba -Author: Steve Ebersole -Date: Thu Jul 12 16:05:51 2012 -0500 - - HHH-7387 - Integrate Draft 6 of the JPA 2.1 spec : REF_CURSOR param handling - -commit cb13cea1aca09512359eb886f59121f596ae3532 -Author: Steve Ebersole -Date: Thu Jul 12 09:33:36 2012 -0500 - - HHH-7387 - Integrate Draft 6 of the JPA 2.1 spec + HEM boot cleanup (HHH-6159) - -commit 9ce3afd8da1dd855636778d4259009606e934a41 -Author: Steve Ebersole -Date: Wed Jul 11 09:19:31 2012 -0500 - - HHH-7387 - Integrate Draft 6 of the JPA 2.1 spec : AttributeConverter + HEM boot cleanup (HHH-6159) - -commit ad2a9ef65159672f11091d8b6ea82752f4c2cc1c -Author: Steve Ebersole -Date: Thu Jul 5 17:48:02 2012 -0500 - - HHH-7387 - Integrate Draft 6 of the JPA 2.1 spec : AttributeConverter - -commit 153eb4a913244aca1363bf655e9afccc65df0d1f -Author: Steve Ebersole -Date: Thu Jun 28 20:14:12 2012 -0500 - - HHH-7387 - Integrate Draft 6 of the JPA 2.1 spec : stored procedure queries - -commit 4174c146754c8a91566f35c58b096a0dd8e17c53 -Author: Steve Ebersole -Date: Sat Jun 23 20:41:50 2012 -0500 - - HHH-7387 - Integrate Draft 6 of the JPA 2.1 spec : UPDATE/DELETE criterias - -commit 2adab60d15f4e35332c4f133a6495f89c0a32212 -Author: Steve Ebersole -Date: Fri Jun 22 11:04:13 2012 -0500 - - HHH-7387 - Integrate Draft 6 of the JPA 2.1 spec : TREAT - -commit 8b87ae88305095555e9bc81ea27c06c5c2b92770 -Author: Steve Ebersole -Date: Thu Jun 21 17:39:49 2012 -0500 - - HHH-7387 - Integrate Draft 6 of the JPA 2.1 spec : FUNCTION keyword - -commit 0a374404315c923e0714131d528f86ddb1538623 -Author: Steve Ebersole -Date: Thu Jun 21 10:19:20 2012 -0500 - - HHH-7387 - Integrate Draft 6 of the JPA 2.1 spec : ON keyword - -commit 1dd3e3a0bc30dd30c2e9edfeec1c654b2ad05d11 -Author: Steve Ebersole -Date: Thu Jun 21 09:38:37 2012 -0500 - - HHH-7387 - Integrate Draft 6 of the JPA 2.1 spec - -commit 3edb72db4844c10aa8490472c4b1af05d75076ab -Author: Steve Ebersole -Date: Wed Jun 20 17:43:43 2012 -0500 - - HHH-7387 - Integrate Draft 6 of the JPA 2.1 spec : addNamedQuery support - -commit 00059fee2f3fca3f0437db94c86f1bd3de85df14 -Author: Steve Ebersole -Date: Thu Jun 14 08:40:08 2012 -0500 - - HHH-7387 - Integrate Draft 6 of the JPA 2.1 spec - -commit b76e7c49870cf34eaecbd63079b17bb5c6dbd537 -Author: Scott Marlow -Date: Wed Jul 18 10:59:42 2012 -0400 - - HHH-7454 added DEBUG log message 'PersistenceUnitUtil#isLoaded is not always accurate; consider using EntityManager#contains instead' - -commit ccc58c50ae3c84694cc373d1c8503c84bd24f91a -Author: Strong Liu -Date: Fri Jul 13 01:06:17 2012 +0800 - - prepare for 4.1.6 development - -commit ab708a7ed9903553fc3f143cb46af69550229d9c (tag: 4.1.5.SP1) -Author: Strong Liu -Date: Thu Jul 12 23:55:17 2012 +0800 - - HHH-2394 remove last comma in the array, seems some jdks do not support it - -commit a4d83a90257eb0ab7bd49f5600a101bb210a184f -Author: Strong Liu -Date: Thu Jul 12 23:37:15 2012 +0800 - - 4.1.5.SP1 release - -commit cef5f9a7cd397421003c8da81f2ad01db28dcebb -Author: Strong Liu -Date: Thu Jul 12 23:30:01 2012 +0800 - - HHH-2394 Add support for SqlFragmentAlias.entity element - -commit 5cb8d3a8b39f35cab1f32910c242690f9eebd578 -Author: Rob Worsnop -Date: Thu Jun 28 13:58:05 2012 -0400 - - HHH-2394 Add support for SqlFragmentAlias.entity element - -commit 82c99ccf6fb148e46fd0736f1f9531f6904db226 -Author: Rob Worsnop -Date: Thu Jun 28 12:23:26 2012 -0400 - - HHH-2394 Removed unused imports - -commit 542bc5c83c8729e93193d457f51254e1edc1ac71 -Author: Rob Worsnop -Date: Thu Jun 28 10:16:29 2012 -0400 - - HHH-2394 Allowed usage of {alias} marker. - -commit 1cd8db2ac3f86c64010dd312076c8d3038267209 -Author: Rob Worsnop -Date: Thu Jun 28 09:38:25 2012 -0400 - - HHH-2394 Got filters working with secondary tables - -commit 05dcc209ae44dfa1fc39da67463a603d44199ba9 -Author: Rob Worsnop -Date: Tue Jun 26 18:40:58 2012 -0400 - - HHH-2394 Implemented @SqlFragmentAlias - -commit cfe7db063a31ac0f33f6483f75f38b5aa3fd81da -Author: Rob Worsnop -Date: Tue Jun 26 18:22:22 2012 -0400 - - consolidate src/test and src/matrix - -commit dc4e87340d941fad28efcf4ea86079902cf106e5 -Author: Rob Worsnop -Date: Mon May 21 09:44:37 2012 -0400 - - HHH-2394 refactored unit tests - -commit 2aa89290f78ab0dc77dfaedc4455259eb8bd1b3d -Author: Rob Worsnop -Date: Sun May 20 23:27:27 2012 -0400 - - HHH-2394 Added test cases - -commit 09547a9051dd0ed851d8d6c5bd90841a93db2604 -Author: Rob Worsnop -Date: Sun May 20 23:27:06 2012 -0400 - - HHH-2394 Remove conditions that blocked filters on sub-classes (for annotations) - -commit 63f2639101a113da800385be4e4c8498f7ee222b -Author: Rob Worsnop -Date: Sun May 20 23:26:16 2012 -0400 - - HHH-2394 Derive table name from correct filter (fixed typo) - -commit ee01d806772690633694baea5909d69d83f7d6bd -Author: Rob Worsnop -Date: Fri May 18 10:00:59 2012 -0400 - - HHH-2394 Prefixes won't work; need table set explicitly - -commit dbff4c1839b71499b40be877e02a86687c2704f8 -Author: Rob Worsnop -Date: Tue May 15 15:44:32 2012 -0400 - - HHH-2394 Got filters working on sub-classes. - -commit 1d2877838bb798d9e14dca1fb87068631dab242b -Author: Strong Liu -Date: Thu Jul 12 22:53:07 2012 +0800 - - HHH-7447 ValueHolder used in NaturalIdCacheKey is not Serializable - -commit 9324c7ab1e2363d67454f9fd4f1e881c5f056d1a -Author: Strong Liu -Date: Thu Jul 12 22:38:39 2012 +0800 - - HHH-7447 ValueHolder used in NaturalIdCacheKey is not Serializable - -commit e76830ade0a888e3087ed9562cdd88814a264fb9 -Author: Strong Liu -Date: Thu Jul 12 22:33:52 2012 +0800 - - post 4.1.5 development - -commit 4eb85795d64a66549723c9c4a5661462ce349862 (tag: 4.1.5.Final) -Author: Strong Liu -Date: Thu Jul 12 15:20:35 2012 +0800 - - 4.1.5 release - -commit 97ac8311d4ee04b950d12f4dd2d39cd11b33d840 -Author: Strong Liu -Date: Thu Jul 12 15:00:44 2012 +0800 - - HHH-7426 Setting cacheable='true' in orm.xml does not enable caching of entity in 2lc - -commit 973451d5e8985d03244f3a4ac8c674ca49a1fabb -Author: Strong Liu -Date: Thu Jul 12 11:53:27 2012 +0800 - - HHH-6304 HHH-6695 Error 'Cannot create TypedQuery for query with more than one return' with named queries - -commit c46daa4cf057c0e7bf9d78c6d0ee2824ca3f0ff9 -Author: Lukasz Antoniak -Date: Tue Jul 10 21:19:32 2012 +0200 - - HHH-7440, HHH-7368, HHH-7369, HHH-7370 - Redesign dialect-specific LIMIT clause appliance - -commit 65d1724433cd30510908b24dd960cc3af7ce7070 -Author: Strong Liu -Date: Wed Jul 11 01:21:46 2012 +0800 - - HHH-7310 Resolution of types registered in type registry does not work properly for Properties of @Embeddable types - -commit 3e4786220c8b66d3603ce315169a6bc645609fad -Author: Philippe Marschall -Date: Sat Jun 9 19:38:30 2012 +0200 - - HHH-5929 PooledLoOptimizer is not thread-safe - - All Optimizers in OptimizerFactory are thread safe by having the - #generate(AccessCallback) method synchronized. The only exception is - PooledLoOptimizer who's #generate(AccessCallback) method is not - synchronized. - - - make PooledLoOptimizer#generate(AccessCallback) synchronized - - https://hibernate.onjira.com/browse/HHH-5929 - https://hibernate.onjira.com/browse/HHH-6829 - -commit a86997c7ba71f94fb8a79e2cbd587ed830fbf405 -Author: Strong Liu -Date: Tue Jul 10 23:28:20 2012 +0800 - - HHH-7442 rename org.hibernate.internal.util.Value - -commit 507e609176656ca85179281986ec2aa17ec3c93d -Author: Strong Liu -Date: Tue Jul 10 23:10:34 2012 +0800 - - HHH-7431 Reduce NaturalIdCacheKey Memory Footprint - -commit a92d402cc53cad6a8dd355eeb2fbfe09cadf8fa7 -Author: Eric Dalquist -Date: Thu Jul 5 21:32:40 2012 -0500 - - HHH-7431 Don't pre-calc toString - - Remove toString pre-calculation to avoid excess memory usage. - -commit ffa9cf5768aa410edf87b4dc16d4538a8bd70133 -Author: Lukasz Antoniak -Date: Sun Jun 17 15:26:11 2012 +0200 - - HHH-5565 - Fix and test - -commit d51a0d0c7830818d58fc6e023b4b74f911167eff -Author: Steve Ebersole -Date: Fri Jun 15 17:13:42 2012 -0500 - - HHH-4394 - @OrderBy usage on a joined classes (when using join table) produces incorred SQL syntax. - -commit 41bac11115ec72ac3a08f1662f38877b98f006a8 -Author: Lukasz Antoniak -Date: Tue Jun 12 07:22:49 2012 +0200 - - HHH-7311 - Fix and test - -commit 1f78c9685ef8ecf188d3adedc99015e6c0c5fa8d -Author: Strong Liu -Date: Tue Jun 12 01:12:37 2012 +0800 - - HHH-7382 refact: unify the configuration implementation loading strategy - -commit 74b9ebc09a8d5877aac7d1448cba16f6458644d3 -Author: Strong Liu -Date: Mon Jun 11 21:54:39 2012 +0800 - - HHH-7381 license header - -commit 451dcd5f19f7eebc4ec4812c55a68dafed5efe63 -Author: Strong Liu -Date: Mon Jun 11 21:53:42 2012 +0800 - - HHH-7381 Refact: split CacheImpl from SessionFactoryImpl into a session factory scope service - -commit aac6510098081f67b5fecef629fe7c978df5fa3f -Author: Strong Liu -Date: Mon Jun 11 17:46:54 2012 +0800 - - HHH-7380 bug when initialize MULTI_TENANT_IDENTIFIER_RESOLVER and CUSTOM_ENTITY_DIRTINESS_STRATEGY - -commit 7cda27b6aa7a7875d2b3cbf1d5d7c47fb2c3b611 -Author: Steve Ebersole -Date: Fri Jun 8 08:08:13 2012 -0500 - - cleanup missed references to matrix sourceSet - -commit bd7b54a4ea17a23e673ba456fde6fef2858d66c7 -Author: Steve Ebersole -Date: Fri Jun 8 07:59:54 2012 -0500 - - cleanup missed references to matrix sourceSet - -commit b0bdda114141c799bd071a4eae6ec25f423571ec -Author: Steve Ebersole -Date: Thu Jun 7 14:12:03 2012 -0500 - - consolidate src/test and src/matrix - -commit e6234bd2bd53e3fe99e40ea193ae38badb52abbb -Author: Steve Ebersole -Date: Thu Jun 7 14:11:03 2012 -0500 - - consolidate src/test and src/matrix - -commit 0196ad20f8943cab90fd8d35d2349b247aab6695 -Author: Steve Ebersole -Date: Thu Jun 7 14:06:43 2012 -0500 - - consolidate src/test and src/matrix - -commit 77d83b8a10de737b3c979391b64fafd2ddce074e -Author: Lukasz Antoniak -Date: Thu Jun 7 14:08:15 2012 +0200 - - HHH-5411 - Fix and test - -commit 67c5000885a6721b0b0e69164f0a48830ff1d4ce -Author: Steve Ebersole -Date: Wed Jun 6 17:22:58 2012 -0500 - - HHH-7374 - Support KEY, ENTRY and VALUE qualifiers in WHERE clause - -commit d971317e1b374ceb9c44f4927a4d8276ba63a85d -Author: Steve Ebersole -Date: Tue Jun 5 15:02:24 2012 -0500 - - HHH-6896 - Metamodel.managedType(...) implemented incorrectly - -commit 9b1521c29a50e5121f4e75733d20f10fd449af26 -Author: Steve Ebersole -Date: Tue Jun 5 13:51:16 2012 -0500 - - HHH-6896 - Metamodel.managedType(...) implemented incorrectly - -commit 886cf9157daef66ac4ca1ecc7f8c53c0cd26e313 -Author: Martin Eisenhardt -Date: Mon Jun 4 11:56:39 2012 +0300 - - Added missing word. - -commit 95050f5d5ae58c4a6d40cf7db75bf7710fcfc6d0 -Author: Martin Eisenhardt -Date: Mon Jun 4 11:59:23 2012 +0300 - - Fixed typo. - -commit ab8930d925d1620edf94085eb486d3559782a0b9 -Author: Strong Liu -Date: Mon Jun 4 11:00:11 2012 +0800 - - HHH-7298 sybase ase 15.7 doesn't support lock timeout in statement level - -commit e26b8be6a5a935ae00e537c01c59a6fcb24fc67d -Author: Steve Ebersole -Date: Fri Jun 1 11:59:42 2012 -0500 - - HHH-6707 - One-to-One mapping with foreign key in target table and foreign key being the primary key fails with Oracle - -commit c02de61f242e22eb49b90cea6589ca3ef70008ff -Author: Strong Liu -Date: Fri Jun 1 17:31:43 2012 +0800 - - HHH-7298 seems DB2 do not support set lock timeout from statement level - -commit 0996a970ab6515a28c5844f7270ee18a5e1a9114 -Author: Strong Liu -Date: Fri Jun 1 15:52:00 2012 +0800 - - HHH-7298 org.hibernate.test.dialect.functional.SQLServerDialectTest#testLockNowaitSqlServer catches wrong exception - -commit c0b4b7a577e122b683cc2f8c0f8c7dda621ed8f9 -Author: Strong Liu -Date: Thu May 31 18:58:00 2012 +0800 - - HHH-7298 regression, org.hibernate.ejb.test.lock.LockTest - -commit bf69f8a382a4a1b36381be7b38d5b726eb6974ac -Author: Strong Liu -Date: Thu May 31 17:08:46 2012 +0800 - - HHH-7298 regression, org.hibernate.ejb.test.lock.LockTest - -commit 99cd8455a11006ea1f32e172652544461d8946e9 -Author: Strong Liu -Date: Thu May 31 14:19:22 2012 +0800 - - HHH-7350 update the docs - -commit 8509c08761141286e6f32f38fc7a5297cb4bce36 -Author: Steve Ebersole -Date: Wed May 30 23:48:19 2012 -0500 - - 4.1.4 release - -commit 66aa329b1cd8c76c42a1caa8fb631ddcf49997f3 (tag: 4.1.4.Final) -Author: Steve Ebersole -Date: Wed May 30 23:18:58 2012 -0500 - - 4.1.4 release - -commit ba5a139bd1c84726df1f239fffb980125e87076c -Author: Strong Liu -Date: Thu May 31 11:17:16 2012 +0800 - - HHH-5396 JPQL KEY(), ENTRY() and VALUE() does not recognize alias refs - -commit 1de554b68a0e6eb68b060f3672fa5c9ec03ece3a -Author: Strong Liu -Date: Thu May 31 10:42:10 2012 +0800 - - HHH-7298 regression, org.hibernate.ejb.test.lock.LockTest - -commit 44fcd0a156c61710f4f2494e996ea5ed230e9da8 -Author: Steve Ebersole -Date: Wed May 30 16:21:44 2012 -0500 - - HHH-5396 - JPQL KEY(), ENTRY() and VALUE() does not recognize alias refs - -commit 2b213dabc3077b9e38be232bf65e11472365243d -Author: Strong Liu -Date: Thu May 31 01:00:39 2012 +0800 - - HHH-7298 regression, org.hibernate.ejb.test.lock.LockTest - -commit 29103357a9ba2306a2d7d1ab9907e4f55b81249e -Author: Shawn Clowater -Date: Sat May 26 20:22:26 2012 -0600 - - HHH-7292 - Changed the EntityEntry to check the CustomDirtynessStrategy first to determine if the entity needs to continue with the dirty check. Previously if the entity had mutable properties then it would bypass the custom dirty check. - To maintain legacy functionality still checking the mutable properties before checking the instrumented dirtyFlg (if applicable) - - Added a Date property to the "Thing" test entity to verify that with mutable properties that the CustomDirtynessStrategy is still called. - -commit fe7a5d74c5611a96af8cd443202c09e5d573c49a -Author: Strong Liu -Date: Thu May 31 00:53:21 2012 +0800 - - HHH-7350 read-only entities can not be deleted from 2LC - -commit a203ea65aa686510199d93102d48b5b6b7031151 -Author: Strong Liu -Date: Fri May 25 13:10:26 2012 +0800 - - HHH-7350 read-only entities can not be deleted from 2LC - -commit 27df73641240659405ff6434a0465d491dd6a53f -Author: andrigtmiller -Date: Thu May 24 11:25:36 2012 -0600 - - HHH-7350 - Fixed up the unit tests, to allow the lock of the cache region for an access strategy of READ_ONLY. - -commit 665798339da24e0796475e75ac0cb983b635c471 -Author: andrigtmiller -Date: Thu May 24 10:57:37 2012 -0600 - - HHH-7350 - removed overridden methods in ReadOnlyAccess lock/unlock an instance and/or region of the cache, since inserts and deletes are allowed with a CacheConcurrencyStrategy of READ_ONLY. - -commit 8211c97ace61499c3d7af98759bce87b3ab789c3 -Author: Lukasz Antoniak -Date: Wed May 30 18:49:40 2012 +0200 - - HHH-7295 - Simplify ValidityAuditStrategy#perform() method - -commit c8431ce5d9a55a2b9e76af5df4e5a1fd8d593be8 -Author: Steve Ebersole -Date: Wed May 30 11:03:19 2012 -0500 - - HHH-5881 - Add getter for "namedParameters" to QueryKey - -commit dddc959311e20e3e9bf4e09281a037cc3e9ab9e1 -Author: Strong Liu -Date: Wed May 30 23:32:17 2012 +0800 - - HHH-6846 lock timeout is in milliseconds - -commit 0c1569c4f4ade941398d749401f03fdf04306e35 -Author: Strong Liu -Date: Wed May 30 23:25:33 2012 +0800 - - HHH-6846 lock timeout is in milliseconds - -commit 06f0a13ee367f62d6cdeed4a8ad54067189dcb5e -Author: Steve Ebersole -Date: Wed May 30 08:55:20 2012 -0500 - - HHH-7295 - ParentAuditing Test in Envers Testsuite fails across different databases with different error messages because Hibernate does not set LockMode correctly - -commit 835f4452ebc4ee08fdf014e698994c2c31a92aeb -Author: Steve Ebersole -Date: Tue May 29 15:45:07 2012 -0500 - - HHH-7295 - ParentAuditing Test in Envers Testsuite fails across different databases with different error messages because Hibernate does not set LockMode correctly - -commit ed266c593a4d203957b4364ab8d7a3d5404815ca -Author: Strong Liu -Date: Tue May 29 18:15:59 2012 +0800 - - HHH-6256 persistence.xml-specified javax.persistence.lock.timeout is ignored - HHH-6846 Support for Query.setHint(javax.persistence.lock.timeout) - -commit 4266cd35850e05c039dfa952952b48b4a1c389e6 -Author: Strong Liu -Date: Tue May 29 17:44:09 2012 +0800 - - HHH-7356 javax.persistence.lock.timeout hint is ignored by @NamedQuery - -commit 2036d1479f53731cef3d8d39b318d3d6c12ce505 -Author: Guenther Demetz -Date: Thu May 3 10:52:21 2012 +0200 - - hhh-7112 - -commit 32d36f6ea984a8dabf8655352244be1510e03081 -Author: Strong Liu -Date: Tue May 29 16:58:28 2012 +0800 - - HHH-7356 add failure expected test - -commit 51aa11422486f3c5d3ba0ec95472b038bcabe99d -Author: Lukasz Antoniak -Date: Fri May 25 20:57:47 2012 +0200 - - HHH-7093 - Oracle does not support row value constructor syntax - -commit 61a8416463431aef08dbc07c7b45ad22b66735dd -Author: Galder Zamarreño -Date: Thu May 24 21:11:11 2012 +0200 - - ISPN-7350 Read only entities can be inserted and deleted - -commit af554fe59b20c8cd5ef5078c212be0fafd88a68e -Author: Lukasz Antoniak -Date: Wed May 23 21:32:47 2012 +0200 - - HHH-7093 - ValidityAuditStrategy behaviour depending on row value constractor feature - -commit 7ed87233a9b42c73494e3e782672e09a06766884 -Author: Steve Ebersole -Date: Wed May 23 11:49:38 2012 -0500 - - HHH-7306 - Allow use of CurrentTenantIdentifierResolver in normal session opening - -commit 09d2c0d3a2934ebeef9427f1a7504023ef9cccce -Author: Steve Ebersole -Date: Wed May 23 11:22:46 2012 -0500 - - HHH-7306 - Allow use of CurrentTenantIdentifierResolver in normal session opening - -commit e1062cfa2262104dd7b567ddf420994d6ce01dfd -Author: Steve Ebersole -Date: Wed May 23 09:39:36 2012 -0500 - - HHH-7348 - AbstractMultiTenantConnectionProvider not closing connections - -commit 4b74517dcd607e5602fb747e529e2892ad03fa77 -Author: Strong Liu -Date: Wed May 23 22:11:46 2012 +0800 - - HHH-7347 fail test if it runs longer than 30 minutes to prevent hangs - -commit 7ed323a51f0c509288afaaec98679c60955cfce1 -Author: Strong Liu -Date: Wed May 23 22:08:43 2012 +0800 - - HHH-7345 rollback hibernate.properties - -commit 9b501805c6f5ca874df900562bbdca526bb09ffb -Author: Strong Liu -Date: Wed May 23 21:31:35 2012 +0800 - - HHH-7345 add derby to the matrix testing suite - -commit d92e91bb4d32a225eec7c728cc7ce52ccc0b1b7e -Author: Strong Liu -Date: Wed May 23 21:28:57 2012 +0800 - - HHH-7346 Tests fail on Postgresql due to failure in typecasts - -commit 1f467c01a4ba384942adc8c5ef47d45894080674 -Author: Strong Liu -Date: Wed May 23 18:13:02 2012 +0800 - - HHH-7323 this test changes the Database Collation but not changed it back, which causes some other tests fail - -commit db347c9de7deec7a173d476f0d7a5d263b55840c -Author: Steve Ebersole -Date: Tue May 22 16:13:21 2012 -0500 - - HHH-7074 - the replacement annotations of @Entity are not working - -commit 04b62e1a54e3d737d4e106dbf14e8f736f91d828 -Author: Emmanuel Bernard -Date: Mon May 21 10:59:09 2012 +0200 - - HHH-7084 Do not use ClassLoaderServiceImpl classloader as parent classloader for synthetic ClassLoader - -commit c341a3ba2c009c33d3c600b0dd36880fa53196b7 -Author: Strong Liu -Date: Thu May 17 16:19:53 2012 +0800 - - add timeout check to avoid hangs - -commit 975877e5c718a0971684f50dd06435c0d1ffe035 -Author: Strong Liu -Date: Tue May 15 12:49:39 2012 +0800 - - fail test if timeout - -commit 42b2939e7c28198269b37722a5b7e20d14159399 -Author: Lukasz Antoniak -Date: Mon May 14 20:20:57 2012 +0200 - - HHH-6849 - JavaDoc update - -commit f938a9d10e22337e56994d529f952a8125c7d8c9 -Author: Lukasz Antoniak -Date: Sun May 13 20:51:19 2012 +0200 - - Typo in a comment - -commit bff4a0621460374f7499b8469d7dee79a7a244e9 -Author: Lukasz Antoniak -Date: Sun May 13 20:33:14 2012 +0200 - - HHH-6310 HHH-6728 HHH-7019 HHH-6950 - SQLServer getLimitString() correction - -commit cf8bca62007933cc8f87d9c9bd36ac3b48b885d4 -Author: Strong Liu -Date: Mon May 14 01:41:14 2012 +0800 - - fixing test case, was a typo - -commit 3e9dadc6d92c58748a59539d851ed1eb12eb47e1 -Author: Sanne Grinovero -Date: Sun May 13 11:24:22 2012 +0100 - - memory adjustment - -commit 16d11f84224d011924d8274a6d84c0d5361260df -Author: Sanne Grinovero -Date: Sun May 13 11:24:02 2012 +0100 - - Replace CollectionHelper.EMPTY_X with java.util.Collections.EMPTY_X - -commit ce74c6aa3a8638f7c0fccbac5aaa9b9a7d30c227 -Author: Gail Badner -Date: Fri May 11 15:55:34 2012 -0700 - - HHH-7317 : Boolean values bound to parameters in SQL predicate cause failures using DB2 with deferPrepares = true - -commit c533f215c5feb2aed66913f7509b8260f1114ae9 -Author: Gail Badner -Date: Thu May 10 17:11:32 2012 -0700 - - HHH-7316 : Collection removal actions added by DefaultAutoFlushEventListener.onAutoFlush() are not removed when flush is not needed - -commit 3cddb27d60c2c7f16ad8ee920202a3b8b1b927d3 -Author: Steve Ebersole -Date: Fri May 4 10:49:08 2012 -0500 - - HHH-7198 - SQLServer2005Dialect.getLimitString turns tablenames to lowercase -> SQLGrammarException: when mapping tables with capital letters - -commit 8e454577284892c2421f10867929f967cbac04ba -Author: Steve Ebersole -Date: Thu May 3 11:02:23 2012 -0500 - - HHH-7298 - regression, org.hibernate.ejb.test.lock.LockTest - -commit 070ee532f52e2243894a39521e211470b130c1aa -Author: Steve Ebersole -Date: Thu May 3 10:16:04 2012 -0500 - - HHH-7298 - regression, org.hibernate.ejb.test.lock.LockTest - -commit 007bbe45a921f72b2792ee553ec6ca16ad0b2b3c -Author: Lukasz Antoniak -Date: Thu May 3 14:42:25 2012 +0200 - - HHH-7294 - Fixing test case - -commit 2f0609819b76e15ae6fd2da6e0aa197c9a79345c -Author: Strong Liu -Date: Thu May 3 13:47:23 2012 +0800 - - HHH-7198 HHH-3961 - -commit 76ed4d44eb4b8d420f51a04f7e27b9f269b9fc06 -Author: Guenther Demetz -Date: Wed May 2 16:37:50 2012 +0200 - - fixed testcases - -commit 27f8a4bf93e775f40cc07e207e09af9aef64bf07 -Author: Guenther Demetz -Date: Wed May 2 16:10:55 2012 +0200 - - HHH-7198 SQLServer2005Dialect.getLimitString turns tablenames - to lowercase - -commit ea4125b0260ca8256eeb8c211f8d3f4570eb9f54 -Author: Guenther Demetz -Date: Wed May 2 15:39:21 2012 +0200 - - Testcases for - HHH-3961 SQLServerDialect, support nowait in LockMode.UPGRADE_NOWAIT - HHH-7198 SQLServer2005Dialect.getLimitString turns tablenames to - lowercase -> SQLGrammarException - -commit d81f65715b235ada3127a7fc54c380927583df17 -Author: Guenther Demetz -Date: Wed May 2 11:00:34 2012 +0300 - - Pull-request for HHH-3961 - -commit 606752f867066bad109ffa3192fc75b5a0b13d56 -Author: Gail Badner -Date: Wed May 2 23:51:04 2012 -0700 - - Update version to 4.1.4-SNAPSHOT - -commit 9e1095cafa3c5093d21476d5b993597352ff6bc4 (tag: 4.1.3.Final) -Author: Gail Badner -Date: Wed May 2 21:37:05 2012 -0700 - - prep for 4.1.3.Final - -commit 4e907b6e4cbcf420bbd9b7bb961df122ac48d269 -Author: Gail Badner -Date: Wed May 2 19:26:53 2012 -0700 - - HHH-6848 : Performance Optimization of in memory merge algorithm (Wim Ockerman) - -commit 62192827ccc85ea8f76723f903fce512768d7456 -Author: Gail Badner -Date: Thu Apr 12 21:50:49 2012 -0700 - - HHH-6848 : Performance Optimization of in memory merge algorithm (Wim Ockerman) - -commit 71a0698226861dff8e38fba6bd0b5f1fdf32ca5e -Author: Gail Badner -Date: Mon Apr 9 14:54:50 2012 -0700 - - HHH-6848 : Performance Optimization of in memory merge algorithm (Wim Ockerman) - -commit 6ca09342f85865556f791166efb3e1da0e51dbdd -Author: Steve Ebersole -Date: Wed May 2 22:26:17 2012 -0500 - - HHH-7296 - NPE in JtaTransaction#markRollbackOnly - -commit a2a55d8ab69ed75b76e003606412c6000b8430f1 -Author: Steve Ebersole -Date: Wed May 2 22:07:48 2012 -0500 - - HHH-7274 - Developer Guide reverses discussion of CMTTransactionFactory and JTATransactionFactory - -commit 8b40d71c84c072c134e2111729a4e36283867b3a -Author: Bryan Varner -Date: Fri Apr 20 09:33:39 2012 -0400 - - Renamed the test case to be more consistent. - -commit 5c0d4490827bff0cc59cc249d157a04d996e5b36 -Author: Bryan Varner -Date: Thu Apr 19 18:09:40 2012 -0400 - - Cleaned up the dialect error conversion a little bit for PostgresSQL. I was doing more than I needed to. - - Updated the LockTest to enable another nowait test for postgresql. - -commit cb1c4857748b0a7cae18610f17d0367b84475090 -Author: Bryan Varner -Date: Thu Apr 19 16:36:54 2012 -0400 - - Yes, much cleaner... - -commit c1849d56f64e6c835a7ee901934be52fadef92d8 -Author: Bryan Varner -Date: Wed Apr 18 17:07:11 2012 -0400 - - Changing the test case to no longer fail when PersistenceException is thrown. This feels sooo wrong. - - I know dialects aren't mapping lock exceptions properly, and this test case exposes that if you fail the test when PersistenceException is thrown. So what do I do now? - - There are other tests in this very test class that don't fail the build when the wrong exception is thrown, even though they clearly should. - -commit 327002ab02a72eb4fe5de175b79232273ebb2af1 -Author: Bryan Varner -Date: Wed Apr 18 16:22:54 2012 -0400 - - Adding a test case for HHH-7252. In this branch, the test case currently fails for PostgreSQL matrix tests, unless HHH-7251 is also applied. - -commit d28cb4c39f7d4b17043dbd6ac07f91bdb3eefaa5 -Author: Bryan Varner -Date: Wed Apr 18 13:30:47 2012 -0400 - - Added a test case for HHH-7251 - -commit 089a36a260ab0be0805c0d1f1b5500f7e1460755 -Author: Bryan Varner -Date: Tue Apr 17 14:00:26 2012 -0400 - - HHH-7252 - - The code was a bit non-obvious (assignment in a method call argument) where it was being done, and the local variable (lockOptions) assignment was missing in the find() method implementation. - I changed all instances of lockOptions assignment to assign before the method call where it's required as an argument, ensuring proper scope for exception mapping. - -commit eb66fed9769cf7c70b0ab4eb7478543f53c43fd1 -Author: Bryan Varner -Date: Tue Apr 17 13:40:48 2012 -0400 - - HHH-7251 PostgreSQL dialects now convert proper HibernateExceptions for Deadlock / lock timeout (not available with NOWAIT query). - -commit 0bca4ab9d9e9ccf915c0a45ffcd56e90b59dabb8 -Author: Guenther Demetz -Date: Wed May 2 15:16:54 2012 +0200 - - testcase for HHH-7245 (Inline natural-id synchronization doesn't - consider objects loaded from shared cache) - -commit 94cb6b82b5314184ecde67ae3f819a1ee932edf9 -Author: Guenther Demetz -Date: Wed May 2 14:55:00 2012 +0200 - - HHH-7245 - -commit f5e6a44f7e8eb8f75092230f566a29c4c4e78da6 -Author: Guenther Demetz -Date: Thu Apr 26 16:00:30 2012 +0200 - - HHH-7279 - -commit 94341fdc44733f8c5312d89691b4752ec041b6c7 -Author: Guenther Demetz -Date: Thu Apr 26 12:36:14 2012 +0300 - - HHH-7278 testcases - -commit bd5e97c201465ce418a863d0faa65414df3caad6 -Author: Guenther Demetz -Date: Thu Apr 26 12:20:30 2012 +0300 - - HHH-7278 - -commit 23aa8875d804f5caeb2faa55b8cfd52eee3534ab -Author: Steve Ebersole -Date: Wed May 2 14:14:34 2012 -0500 - - HHH-7265 - ConcurrentModificationException in SynchronizationRegistryImpl.notifySynchronizationsAfterTransactionCompletion due to SynchronizationRegistryImpl.clearSynchronizations clearing SynchronizationRegistryImpl.synchronizations - -commit 48665213ff1efba8127e9a451372fdfb7aa425e8 -Author: Gail Badner -Date: Wed May 2 10:58:10 2012 -0700 - - HHH-7265 : added SessionOwner and SessionBuilderImplementor - -commit 3a5b2311871cd073715c1d100cdb52a385febc8e -Author: Gail Badner -Date: Tue May 1 00:28:50 2012 -0700 - - HHH-7265 : ConcurrentModificationException in SynchronizationRegistryImpl.notifySynchronizationsAfterTransactionCompletion - -commit a4954798167b6bfe6b8c0a21730b39d097211b16 -Author: Steve Ebersole -Date: Wed May 2 12:42:50 2012 -0500 - - HHH-7239 - have session remove itself from list of transaction observers on close - -commit 287c0eba8839a713030b151ce13ce07f072a114c -Author: Shawn Clowater -Date: Mon Apr 30 13:06:08 2012 -0600 - - Temporary fix until the SPIs can be reworked. Remove the transaction observer on Session close and added some checks to ensure the session is still open when the listeners fire. - -commit 779e70df4d3346a398ec6e806cf5bd50415ce3e1 -Author: Lukasz Antoniak -Date: Sun Apr 29 13:27:28 2012 +0200 - - HHH-7187 - Fix ValidityAuditStrategyRevEnd tests - -commit a2bbe3cb5351da9ee5656582ec319e62af8a77d9 -Author: Steve Ebersole -Date: Fri Apr 27 10:51:50 2012 -0500 - - HHH-7282 - Move org.hibernate.cache.internal.Timestamper to hibernate-testing module - -commit ebe578931c6cbcad0b4e24e1d13818d4527f5ca7 -Author: Steve Ebersole -Date: Fri Apr 27 08:47:17 2012 -0500 - - HHH-6405 - setFetchMode ignored in certain cases when using criteria queries - -commit 01621d3bb565464e7eb037d2ca90450fa4b77bce -Author: Strong Liu -Date: Fri Apr 27 17:27:34 2012 +0800 - - HHH-7283 hibernate is not compilable on JDK7 - -commit 016ce8649e60f604289d40d87c0f1c10c61e2a81 -Author: Strong Liu -Date: Fri Apr 27 16:44:59 2012 +0800 - - HHH-7281 Tests fail on Postgresql due to failure in typecasting - -commit bfc8e6ec81e537e595132ec2ba2dcb2f398fa578 -Author: Steve Ebersole -Date: Thu Apr 26 13:18:05 2012 -0500 - - HHH-1512 - Problem to lock a row in a DB2 database with LockMode UPGRADE - -commit 6417ffa1a48ddcc97df401ab0de50f591a3dfe79 -Author: Galder Zamarreño -Date: Thu Apr 26 16:52:38 2012 +0200 - - HHH-7280 Upgrade to Infinispan 5.1.4.FINAL - -commit ae36824c93ac304685466b8dbe6fcadcc676d0d4 -Author: Strong Liu -Date: Thu Apr 26 00:38:53 2012 +0800 - - add sybase 15.7 - -commit cedd3122d2f0276902f911fe3ffdc0bcdeb364e8 -Author: Steve Ebersole -Date: Wed Apr 25 11:34:32 2012 -0500 - - HHH-7276 - Regression allows entity to be looked up by previous natural id - -commit f7708a9c6c8523fb65cc37616394ddc21f9d913f -Author: Lukasz Antoniak -Date: Tue Apr 24 22:41:49 2012 +0200 - - HHH-7246 - Fix and test - -commit 7fa7a51016616a2adb493a73215df2191a538039 -Author: Shawn Clowater -Date: Tue Apr 10 14:51:28 2012 -0600 - - HHH-7239 - - Adding unit tests for the transaction coordinator when using shared transaction context. - One test to show that Sessions are leaked to the transaction observer, one to show that afterTransactionCompletion is not called on any session other than the main and finally one to show that the original session cannot be reused if child sessions were autoclose or flushBeforeCompletion. - -commit e3e4968960466dbc15b07294b08b98fe90d97272 -Author: Steve Ebersole -Date: Tue Apr 24 13:54:24 2012 -0500 - - HHH-7250 - Bug in SharedCache handling of Natural-id - -commit 279f5457409d0520d67f3f38056ef146c98ba13e -Author: Steve Ebersole -Date: Tue Apr 24 12:23:34 2012 -0500 - - HHH-7272 - Have ClassLoaderServiceImpl use Class.forName rather than ClassLoader.loadClass - -commit 98306dd4c1ce0148d404183b216461a45a06ceca -Author: Steve Ebersole -Date: Tue Apr 24 12:22:18 2012 -0500 - - HHH-7272 - Have ClassLoaderServiceImpl use Class.forName rather than ClassLoader.loadClass - -commit 946f0297bb038d700b0ed32f131a1adfb2fa0335 -Author: Steve Ebersole -Date: Tue Apr 24 11:23:22 2012 -0500 - - HHH-7237 - Inline natural-id synchronization doesn't consider reattached objects - -commit 76504f128faa084cd3ad7417743b11a215538f27 -Author: Guenther Demetz -Date: Tue Apr 10 14:47:50 2012 +0300 - - HHH-7237 - Inline natural-id synchronization doesn't consider reattached objects - -commit 572e78dce466132391042eab5cdcb0c55b6677c7 -Author: Guenther Demetz -Date: Tue Apr 10 15:08:19 2012 +0300 - - HHH-7237 - Inline natural-id synchronization doesn't consider reattached objects - -commit d1a7495218f843665c33c267fd257aec79abe789 -Author: Steve Ebersole -Date: Mon Apr 23 14:26:45 2012 -0500 - - HHH-7235 - Support null NaturalId values in loadEntityIdByNaturalId query - -commit 37b645999c46cf2ece3ed6b7051352ce6dba7919 -Author: Steve Ebersole -Date: Mon Apr 23 13:27:14 2012 -0500 - - HHH-7225 - NullPointerException after persisting null entity value as natural-Id - -commit 60e92614be0bacfacfcf9cc8d8155957cc8d2802 -Author: Steve Ebersole -Date: Mon Apr 23 12:05:56 2012 -0500 - - HHH-6405 - setFetchMode ignored in certain cases when using criteria queries - -commit f12f2324c65c52dd8bbfe7f3a905a4046469e497 -Author: David Mansfield -Date: Tue Jul 12 11:13:15 2011 -0400 - - HHH-6405 setFetchMode ignored for some association types when using criteria queries - - Re-unifie the two methods getJoinType in the CriteriaJoinWalker, using if/else to delegate to the correct super.getJoinType(...) method as appropriate. This allows the proper handling for setFetchMode specified in the criteria translator to be applied correctly. - -commit ed0a9fbc00e34683a64b5df9d6228801a71f4cfc -Author: David Mansfield -Date: Tue Jul 12 11:09:47 2011 -0400 - - HHH-6405 test case for setFetchMode ignored using criteria queries - -commit b78fb983f874d52d65bf674721c88abe3b51c0b1 -Author: Strong Liu -Date: Mon Apr 23 21:35:58 2012 +0800 - - use junit defined in libraries - -commit 6a7b70d4ccf96b8582127bf15d67c50d2e3557df -Author: Lukasz Antoniak -Date: Sun Apr 22 12:50:23 2012 +0200 - - HHH-7187 - Fixing tests on Sybase - -commit cfa729d8b3979ef7c8f1c7ea0b0710429540a183 -Author: Lukasz Antoniak -Date: Sat Apr 21 12:32:42 2012 +0200 - - HHH-6790 - Sequence per entity for enhanced SequenceStyleGenerator - -commit fc068be040f045f90e2722d5643616168f7659ef -Author: Gail Badner -Date: Fri Apr 20 17:55:27 2012 -0700 - - HHH-7265 : Test case to repro ConcurrentModificationException - -commit 3cd58b6e7917695c7ad8fb9acc5fa9a2fa95c303 -Author: Steve Ebersole -Date: Fri Apr 20 18:59:06 2012 -0500 - - HHH-7266 - Move away from use of Enhydra developed DataSource for JTA testing - -commit 70847a2331d13fd2b34edc4bb895f8de88a47f43 -Author: Steve Ebersole -Date: Fri Apr 20 17:07:04 2012 -0500 - - HHH-7266 - Move away from use of Enhydra developed DataSource for JTA testing - -commit 6cd7857daa753a0f3ad17e3f48ab494a35fec0e7 -Author: Hardy Ferentschik -Date: Fri Apr 20 17:48:09 2012 +0200 - - Fixing typo - -commit f08cbec42b80725e7840ae3d05f790f6fa9daa8e -Author: Hardy Ferentschik -Date: Fri Apr 20 17:47:19 2012 +0200 - - Fixing typo 'grad;ew' instead of 'gradle' - -commit 1335924dda52a4e7da90b380b4b13cac09a49ac5 -Author: Hardy Ferentschik -Date: Fri Apr 20 17:46:07 2012 +0200 - - Adding Quickstart to readme - -commit 9a709fdfa092edba9b8f8721e3a97691e39cd29d -Author: Hardy Ferentschik -Date: Fri Apr 20 17:38:07 2012 +0200 - - Some updates of text and links - -commit 95ec3457af961c4116015509180dcca04967604f -Author: Lukasz Antoniak -Date: Thu Apr 19 23:49:41 2012 +0200 - - HHH-7187 - Renaming and documenting enhanced revision entity - -commit c41fee2a07b86951916ba3d41080501b82bf9ea1 -Author: Lukasz Antoniak -Date: Wed Apr 18 22:29:34 2012 +0200 - - HHH-7187 - Moving AbstractEntityTest - -commit c7aa99d0d3c1759cbbd596a237c78347310bb3e6 -Author: Lukasz Antoniak -Date: Wed Apr 18 22:09:13 2012 +0200 - - HHH-7187 - New Envers base test classes - -commit 7e6815c80c1266173e7a130cd45ceedfd46a9633 -Author: Lukasz Antoniak -Date: Mon Apr 16 23:30:59 2012 +0200 - - HHH-7187 - Enable USE_NEW_ID_GENERATOR_MAPPINGS - -commit c76810ac47bbeb7444355deed909f8069eb0955e -Author: Lukasz Antoniak -Date: Mon Apr 16 23:18:11 2012 +0200 - - HHH-7187 - Manual flush mode and @PrimaryKeyJoinColumn tests - -commit b8e356f96670772adf289a4558a78a7d2a30b329 -Author: Lukasz Antoniak -Date: Sat Apr 14 17:25:46 2012 +0200 - - HHH-7187 - Fixing tests on PostgreSQL - -commit 68dda2c2426d2a61163e5ca1ed0e670f79114ac7 -Author: Lukasz Antoniak -Date: Tue Apr 10 21:34:04 2012 +0200 - - HHH-7187 - H2 manual flush tests fix - -commit c4822556c19a6ea2d7be93b505548e834c83d955 -Author: Lukasz Antoniak -Date: Tue Apr 10 20:38:22 2012 +0200 - - HHH-7187 - Enhanced default revision entity - -commit 775b6da1db4a86582f2b9daa8cffe1164ec49746 -Author: Lukasz Antoniak -Date: Sun Apr 8 23:25:26 2012 +0200 - - HHH-7187 - Fixing tests on Oracle - -commit 75d684149dc73bc6eec176bef4936b80a88c486a -Author: Emmanuel Bernard -Date: Wed Apr 18 18:11:47 2012 +0200 - - Fix style and add credit where it is due - -commit 7abdf80ebe436bda0605f7a40161d296f9cba7fc -Author: Guenther Demetz -Date: Tue Apr 10 12:31:45 2012 +0300 - - Natural-id : NullPointerException after persisting null String value, if using @NaturalIdCache - -commit 88e231f50b982c57da3558d39bd5586270b42958 -Author: Bryan Varner -Date: Tue Apr 17 13:05:59 2012 -0400 - - Sanity check (to return NONE) prevents null pointer exception on the switch() statment. - -commit 55de90ec42c9711be59f99ac2b0eb4dbcd4318f5 -Author: Galder Zamarreño -Date: Tue Apr 17 19:47:18 2012 +0200 - - HHH-7256 Use minimalPuts in Infinispan - - putFromLoad now checks for minimalPuts to verify whether the entry - is already present in the cache. By doing this, Hibernate stats - appear more precise since putForExternalReads that are no-op because - the cache already contains the entry are not counted as puts. This - avoids confusion amongst users. This should be reverted to checking - PFER's return value when https://issues.jboss.org/browse/ISPN-1986 - has been implemented. - -commit a67c1afe103aa309d96ed7e782b0fc51d7ecb3c4 -Author: Strong Liu -Date: Tue Apr 17 11:18:36 2012 +0800 - - HHH-7253 NPE thrown by NaturalIdResolutionCache - -commit 5671de517dd634369bed03264c50df19a0736801 -Author: Strong Liu -Date: Sat Apr 14 00:32:56 2012 +0800 - - HHH-5043 Incorrect handling of hibernate.default_schema in SchemaUpdate - -commit a334b9f0afb3ac518211a315ec6aefa023d94de6 -Author: Galder Zamarreño -Date: Fri Apr 13 18:07:31 2012 +0200 - - HHH-7238 Remove unneeded cache listeners - -commit 5714a59e5e807c6597d3d506bcc162b7745662a4 -Author: Strong Liu -Date: Wed Apr 11 17:08:47 2012 +0800 - - doc typo - -commit 7ed63c282ab123248397ce82bcbd9a7d75d8fe5a -Author: Andre Azevedo -Date: Wed Aug 10 02:28:00 2011 -0300 - - Translating and correcting wrong white-spaces at the end of the string. - -commit 9e53118c4ef6e68d7236ab85b80381ae92bcc54e -Author: Strong Liu -Date: Tue Apr 10 15:49:19 2012 +0800 - - HHH-2697 - Can't use := for variable assignment within a SQL-Statement - -commit 2e5d707307ca6ee989fd47da88020ff5acae6ae3 -Author: Strong Liu -Date: Tue Apr 10 11:15:08 2012 +0800 - - update postgresql testing profile - -commit 5068b8e808bccf170293b5b9b9ebefc9d6821c74 -Author: Strong Liu -Date: Mon Apr 9 19:27:09 2012 +0800 - - HHH-7195 Table does not handle quoted catalog - -commit 3f6e6339d9645293d332b9b068f1dec0a7125054 -Author: Strong Liu -Date: Mon Apr 9 18:58:35 2012 +0800 - - HHH-7068 - Cursor state not valid error from AS400 - -commit 4270b4777fc7e2de77fb3e66e8eaa8d351f22225 -Author: nrodrigues -Date: Thu Mar 22 16:57:25 2012 +0000 - - HHH-7068 - Fix for "Cursor state not valid" error from AS400 on queries - with setFirstResult. - -commit 280751e1181e0db45e5a4dae7d7602cd672df0dd -Author: Baptiste Mathus -Date: Tue Apr 3 13:23:02 2012 +0200 - - transactionel -> transactionnel - -commit ef78e5c3853b6c8d452dfd54120d2c8d9680e1ee -Author: Gunnar Morling -Date: Sat Apr 7 23:49:44 2012 +0300 - - Fixing typos in exception message - -commit e46d799bbe2884395a09324874505f31e7739fce -Author: Steve Ebersole -Date: Thu Apr 5 14:13:38 2012 -0500 - - re-release 4.1.2 with 'Final' qualifier - -commit 2c9949fe5db9393cb34e24da931834c055b67bbe (tag: 4.1.2.Final) -Author: Steve Ebersole -Date: Thu Apr 5 13:50:41 2012 -0500 - - re-release 4.1.2 with 'Final' qualifier - -commit a30a1adc3d52dd79f6ee36c634d0454d499fe58c -Author: Steve Ebersole -Date: Wed Apr 4 12:12:16 2012 -0500 - - release 4.1.2 - -commit a5b8203bc0c0b33164fda900b7edb68ca26e475a (tag: 4.1.2) -Author: Steve Ebersole -Date: Wed Apr 4 11:41:02 2012 -0500 - - release 4.1.2 - -commit 6193c731916c01afd0caf81d39995de9a671a61f -Author: Steve Ebersole -Date: Wed Apr 4 07:25:23 2012 -0500 - - HHH-7221 - Document natural-id improvements as well as load-access APIs - -commit 09538ec20dc4664e1b4dca559f87318678fbc3d2 -Author: Steve Ebersole -Date: Tue Apr 3 18:04:23 2012 -0500 - - HHH-7221 - Document natural-id improvements as well as load-access APIs - -commit 13252afcff3fe7efdc8161bba4a3b31a804da31f -Author: Steve Ebersole -Date: Tue Apr 3 16:23:37 2012 -0500 - - HHH-6915 - Restrictions.ilike(String propertyValue, Object value) does not correctly initialize LikeExpresison - -commit 3800a0e6959d8f8ee18635ceb0b75c37ad8e0152 -Author: Steve Ebersole -Date: Tue Apr 3 15:51:36 2012 -0500 - - HHH-7206 - Manage natural-id synchronization without flushing - -commit 52d5d374e54452d4e18d022bbcc879666e1b1ce3 -Author: Scott Marlow -Date: Tue Apr 3 10:11:18 2012 -0400 - - HHH-7179 QueryResultsRegionImpl needs the @Listener annotation (otherwise org.jboss.as.test.integration.jpa.secondlevelcache.JPA2LCTestCase will fail) - -commit 5fa28e87eaaeba0d178733c72fc090756b1db5a9 -Author: Galder Zamarreño -Date: Mon Apr 2 10:13:31 2012 +0200 - - HHH-7179 Complete support for Natural Id caching for Infinispan - -commit 2afa747ef9a0a1af6e03b86d7abd770446ed01de -Author: Strong Liu -Date: Thu Mar 15 23:22:46 2012 +0800 - - HHH-7179 impl natural id region in hibernate-infinispan - -commit 9c207b11281bfeb1bdba585e05eb25755201a9bf -Author: Steve Ebersole -Date: Fri Mar 30 12:02:25 2012 -0500 - - HHH-7210 - Natural-id cache put stats not being correctly updated on insert for "asynch" cache providers - -commit ce4e2eda87919ebd113d3effcadb1cfe26cbcff6 -Author: Steve Ebersole -Date: Thu Mar 29 14:46:02 2012 -0500 - - HHH-7209 - Add varargs versions of Restrictions.and/or - -commit fd9d168d192688b6ac22130d30fbc10b4d69d9f5 -Author: Steve Ebersole -Date: Thu Mar 29 13:03:10 2012 -0500 - - HHH-7193 - Transaction Rollback not clearing statement batch on Prepared Statement causes issues with statement caching - -commit b09e2729c0e63491d794544a738ae4133dceeaf4 -Author: Shawn Clowater -Date: Wed Mar 21 16:25:32 2012 -0600 - - HHH-7193 - - Added clearBatch() to the releaseStatements() of AbstractBatchImpl in order to prevent batches from rolled back transactions being applied. - - Added StatementCacheTest to illustrate the issue. - - Added a validator dependency for c3p0 tests since I needed to have the batch semi aborted. - -commit 2f62c21cdd22e643d1babbc89004a98c73bc6679 -Author: Steve Ebersole -Date: Thu Mar 29 12:47:28 2012 -0500 - - HHH-7208 - Fix Gradle links in README.md - -commit 9c55dde59528a3cb52ce438a4f816f6a9f81b7e6 -Author: Galder Zamarreño -Date: Wed Mar 28 20:36:35 2012 +0200 - - HHH-7204 Clear only regions created by the given region factory - - Upgraded to Infinispan 5.1.3.FINAL too. - -commit d159dcef6f2eaa11138ebc644c73f4130b3229b2 -Author: Emmanuel Bernard -Date: Tue Mar 27 15:44:16 2012 +0200 - - HHH-7200 SessionFactoryObservers should be notified of the close event in reverse order of the create event - -commit 74e5c3150d0af1465a918039b7b139b5e28e5b5e -Author: Strong Liu -Date: Tue Mar 27 17:47:10 2012 +0800 - - HHH-7187 configurations should be defined in addConfigurationProperties method, instead configure - -commit b2c458592147c06cba7b020f7e43d67426f2adef -Author: Shawn Clowater -Date: Thu Mar 22 17:28:03 2012 -0600 - - HHH-7194 - - Fixed NullPointerException when using nested Subqueries in the CriteriaAPI when trying to determine the entity name and test that demonstrates the issue. - -commit ff394e4a6a13a11bb1f4d6844433c2309d6bc083 -Author: Steve Ebersole -Date: Mon Mar 26 21:13:16 2012 -0500 - - HHH-6915 - Restrictions.ilike(String propertyValue, Object value) does not correctly initialize LikeExpresison - -commit cf181b41b59f1595ffefdf2e51f35a0d41553d56 -Author: Steve Ebersole -Date: Mon Mar 26 20:09:18 2012 -0500 - - HHH-7199 - proper JTA and auto-commit interaction for envers testsuite - -commit 38a6c426ff1dc7a70f3eaec8ec90e744d02e1ae3 -Author: Strong Liu -Date: Mon Mar 26 17:55:11 2012 +0800 - - HHH-7197 rollback change of JdbcDirectoryProfile, seems that is a m9 feature - -commit caf0f70b6266b6fa89c9bc23e54173b9e798ef60 -Author: Strong Liu -Date: Mon Mar 26 16:55:33 2012 +0800 - - HHH-7187 failed tests - -commit d732cfa7d985162053d87e4df728e0fb390f0c5d -Author: Strong Liu -Date: Mon Mar 26 16:53:20 2012 +0800 - - HHH-7187 failed tests - -commit d3b640cb755e20db84d5d528b03e1ae474bb68e7 -Author: Strong Liu -Date: Mon Mar 26 16:17:45 2012 +0800 - - HHH-7197 reimport imports - -commit e4a82a0b6b912ac3f8c9aeb0e5e5da25208fad56 -Author: Strong Liu -Date: Mon Mar 26 15:12:10 2012 +0800 - - HHH-7197 - update build scripts to not use deprecated gradle apis and change manual's xml declation to use doc namespace - -commit 96e23180d737ff265446b9f66dd681ed82f0add4 -Author: Strong Liu -Date: Mon Mar 26 13:53:07 2012 +0800 - - HHH-7187 - tests fail on sybase - -commit 37aecde9652c13242692f155d4a7927a8c8a8862 -Author: Strong Liu -Date: Mon Mar 26 13:06:12 2012 +0800 - - HHH-7187 - tests fail on sybase - -commit 24f2db04fc4f0604bcc1752e36bab4819e231f89 -Author: Strong Liu -Date: Mon Mar 26 12:52:20 2012 +0800 - - HHH-7187 - skip Lob test on sybase - -commit e835881f3743dbc18cdc7a0ee8efc6f0b39a11d6 -Author: Lukasz Antoniak -Date: Sun Mar 25 06:06:59 2012 +0200 - - HHH-7187 - Fix tests against MSSQL - -commit 78ae6abad132700c9b497d4d45e8c710d048ea3f -Merge: 6aed8651a6 d2852e3c4d -Author: Lukasz Antoniak -Date: Sat Mar 24 15:42:11 2012 +0100 - - Merge remote-tracking branch 'upstream/master' - -commit 6aed8651a6bec4075d1ea6065c0d55200f0076d1 -Author: Lukasz Antoniak -Date: Sat Mar 24 15:40:36 2012 +0100 - - HHH-7187 - Fix tests against MySQL - -commit d2852e3c4d45bf03200626f4b8710a5dbe09b5ce -Author: Strong Liu -Date: Fri Mar 23 16:02:45 2012 +0800 - - a little improvment on the build script - -commit 5a2b019e6654dc5bb3b7b0169c125e42187fe14b -Author: Lukasz Antoniak -Date: Thu Mar 22 23:36:59 2012 +0100 - - HHH-7187 - Shorten table names - -commit e24451637db9998e23b3a427c489658b3f223e53 -Author: Steve Ebersole -Date: Thu Mar 22 09:04:44 2012 -0500 - - HHH-7190 - Cache JDBC proxy class defintions - -commit 624855c43816c1e9e11c4601405f31840d25aab5 -Author: Steve Ebersole -Date: Wed Mar 21 11:19:35 2012 -0500 - - HHH-5732 - @OrderColumn not updated if @OneToMany has mappedby defined - -commit 23f49f19b5cd5962f27a427c5e4bef864fa7fd63 -Author: Steve Ebersole -Date: Tue Mar 20 21:52:49 2012 -0500 - - HHH-1657 - hql update generate wrong sql with joined subclass hierarcy - -commit 8f7b8e10d06a4d116c5371aa2d8da0cf716125ef -Author: Steve Ebersole -Date: Tue Mar 20 19:24:46 2012 -0500 - - HHH-7192 - NullPointerException in QueryTranslatorImpl on erroneously typed delete query - -commit 4f64b56a88df61a439f98d584d354ba0190d374e -Author: Steve Ebersole -Date: Tue Mar 20 13:33:12 2012 -0500 - - HHH-7160 - NaturalIdXrefDelegate#cache() needs to remove obsolete entries in shared cache when NaturalId values changed - -commit fb0b90bd2d9e437937d2476f1d8e454dc28b146b -Author: Steve Ebersole -Date: Tue Mar 20 12:58:00 2012 -0500 - - HHH-7191 - NaturalIdCache improperly declared - -commit 6e85abcf7a1311f628a6ece690830be51be6a9b4 -Author: Lukasz Antoniak -Date: Tue Mar 20 18:43:14 2012 +0100 - - HHH-7017 - Fix and test - -commit 1877315ee394769f5b150a40d99cc76f4bf75c76 -Author: Steve Ebersole -Date: Tue Mar 20 08:40:50 2012 -0500 - - HHH-7090 - Temporary session closing affects original session - -commit 38c4f02cea776395cf883ead1bd61cf67ad547a1 -Author: Strong Liu -Date: Tue Mar 20 13:21:42 2012 +0800 - - HHH-7107 org.hibernate.test.locking.LockModeTest hangs on Sybase 15.5 and DB2-97 - -commit 749f7c1eb5206ab456db08bb901befa39ac5c11e -Author: Strong Liu -Date: Tue Mar 20 13:13:23 2012 +0800 - - HHH-6271 fixes build error when tools.jar is not on classpath (linux) - -commit 5d6d9b87c11c56bdfa51b3d35eaafa57d3f784fb -Author: Steve Ebersole -Date: Mon Mar 19 19:09:44 2012 -0500 - - HHH-7020 - Connection leak with nested sessions - -commit 5a1d523b4d922f2998ed5a717af802ba7b576dd0 -Author: Steve Ebersole -Date: Mon Mar 19 17:34:15 2012 -0500 - - HHH-7090 - Temporary session closing affects original session - -commit 60c1b23c7b72cca921cb10be98375e67ac12e99f -Author: Hardy Ferentschik -Date: Fri Mar 16 11:00:44 2012 +0100 - - HHH-6271 Introducing Byteman in order to really test that a certain log message gets never called. - -commit fa1183f3f9a93385f77edeeee3b9e33e276fd5dd -Author: Hardy Ferentschik -Date: Thu Mar 15 16:55:34 2012 +0100 - - HHH-6271 Unifying error logger in XMLHelper and standalone ErrorLogger. Removing the former and integrating some features of the latter into ErrorLogger. - - Also using a deferred logging approach. - -commit 6c0ebd40a57b6f789269210242d9c1c1dc9f0688 -Author: Hardy Ferentschik -Date: Thu Mar 15 11:47:12 2012 +0100 - - HHH-6271 Adding some more tests - -commit 8373871c305060dcaf17d4d9c5c82e4c8ec814d4 -Author: Hardy Ferentschik -Date: Thu Mar 15 11:36:08 2012 +0100 - - HHH-6271 Javadocs and some generics fixes - -commit ddcd060441bf2e6c01e3d7efddbe1021e6637bc6 -Author: Hardy Ferentschik -Date: Thu Mar 15 11:17:47 2012 +0100 - - HHH-6271 Adding explicit test showing that orm version 1 works - -commit 9272a905a0c4b0740ad2c026d9e215275f3a8891 -Author: Hardy Ferentschik -Date: Thu Mar 15 10:38:09 2012 +0100 - - HHH-6271 Fixing a typo in class name - -commit 99be673a3247345a401b29ce66d0bfa0f26d9966 -Author: Hardy Ferentschik -Date: Thu Mar 15 10:35:32 2012 +0100 - - HHH-6271 Formatting and adding consistent licence header. Removing $Id which is a legacy from svn. - - No functional changes - -commit 199fae5feee6186d8a4ad7bf68b28e5c6ae1b8fd -Author: Strong Liu -Date: Mon Mar 19 23:03:30 2012 +0800 - - correct encoding error - -commit 5822404c6dd0abea57c303b8b735be04b163bd88 -Author: Strong Liu -Date: Mon Mar 19 21:54:28 2012 +0800 - - HHH-7185 - run envers tests on db matrix - -commit ecd8ad54467814c2d37c02dc7015e21eda89c08d -Author: Lukasz Antoniak -Date: Sun Mar 18 15:53:04 2012 +0100 - - HHH-7184 - Envers revision entity JPA2 metadata - -commit 71db4095c65be4cc648a420569eb0087649c30f8 -Author: Lukasz Antoniak -Date: Sun Mar 18 14:54:03 2012 +0100 - - HHH-6661 - Test case - -commit ee9b3585c525273a1ff7a85c0ca5ee093f5a1e3f -Author: Steve Ebersole -Date: Thu Mar 15 10:14:08 2012 -0500 - - HHH-7020 - Connection leak with nested sessions - -commit 476fd2fca74ec8d08eff74345402eabc36fdc7fa -Author: Strong Liu -Date: Thu Mar 15 22:04:57 2012 +0800 - - rollback org.jboss.pressgang: to 3.0.0 - -commit 41b9f2558f5475777810c768de992e1df4de9d54 -Author: Galder Zamarreño -Date: Thu Mar 15 12:14:34 2012 +0100 - - HHH-7176 Upgrade to Infinispan 5.1.2.FINAL - -commit 25487f240182d13851e8576ff895e23e8b2962d4 -Author: Galder Zamarreño -Date: Thu Mar 15 12:31:24 2012 +0100 - - HHH-7166 Support multiple custom command factories - -commit e049fd62966a18d3d0c991c4bdbf0fd1e3375a29 -Author: Strong Liu -Date: Thu Mar 15 16:48:20 2012 +0800 - - uid is a oracle keyword - -commit b145388625ec7f0ea2867f0a0fe34f1aa74ed5a2 -Author: Strong Liu -Date: Thu Mar 15 16:41:09 2012 +0800 - - HHH-7174 org.hibernate.test.tm.CMTTest.testConcurrentCachedQueries fails due to test cases interdependent - -commit ef41cdd6ddd9ebdcad51afa2f3db73ec283933cf -Author: Steve Ebersole -Date: Wed Mar 14 17:56:10 2012 -0500 - - HHH-7133 - NaturalIdLoadAccess not correctly working on mutable NaturalId's - -commit 8ffdc614d769c3f3df64ca6f05aba0ed5792182f -Author: Steve Ebersole -Date: Wed Mar 14 15:11:29 2012 -0500 - - HHH-7133 - NaturalIdLoadAccess not correctly working on mutable NaturalId's - -commit 77393f77f94b086e1b54e296312d3d7c18f27d09 -Author: Steve Ebersole -Date: Wed Mar 14 14:25:27 2012 -0500 - - HHH-7167 - The new natural id code introduced in 4.1.1 depends on the order the entity persisters are loaded which leads to fatal errors - -commit c7afef512ef811b0ed51e02e337065dea213b5d6 -Author: Steve Ebersole -Date: Wed Mar 14 13:36:47 2012 -0500 - - HHH-7158 - Regression: null values on NaturalId's at persist-time are causing subsequent NPE's and wrong behaviour - -commit e532dc5e7d382ac97a10b2df49fe17ed39b7e4fc -Author: Steve Ebersole -Date: Wed Mar 14 12:04:40 2012 -0500 - - HHH-7165 - count() query on classes using EmbeddedId should not use id column tuple on Dialects which dont support non-distinct tuple counts - -commit 2c85cbefa352282426aed699a1e30c45735dc059 -Author: Strong Liu -Date: Wed Mar 14 18:42:14 2012 +0800 - - change org.jboss.pressgang:pressgang-jdocbook-style version to 3.0.1-SNAPSHOT, since there is no 3.0.0-SNAPSHOT available - -commit 90d02e669bacfa9ed046b9f35ed832fe78ccb007 -Author: Strong Liu -Date: Wed Mar 14 14:26:07 2012 +0800 - - HHH-7169 - fix failling tests - -commit 87941b89aa6809599f052fc6420b55a77ba8907c -Author: Steve Ebersole -Date: Tue Mar 13 14:51:04 2012 -0500 - - HHH-7169 - Use ClassLoaderService to load JDBC driver classes - -commit c3fc7f321476659546ae21b444e33395f801213a -Author: Steve Ebersole -Date: Tue Mar 13 12:26:04 2012 -0500 - - HHH-7165 - count() query on classes using EmbeddedId should not use id column tuple on Dialects which dont support non-distinct tuple counts - -commit 41dd7079e0adb81bd8a9facdedbbfa56d59e9a19 -Author: Steve Ebersole -Date: Tue Mar 13 11:57:59 2012 -0500 - - HHH-7165 - count() query on classes using EmbeddedId should not use id column tuple on Dialects which dont support non-distinct tuple counts - -commit c943285bbd15855086f50969e605f377b68d9cb7 -Author: Strong Liu -Date: Tue Mar 13 23:19:08 2012 +0800 - - HHH-7156 Make Hibernate ORM compile and run tests using JDK 7 (and JDK 6) - -commit b51b2ff4cbee68653b0dd983c7d0ec44624e65b8 -Author: Strong Liu -Date: Tue Mar 13 21:58:48 2012 +0800 - - HHH-7156 Make Hibernate ORM compile and run tests using JDK 7 (and JDK 6) - -commit 3a5bb1f5718f398cb8231a927833452f4b1db143 -Author: Strong Liu -Date: Tue Mar 13 16:12:46 2012 +0800 - - upgrade to junit 4.10 - exclude xml-api which is part of JDK 6/7 - change jboss-logging to make it JDK7 compatibile - -commit dceda48ff1bc7272287bdec29dd74f3e5d8baabe -Author: Steve Ebersole -Date: Fri Mar 9 13:34:02 2012 -0600 - - HHH-7162 - Use concise artifact syntax in build scripts - -commit 3e99b2c440f7ab752465cc40d2e85b655f31b931 -Author: Zbyněk Roubalík -Date: Thu Mar 8 15:40:44 2012 +0100 - - HHH-7159 Database keywords causes failure of some tests in org.hibernate.test.collection.custom - -commit ab80780cf1ad3929e990f2051454be9766ea3d53 -Author: Steve Ebersole -Date: Wed Mar 7 21:12:11 2012 -0600 - - release 4.1.1 - -commit 8563fb8a8bde6c65fe9f4cb61a86c66c5f811280 (tag: 4.1.1) -Author: Steve Ebersole -Date: Wed Mar 7 21:10:40 2012 -0600 - - release 4.1.1 - -commit 0e88fdd90991570262528182dc7eb29453c17d25 -Author: Steve Ebersole -Date: Wed Mar 7 20:38:55 2012 -0600 - - HHH-7153 - Update to newest jDocBook tool chain versions - -commit 05c36793730fb1b4e3d08c731998c7649c9b34ef -Author: Steve Ebersole -Date: Mon Mar 5 16:27:52 2012 -0600 - - HHH-7138 - Hibernate implements JPA @OneToMany collection versioning incorrectly - -commit 94e79944b812e3443052a33741c773c9272639e0 -Author: Strong Liu -Date: Wed Feb 29 10:42:03 2012 +0800 - - HHH-5927 remove logging guard and correct javadoc - -commit b4659173a88abbbc44d414af9e70e36abdc754ca -Author: Strong Liu -Date: Tue Feb 28 23:54:27 2012 +0800 - - 1. remove commons-collections dependency. - 2. moved org.hibernate.internal.util.collections.ConcurrentReferenceHashMap from envers module to core, and change it to doesn't allow null key / value. - 3. Using ConcurrentReferenceHashMap this to replace old ReferenceMap (from commons-collections) which used in StatefulPersistenceContext. - 4. copied org.hibernate.internal.util.collections.BoundedConcurrentHashMap from infinispan code base. - 5. deprecate properties QUERY_PLAN_CACHE_MAX_STRONG_REFERENCES and QUERY_PLAN_CACHE_MAX_SOFT_REFERENCES - 6. add two new properties QUERY_PLAN_CACHE_PARAMETER_METADATA_MAX_SIZE and QUERY_PLAN_CACHE_MAX_SIZE - 7. remove LRUMap, SimpleMRUCache and SoftLimitMRUCache - -commit 01fe115adf06007446781fcb5ee9bb519871a56a -Author: Strong Liu -Date: Mon Feb 27 14:29:09 2012 +0800 - - HHH-6100 unqualify entity name and minor improvement - -commit b0f2658ecf63779f6a458bfbce2404a8c6f11086 -Author: Strong Liu -Date: Mon Feb 20 16:25:14 2012 +0800 - - HHH-6100 Bug fix related to CriteriaQuery (JPA) when using XML mappings - -commit ae5d030ae13100b1b80ff305441cb6696f49ede5 -Author: Strong Liu -Date: Mon Feb 20 16:24:55 2012 +0800 - - HHH-6100 Bug fix related to CriteriaQuery (JPA) when using XML mappings - -commit 7a9cdb5379923e8ea977772c052315e0eeb5b726 -Author: Steve Ebersole -Date: Mon Mar 5 15:06:25 2012 -0600 - - HHH-7147 - ServiceRegistry is starting services twice - -commit 3d3ac538d89759c6f5654e6add8c4d66f6919531 -Author: Steve Ebersole -Date: Mon Mar 5 15:06:10 2012 -0600 - - HHH-7138 - Hibernate implements JPA @OneToMany collection versioning incorrectly - -commit 36c135ab6619cc56af293060c0216e924e16b187 -Author: Steve Ebersole -Date: Mon Mar 5 10:24:47 2012 -0600 - - HHH-4417 - Add annotation support for UserCollectionType - -commit 497f700c164cb0c22ade852be86a75b8f59b0305 -Author: Steve Ebersole -Date: Sat Mar 3 16:51:30 2012 -0600 - - HHH-7138 - Hibernate implements JPA @OneToMany collection versioning incorrectly - -commit 7c60f01f2d5e5dd40d4f2edb0ef3339c803a7560 -Author: Lukasz Antoniak -Date: Sat Mar 3 10:27:35 2012 +0100 - - HHH-7106 - Fix, test and documentation - -commit ba6ad4d07294b6238d4c62d06335d50f4abf9853 -Author: Steve Ebersole -Date: Fri Mar 2 17:09:43 2012 -0600 - - HHH-7138 - Hibernate implements JPA @OneToMany collection versioning incorrectly - -commit a3b02e404d0667675d8b6ddbf5db14d82ac16884 -Author: Laird Nelson -Date: Thu Dec 8 10:52:13 2011 -0500 - - Fixed bug https://hibernate.onjira.com/browse/HHH-6883. - -commit d7d9f0dfb207cb8238ea2962fee81708942fa368 -Author: Steve Ebersole -Date: Fri Mar 2 13:17:14 2012 -0600 - - HHH-4417 - Add annotation support for UserCollectionType - -commit 0732db14b85334f799223071a7f5664952e62ab7 -Author: Steve Ebersole -Date: Fri Mar 2 12:47:01 2012 -0600 - - HHH-7097 - Entity load event doesn't result in naturalId->pk caching - -commit f26435dfecacf0c28e180458d3e758be7bcda21a -Author: Steve Ebersole -Date: Fri Mar 2 09:25:30 2012 -0600 - - HHH-6589 - Skip non-JPA features populating JPA "static metamodel" - -commit f4c9b284a1e7ace644ff629d53460987cef3d987 -Author: mam -Date: Thu Jan 26 11:35:36 2012 +0100 - - HHH-6589 - Skip non-JPA features populating JPA "static metamodel" - -commit 2f280b0c5ae71e0014998788ae501ace4a1661c4 -Merge: a889b6cca1 a6ae52b732 -Author: Steve Ebersole -Date: Thu Mar 1 13:32:45 2012 -0600 - - Merge branch 'HHH-7096' of https://github.com/edalquist/hibernate-core - -commit a889b6cca125f87efd6cf7c85507e6356a02c818 -Author: Steve Ebersole -Date: Thu Mar 1 13:22:09 2012 -0600 - - HHH-7097 - Entity load event doesn't result in naturalId->pk caching - -commit 7678917313b12c84aad8464466b2485b018e486f -Merge: 9bbcf5a6d0 c0b66d5298 -Author: Steve Ebersole -Date: Thu Mar 1 10:45:15 2012 -0600 - - Merge branch 'HHH-7097' of https://github.com/edalquist/hibernate-core - -commit 9bbcf5a6d042efc8e5fd07d3f8db11659847ede1 -Author: Steve Ebersole -Date: Thu Mar 1 10:40:59 2012 -0600 - - HHH-7095 - Handle RegionFactory.buildNaturalIdRegion throwing UnsupportedOperationException - -commit 93b09556411613e7785c1267dce750cfb537fb7e -Merge: 9768dacb6f e18cba8761 -Author: Steve Ebersole -Date: Thu Mar 1 10:34:38 2012 -0600 - - Merge branch 'HHH-7095' of https://github.com/edalquist/hibernate-core - -commit 9768dacb6f9de5f10966efda79df0dd0a668c02e -Merge: fd6b3b4db4 ec86bf9d1f -Author: Steve Ebersole -Date: Thu Mar 1 10:30:10 2012 -0600 - - Merge branch 'HHH-7094' of https://github.com/edalquist/hibernate-core - -commit fd6b3b4db4ed6944621a320930e25a1db6571049 -Author: Eric Dalquist -Date: Mon Feb 20 15:36:51 2012 -0600 - - HHH-7089 Return naturalId cache region instead of null - -commit 9f4fd486036eff5cc24740fb387d3df93663642c -Author: Steve Ebersole -Date: Thu Mar 1 10:01:04 2012 -0600 - - HHH-7085 - Entities marked as @Immutable that have a @NaturalId fail to be inserted with NPE - -commit f1a54aeadf295e3694c83843547a80da5859749d -Author: Eric Dalquist -Date: Mon Feb 20 10:52:41 2012 -0600 - - HHH-7085 Use the in-flight state for naturalId caching - - Pass the current state Object[] from the event into the SPC to use - for naturalId caching - -commit b5ba7bef42591b6222756708eedc60d623dcdc32 -Author: Eric Dalquist -Date: Mon Feb 20 09:37:42 2012 -0600 - - HHH-7085 Add delete to immutable test - -commit 571266aa3d20115231982372da767cb726c69853 -Author: Eric Dalquist -Date: Mon Feb 20 08:49:32 2012 -0600 - - HHH-7085 Add unit test that demonstrates error - - Add unit test for @Immutable entity that has an @NaturalId - -commit bc643ddb7cc28db05a7168673746dbf3edee6cf7 -Author: Galder Zamarreño -Date: Thu Mar 1 11:04:58 2012 +0100 - - Increase concurrent write test timeout - -commit d66d335f299cc21b12fa37c7141ee2f59a883d48 -Author: Steve Ebersole -Date: Wed Feb 29 18:00:15 2012 -0600 - - HHH-7023 - Deprecate HQL-specific (JDBC-style) positional parameters - -commit 982aad716f2f06d9c0390768610075b1dc6af08a -Author: Steve Ebersole -Date: Wed Feb 29 15:32:54 2012 -0600 - - HHH-7129 - Throw exception when metadata attempts to spread @NaturalId across an entity hierarchy - -commit 8fccb62a6bc845f0093c59f15c33f54b97b0e87e -Author: Galder Zamarreño -Date: Wed Feb 29 18:10:31 2012 +0100 - - HHH-7128 Upgrade to Infinispan 5.1.2.CR1 - -commit 34497524934f32d2216c7e745c56672dda3a3ca5 -Author: Galder Zamarreño -Date: Wed Feb 29 17:54:27 2012 +0100 - - HHH-7127 Fix query cache evictAll in single node - -commit a12f50c87018f88bdf1d59f9eaa03f85457ded36 -Author: Strong Liu -Date: Tue Feb 28 16:47:34 2012 +0800 - - upgrade to use gradle 1.0 M8a - -commit 1278d120008743e2cd42b54ea03aa55b929f6210 -Author: Strong Liu -Date: Sun Feb 26 23:37:33 2012 +0800 - - minor change and reformat partial code - -commit 4e2d7d123da13ef2d81a96b8d6d94be6a5348460 -Author: Lukasz Antoniak -Date: Fri Feb 24 21:35:17 2012 +0100 - - HHH-7117 - Fix and test - -commit 34611877c8615f1c2b08824338efbe2af800f05e -Author: Lukasz Antoniak -Date: Fri Feb 24 19:35:53 2012 +0100 - - HHH-7073 - Fix and test - -commit 84f3821c03c45664dada024efaee76c7c7f475c3 -Author: Strong Liu -Date: Thu Feb 23 16:55:02 2012 +0800 - - HHH-7102 Misleading error message is shown when no RegionFactory is manually set - -commit c0b66d5298469bbbc28baeca0a9f9175f50b4c91 -Author: Eric Dalquist -Date: Tue Feb 21 11:15:21 2012 -0600 - - HHH-7097 Cache naturalId mapping on load event - -commit a6ae52b7326c89347ede0e311b0f3212e99df951 -Author: Eric Dalquist -Date: Tue Feb 21 11:04:45 2012 -0600 - - HHH-7096 Populate Settings field in SingletonEhCacheRegionFactory - -commit e18cba876137c3bd8ebd7225b4154fc373ceeed9 -Author: Eric Dalquist -Date: Tue Feb 21 10:47:55 2012 -0600 - - HHH-7095 Handle UnsupportedOperationException from RegionFactory.buildNaturalIdRegion - - Disable 2L naturalId caching if an UnsupportedOperationException is thrown - -commit ec86bf9d1f80bd662986cb7d22c0ac8c2726cb5e -Author: Eric Dalquist -Date: Tue Feb 21 10:39:30 2012 -0600 - - HHH-7094 Call autoFlushIfRequired before naturalId query execution - -commit 13f4c830e17797611af08e223eb036ea2f190156 -Author: Strong Liu -Date: Mon Feb 20 16:45:48 2012 +0800 - - change to use gradle-upload-auth-plugin v1.1.1 since v1.1.0 is not available in the jboss nexus - -commit 975141f27e2e61f1feab188b2d147b3b24f9460b -Author: Strong Liu -Date: Mon Feb 20 16:36:18 2012 +0800 - - better idea support - -commit 4843d357dfa1db61002b2062793e073d5124f008 -Author: Strong Liu -Date: Fri Feb 17 10:52:26 2012 +0800 - - HHH-7067 fix idea config issue and format - -commit ad4b4fc9903acba8d26ace60c02c10393193d8d3 -Author: Strong Liu -Date: Fri Feb 17 09:08:53 2012 +0800 - - HHH-7067 update wrapper properties - -commit 2107411faf75efcf1ca22611245b9da065a15f99 -Author: Steve Ebersole -Date: Wed Feb 15 17:18:41 2012 -0600 - - HHH-7046 - Polymorphic query by natural ID broken - -commit a21ba713ab5288d85d9e14f9ee687b07831626d1 -Author: Steve Ebersole -Date: Wed Feb 15 16:32:53 2012 -0600 - - HHH-7067 - Update build to work with Gradle m8 - -commit 7861fdee4430781c6ee6c22572309139c87ccdf7 -Author: Steve Ebersole -Date: Wed Feb 15 16:31:29 2012 -0600 - - HHH-7067 - Update build to work with Gradle m8 - -commit 40146b2920ab847bff3b669b19213ba058d65969 -Author: Sanne Grinovero -Date: Tue Feb 14 16:39:34 2012 +0000 - - avoid declaring unthrown exception - -commit ebd78e9bb1ddb246d7d85ff99ce660503f29eb4e -Author: Sanne Grinovero -Date: Tue Feb 14 18:38:54 2012 +0000 - - Convert grammars to use StringBuilder as well - -commit 37dafa2a5ab6d40a83505fa0176762105b5601df -Author: Sanne Grinovero -Date: Sun Feb 12 00:58:22 2012 +0000 - - Replace many StringBuffer occurrences with StringBuilder - -commit a8dee131e4eafb8a9a5c34c5a3cc0100f94aa17e -Author: Sanne Grinovero -Date: Sun Feb 12 00:13:47 2012 +0000 - - Incorrect buffer size estimate for string concatenation in InterbaseDialect - -commit b3bb6d6dd61ae7f167ea1f803e367844d5b73e54 -Author: Sanne Grinovero -Date: Tue Feb 14 18:27:05 2012 +0000 - - remove dead code from boolean operand - -commit 10df95bbcd52cb392ae63103a7f7a51c5ff796a0 -Author: Sanne Grinovero -Date: Tue Feb 14 18:22:50 2012 +0000 - - SimpleProjection should reuse commonly generated Strings - -commit f9ab0eb6ae7d0ffd90ab4bef81c425cf914d9060 -Author: Sanne Grinovero -Date: Tue Feb 14 16:39:16 2012 +0000 - - HHH-7066 More code taking advantage from the Clob extraction - -commit 98082feb11f2450b746181b998ef5d57b0ffae81 -Author: Sanne Grinovero -Date: Tue Feb 14 17:11:19 2012 +0000 - - HHH-7066 use a larger buffer by default - -commit 818dd5959da7e7d2099da98a9d4a128106bee177 -Author: Sanne Grinovero -Date: Mon Feb 13 19:13:30 2012 +0000 - - HHH-7066 Extract a constant for the suggested default read buffer size - -commit 2710576f45aa25e11386f1f12ea3c2c2e934dc15 -Author: Sanne Grinovero -Date: Mon Feb 13 19:17:27 2012 +0000 - - HHH-7066 optimize for a special but not unlikely case - -commit 18185e58f0dee5d364870c9f16acc0124dc7a78a -Author: Sanne Grinovero -Date: Mon Feb 13 19:11:25 2012 +0000 - - HHH-7066 make sure buffer size is at least 1 - -commit f51779d2f7d4869dd8441de91fc4e876dc4e1b97 -Author: Sanne Grinovero -Date: Sat Feb 11 23:56:50 2012 +0000 - - HHH-7066 byte arrays to String conversion benefits from initial buffer size - -commit 98d0b8398d48fef2e9d9c14efe10e39e0cd55d73 -Author: Sanne Grinovero -Date: Sat Feb 11 16:56:18 2012 +0000 - - HHH-7066 Use known length from Clob to allocate StringBuffer - -commit 6497ff6a5263dea0d5527c817acf349a0b5f1688 -Author: Sanne Grinovero -Date: Sat Feb 11 14:34:59 2012 +0000 - - HHH-7066 Allocate smaller buffer if possible - -commit 939d7fc4c96ac49078d44b99dcf0b2555e40fc11 -Author: Sanne Grinovero -Date: Sat Feb 11 14:26:31 2012 +0000 - - Remove defenses against non-JDBC4 class existance - -commit b7d80b8e6d952e842d23590bbcd836fb281fa241 -Author: Sanne Grinovero -Date: Sat Feb 11 14:25:05 2012 +0000 - - whitespace and formatting fixes - -commit c83b540218cbf1619f93d66379609aaa1a5729e9 -Author: Strong Liu -Date: Tue Feb 14 18:53:28 2012 +0800 - - HHH-3718 rolling back changes - -commit e6df116a49f0e4ef43a690ae71f9544731260736 -Author: nrodrigues -Date: Sat Jan 7 10:53:20 2012 +0000 - - HHH-6946 - Add support for the AS400 (iSeries) system to - StandardDialectResolver - -commit 22a6283e6d8cfd1b0eb310edea4640edefb216a0 -Author: Michael Rudolf -Date: Thu Jan 26 12:17:01 2012 +0100 - - HHH-3718 - Do not initialize proxy upon call to ID getter when using - AccessType.FIELD - -commit 8f223d199bc8e24aec51235ca6da06cdfa885838 -Author: Strong Liu -Date: Tue Feb 14 15:58:01 2012 +0800 - - HHH-7062 upgrade to jboss-logging 3.1.0.GA - -commit 506f61fa66512362ebcaed7b7e75ee4dd7e4b380 -Author: Adam Bryzak -Date: Tue Feb 14 08:53:03 2012 +1000 - - Fixed boolean literals in Derby versions 10.7+ - -commit 209abeafa8a47ae6f30b98b0f4102a7ba01778b2 -Author: Steve Ebersole -Date: Thu Feb 9 09:44:19 2012 -0600 - - HHH-7047 - Fix problems created by HHH-7044 - -commit 10a12295e38f58d95eee0ffd25e7856cfe804ed8 -Author: Steve Ebersole -Date: Thu Feb 9 00:46:36 2012 -0600 - - 4.1 release - -commit b2f447c0b9172d58201dabbd81692f30742965bc (tag: 4.1.0.Final) -Author: Steve Ebersole -Date: Wed Feb 8 23:25:09 2012 -0600 - - 4.1 release - -commit da6005a7b6aba1bbf0769a23e1733286e7308381 -Author: Steve Ebersole -Date: Wed Feb 8 23:12:45 2012 -0600 - - 4.1 release - -commit e1a78dfd4a56a5169a36bad84a2211deb0dd2ea0 -Author: George Gastaldi -Date: Thu Feb 9 01:57:05 2012 -0200 - - HHH-7041: Fixed error in Pattern regexp and removed static from protected methods - -commit 081b2c5a1413ac97c95e5a4cdf8983e6cd4c5cb9 -Author: Steve Ebersole -Date: Wed Feb 8 22:29:52 2012 -0600 - - 4.1 release - -commit 0ada3578897496acbfb2fe59ad2b1b6e55b0ca96 -Author: George Gastaldi -Date: Wed Feb 8 18:14:49 2012 -0200 - - HHH-7041: Fix for messing up DISTINCT clause - -commit 608c2fadc8563695de7949df2f2b2c99ead2c21a -Author: Scott Marlow -Date: Mon Feb 6 16:41:00 2012 -0500 - - HHH-7018 EntityManagerFactory should be serializable even if it references nonserializable objects and also changed the HHH-6897 fix to use a UUID for emf name - -commit edda5ec7f498ad784076bd2368e28bbc70b1e96c -Author: Gail Badner -Date: Wed Feb 8 00:50:58 2012 -0600 - - HHH-7034 : java.sql.SQLTimeoutException should be mapped to org.hibernate.QueryTimeoutException - -commit 199d08210d0fa82cd44f286ac64bcc5447cb2c45 -Author: Steve Ebersole -Date: Wed Feb 8 09:08:11 2012 -0600 - - HHH-6974 - Add caching to new "load access" api for natural id loading - -commit 368c4cc2bc47d1432609fcb9387cc2f73f54e8ac -Author: Eric Dalquist -Date: Tue Feb 7 12:26:09 2012 -0600 - - HHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statisticsHHH-6974 Redirect naturalId criteria queries to new API - - Add a check in SessionImpl for critera queries that use the NaturalIdentifier criterion and - redirect the call to NaturalIdLoadAccess - - Add NaturalId query execution tracking into the statistics - -commit 79774a045318ff6c837f18c9714232925becddb2 -Author: Steve Ebersole -Date: Wed Feb 8 07:36:21 2012 -0600 - - HHH-7030 - EventListenerRegistry interface generic declaration is not extensible to subclasses - -commit 4595df23957e0d24d37d5896dc5846fc9a63ddbd -Author: Gail Badner -Date: Tue Feb 7 23:59:54 2012 -0600 - - HHH-7032 : Deprecate Dialect.buildSQLExceptionConverter() - -commit b8acbc85e6140a8eb1d6a81f6e0a50edacc5aa16 -Author: Gail Badner -Date: Tue Feb 7 23:15:00 2012 -0600 - - HHH-6944 : Remove OracleSQLExceptionConversionDelegate - -commit 5081861dd8ab14ab013e25c10d1a0d859f7e8220 -Author: Gail Badner -Date: Fri Feb 3 01:55:47 2012 -0800 - - HHH-6944 : Update Dialects to return SQLExceptionConversionDelegate - -commit ae872ed898df8975ed43c04745d77e9d09a0792f -Author: Steve Ebersole -Date: Tue Feb 7 09:25:50 2012 -0600 - - HHH-6974 - Add caching to new "load access" api for natural id loading - -commit 1569e6194b45038a210984d73d25079dd1482b3f -Author: Eric Dalquist -Date: Fri Feb 3 11:22:07 2012 -0600 - - HHH-6974 Complete second level caching of natural id resolution - -commit ef22e310689cb5eeafc47eaa0e58e3ed60edc6ad -Author: Eric Dalquist -Date: Thu Feb 2 12:21:51 2012 -0600 - - HHH-6974 Adding hooks into NaturalIdRegionAccessStrategy - - Created NaturalIdCacheKey to encapsulate the key for caching a naturalid - Adding hooks into NaturalIdRegionAccessStrategy from StatefulPersistenceContext - for load/insert/update/delete events on entities - -commit c47352058541e14e0b80d38f94c65d939d5394f5 -Author: Eric Dalquist -Date: Fri Jan 27 16:46:25 2012 -0600 - - HHH-6974 Class level naturalId cache and stats - - Add class level @NaturalIdCache annotation to denote if second level natualId caching should be done - Flush out stats model for naturalId cache related stats - Add ehcache support classes for naturalId region - -commit 72fe79a3f2af28150016fc521e65bf9983ba2d94 -Author: Eric Dalquist -Date: Fri Jan 27 13:17:49 2012 -0600 - - HHH-6974 Addition of NaturalIdRegion SPI - - Adds NaturalIdRegion to RegionFactory - Adds creation of NaturalIdRegions to SessionFactoryImpl setup - Basic copy of collection cache region behavior for first pass at naturalId region support in ehcache - -commit 6702688c1f211dd870f3a9715707f0c2c0176f6f -Author: Steve Ebersole -Date: Tue Feb 7 08:14:58 2012 -0600 - - HHH-7011 - Document multi-tenancy - -commit 80ae4d5724e1407ce0b2e8f0bc7effdf1ff530ad -Author: Steve Ebersole -Date: Tue Feb 7 00:31:25 2012 -0600 - - HHH-6082 - Incorporate EntityManager documentation into main dev guide - -commit 40dc88e6c1261e9f5a4d462533020a8a6ccf8a52 -Author: Steve Ebersole -Date: Tue Feb 7 00:29:42 2012 -0600 - - HHH-6082 - Incorporate EntityManager documentation into main dev guide - -commit 30deb20ff11449b7afe26e2bca7c46943de6f84b -Author: Steve Ebersole -Date: Tue Feb 7 00:21:10 2012 -0600 - - HHH-6082 - Incorporate EntityManager documentation into main dev guide - -commit 591364409ed570de7954307a570442c7457c2783 -Author: Steve Ebersole -Date: Mon Feb 6 14:41:18 2012 -0600 - - HHH-6082 - Incorporate EntityManager documentation into main dev guide - -commit 102c31497b46d1bbad8384d8fd6689f7a4bceb02 -Author: Steve Ebersole -Date: Sun Feb 5 16:54:41 2012 -0600 - - HHH-6082 - Incorporate EntityManager documentation into main dev guide - -commit 8352ab39fb15874229b448f57b6909de933a91b1 -Author: Steve Ebersole -Date: Sat Feb 4 17:16:26 2012 -0600 - - HHH-6082 - Incorporate EntityManager documentation into main dev guide - -commit c4b7538ae3c84381140893f3d1e53a7818ec2436 -Author: Steve Ebersole -Date: Sat Feb 4 09:41:25 2012 -0600 - - HHH-6082 - Incorporate EntityManager documentation into main dev guide - -commit c6fa7d3f236847157614650ba836801122c86901 -Author: Steve Ebersole -Date: Fri Feb 3 16:46:00 2012 -0600 - - HHH-6082 - Incorporate EntityManager documentation into main dev guide - -commit 0e3cfbde5512cb152aac7514dca9eabe5442118c -Author: Steve Ebersole -Date: Wed Feb 1 11:09:57 2012 -0600 - - HHH-6082 - Incorporate EntityManager documentation into main dev guide - -commit 3cf41ee3dc749518de88270e450b405830c7466e -Author: Steve Ebersole -Date: Wed Feb 1 00:13:50 2012 -0600 - - HHH-6082 - Incorporate EntityManager documentation into main dev guide - -commit 955f21eca93bc70bd41853cc8d91bda556107caa -Author: Steve Ebersole -Date: Mon Dec 12 12:17:28 2011 -0600 - - HHH-6082 - Incorporate EntityManager documentation into main dev guide - -commit 9b304942ccde9e1b6805a77960162141a40d19dd -Author: Steve Ebersole -Date: Wed Apr 20 12:27:20 2011 -0500 - - HHH-6082 - Integrate EntityManager documentation into dev guide - -commit 6a22085e5b34ffbc08dbe405a0abe0fb06d71cf1 -Author: Strong Liu -Date: Mon Feb 6 18:06:11 2012 -0600 - - HHH-7206 upgrade to infinispan 5.1.1.FINAL - -commit 780305d8612f912e15964fb6ecc4f928a544163c -Author: Eric Dalquist -Date: Wed Feb 1 16:12:03 2012 -0600 - - HHH-7009 HHH-7014 : Reorg dialiect class names per Jira feedback and deprecate PostgreSQLDialect - - Primary dialects are now versioned with the non-versioned - dialect class remaining but deprecated for compatibility - -commit b72923070eae248aeddefb9660491868a692ac44 -Author: Eric Dalquist -Date: Tue Jan 31 09:09:34 2012 -0600 - - HHH-7009 Create new PostgreSQL 8.2 Dialect - - Create dialect for Postgres 8.2 and later which supports "if exists" - in drop statements. Update resolver to return the correct dialect - version. - -commit 5448e8b62841e952cabd0d26931718bad4ad2473 -Merge: a512ede38b c29711f11b -Author: Lukasz Antoniak -Date: Sat Feb 4 03:41:24 2012 -0800 - - Merge pull request #263 from lukasz-antoniak/HHH-6738 - - HHH-6738 - Hardcoded alias causing problems - -commit c29711f11baf25928febc1eb99814bb243a62686 -Author: Lukasz Antoniak -Date: Sat Feb 4 12:27:40 2012 +0100 - - HHH-6738 - Alias change - -commit a512ede38b693769d8fd801a23c5c7b640df6f7f -Author: Strong Liu -Date: Fri Feb 3 05:34:39 2012 +0800 - - code format and simple improvement - -commit 13c9dbfc21e46b02a0e3f18e1b0fdda88876543e -Author: Galder Zamarreño -Date: Thu Feb 2 10:58:47 2012 +0100 - - HHH-7007 Evict all should work now in multi-region factory environments - -commit 5eee5262344772a0c8ae91a12146422f7f06fd9c -Author: Galder Zamarreño -Date: Thu Feb 2 09:50:10 2012 +0100 - - HHH-1706 Support evictAll for LOCAL second level cache environments - -commit 2b356317ce13050e972a7750579993310735fbda -Author: Steve Ebersole -Date: Wed Feb 1 12:23:47 2012 -0600 - - HHH-7011 - Document multi-tenancy - -commit feba0bf949b71cfbddf1922c320661395cc1aa48 -Author: Steve Ebersole -Date: Wed Feb 1 12:22:06 2012 -0600 - - HHH-7011 - Document multi-tenancy - -commit 8bead4f084d4f1c3c05a08d1371f081491986a05 -Author: Steve Ebersole -Date: Tue Jan 31 19:59:37 2012 -0600 - - HHH-7011 - Document multi-tenancy - -commit 2f26475baac13579e560429637daeac7ba534e9d -Author: Lukasz Antoniak -Date: Tue Jan 31 22:36:26 2012 +0100 - - HHH-6738 - Formatting - -commit 89911003e38481e6a3e9ea4281aa6b1b0156493f -Author: Steve Ebersole -Date: Tue Jan 31 12:39:13 2012 -0600 - - HHH-6336 - Add TenantIdentifierResolver - -commit 69db917760c6d674af9aaed32161670b7d1cfb75 -Author: Lukasz Antoniak -Date: Tue Jan 31 15:08:16 2012 +0100 - - HHH-6738 - Fix and test - -commit 230cff7d00635062870b099ab8b49fd44b1b4c1e -Author: Gail Badner -Date: Wed Jan 18 00:39:35 2012 -0800 - - HHH-3218 : ManyToOne Persisting Cascade in Embeddable as part of ElementCollection - -commit d1ac167ec642e04814e68e5e8068324f45fd02f2 -Author: Lukasz Antoniak -Date: Sun Jan 29 17:09:40 2012 +0100 - - HHH-4962 - Fix and test - -commit 6dfe24983c154c6a62638430104d6a158af9e0e2 -Author: Strong Liu -Date: Sun Jan 29 17:26:17 2012 +0800 - - HHH-7006 keyword top causes test fail on ms sql server - -commit 46b7a0d38e59e91d3c6b6b1e6a0200dd3118a1a6 -Author: Lukasz Antoniak -Date: Sat Jan 28 23:27:06 2012 +0100 - - HHH-7003 - Fix and test - -commit bfb7fc8596591b561d5f1b0f3faf0c39bcceda42 -Author: Steve Ebersole -Date: Sat Jan 28 09:44:49 2012 -0600 - - HHH-6998 - Expand CustomEntityDirtinessStrategy to define findDirty - -commit 91847d702717910c2f7ed98b478562d6f8b7557a -Author: Steve Ebersole -Date: Fri Jan 27 14:51:01 2012 -0600 - - HHH-6998 - Expand CustomEntityDirtinessStrategy to define findDirty - -commit ebee6b731e6805f1f6d4c26097f482e0874cd5c7 -Author: Gail Badner -Date: Fri Jan 27 00:15:38 2012 -0800 - - HHH-6957 : Throw TransientPropertyValueException if there are unresolved entity insert actions after persist/save/merge listeners execute - -commit bb4738b1e42de3dc86124b138fc7ed5228cecf8f -Author: Gail Badner -Date: Thu Jan 26 19:33:37 2012 -0800 - - HHH-5299 : Multi-Level cascading of unsaved instances with bidirectional associations fails with TransientObjectException - -commit 253cb0a9d30a346cda4425f2dddf0fd7345138e6 -Author: Steve Ebersole -Date: Thu Jan 26 14:37:00 2012 -0600 - - HHH-6580 - Discriminator value used as ID when inserting entity to PosgtreSQL - -commit 830d4cd2aba246a25b362b6d12d8be333e3fcd45 -Author: Steve Ebersole -Date: Wed Jan 25 22:25:40 2012 -0600 - - HHH-5755 - javax.persistence.criteria.Expression.as() is broken - -commit fa6a2f615961092007b74d82cc1178926b38ae3b -Author: Steve Ebersole -Date: Wed Jan 25 22:07:50 2012 -0600 - - HHH-6580 - Discriminator value used as ID when inserting entity to PosgtreSQL - -commit 917eef5ad155f2b3e519c73c5b6be3f1a23a47a1 -Author: Steve Ebersole -Date: Wed Jan 25 15:56:08 2012 -0600 - - HHH-6580 - Discriminator value used as ID when inserting entity to PosgtreSQL - -commit f69813fad09cec7e3c761aa35e7146b04dcf61c3 -Author: Paweł Stawicki -Date: Sun Jan 8 21:19:57 2012 +0100 - - HHH-6580 Discriminator value used as ID when inserting entity to PostgreSQL - -commit 72e382b04592f57d857bbef00af0ef8163baae33 -Author: Steve Ebersole -Date: Wed Jan 25 12:38:57 2012 -0600 - - HHH-3910 - custom dirty flag tracking - -commit 34c2fa44092eea4edcb1da3244ed495ea229a6e1 -Author: Steve Ebersole -Date: Wed Jan 25 12:28:39 2012 -0600 - - minor change to matrix plugin to allow multiple sources for specifying to skip "matrix unit" test task generation - -commit 181496ac7c555e0b28f34226a73a6397ea0742fc -Author: Guy Veraghtert -Date: Mon Apr 4 21:31:11 2011 +0200 - - HHH-5755 - - Signed-off-by: Michael Rudolf - -commit 23a62802c810b433d32b6d795db6f807fc4173c3 -Author: Steve Ebersole -Date: Tue Jan 24 13:42:57 2012 -0600 - - HHH-4358 - Having to use @ForceDiscriminator kind of breaks JPA compatibility - -commit 75bd6b319be17b0f4720f99ab1eacff5f8d001e1 -Author: Steve Ebersole -Date: Tue Jan 24 11:57:24 2012 -0600 - - HHH-5024 - MetadataContext#registerAttribute does not recognize inherited fields - -commit 6258df475268fd910ba69ab6a3256585d810a9e2 -Author: Steve Ebersole -Date: Mon Jan 23 22:50:35 2012 -0600 - - HHH-3910 - custom dirty flag tracking - -commit aef0e2540545559787108a81e5a0fdb59f3351e9 -Author: Scott Marlow -Date: Fri Jan 20 18:22:52 2012 -0500 - - HHH-6984 only increment statistics if statistics are enabled - -commit 537481adbdaeb4babe44da0c3811c0556480c525 -Author: Steve Ebersole -Date: Mon Jan 23 14:49:23 2012 -0600 - - HHH-6923 - Remove org.hibernate.service.instrumentation.spi.InstrumentationService - -commit d50a66bc207fd8593012c8331641790f26fa2f74 -Author: Steve Ebersole -Date: Mon Jan 23 12:11:46 2012 -0600 - - HHH-6970 - Expand notion of "natural id mutability" to ternary value - -commit a2a1775c87fcaf05db6ce1b727c313048705b428 -Author: Steve Ebersole -Date: Mon Jan 23 09:26:32 2012 -0600 - - HHH-6656 - Document org.hibernate.service.classloading.spi.ClassLoaderService - -commit 7a31958ce49b0b3513435ebc561ac6e720967912 -Author: Steve Ebersole -Date: Sun Jan 22 08:27:59 2012 -0600 - - HHH-6974 - Add caching to new "load access" api for natural id loading - -commit b0ba04d09bd86cfaf829efb026e2f1bff2640580 -Author: Steve Ebersole -Date: Sat Jan 21 08:39:37 2012 -0600 - - HHH-6974 - Add caching to new "load access" api for natural id loading - -commit bbac2fd2204ff44bcbf5b5d7a8066dfbb2cfe2ba -Author: Steve Ebersole -Date: Fri Jan 20 21:25:38 2012 -0600 - - HHH-6974 - Add caching to new "load access" api for natural id loading - -commit 33d399f1860618418d8bc3b0a92b9328ac2af077 -Author: Steve Ebersole -Date: Fri Jan 20 20:26:37 2012 -0600 - - HHH-6974 - Add caching to new "load access" api for natural id loading - -commit 622d9b37b99ea3656334599c53e52dda00125d79 -Author: Steve Ebersole -Date: Fri Jan 20 20:44:26 2012 -0600 - - HHH-6994 - Have EntityEntry fire notification to PersistenceContext on loadedState being updated - -commit f434cd43118edd1e662aa398f7133263bd2151e0 -Author: Adam Warski -Date: Fri Jan 20 22:46:36 2012 +0100 - - HHH-6605: Fixing problems with lazy proxy initialization - -commit 89bb7ec1759dc9ec02f10d99ce2b58cb896c5f76 -Author: Adam Warski -Date: Fri Jan 20 20:57:40 2012 +0100 - - HHH-6605: More conflicts merging - -commit a00f23c6f66d87c51a1a2a58a0e7b1c51b505dec -Merge: b109633b66 e0a09dbd79 -Author: Adam Warski -Date: Fri Jan 20 20:52:41 2012 +0100 - - Merge remote-tracking branch 'origin/master' - - Conflicts: - hibernate-envers/src/main/java/org/hibernate/envers/configuration/metadata/AuditMetadataGenerator.java - hibernate-envers/src/main/java/org/hibernate/envers/entities/mapper/relation/OneToOneNotOwningMapper.java - hibernate-envers/src/main/java/org/hibernate/envers/entities/mapper/relation/ToOneIdMapper.java - -commit b109633b66c18f47b66ae496ef6c2bbad0dedcae -Merge: fb3566b467 07a0b2931c -Author: Adam Warski -Date: Fri Jan 20 20:47:12 2012 +0100 - - HHH-6605: Merging changes by Michal Skowronek. Thanks! Merge remote-tracking branch 'mskowron/change_info' - - Conflicts: - hibernate-envers/src/main/java/org/hibernate/envers/configuration/GlobalConfiguration.java - hibernate-envers/src/main/java/org/hibernate/envers/configuration/metadata/AuditMetadataGenerator.java - hibernate-envers/src/main/java/org/hibernate/envers/configuration/metadata/ComponentMetadataGenerator.java - hibernate-envers/src/main/java/org/hibernate/envers/configuration/metadata/MetadataTools.java - hibernate-envers/src/main/java/org/hibernate/envers/configuration/metadata/reader/AuditedPropertiesReader.java - hibernate-envers/src/main/java/org/hibernate/envers/entities/mapper/ComponentPropertyMapper.java - hibernate-envers/src/main/java/org/hibernate/envers/entities/mapper/MultiPropertyMapper.java - hibernate-envers/src/main/java/org/hibernate/envers/entities/mapper/PropertyMapper.java - hibernate-envers/src/main/java/org/hibernate/envers/entities/mapper/SinglePropertyMapper.java - hibernate-envers/src/main/java/org/hibernate/envers/entities/mapper/SubclassPropertyMapper.java - hibernate-envers/src/main/java/org/hibernate/envers/entities/mapper/relation/AbstractCollectionMapper.java - hibernate-envers/src/main/java/org/hibernate/envers/entities/mapper/relation/OneToOneNotOwningMapper.java - hibernate-envers/src/main/java/org/hibernate/envers/event/BaseEnversCollectionEventListener.java - hibernate-envers/src/main/java/org/hibernate/envers/query/criteria/AuditProperty.java - hibernate-envers/src/main/java/org/hibernate/envers/synchronization/work/AddWorkUnit.java - hibernate-envers/src/main/java/org/hibernate/envers/synchronization/work/CollectionChangeWorkUnit.java - hibernate-envers/src/main/java/org/hibernate/envers/synchronization/work/DelWorkUnit.java - hibernate-envers/src/main/java/org/hibernate/envers/synchronization/work/FakeBidirectionalRelationWorkUnit.java - hibernate-envers/src/main/java/org/hibernate/envers/tools/Tools.java - hibernate-envers/src/matrix/java/org/hibernate/envers/test/AbstractOneSessionTest.java - hibernate-envers/src/matrix/java/org/hibernate/envers/test/AbstractSessionTest.java - hibernate-envers/src/matrix/java/org/hibernate/envers/test/integration/components/relations/ManyToOneInComponent.java - hibernate-envers/src/matrix/java/org/hibernate/envers/test/integration/components/relations/NotAuditedManyToOneInComponent.java - hibernate-envers/src/matrix/java/org/hibernate/envers/test/integration/components/relations/OneToManyInComponent.java - hibernate-envers/src/matrix/java/org/hibernate/envers/test/integration/entityNames/singleAssociatedAudited/SingleDomainObjectToMultipleTablesTest.java - hibernate-envers/src/matrix/java/org/hibernate/envers/test/integration/inheritance/joined/notownedrelation/NotOwnedBidirectional.java - -commit e0a09dbd793f247af85f276a92a07c17e635cdf3 -Author: Steve Ebersole -Date: Fri Jan 20 09:31:55 2012 -0600 - - HHH-6970 - Expand notion of "natural id mutability" to ternary value - -commit 73dec965a0a3e33b751f1330075f3ba993fffc4c -Author: Steve Ebersole -Date: Thu Jan 19 10:12:17 2012 -0600 - - HHH-6970 - Expand notion of "natural id mutability" to ternary value - -commit 57e9b485870652fb885fc5d86435b12e9b4faaab -Author: Steve Ebersole -Date: Fri Jan 13 16:51:01 2012 -0600 - - HHH-6970 - Expand notion of "natural id mutability" to ternary value - -commit 0c80b409a1ad495dbc1e286071d1d9846e73e9ed -Author: Gail Badner -Date: Thu Jan 19 15:49:11 2012 -0800 - - HHH-5472 : test fixes for dialects that don't support identities - -commit 9ff70a8acf9c3028bbb59e8ff79fe346edb9dd72 -Author: Steve Ebersole -Date: Thu Jan 19 10:40:26 2012 -0600 - - HHH-6985 - Change up tests for PostgreSQL LockMode issues - -commit 66a9f21e892e8cbf6c231a0ebc99964a7994ed48 -Author: Gail Badner -Date: Wed Jan 11 04:18:35 2012 -0800 - - HHH-5472 : Delay saving an entity if it does not cascade the save to non-nullable transient entities - -commit ea7afb26833f38e4e5f43a56abc9f3c07a85bffa -Author: Gail Badner -Date: Thu Dec 22 02:24:00 2011 -0800 - - HHH-5472 : Added tests for delaying entity save due to non-nullable transient entities - -commit e11e9631c7bb6f643e47b77ee4f11b9b1ffff67c -Author: Gail Badner -Date: Tue Dec 20 05:46:55 2011 -0800 - - HHH-5472 : Delay saving an entity if it does not cascade the save to non-nullable transient entities - -commit 81ee78846654088bb4d9bf22071cc76b86932b4c -Merge: 4a323a4415 10f48ef973 -Author: Lukasz Antoniak -Date: Wed Jan 18 11:41:05 2012 -0800 - - Merge pull request #246 from lukasz-antoniak/HHH-6825 - - HHH-6825 - AuditException with @OneToOne-mappedBy and @PrimaryKeyJoinColumn - -commit 4a323a44157e9529213d6029f29b195411b27f31 -Author: Galder Zamarreño -Date: Wed Jan 18 13:19:01 2012 +0000 - - HHH-6980 Upgrade to Infinispan 5.1.0.CR4 - -commit 755d7fb788b1503ec4760230140881923106401b -Author: Lukasz Antoniak -Date: Mon Jan 16 17:17:37 2012 +0100 - - OS independent file separator in Gradle script - -commit e52d184b519175df7692ebd4bd9b0326bb657e0a -Author: Steve Ebersole -Date: Mon Jan 16 10:33:05 2012 -0600 - - HHH-2879 - add an actual api for loading an entity by natural candidate key (mapped natural-id) - -commit 10f48ef973057e06d2e0e697a60dd305792173b5 -Author: Lukasz Antoniak -Date: Mon Jan 16 15:10:47 2012 +0100 - - HHH-6825 - Renaming simple entity descriptor - -commit fbc71652b87e6325800c2353ff3c6baafcb036e3 -Author: Steve Ebersole -Date: Fri Jan 13 15:51:35 2012 -0600 - - HHH-6969 - Reference manual discusses removed SessionFactory.openSession(Interceptor) method - -commit 3071fa892fd6c08b37983a5869c0b7ca14e4180d -Author: Steve Ebersole -Date: Fri Jan 13 15:23:02 2012 -0600 - - HHH-2879 - create a SimpleNaturalIdLoadAccess for easier access for simple (single attribute) natural ids - -commit f6c4868a443a91587d269d7069485ba45e623917 -Author: Steve Ebersole -Date: Fri Jan 13 13:04:32 2012 -0600 - - HHH-6968 - Update overview.html for aggregated JavaDocs - -commit e75b8a77b1f538c0c8616eaca6965ff55e0767a9 -Author: Steve Ebersole -Date: Tue Dec 20 12:02:59 2011 -0600 - - HHH-6967 - HHH-6906 - Clean up javadoc warnings - -commit 5e8b74d8e8f419dd1ab747a26040fdcd9c259f28 -Author: Steve Ebersole -Date: Fri Dec 16 14:26:52 2011 -0600 - - HHH-6782 - define javadoc groups based on api/spi/internal - -commit fb3566b467fc1522726fc58acea2414e3f9714b4 -Author: Steve Ebersole -Date: Thu Jan 12 15:15:01 2012 -0600 - - HHH-2879 - initial clean implementation with no caching - -commit e01ea2ecf851a5d4b94ab8fa7b46a365cc9dc6b8 -Author: edalquist -Date: Wed Jan 11 10:13:04 2012 -0600 - - HHH-2879 Apply hibernate code templates and formatting - -commit f74c5a7fa523b97a8314896032c993b4fb488358 -Author: edalquist -Date: Wed Jan 11 10:09:12 2012 -0600 - - HHH-2879 Apply hibernate code templates and formatting - -commit 8de0f76df1bdaa3779e06127b9265cabbf52f83c -Author: edalquist -Date: Thu Oct 6 15:18:33 2011 -0500 - - HHH-2879 Cache naturalId -> entityId sql on init - -commit eecee618c64efca9f9bf763f4688d321bfb244f4 -Author: edalquist -Date: Tue Oct 4 15:46:40 2011 -0500 - - HHH-2879 Add ResolveNaturalId event, listener and entity persister api - - HHH-2879 Adds ResolveNaturalIdEvent with listener and default impl - HHH-2879 Adds API to EntityPersister to get an entity's ID based on its natural-id - HHH-2879 Add unit test for initial verification of loading an entity by natural-id - -commit 8796fe5ed6a250885e16c17c61037258937fd963 -Author: edalquist -Date: Fri Sep 30 16:44:43 2011 -0500 - - HHH-2879 Remove use of generics due to proxy issues - -commit 2d03ca322d9bccce87d56e4ca4af655cc895d56e -Author: edalquist -Date: Fri Sep 30 16:05:00 2011 -0500 - - HHH-2879 Make IdentifierLoadAccess the primary API - - HHH-2879 Update all load and get APIs to use byId and IdentifierLoadAccess - -commit 60b6c7f5eb404eff3620672566ee97cf0d0920fc -Author: edalquist -Date: Wed Sep 28 10:21:06 2011 -0500 - - HHH-2879 Add LoadAccess interfaces to Session API - - HHH-2879 Add naive implementation of IdentifierLoadAccess - HHH-2879 Add placeholder implementation of NaturalIdLoadAccess - -commit d8003efcf68a53fa1b2b30f8ec1e347af9d684ff -Merge: aa33b57242 8f9d8b530e -Author: Adam Warski -Date: Thu Jan 12 12:13:02 2012 -0800 - - Merge pull request #249 from stliu/HHH-6964 - - HHH-6964 Audit Strategy class can't be found by Thread.currentThread().getContextClassLoader() under AS7 - -commit 8f9d8b530e1925c116a99f0d905110814ada1208 -Author: Strong Liu -Date: Fri Jan 13 04:09:01 2012 +0800 - - HHH-6964 EnversIntegrator is always detected by default while initializing Serviceregistry using Native Hibernate API causing a MappingException even when Envers is not used - -commit e07aff45dafc517f828159e95e47daed86163764 -Author: Strong Liu -Date: Fri Jan 13 03:44:30 2012 +0800 - - HHH-6964 EnversIntegrator is always detected by default while initializing Serviceregistry using Native Hibernate API causing a MappingException even when Envers is not used - -commit aa33b57242ee59ab98df7ad15d70aa0af790c933 -Author: Adam Warski -Date: Thu Jan 12 20:11:44 2012 +0100 - - Including the actual exception if an AuditStrategy can't be created - -commit 23891ff11a5a258a6682c84929e9554d27e2be1c -Author: Steve Ebersole -Date: Wed Jan 11 14:05:37 2012 -0600 - - 4.0.1 - -commit b6e6f4f628f0c12aae2c1f6f9393592be0ad0226 (tag: 4.0.1) -Author: Steve Ebersole -Date: Wed Jan 11 12:19:54 2012 -0600 - - 4.0.1 - -commit 7899d34ca46c8f4c62ae104726a029e8fc26c839 -Merge: 0481dad403 5a8060ae8b -Author: Steve Ebersole -Date: Wed Jan 11 12:14:26 2012 -0600 - - Merge branch 'master' of github.com:hibernate/hibernate-core - -commit 5a8060ae8b6f5e8bdb0a169fd1a592ab7e534e54 -Author: Paul Ferraro -Date: Wed Jan 11 10:53:39 2012 -0500 - - HHH-6952 Allow extensions of InfinispanRegionFactory to override classloader logic - -commit 8a4d604d9cb27ef47fc527d565707644f8578581 -Author: Galder Zamarreño -Date: Wed Jan 11 15:26:42 2012 +0100 - - ISPN-6955 Add guarantees that the cluster forms - -commit ad65da80edc53c54d4da8149a940e3a2f1efa8a3 -Author: Adam Warski -Date: Wed Jan 11 15:33:25 2012 +0100 - - Adding a note that listeners are no longer needed in 4.x - -commit bd552fe9090d1eafdc9b9211e9190f8e3c251e88 -Author: Strong Liu -Date: Wed Jan 11 17:46:18 2012 +0800 - - code format and correct javadoc - -commit fbfc133af8f33fd868f11e4a0b9f5e5116b2b45c -Author: Lukasz Antoniak -Date: Tue Jan 10 20:34:39 2012 +0100 - - HHH-6825 - Formatting and Javadoc change - -commit c703d134f22e54e0b3fe2a01fd575c315b5b9f1f -Author: Lukasz Antoniak -Date: Tue Jan 10 20:08:43 2012 +0100 - - HHH-6825 - ToOne property mappers refactoring - -commit 0481dad4032f26c628f29639a1f8d2638fecfd07 -Author: Steve Ebersole -Date: Tue Jan 10 13:03:42 2012 -0600 - - HHH-6657 - Document org.hibernate.integrator.spi.IntegratorService - -commit 81c505c70cf41e0c4187da195e31e71a29dd84b2 -Author: Galder Zamarreño -Date: Tue Jan 10 19:09:01 2012 +0100 - - HHH-6955 Use Infinispan's test JGroups stack that uses TEST_PING - - By doing this, discovery of nodes is not timed and instead is done - in-memory which is much more reliable from a testing perspective. - Due to timing issues, some tests would randomly fail because the - cluster did not form in time, so changing to this JGroups stack for - testing solves random test failures due to invalidation messages - not being sent around. - -commit 066fea02c73c93e7a4f465f51746e0df93a1434a -Author: Steve Ebersole -Date: Tue Jan 10 10:06:18 2012 -0600 - - HHH-5024 - MetadataContext#registerAttribute does not recognize inherited fields - -commit cc9fbf42a9a75a2317675907ed077d84826117db -Author: Galder Zamarreño -Date: Tue Jan 10 13:52:07 2012 +0100 - - HHH-6955 Upgrade to Infinispan 5.1.0.CR3 - - * Switch to autoCommit=false so that unnecessary transactions - are not created. - * Mark timestamps cache explicitly non-transactional. - * Move away from using caches as a way to send evict all - notifications. Instead, use custom commands provided by Infinispan. - * Get rid of the JDBC transaction test because it does not make - sense configuring JDBC transactions with Infinispan 2LC. - -commit a41efe37d518eaa346ef5ac9dbf162648a3fccfd -Author: Steve Ebersole -Date: Mon Jan 9 17:53:24 2012 -0600 - - HHH-5275 - Criteria.setLockMode does not work correctly - -commit 35ce5bfef7b6550ff200ead387e5f40434935fa9 -Author: Steve Ebersole -Date: Mon Jan 9 17:53:11 2012 -0600 - - HHH-5024 - MetadataContext#registerAttribute does not recognize inherited fields - -commit e69104cd235f9c5ae71b05a41b30e33e74b86415 -Author: Steve Ebersole -Date: Mon Jan 9 17:06:22 2012 -0600 - - HHH-5275 - Criteria.setLockMode does not work correctly - -commit cc15ba3f58fd8e9d58d8bd43338924315da0a7b2 -Author: Steve Ebersole -Date: Mon Jan 9 16:02:20 2012 -0600 - - HHH-5024 - MetadataContext#registerAttribute does not recognize inherited fields - -commit 0efd1dd886aaed63a791bde696be30e9ae3ac95b -Merge: e0f7d8fb17 53b32e9e8d -Author: lukasz-antoniak -Date: Mon Jan 9 12:43:45 2012 -0800 - - Merge pull request #244 from lukasz-antoniak/HHH-4439 - - HHH-4439 - Override auditing behavior of properties defined in @MappedSuperclass - -commit 53b32e9e8db538d2c397cd645e55cb9ea6212e48 -Author: Lukasz Antoniak -Date: Mon Jan 9 21:18:57 2012 +0100 - - HHH-4439 - Javadoc change - -commit e0f7d8fb174e0c87138100ca8f459f917c62f121 -Author: Steve Ebersole -Date: Mon Jan 9 11:10:59 2012 -0600 - - HHH-6933 - Developer's guide has strange markup in Chapter 1 - -commit 8d6a07f6111bb1a98ebabf01c55a83c9480b9132 -Author: Steve Ebersole -Date: Fri Jan 6 16:50:43 2012 -0600 - - HHH-6887 - Improve SQLStateConverter to take sql state type from the database metadata into account - -commit 9ca985ccd143d05590cc92486ebb241801b22c49 -Author: Steve Ebersole -Date: Fri Jan 6 08:21:04 2012 -0600 - - HHH-6940 - Ability (easier) to run bits of code in a timeout protected way - -commit 05df3d863814e8038eb16dc100d7aecfb414ad67 -Author: Lukasz Antoniak -Date: Fri Jan 6 15:20:27 2012 +0100 - - HHH-4439 - Test and Javadoc change - -commit 12932534125798fa8c00a02f1803e7608b687cc4 -Author: Lukasz Antoniak -Date: Fri Jan 6 14:37:24 2012 +0100 - - HHH-4439 - Javadoc change - -commit 0a08780e1312c45e17f8407e3650a848379d513c -Author: Lukasz Antoniak -Date: Fri Jan 6 14:14:07 2012 +0100 - - HHH-4439 - Deprecate Audited.auditParents - -commit 86f3f3c34729e8dbef8574d9b976c15284516913 -Author: Steve Ebersole -Date: Thu Jan 5 16:38:19 2012 -0600 - - HHH-6940 - Ability (easier) to run bits of code in a timeout protected way - -commit f8b5190a19cf2930470e5192f5804b953192f1a7 -Author: Steve Ebersole -Date: Thu Jan 5 16:02:48 2012 -0600 - - HHH-5275 - Criteria.setLockMode does not work correctly - -commit 343269b00d4ec740fea7ffef00ed4c8a96002bec -Author: Steve Ebersole -Date: Thu Jan 5 13:48:02 2012 -0600 - - HHH-5124 - Removing an entity and persisting it again fails - -commit ab09c575e6ba7e0961b552693b09280dcdbf7954 -Merge: 2795994b22 875a4b29dd -Author: Adam Warski -Date: Thu Jan 5 08:15:07 2012 -0800 - - Merge pull request #242 from javaprog/HHH-5891 - - HHH-5891: Added ordering clause to query generated by getRevisions() - -commit 2795994b22fc077e46aa77e01b016c700f335fd9 -Author: Steve Ebersole -Date: Thu Jan 5 09:58:42 2012 -0600 - - HHH-6937 - Process database profiles just once per build - -commit 5c80268664fe63fa14b9517ca467ef88bf33a049 -Author: Lukasz Antoniak -Date: Wed Jan 4 21:10:53 2012 +0100 - - HHH-6825 - Fix and test - -commit 959e048fd0525315d014f7ad592d84358ee91997 -Author: Steve Ebersole -Date: Wed Jan 4 13:43:10 2012 -0600 - - HHH-6937 - Process database profiles just once per build - -commit 76a3ad202109872b4e5b6740a666c47d13110d38 -Author: Scott Marlow -Date: Wed Jan 4 13:57:28 2012 -0500 - - HHH-6936 EntityManagerImpl.close() and EntityManagerImpl.isOpen() should check if the session factory is closed - -commit 5e3775afe87fbe5843798c2ee953231f45ee4a68 -Author: Scott Marlow -Date: Wed Jan 4 13:27:12 2012 -0500 - - HHH-6897 fix for 'registry contains more than one (2) entity manager factories: EMF_BaseEntityManagerFunctionalTestCase' failure - -commit 875a4b29dd7c93952eb82f78e9876b78f2b4c16b -Author: Michael Rudolf -Date: Wed Jan 4 17:06:26 2012 +0100 - - HHH-5891: Added ordering clause to query generated by getRevisions() to fulfill guarantee given in JavaDoc. - -commit 40c61775df7b52e449b455c14d848768f2bc78b6 -Author: Steve Ebersole -Date: Tue Jan 3 21:35:54 2012 -0600 - - HHH-6931 - Provide local database hook - -commit 5540700f7177da3f318dda49db1af616d6f86497 -Author: Steve Ebersole -Date: Tue Jan 3 21:34:05 2012 -0600 - - HHH-6931 - Provide local database hook - -commit f0d004d1c98c01f090a26990e3c3e8fb422fa2d7 -Author: Steve Ebersole -Date: Tue Jan 3 21:32:08 2012 -0600 - - HHH-6931 - Provide local database hook - -commit 9ed04d3b84f52687cc761864a02d2960de9911a5 -Author: Steve Ebersole -Date: Tue Jan 3 21:12:33 2012 -0600 - - HHH-6931 - Provide local database hook - -commit 9d9d1f11e39ae24e38e56414e53e2bef1be08541 -Author: Steve Ebersole -Date: Tue Jan 3 21:10:54 2012 -0600 - - HHH-6931 - Provide local database hook - -commit 76ac264c6a76f8765cd8198cde56f24bdaeb787d -Author: Steve Ebersole -Date: Tue Jan 3 20:43:50 2012 -0600 - - HHH-5275 - Criteria.setLockMode does not work correctly - -commit ab94a18c3385a5f99b2a481ddec679b66dd0f554 -Author: Steve Ebersole -Date: Tue Jan 3 20:43:15 2012 -0600 - - HHH-6931 - Provide local database hook - -commit ccc087b975aac58b8efb1eea910a784dcbeee29d -Author: Steve Ebersole -Date: Sun Jan 1 18:52:17 2012 -0600 - - HHH-5275 - Criteria.setLockMode does not work correctly - -commit ea5cf961e169202306b84e32f6c9a0888c3d3001 -Author: Steve Ebersole -Date: Fri Dec 30 22:12:23 2011 -0600 - - HHH-6902 - Create typed query in EntityManager throws NullPointerException when filters are present - -commit 69f0d092a81ffa009490333993552864c14514bc -Author: Steve Ebersole -Date: Fri Dec 30 21:37:50 2011 -0600 - - HHH-6854 - testSubsequentPooledLoOptimizerUsage doesn't actually test the PooledLo optimizer - -commit d60c1689442158641dd8a233d2cf449a8bc78aa1 -Author: Steve Ebersole -Date: Fri Dec 30 21:25:02 2011 -0600 - - HHH-6840 - Add to_char function to HSQLDialect - -commit b2f24c6987007d50a16db1e9691af39344680ca9 -Author: Steve Ebersole -Date: Fri Dec 30 21:05:03 2011 -0600 - - HHH-6855 - SequenceStyleGenerator should force use of TableStructure when the optimizer is PooledLo - -commit 5071a82458bf4ff497e04d8c9bb7f896c892a7c5 -Author: Steve Ebersole -Date: Fri Dec 30 18:48:33 2011 -0600 - - HHH-5275 - Criteria.setLockMode does not work correctly - -commit 2eac7c33ecb27f3dd88b7103beedfbed3450946e -Author: Steve Ebersole -Date: Fri Dec 30 18:47:44 2011 -0600 - - HHH-5275 - Criteria.setLockMode does not work correctly - -commit f6dec69c8c37f394ea97c712a99ff19473d90668 -Author: Steve Ebersole -Date: Fri Dec 30 12:15:23 2011 -0600 - - HHH-6909 - "Getting Started Guide" example code cannot be run successfully - -commit 8d9f772a900911f2821e3445c450a0141ed82a3d -Author: Steve Ebersole -Date: Thu Dec 29 11:03:38 2011 -0600 - - HHH-5275 - Criteria.setLockMode does not work correctly - -commit 00d7baedfab13b8436beaa2c95b24dd3d6af7f5e -Author: Steve Ebersole -Date: Thu Dec 29 10:01:10 2011 -0600 - - HHH-5275 - Criteria.setLockMode does not work correctly - -commit 244623cce96646cfeea4b442e746ea62e9517790 -Author: Steve Ebersole -Date: Wed Dec 28 15:35:11 2011 -0600 - - HHH-6822 - Split notions of (1) "naming" a SessionFactory and (2) specifying a JNDI name to which to bind it - -commit 3d517d78f97f20838bc7ca181a13f8bcefea3329 -Author: Scott Marlow -Date: Wed Dec 28 19:16:29 2011 -0500 - - HHH-6897 test changes to ensure that HHH-6897 doesn't regress - -commit 2ddaeedd1ed06c39b43439f63cc66f1f42d3a1b3 -Author: Steve Ebersole -Date: Wed Dec 28 12:04:31 2011 -0600 - - HHH-5275 - Criteria.setLockMode does not work correctly - -commit 1e591f09ac5fb70aa1866a120e979afe4d41f7ba -Author: Steve Ebersole -Date: Tue Dec 27 23:16:29 2011 -0600 - - HHH-6920 - HQL insert queries and identifier handling - -commit d4e8e9973f14fd68ddfcb9707894b2cca535bc07 -Author: Strong Liu -Date: Wed Dec 28 13:11:18 2011 +0800 - - HHH-6921 com.fasterxml:classmate dependency should not be exported to published pom - -commit d327449d54aa22263b3cbc22491c219c3405e60a -Author: Steve Ebersole -Date: Tue Dec 27 13:53:50 2011 -0600 - - HHH-2763 - Allow initialization during flush - -commit ef79491a8fe06cd80cf6493d86908918dbc85114 -Author: Steve Ebersole -Date: Mon Dec 26 11:10:42 2011 -0600 - - HHH-6916 - Improper handling of primitive arrays in AbstractQueryImpl.registerParameterBinding - -commit 097e15732923764cfc84ad8310f88c25ea7d5adc -Author: Steve Ebersole -Date: Sun Dec 25 19:59:09 2011 -0600 - - HHH-6916 - Not proper array-handling in AbstractQueryImpl.registerParameterBinding - -commit a49e02b239457c079af53fbf57199303ec67aadc -Author: Lukasz Antoniak -Date: Sun Dec 25 18:42:08 2011 +0100 - - HHH-4439 - Patch and test - -commit e18d0875927ba4520461ab6f8cd833a404892bbf -Author: Scott Marlow -Date: Fri Dec 16 15:34:56 2011 -0500 - - HHH-6897 serialization of the EntityManager should be possible - -commit d02864bac6591bd1e18f060764664c81f43972e4 -Author: Steve Ebersole -Date: Fri Dec 16 09:12:45 2011 -0600 - - HHH-6903 - add building of hem and manual docs - -commit a0b2a4b3c920db0fb7f9e884bc15c2170b617af4 -Author: Strong Liu -Date: Fri Dec 16 00:56:28 2011 +0800 - - HHH-6900 upgrade to org.javassist:javassist:3.15.0-GA - -commit 97bde41ce786f8dbe5ad8a0d0aede302ead00446 -Author: Steve Ebersole -Date: Wed Dec 14 23:21:35 2011 -0600 - - release 4.0.0.Final - -commit 1a2da08aa356df5e1b4d44cde914db5935cbe7ef (tag: 4.0.0.Final) -Author: Steve Ebersole -Date: Wed Dec 14 23:18:36 2011 -0600 - - release 4.0.0.Final - -commit e5f4585521d01015d59148362c4da6b92131f18a -Author: Steve Ebersole -Date: Wed Dec 14 13:13:33 2011 -0600 - - HHH-5937 - @Enumerated(EnumType.STRING) not taken into account in an @Embeddable included in another @Embeddable - -commit 3ef2a2ab81aeb8bb3c35bf344d48a4357ba396ba -Author: Strong Liu -Date: Fri Dec 9 23:26:31 2011 +0800 - - add mysql55, postgresql91 - -commit 64917249722cd8ad26212be8479542c0930de0d9 -Author: Galder Zamarreño -Date: Mon Nov 21 11:03:24 2011 +0100 - - HHH-6729 Upgraded to Infinispan 5.1.0.CR1 - - * Made the configuration file explicitly define optimistic as locking - mode. - * Make sure a transaction manager that hooks to Hibernate's TM - is configured. - -commit af3767b82a16a62c273a9e3c7865ea955de2c570 -Author: Gail Badner -Date: Fri Dec 2 02:10:15 2011 -0800 - - HHH-6872 : Test failures with hibernate.jdbc.batch_versioned_data=true - -commit 0af7d0645d5c5df70a21758b3e53e4f2929660c5 -Author: Hardy Ferentschik -Date: Thu Dec 1 14:46:45 2011 +0100 - - HHH-6866 Reverting to the char(1) mapping for Types.CHAR - -commit b0573072e68fefbae8b498438f56f01cb1ff090e -Author: Hardy Ferentschik -Date: Thu Dec 1 13:08:29 2011 +0100 - - HHH-6866 Changing the column type definitions for Types.CHAR and Types.BINARY to align with the DB2 type specs - -commit c4b4eddedac6daa1e810e2bb8390f136ddbc771b -Author: Hardy Ferentschik -Date: Thu Dec 1 12:48:51 2011 +0100 - - HHH-6866 Javadoc changes - -commit 65b3e768fa0573f33e10cdbbf9d3c260ba4b50a6 -Author: Hardy Ferentschik -Date: Thu Dec 1 12:48:16 2011 +0100 - - HHH-6866 Removing commented out code and formatting. No functional changes. - -commit 2e0e130cbef3fb7849753926719df7e2b9bd9402 -Author: Strong Liu -Date: Thu Dec 1 19:45:15 2011 +0800 - - HHH-6867 skip org.hibernate.test.criteria.CriteriaQueryTest#testMultiplePropertiesSubquery on DB2 since DB2 doesn't support this tuple sql syntax - -commit 3c3a74e010462620d1bb80d64fcc00e9a951732c -Author: Strong Liu -Date: Thu Dec 1 17:34:42 2011 +0800 - - HHH-6867 skip org.hibernate.test.criteria.CriteriaQueryTest#testMultiplePropertiesSubquery on DB2 since DB2 doesn't support this tuple sql syntax - -commit f9e947035ee37171b551759aa7887a762dda3c6a -Author: Strong Liu -Date: Thu Dec 1 17:05:07 2011 +0800 - - HHH-6867 test data overflow causes org.hibernate.test.cut.CompositeUserTypeTest.testCustomColumnReadAndWrite fails on DB2 - -commit 7fca6f756709f9ef953a1300359e357d42207af9 -Author: Strong Liu -Date: Thu Dec 1 15:48:24 2011 +0800 - - HHH-6870 sysdate function in oracle dialect is a non argu and no parentheses function - -commit b302f74d6d79764fbe90555650b72573a592119a -Author: Strong Liu -Date: Thu Dec 1 14:15:17 2011 +0800 - - prep for next 4.0.0.CR release development - -commit 7bdb5a449d9c5a874fc73fe9994ca3abd2a89044 (tag: 4.0.0.CR7, upstream/stable, origin/stable) -Author: Strong Liu -Date: Thu Dec 1 13:35:49 2011 +0800 - - prep 4.0.0.CR7 - -commit 588a9d69e8bb87766afa70a05e77a036561e634e -Author: Sanne Grinovero -Date: Wed Nov 30 15:24:41 2011 +0000 - - HHH-6868 Lazily initialize HashMap in LockOptions - -commit eb23512fc52569c1bdd8eb070e44d5d8d850a373 -Author: Sanne Grinovero -Date: Wed Nov 30 10:01:32 2011 +0000 - - HHH-6862 More iteration improvements - -commit a6b761e2093d5b6fbe6903cfae969e1ede2e8ffa -Author: Sanne Grinovero -Date: Wed Nov 30 11:35:20 2011 +0000 - - HHH-6862 Some additional small performance improvements - -commit eb59e81bb945ad3a3e010c19440f66376c5bd08a -Author: Steve Ebersole -Date: Wed Nov 30 12:19:24 2011 -0600 - - HHH-6865 - PessimisticLockException should be thrown when pessimistic read and write locking strategies fail - -commit 3577cbde0873d03e32787f73b65a0d5475e18ca5 -Author: Strong Liu -Date: Thu Dec 1 01:03:51 2011 +0800 - - HHH-6856 - RowValueConstructorSyntax with In syntax is not working - -commit a522f049e0001d55987bbaa15e083402ecb13a8e -Author: Strong Liu -Date: Wed Nov 30 14:57:55 2011 +0800 - - HHH-6780 HHH-6068 - -commit 221d5f9ef6205cb2ca2cd802a747e3b972caa891 -Author: Strong Liu -Date: Wed Nov 30 14:26:38 2011 +0800 - - HHH-6862 reduce the reference to IdentityMap - -commit a947a2fc8d58f31ecc6fd3ff3a4bba47cd0c1c7b -Author: Sanne Grinovero -Date: Fri Nov 11 21:10:19 2011 +0000 - - HHH-6863 make access to serviceBindingList threadsafe - -commit d158047287f5755c35178c1cf2defe10e92d9b8a -Author: Sanne Grinovero -Date: Fri Nov 11 21:07:38 2011 +0000 - - HHH-6863 make serviceBindingMap threadsafe - -commit 7781cb0aa9d8b7cbd117d8ded405523f66537316 -Author: Sanne Grinovero -Date: Tue Nov 29 19:48:58 2011 +0000 - - HHH-6862 final polish - -commit d12396ee372627c7e5bf46cce92fccc88b39379e -Author: Sanne Grinovero -Date: Tue Nov 29 19:14:29 2011 +0000 - - HHH-6862 Reuse cached entryArray of IdentityMap in StatefulPersistenceContext as much as possible - -commit ad3afa4b7debd331dafd39250156da1306b09320 -Author: Sanne Grinovero -Date: Tue Nov 29 18:55:04 2011 +0000 - - HHH-6862 Switch to use Iterable from Iterator in IdentityMap helpers - -commit aa4954be8b12ba57d352f51e1ccd756fd2e2710d -Author: Sanne Grinovero -Date: Tue Nov 29 17:20:22 2011 +0000 - - HHH-6862 Improve API of IdentityMap helpers to match actual use cases - -commit 67d1c7033526142f6c612e1dd0010bea323c12a0 -Author: Sanne Grinovero -Date: Tue Nov 29 11:30:42 2011 +0000 - - HHH-6862 Use generic Maps for more StatefulPersistenceContext fields - -commit f98e15e15f50a4b36dcd9ca1d7cdc1c605228832 -Author: Sanne Grinovero -Date: Tue Nov 29 11:24:46 2011 +0000 - - HHH-6862 Use generic Map for StatefulPersistenceContext.entityEntries - -commit ddb3a8cd184d4ed3a1eda846b2a10b4576571298 -Author: Sanne Grinovero -Date: Mon Nov 28 17:42:25 2011 +0000 - - HHH-6858 reuse reference to PersistenceContext - -commit fb0255a87a8928ed21748c4522cc176e4ecfaa2d -Author: Sanne Grinovero -Date: Mon Nov 28 15:35:48 2011 +0000 - - HHH-6858 non-intrusive performance improvements - -commit 9e45ec3baf7145fa14f0eec7fa40d49a2ccca750 -Author: Strong Liu -Date: Sat Nov 26 00:45:49 2011 +0800 - - HHH-6852 DB2 doesn't support exists in select - -commit d7f3042e5b9eabd8c2ed46407fbc6601254cde2d -Author: Strong Liu -Date: Sat Nov 26 00:15:05 2011 +0800 - - HHH-6851 DB2 doesn't support NotNullUnique causes org.hibernate.test.annotations.uniqueconstraint.UniqueConstraintTest.testUniquenessConstraintWithSuperclassProperty fail - -commit b42d5f7691a4df0ec56d9d812fe755de87b22d43 -Author: Emmanuel Bernard -Date: Tue Nov 29 18:21:13 2011 +0100 - - HHH-6860 Upgrade dependency to Hibernate Commons Annotations 4.0.1.Final - -commit f690d8e28b17c6e35f6c234153537b53564b64a6 -Author: Steve Ebersole -Date: Tue Nov 29 11:50:59 2011 -0600 - - HHH-5992 - A query fails to return correct results silently - -commit bcc60208e3200c4580570dc788caa4256dd8ff06 -Author: Steve Ebersole -Date: Tue Nov 29 10:07:11 2011 -0600 - - HHH-6856 - RowValueConstructorSyntax with In syntax is not working - -commit eca04896c9e58983e9e5a19dee3425b2b57427fe -Author: Strong Liu -Date: Mon Nov 28 17:56:33 2011 +0800 - - HHH-6856 RowValueConstructorSyntax with In syntax is not working - -commit 9a7924d9bc7ec8f31d2d77f397e307567c87ed2f -Author: Steve Ebersole -Date: Mon Nov 28 17:39:26 2011 -0600 - - HHH-6780 - Wrong Query timeout calculation - -commit d00c9c85d86427f58691156af291755a195f276f -Merge: 78f86319df 0645acf04f -Author: Steve Ebersole -Date: Mon Nov 28 16:17:45 2011 -0600 - - Merge branch 'HHH-6068' of https://github.com/lukasz-antoniak/hibernate-core into lukasz-antoniak-HHH-6068 - -commit 78f86319df94ee5db917ec92f12b2afc65888420 -Author: Steve Ebersole -Date: Mon Nov 28 14:44:16 2011 -0600 - - HHH-6842 - Skip org.hibernate.test.annotations.manytoonewithformula.ManyToOneWithFormulaTest#testManyToOneFromNonPkToNonPk for DB2 - -commit dd5074b9b2b7a0da3207165178f96681f868e3be -Author: Strong Liu -Date: Sun Nov 27 22:53:41 2011 +0800 - - rewrite matrix plugin readme - -commit 1f11f78074a16ffac601f298346fed6631d9f079 -Author: Strong Liu -Date: Sat Nov 26 16:29:01 2011 +0800 - - HHH-6853 upgrade to jboss-logging 3.1.0.CR2 - -commit 6e433d5f85b55b5086488c9b01972ae039eb8d07 -Author: Hardy Ferentschik -Date: Fri Nov 25 17:24:44 2011 +0100 - - HHH-6849 Fixing assert in SQLServer2005DialectTestCase#testGetLimitString since order of column has changes. Also got rif of additional unnecessary whitespace - -commit 06952b533ed66e48c1559c345db1a1d18316d5de -Author: Hardy Ferentschik -Date: Fri Nov 25 15:18:06 2011 +0100 - - HHH-6849 Append _ROW_NUMBER()_ instead of prepending it - -commit 20141cae878d6d6927dfa85a0fe9e1bc19cc5ec0 -Author: Hardy Ferentschik -Date: Fri Nov 25 12:05:51 2011 +0100 - - HHH-6849 Formatting and adding actual assertions to testOffset(). This is not addressing the SQLServer issue yet. - -commit 8114e9c5aec76ceb271b258d728b561c1843df0d -Author: Strong Liu -Date: Sat Nov 26 00:03:00 2011 +0800 - - HHH-6850 no Types.BINARY mapping in DB2 dialect - -commit 341acf5949dad0ae9847cbe044429a15126a704e -Author: Strong Liu -Date: Fri Nov 25 16:09:47 2011 +0800 - - JBPAPP-2613 - -commit 8c868aa513da8dc6257cfab0b98023699f10c5a8 -Author: Strong Liu -Date: Fri Nov 25 14:25:05 2011 +0800 - - HHH-6820 Skip test org.hibernate.ejb.test.lock.LockTest.testContendedPessimisticLock for Sybase ASE15.5 - -commit 873517a46f07d88131358021529f1c77885359f7 -Author: Hardy Ferentschik -Date: Thu Nov 24 11:11:20 2011 +0100 - - HHH-6843 Second transaction should not commit before the first one - -commit ab111b6018242aabb13f2923020416b24ab1ff93 -Author: Hardy Ferentschik -Date: Wed Nov 23 17:24:29 2011 +0100 - - HHH-6843 Updating LockTest to be less aggressive and more inline with actual isolation requirements - - The actual changes are in the refactoring of LockTest#testContendedPessimisticLock which got split up into several methods and has the asserts changed - - The formatting changes fix some generics warning and indentation. Used to be two separate commits, but after some git screw-up became one now - -commit c520a819902ea979cc4b2a6f089e5bf09c29e904 -Author: Hardy Ferentschik -Date: Wed Nov 23 17:17:48 2011 +0100 - - HHH-6843 Increasing the lock timeout. The default timeout is very low (see http://stackoverflow.com/questions/4162557/timeout-error-trying-to-lock-table-in-h2) - - Turns out that at least one test (LockTest) passed due to combination of an uncaught TimeoutException + wrong assumptions. Increasing the timeout seems also more realistic in comparison to other databases. - -commit d382e70b6504be12ca832e543a11d36bb8418fb9 -Author: Sanne Grinovero -Date: Thu Nov 24 11:14:33 2011 +0000 - - formatting: use tabs - -commit f5702548bbc238124fedbe0785cfcdd12b6bb960 -Author: Sanne Grinovero -Date: Wed Nov 23 17:19:03 2011 +0000 - - HHH-6845 Avoid repeated invocations of ReflectHelper.overridesEquals in proxy initializers - -commit b4e65a0c79961317e98815411d3e5066932227f7 -Author: Sanne Grinovero -Date: Wed Nov 23 16:47:07 2011 +0000 - - HHH-6845 small polish: use final when possible - -commit 977dcd1b0357e16ae77ca4e483545ff00203d124 -Author: Scott Marlow -Date: Wed Nov 23 17:31:49 2011 -0500 - - HHH-5222 upgrade from READ to OPTIMISTIC_FORCE_INCREMENT fails - -commit 4c6330b5359d7b7640525ab61afec5c24bf9ddeb -Author: Scott Marlow -Date: Wed Nov 23 12:43:11 2011 -0500 - - HHH-5222 upgrade from READ to OPTIMISTIC_FORCE_INCREMENT fails - -commit e044cb2ce12268d462acf3f399bc174f47846aae -Author: Scott Marlow -Date: Wed Oct 26 22:45:28 2011 -0400 - - LockTest changes: better handling of unexpected exception and don't call commit after timing out - -commit 3c11500618acbf5a7f2e06fa35b4f482f7154976 -Author: Alessandro Lazarotti -Date: Tue Nov 22 15:39:42 2011 -0200 - - JBPAPP-7491 , JBPAPP-7488 , HHH-6806 Add support for vfsfile and vfszip in JarVisitor - - The method getVisitor(URL jarUrl, Filter[] filters, String entry) does not have conditionals for protocols vfs based, - like vfszip or vfsfile. It returns an InputStreamZippedJarVisitor implementation for both protocols. If it is a vfszip, - it will work, but will not not for vfsfile. The fix includes vfszip and vfsfile to JarVisitorFactory, so it can return - FileZippedJarVisitor (more efficient than InputStreamZippedJarVisitor) for vfszip and ExplodedJarVisitor for vfsfile - -commit 6c7379c38f8b6b43c13791b29cd09b1f4a26bd8e -Author: Sanne Grinovero -Date: Tue Nov 22 23:52:36 2011 +0000 - - HHH-6817 Logging of strings containing the percent character broken - -commit 0fc95e54b3e6d5a0705ec0fb66e37df032cd981c -Author: Gail Badner -Date: Wed Nov 23 02:48:02 2011 -0800 - - HHH-5472 : Add test case with circular non-nullable associations - -commit 52969e9561ebed03608ee10c5b38f77cee44623c -Author: Gail Badner -Date: Tue Nov 22 23:31:57 2011 -0800 - - HHH-5472 : Test case for delaying saving an entity with non-nullable transient entities - -commit ba764816b9c68622bcd44460ce027f91227ea89c -Author: Strong Liu -Date: Mon Nov 21 20:09:34 2011 +0800 - - HHH-6827 correct testing 2L cache impl, mostly are copied from ehcache impl - -commit 15a46a96615c022fef1fdf4b40806c5ea5d11bd6 -Author: Strong Liu -Date: Mon Nov 21 20:09:15 2011 +0800 - - HHH-6827 correct testing 2L cache impl, mostly are copied from ehcache impl - -commit 6c6e9669c1abf9d7c2848068f7de2b38c5ed8468 -Author: Strong Liu -Date: Mon Nov 21 20:07:51 2011 +0800 - - HHH-6827 correct CMTTest expectation value - -commit 8a800a1bc0f5091f2e84198a130d045381bf9c89 -Author: Strong Liu -Date: Mon Nov 21 20:04:41 2011 +0800 - - HHH-6827 correct timeout in BaseRegion - -commit 17bf50226b3220ad623c90cfaeda93fff5b7fd86 -Author: Strong Liu -Date: Mon Nov 21 20:03:24 2011 +0800 - - HHH-6286 UpdateTimestampsCache should try to avoid acquiring lock if possible - -commit f8e347dabd9623b0b81e4c02d3c9159ebba830ef -Author: Strong Liu -Date: Mon Nov 21 20:02:09 2011 +0800 - - HHH-6827 code format and javadoc, logging - -commit c4776e2a928a2bfabe92582c4727e4b56dcf537e -Author: Strong Liu -Date: Mon Nov 21 19:53:09 2011 +0800 - - HHH-6836 some test failures on Oracle - -commit b2ba384254a2a3ed3975fc4dfdc8bddf779935b5 -Author: Strong Liu -Date: Mon Nov 21 15:47:48 2011 +0800 - - HHH-6834 skip test BasicOperationsTest on oracle due to a oracle jdbc driver issue - -commit a250fd6513d86944d4e8531b47fa4f49fa5cec29 -Author: Strong Liu -Date: Mon Nov 21 14:38:38 2011 +0800 - - HHH-6700 mysql test failures - -commit 581061f442cef55b840b55abeea5e5c559e2ca2c -Author: Strong Liu -Date: Mon Nov 21 14:09:03 2011 +0800 - - HHH-6700 mysql test failures - JBPAPP-2613 - -commit ff9eb6d1b2d2c6d0c5414935c966b4f312d7b1ef -Author: Strong Liu -Date: Mon Nov 21 10:16:30 2011 +0800 - - test need to be compiled in UTF-8 - -commit 62d50aa987c2832cbf990b4f335cbc46f8a5aaae -Author: Strong Liu -Date: Mon Nov 21 08:49:25 2011 +0800 - - HHH-6820 Skip test org.hibernate.ejb.test.lock.LockTest.testContendedPessimisticLock for Sybase ASE15.5 - -commit d4e138eb13b7d1fbe19f3469e5d7745ae255b468 -Author: Steve Ebersole -Date: Sun Nov 20 10:27:47 2011 -0600 - - HHH-6833 - Eable SQL logging for tests - -commit 31ab12f86fdef1222d23040c58d3761cf64d3621 -Author: Strong Liu -Date: Sat Nov 19 23:58:14 2011 +0800 - - HHH-5945 Race condition in building query cache - -commit bcf81aa176d5fb14a6cc16f65f970c186d8ab046 -Author: Hardy Ferentschik -Date: Fri Nov 18 16:39:04 2011 +0100 - - HHH-6819 Moving CommandExtractorService, MultiLineImportFileTest and SingleLineImportFileTest out of the matrix tests. The tests don't need to run against multiple dbs and the multi line tests are not portable as they are atm. - - Also splitting properly source files from resources - -commit 2f3c5d8904974a718540bc70c731ab49f5e16759 -Author: Hardy Ferentschik -Date: Fri Nov 18 17:41:16 2011 +0100 - - HHH-6830 Using the registered SQLFunctions for the date function to render the right SQL fragment - -commit 8bf9791254ed72b184ed8e25e3ca53c328e30dd2 -Author: Hardy Ferentschik -Date: Thu Nov 17 17:51:30 2011 +0100 - - HHH-6828 Taking case sensitivity into account when accessing the database metadata - - Also extending the test and formatting the code. - -commit 6b2972884a07f284ca2d84f60f27e9e3f92f0da8 -Author: Strong Liu -Date: Wed Nov 16 15:22:17 2011 +0800 - - HHH-6821 Upgrade to jboss-logging-tools 1.0.0.CR5 - -commit 8065f9affe9f5bd1abbd10c5e27978a80211926c -Author: Strong Liu -Date: Mon Nov 14 17:38:30 2011 +0800 - - HHH-6818 update dependencies management - -commit 93f6ad6e2e37aa0c28a857151fb7a0779ddcfc6e -Author: Strong Liu -Date: Mon Nov 14 17:12:51 2011 +0800 - - HHH-6818 update dependencies management - -commit c575f6e5f5cf12d866f5ddd7e1503e7ee238306b -Author: renj -Date: Tue Nov 8 17:38:53 2011 +0800 - - HHH-6807 skip this test for Sybase ASE - -commit 937f395834f716b4c78af327ac587f257df6ad08 -Author: renj -Date: Tue Nov 8 17:37:58 2011 +0800 - - Skip empty clob test due to HHH-6425 - -commit 513b1baa622ad5bd3f4bd8d2625e0276eee08e45 -Author: renj -Date: Mon Nov 7 16:33:40 2011 +0800 - - HHH-6807 skip this test for Sybase ASE - -commit ca2bd08997c670294668d2109d59d4e5f6404a00 -Author: renj -Date: Mon Nov 7 16:31:09 2011 +0800 - - Skip empty clob test due to HHH-6425 - -commit d44b0761be37ac65dfd5a0a4c170f903d4662089 -Author: Steve Ebersole -Date: Thu Nov 10 15:49:10 2011 -0600 - - prep 4.0.0.CR6 - -commit fe2246a67b85e5e7abe686522929799ed4e70798 (tag: 4.0.0.CR6) -Author: Steve Ebersole -Date: Thu Nov 10 14:58:49 2011 -0600 - - HHH-2403 : system independent newline handling - -commit 7207098194f507d6469e8f6e21b4a1ae58efad66 -Author: Steve Ebersole -Date: Thu Nov 10 14:55:14 2011 -0600 - - HHH-2403 : system independent newline handling - -commit 3913b4d881303ec4b85329b02cd290a6d22a260e -Author: Steve Ebersole -Date: Thu Nov 10 12:53:05 2011 -0600 - - prep 4.0.0.CR6 - -commit 564cdac5cb69783604339d57d63b524a867b8d52 -Author: Steve Ebersole -Date: Thu Nov 10 12:42:57 2011 -0600 - - HHH-6816 - Upgrade to jboss-logging 3.1.0.CR1 - -commit 92ae7826533c630dacec3e6415ca86f646198ed0 -Author: Lukasz Antoniak -Date: Wed Nov 9 19:05:05 2011 +0100 - - HHH-2403 - ImportSqlCommandExtractor set from outside SchemaExport - -commit 72b2af3b0a61623014d8a4e56602619d6d26f66d -Author: Lukasz Antoniak -Date: Wed Nov 9 00:47:53 2011 +0100 - - HHH-2403 - Documentation, formatting - -commit 00e32f5e7f9a71958bdb21c3430ef5cbb6d6fd98 -Author: Lukasz Antoniak -Date: Wed Nov 9 00:23:41 2011 +0100 - - HHH-2403 - New configuration parameter, documentation - -commit c6d616a8bf85bff8b7b77b4dfccd33d18a2a6153 -Author: Lukasz Antoniak -Date: Sun Nov 6 13:51:40 2011 +0100 - - HHH-2403 - Improved import.sql - -commit ebd24bbc875d33f0e89542a89d3c5cba52505d0b -Author: Emmanuel Bernard -Date: Thu Nov 10 17:49:28 2011 +0100 - - HHH-6798 Upgrade to Hibernate Commons Annotations 4.0.0.Final - -commit 25e8a43d81212a47e100cd5101bd6f3c0875bebb -Author: John Verhaeg -Date: Wed Nov 9 12:52:51 2011 -0600 - - HHH-6815: Overrode SQLServerDialect.getSqlTypeDescriptorOverride(int) to return a SmallIntTypeDescriptor instead when the datatype being updated is a TINYINT - -commit 8bb51c7acb2bf0f076b0aafc14833c9da36088ae -Author: Steve Ebersole -Date: Wed Nov 9 10:03:59 2011 -0600 - - HHH-5937 - @Enumerated(EnumType.STRING) not taken into account in an @Embeddable included in another @Embeddable - -commit 9d2574947b2a6d979c7c7d803f4848495269fce3 -Author: Gail Badner -Date: Wed Nov 9 02:27:06 2011 -0800 - - HHH-6700 : Fix ID length for UUIDBinaryTest#testUsage so it works on H2 - -commit 5f494d4fca3844b79a3df6affa15229f01ac2f60 -Author: Strong Liu -Date: Wed Nov 9 13:48:21 2011 +0800 - - HHH-6700 mysql test failures - -commit 05b815c5f5f9332d5cb8182d4fb649b7c88747b1 -Author: Gail Badner -Date: Tue Nov 8 15:22:40 2011 -0800 - - HHH-3218 : ManyToOne Persisting Cascade in Embeddable -- added test case - -commit 199f3e300c288da9558d2f2d87abf9cc14802460 -Merge: 9c0aa69b5b 4d3620342b -Author: Adam Warski -Date: Tue Nov 8 03:07:56 2011 -0800 - - Merge pull request #204 from lukasz-antoniak/HHH-6753 - - HHH-6753 - Envers WorkUnits: Problems with merge - -commit 9c0aa69b5b253aeff6641f1c9020d2c82e417262 -Author: Gail Badner -Date: Mon Nov 7 22:37:34 2011 -0800 - - HHH-5146 : org.hibernate.util.IdentitySet.iterator() return Map.Entry instances instead of actual elements - -commit 8fcbf71a11e2917131a205642d0a69755a6e2e22 -Author: John Verhaeg -Date: Mon Nov 7 10:52:38 2011 -0600 - - HHH-6809: Changed Loader.hasMaxRows() to return false if maxRows is zero, and removed bad expectation from FooBarTest.testFindByCriteria() - -commit ee020c82156b2bf7ac36f74d522896cbf59a6c29 -Author: Strong Liu -Date: Fri Nov 4 06:14:30 2011 +0800 - - HHH-6789 StringIndexOutOfBoundsException at TemplatedViolatedConstraintNameExtracter.extractUsingTemplate - -commit 53cae7ace74e5cfcc19b27ae627f94bb241230ba -Author: Emmanuel Bernard -Date: Thu Nov 3 21:14:11 2011 +0100 - - HHH-6799 Fix EntityManager relates test harness that was closing a ServiceRegistry it did not open - -commit 19939cedf56a301e42e16d041a26ac547711f107 -Author: Emmanuel Bernard -Date: Thu Nov 3 21:13:34 2011 +0100 - - HHH-6799 Add a SessionFactoryObserver to close ServiceRegistries created by the bootstrap process - -commit f1813aec490f527557e13bdcce371ef4731e4541 -Author: Strong Liu -Date: Fri Nov 4 03:26:42 2011 +0800 - - HHH-6714 Parentheses dissapear in HQL query where they should stay - -commit 77107cc35abb6fb43a7f05bd3613176e84c8a7f2 -Author: Strong Liu -Date: Fri Nov 4 03:24:12 2011 +0800 - - HHH-6714 Parentheses dissapear in HQL query where they should stay - -commit 3c3482bd59f6397f93abbfe24b54e3f851e6d1bc -Author: Steve Ebersole -Date: Thu Nov 3 12:10:30 2011 -0500 - - HHH-6796 - Services retrieved after SessionFactoryServiceRegistry has started are not configured (Configurable) - -commit 4739c5dc0cd83501bf421c98ea025aaf23ba4419 -Author: Strong Liu -Date: Thu Nov 3 19:05:22 2011 +0800 - - HHH-6779 rollback hibernate.properties - -commit 3793238078d549d2f11f38ab8ae3b90eb3b5e63f -Author: Strong Liu -Date: Thu Nov 3 19:04:37 2011 +0800 - - HHH-6779 ByteType mapped to tinyint, but on sybase/ms sql server, tinyint is unsigned int - -commit 368ef6713b389467b214ec50c30539a177384c2a -Author: Strong Liu -Date: Thu Nov 3 16:43:18 2011 +0800 - - HHH-6773 test fails on sybase - -commit c04442281b49dbf6ee78b94ffe089075fe773ab3 -Author: Emmanuel Bernard -Date: Wed Nov 2 21:32:50 2011 +0100 - - HHH-6796 Make the service configuration logic being executed by the owning service registry - -commit 944ae2c488cfa9d091230d270ff31ee90d7f6491 -Author: Strong Liu -Date: Wed Nov 2 22:30:46 2011 +0800 - - HHH-6795 unsupported Boolean type null value on Sybase causes hangs forever when doing bind parameter - -commit 16f0fa5373bf1c2e8f0dc736a3cf7cb39256955e -Author: Strong Liu -Date: Wed Nov 2 22:27:17 2011 +0800 - - HHH-6795 unsupported Boolean type null value on Sybase causes hangs forever when doing bind parameter - -commit e2105370594df8ee7dee78eca2f2c4bf6b8fd2de -Author: Strong Liu -Date: Wed Nov 2 17:09:50 2011 +0800 - - HHH-6792 connection leaks due to service registry is not destroyed - -commit 946925f3e25952281dce02636d15100f0883bbb4 -Author: Adam Warski -Date: Wed Nov 2 11:44:08 2011 +0100 - - HHH-6793: checking if session isn't closed - -commit 70bd57bcff7c906a97f4617124b28d3b5865aa84 -Author: Strong Liu -Date: Wed Nov 2 17:37:05 2011 +0800 - - HHH-6792 connection leaks due to service registry is not destroyed - -commit 192682d31ba34d6b9b37007d106fe5a94745cfcf -Merge: 2d084cb8d9 bec88716d6 -Author: Strong Liu -Date: Wed Nov 2 14:16:19 2011 +0800 - - Merge branch 'sybase' - -commit bec88716d68e2434b13c332476de5bd887f466f8 -Author: Strong Liu -Date: Wed Nov 2 14:16:02 2011 +0800 - - HHH-6791 tiny improvement, in favor of java auto-box instead of create new instance - -commit 2d084cb8d9421109612b2b65548cb116be2f5b31 -Author: Strong Liu -Date: Tue Nov 1 14:53:31 2011 +0800 - - HHH-6787 upgrade to JBoss Logging tools 1.0.0.CR3 - -commit 388ceaf1862d7aae1b9f60db9b8e838566948fdf -Author: Strong Liu -Date: Tue Nov 1 16:55:41 2011 +0800 - - HHH-6773 test fails on sybase - -commit 9509f1d8bf3100766f3b19870112e2f742c3bc4a -Author: Strong Liu -Date: Tue Nov 1 15:17:33 2011 +0800 - - HHH-6773 test fails on sybase - -commit e5dc6680117f65b4bae32aa2a5f2a1ad7d73d045 -Author: Strong Liu -Date: Thu Oct 27 20:06:35 2011 +0800 - - HHH-6773 test fails on sybase - -commit d370865c9f7d31a2b00b0799ad4ba3869652e1fa -Author: Strong Liu -Date: Tue Nov 1 14:18:18 2011 +0800 - - HHH-6786 DB2 v97 doesn't support define a boolean type column - -commit dbbb3cb0d3953569da3cf7123cedc979cb72a0c7 -Author: Strong Liu -Date: Sun Oct 30 22:14:59 2011 +0800 - - some documentation improvements - -commit 653211da6cbdd548e402c8c16465ea123f10e669 -Author: Adam Warski -Date: Sat Oct 29 13:31:31 2011 +0200 - - HHH-6784: only adding the REVINFO table if there are any audited entities. - -commit 4d3620342bd5f7c2d5516d87c0a4bf33681b5594 -Author: Lukasz Antoniak -Date: Sat Oct 29 00:57:57 2011 +0200 - - HHH-6753 - JavaDoc changed - -commit fe2d1fe0ead830c79b3fe1bf397f142609b08d34 -Author: Lukasz Antoniak -Date: Sat Oct 29 00:44:10 2011 +0200 - - HHH-6753 - Fix and test - -commit 674c49c947cf659b0d40b08263cebf534ab7da5c -Author: Gail Badner -Date: Thu Oct 27 04:48:10 2011 -0700 - - Set version to 4.0.0-SNAPSHOT - -commit bdde0f44ad9b4478f0d91bd966e0d54d0e6ac0e4 -Author: Strong Liu -Date: Thu Oct 27 19:40:58 2011 +0800 - - HHH-6773 test fails on sybase - -commit 22f9c7a132839078afdc80529a1c9aeceddb5fd8 (tag: 4.0.0.CR5) -Author: Gail Badner -Date: Thu Oct 27 03:11:47 2011 -0700 - - 4.0.0.CR5 prep - -commit 129c0f13482b99e2705f0e234b6bc0572a95c271 -Author: Sanne Grinovero -Date: Sat Oct 15 01:40:38 2011 +0100 - - HHH-6732 more logging trace statements are missing guards against unneeded string creation - -commit 94f66c39441c92b301659432e59560bfa18e7d1a -Author: Sanne Grinovero -Date: Mon Oct 17 17:22:08 2011 +0100 - - HHH-6739 JtaIsolationDelegate.doTheWorkInNewTransaction fails to propagate or otherwise report caught exceptions - -commit 11d8a8617fc56f5d94b672460c37db1f28ed8559 -Author: Gail Badner -Date: Wed Oct 26 14:42:17 2011 -0700 - - HHH-6770 : Oracle reserved words used as column names - -commit a6a366678a8b7d1af03ac8487191621ed01784a6 -Author: Gail Badner -Date: Wed Oct 26 14:31:18 2011 -0700 - - HHH-6770 : Oracle reserved words used as column names - -commit d4b47e78bab90f93ba3904e01f30569104f5730e -Author: John Verhaeg -Date: Wed Oct 26 14:14:30 2011 -0500 - - HHH-6775: Changed AbstractTransactSQLDialect.getNullColumnString() to return empty string, which matches some of the other dialects and allows the DB to auto-determine a column's nullability in certain situations - -commit cbbc786f18ebe8294a798c089131370cab145f1f -Author: Lukasz Antoniak -Date: Tue Oct 25 18:37:21 2011 +0200 - - HHH-6766 - Documentation - -commit c74610bd80632cb7b21238f290019cc1d4f0d9ba -Author: Lukasz Antoniak -Date: Mon Oct 24 21:53:25 2011 +0200 - - HHH-6766 - Test cleanup - -commit fed759f8e51cf207ae6c7b71e7270aac464e3256 -Author: Lukasz Antoniak -Date: Sat Oct 22 16:30:43 2011 +0200 - - HHH-6766 - Criteria API multicolumn subqueries - -commit c26030a27e301d4f99c2e577978f02f7d25edde3 -Author: Strong Liu -Date: Wed Oct 26 23:12:22 2011 +0800 - - HHH-2304 Wrong type detection for sql type char(x) columns - -commit 27e9957f9e36563dc3e81d8821efdce8c1500bb9 -Author: Strong Liu -Date: Wed Oct 26 22:46:50 2011 +0800 - - HHH-6773 test fails on sybase - -commit 082431a48d51dca2b898443c5c0510b5fef4d268 -Author: Strong Liu -Date: Wed Oct 26 18:58:57 2011 +0800 - - HHH-6773 test fails on sybase - -commit f5a57847668bcc5c8bcce1f0b7ee50f492ab45de -Author: Strong Liu -Date: Wed Oct 26 18:53:21 2011 +0800 - - HHH-6773 test fails on sybase - -commit f262811c8f267bf3082f3b1c5f1cdfecab904d4f -Author: Strong Liu -Date: Wed Oct 26 18:40:44 2011 +0800 - - HHH-6773 test fails on sybase - -commit 7b9e2130b26bcbca57b5d70153481b0db6f569da -Author: Strong Liu -Date: Wed Oct 26 18:20:30 2011 +0800 - - HHH-6773 test fails on sybase - -commit a9064790e3681bcb8b27d3b4bac34c90e1f3dc3b -Author: Strong Liu -Date: Wed Oct 26 14:21:18 2011 +0800 - - HHH-6772 org.hibernate.ejb.test.BaseEntityManagerFunctionalTestCase overrides system properties - -commit 2bbb3074d4d484e12cad3c0117c5453ce3793e1e -Author: Gail Badner -Date: Wed Oct 12 04:26:57 2011 -0700 - - HHH-6723 : Remove extra join from eager @OneToOne - -commit 63ad1467fb1541e8fb2b20c5caf647a2afd143e7 -Author: Gail Badner -Date: Tue Oct 25 15:51:02 2011 -0700 - - HHH-6748 : Test failures due to inconsistent numeric return type from native query - -commit 4c416382029f517f416e09577f9d9b9fc13b83ea -Author: Gail Badner -Date: Tue Oct 25 15:30:28 2011 -0700 - - HHH-6770 : Oracle reserved words used as column names - -commit 070833c10726f9deb43641d48a4971ed7256a8d1 -Author: Gail Badner -Date: Tue Oct 25 12:35:27 2011 -0700 - - HH-6771 : Test failure on Oracle due to ORDER BY in subquery - -commit 505869e9d20ebfaeead6af074c051eb6df7cc5a3 -Author: Gail Badner -Date: Tue Oct 25 10:17:24 2011 -0700 - - HHH-6770 : Oracle reserved words used as column names - -commit 4de4bad98ae2b243e12436e88214515d8712674e -Merge: 33488cb2da 26102b0574 -Author: Adam Warski -Date: Tue Oct 25 07:35:31 2011 -0700 - - Merge pull request #202 from lukasz-antoniak/HHH-3843 - - HHH-3843 - NonUniqueObjectException exception while auditing parent with @ManyToMany relation - -commit 33488cb2dac7004c07c40d98ed025f7a94581f5b -Author: Strong Liu -Date: Tue Oct 25 13:46:10 2011 +0800 - - fix stupid mistake in matrix plugin i made yesterday :( - -commit b31c17b3327ba32caf9d98f2efa048a419df89af -Author: John Verhaeg -Date: Mon Oct 24 16:19:43 2011 -0500 - - HHH-6767: Added guard to ensure the DB is not SQL SErver before adding ORDER BY clause to SQL - -commit dfd718418c9549bfe5381bdb9499454482efb4fa -Author: John Verhaeg -Date: Mon Oct 24 14:49:13 2011 -0500 - - HHH-6765: Toggled reversed Boolean value returned from DialectChecks.SupportsExistsInSelectCheck.supportsExistsInSelect() - -commit 0db90f08d939732e4ba8b3cd9380019bb0c12843 -Author: John Verhaeg -Date: Mon Oct 24 14:03:14 2011 -0500 - - HHH-6764: Added additional test for SQL Server that uses getDate() function, and made previous test skip SQL Server dialect - -commit 71c230bf5b2f064e508aa4a602ee68cb40713bdc -Author: John Verhaeg -Date: Mon Oct 24 11:11:35 2011 -0500 - - HHH-6762: Skipped currently failing test and added new test that uses copy of test class that contains join formula suitable for SQL Server - -commit 007980d8bf6803fe97916677c5e1c9e61769c9ad -Author: Strong Liu -Date: Mon Oct 24 21:56:16 2011 +0800 - - enable db url postfix after get url from db allocation - -commit bdba5898c90ef7667e7c5df35e72d2e993e32556 -Author: Strong Liu -Date: Mon Oct 24 16:26:37 2011 +0800 - - clean up imports - -commit 26102b057480ad5c590a03f1557f70696b98e041 -Author: Lukasz Antoniak -Date: Sat Oct 22 11:23:00 2011 +0200 - - HHH-3843 - Organize imports - -commit 6a89afccb6e55ed31523d201490846a8f7a10e07 -Author: Lukasz Antoniak -Date: Sat Oct 22 11:20:46 2011 +0200 - - HHH-3843 - Refactoring, test simplified - -commit d579033ca25a5f8f736205b364b56af24b4c39e4 -Author: Gail Badner -Date: Fri Oct 21 18:29:46 2011 -0700 - - HHH-6760 : Test failures on Oracle due to identity IDs - -commit 22fdec8d225969f9b136cfd08a65118c66252b4c -Author: Gail Badner -Date: Fri Oct 21 16:46:31 2011 -0700 - - HHH-6188 : java.util.UUID cannot be used for Ids on Oracle - -commit 70b92108646ec2d34fb14db6f9b2b333fdf0334f -Author: Gail Badner -Date: Fri Oct 21 16:02:33 2011 -0700 - - HHH-6759 : Null properties mapped as boolean cause exception on Oracle - -commit 0d007bce7ca0448110a903ccad30b52c924af698 -Author: Gail Badner -Date: Fri Oct 21 14:21:19 2011 -0700 - - HHH-6758 : Test failure due to Oracle restrictions on Blob comparison and missing equals() and hashCode() - -commit 4eca0b5e977f38d9eeb0240cb4eadc78c61590b5 -Author: John Verhaeg -Date: Fri Oct 21 15:29:58 2011 -0500 - - HHH-6757: Changed test to really test case insensitivity and fixed reversed parameters in assertEquals methods - -commit b1923d5ab5fb4253cd0c40e8b786e4ded8b8dd1c -Author: Gail Badner -Date: Fri Oct 21 12:23:38 2011 -0700 - - HHH-6756 : Test failures due to Oracle LONG limitations - -commit 924770fa0946f46c882f5f4f727c7b77ec0890d6 -Author: John Verhaeg -Date: Fri Oct 21 11:00:35 2011 -0500 - - HHH-6755: Added BINARY datatype mapping to AbstractTransactSQLDialect (the base class for Sybase and SQL Server dialects) - -commit d12e0c09aee13a06478bb35a414f8cac11448038 -Author: John Verhaeg -Date: Thu Oct 20 16:39:34 2011 -0500 - - HHH-6749: Modified SQLServer2005Dialect.getLimitString() to add limit criteria that uses the max row value in an exclusive manner - -commit 7c2d88df8bcc4c1023b56aeaaad9622fe06cd665 -Author: Gail Badner -Date: Thu Oct 20 13:01:16 2011 -0700 - - HHH-6751 : Test failure due to inconsistent scale returned for BigDecimal properties - -commit c5733e7837a71b3588b8a9c2aed6aa57a65279f0 -Author: Gail Badner -Date: Thu Oct 20 11:30:01 2011 -0700 - - HHH-6748 : Test failures due to inconsistent numeric return type from native query - -commit 573910f5d9cf253a606c32897b2da06ce419fd56 -Merge: 4046181781 8dd9c79ebd -Author: Adam Warski -Date: Thu Oct 20 07:11:17 2011 -0700 - - Merge pull request #198 from lukasz-antoniak/HHH-6636 - - HHH 6636 - Properties listed inside tag are not audited - -commit 40461817815ab329f5f107373ff1f61ef233a7a3 -Author: renj -Date: Thu Oct 20 13:51:05 2011 +0800 - - HHH-6745 Sybase ASE dialect improvement - -commit 41d8758f9298b7e9e18f5a6bd53d7797bdc96f8e -Author: John Verhaeg -Date: Wed Oct 19 15:50:32 2011 -0500 - - HHH-6750: Modified test to expect different value for the SQL Server 2008 dialect. May have to expand the expection for other dialects. - -commit 47b7ca8c0d801f4752e5c548fa6da52cf523a6ed -Author: John Verhaeg -Date: Wed Oct 19 15:42:44 2011 -0500 - - HHH-6749: Modified test to use dialect.useMaxForLimit() to determine the expected row count - -commit 3b3f921eb57264ed2ba8500040325a62a295d883 -Author: Gail Badner -Date: Wed Oct 19 13:26:21 2011 -0700 - - HHH-6748 : Test failures due to inconsistent return type from COUNT(*) in native query - -commit 86482c630be3fe1bce3cc2be87df0f7ce54e43e3 -Author: Lukasz Antoniak -Date: Wed Oct 19 20:07:49 2011 +0200 - - HHH-3843 - Fix and test - -commit 5e668a039fde19f8a8d14d154fb9e5425369005a -Author: Strong Liu -Date: Thu Oct 20 02:01:23 2011 +0800 - - correct typo in doc - -commit 8dd9c79ebdbc60ae93f915a8bbfba318b3e0ae9c -Author: Lukasz Antoniak -Date: Wed Oct 19 19:43:12 2011 +0200 - - HHH-6636 - Comment change - -commit 9fff9862b9ae017e7bbd28d22401efaf04089cca -Author: Lukasz Antoniak -Date: Wed Oct 19 19:34:54 2011 +0200 - - HHH-6636 - Fix and test - -commit 09d40d1785075c40c1958acb1f5fca0bf5bb952e -Author: Andrei Badea -Date: Tue Oct 18 11:49:30 2011 +0200 - - HHH-3434 - hql insert doesn't work when inserting into a table with composite-id - -commit af2417cbaa452f3d419e234c4c9bc16a51f521d9 -Author: Johno Crawford -Date: Wed Oct 19 11:14:41 2011 +0200 - - HHH-6121: Hibernate statistics should log at DEBUG level instead of INFO. - -commit bf2240eba46abe2fe122ef798fab8a02e2e90524 -Author: Strong Liu -Date: Wed Oct 19 14:20:35 2011 +0800 - - update matrix plugin to avoid mutil times allocating db resources - -commit 7e1752cfb3fe08ed6abc0c2e41a68a048da49d37 -Author: Gail Badner -Date: Tue Oct 18 17:05:54 2011 -0700 - - HHH-6744 : Skip MultiPathCircleCascadeTest.testMergeEntityWithNonNullableTransientEntity() when CHECK_NULLABILITY is false and sequence/increment generator is used - -commit 35a854381818d18331c9a9413be9cc86bb1ca291 -Author: Gail Badner -Date: Tue Oct 18 15:31:08 2011 -0700 - - HHH-6744 : Disable failing test due to TransientObjectException with CHECK_NULLABILITY=false - -commit 036b9579d6ee9724838e65b987306dedcf04f8f8 -Author: Strong Liu -Date: Tue Oct 18 22:17:13 2011 +0800 - - HHH-6742 move unit tests back to src/test - -commit 98e68aab4bb29b79b1b0e394b8069fa12516000b -Author: Strong Liu -Date: Tue Oct 18 21:47:19 2011 +0800 - - HHH-6742 move unit tests back to src/test - -commit c84fb01c227f413122afcf72f410790cae72af48 -Author: Strong Liu -Date: Tue Oct 18 12:29:45 2011 +0800 - - HHH-6740 run envers tests on db matrix - -commit 02003c1aec9fd27a7857c45687491f7e1b1dec24 -Author: Emmanuel Bernard -Date: Mon Oct 17 16:36:08 2011 +0200 - - HHH-6735 Guard other FieldInterceptorHelper methods called from core - -commit 6cd8a238a56eebb7e2466771f0ae646ee37a22ef -Author: Emmanuel Bernard -Date: Mon Oct 17 16:35:22 2011 +0200 - - HHH-6735 Mention expensiveness of these operations in JavaDoc - -commit aef27fec4116d6532aebdf1fefdbe89d2f208d38 -Author: Emmanuel Bernard -Date: Mon Oct 17 16:12:05 2011 +0200 - - HHH-6735 Let Core use InstrumentationService instead of FieldIinterceptionHelper directly - -commit 2357dcc4425291f786ae5232d5e833758541ba70 -Author: Emmanuel Bernard -Date: Mon Oct 17 16:11:12 2011 +0200 - - HHH-6735 Introduces an InstrumentationService that caches isInstrumented per class - -commit fcf402c4af5b9983fb2d0b32b459dbb1efac6b76 -Author: Strong Liu -Date: Mon Oct 17 16:34:35 2011 +0800 - - HHH-6737 column names in Constraint is not quoted even column name is quoted in mapping - -commit 0645acf04f023fd7771637497680399db9302c7a -Author: Lukasz Antoniak -Date: Sat Oct 15 00:29:42 2011 +0200 - - HHH-6068 - Test case - -commit 1acc35ca4a820fe8535da960d6f50bd88d95204c -Author: Sanne Grinovero -Date: Fri Oct 14 14:13:55 2011 +0100 - - HHH-6732 Some logging trace statements are missing guards against unneeded string creation - -commit 9f1b53fd1e05af081650a35d79982293e87cd181 -Author: Sanne Grinovero -Date: Fri Oct 14 14:27:37 2011 +0100 - - whitespace consistency in ActionQueue - -commit e93a83f5c2c78ef086de7f3b02bbbc14ec9baa10 -Author: Sanne Grinovero -Date: Fri Oct 14 01:39:21 2011 +0100 - - HHH-6733 Avoid frequent usage of ReflectHelper in PojoInstantiator - -commit 0f1d6c189bb5879c18a647ba68cdb3fbb82e2ea8 -Author: Strong Liu -Date: Fri Oct 14 15:16:02 2011 +0800 - - HHH-6626 ignore PutFromLoadValidatorUnitTestCase for now - -commit fbc105aef1d3d6572b8ab0f58e475dd8af2314c4 -Author: Strong Liu -Date: Fri Oct 14 01:45:53 2011 +0800 - - skip annotation used wrong, it should be SkipForDialect, but RequiresDialect used - -commit bcae5600790bb7329bdb308686208bd1413f932e -Author: Strong Liu -Date: Thu Oct 13 21:20:48 2011 +0800 - - HHH-2304 Wrong type detection for sql type char(x) columns - -commit 2ac8c0c0072d6182af343c83928db4b8b2053427 -Author: Lukasz Antoniak -Date: Wed Oct 12 19:43:32 2011 +0200 - - HHH-6068 - Honor JPA default schema and catalog - -commit 0aa3a7b608a05bf905b44def2160f05daf033051 -Author: Emmanuel Bernard -Date: Wed Oct 12 14:50:50 2011 +0200 - - Minor Javadoc updates - -commit 92da1097aaf9a78d059422b9a84c7ff0b0132964 -Author: Strong Liu -Date: Wed Oct 12 17:40:09 2011 +0800 - - HHH-6717 oracle does not have a boolean type - -commit c180d721c0c60acd30483aabfd156faa09c4db8c -Author: Gail Badner -Date: Wed Oct 12 01:56:56 2011 -0700 - - HHH-4982 : JPA OneToOne(optional=true) not supported with @PrimaryKeyJoinColumn - -commit 8325933dffc02f0eddf1c2c4460e9fa6c11a3b9f -Author: Shaun Appleton -Date: Tue Oct 11 15:30:08 2011 +0100 - - Fix for HHH-4854 - -commit a351c520205d18f18bc1c47091b4a62629f19de1 -Author: Emmanuel Bernard -Date: Wed Oct 12 02:13:05 2011 +0200 - - HHH-6724 Move persister binding for class hierarchies to PersisterClassResolver out of {Hbm|Annotation}Binder - -commit 07a0b2931c58fbd88ce80397dde694ee99476fbc -Author: Michal Skowronek -Date: Wed Oct 5 22:56:08 2011 +0200 - - HHH-6605 - Added documentation for the Mod Flags feature - -commit 1c7532f87538b4ec892da4478d0bd5f4b3fa7533 -Author: Michal Skowronek -Date: Mon Oct 3 22:15:39 2011 +0200 - - HHH-6605 - Added Mod Flags suffix configurability - -commit 43a602b100e828adc948e08634012105ddc3cdd1 -Author: Michal Skowronek -Date: Sun Oct 2 23:37:36 2011 +0200 - - HHH-6605 - Removed some duplication in mappers code - -commit 726571b2704ed3ba48f950b785b96e2d90a32d38 -Author: Michal Skowronek -Date: Sun Oct 2 22:19:15 2011 +0200 - - HHH-6605 - Removed OVERRIDE_USING_MODIFIED_FLAG_PROPERTY global property - -commit fcb57dd17f7a0900c07ffd348226d20cf72fdb39 -Author: Michal Skowronek -Date: Sun Oct 2 21:45:55 2011 +0200 - - HHH-6605 - Moved extractRevisionNumbers test method to TestTools class - -commit d7904dbf0d18ecee09209745bd49d46805df79c2 -Author: Michal Skowronek -Date: Wed Aug 24 23:36:04 2011 +0200 - - Moved Test logic to separate classes - Added new test cases - Merge logic for CollectionChangeWorkUnits - -commit 313bb01c50e596e7fdc9939b372a6dc8884b1931 -Author: Michal Skowronek -Date: Wed Aug 24 16:12:15 2011 +0200 - - Fix for failing tests - -commit 9c4b385bdb387793d8dcea2f2534f6b2bbd91295 -Author: Michal Skowronek -Date: Mon Aug 15 22:00:45 2011 +0200 - - Modified Flags feature - tracking changes on property level - Extended some of already existing test cases - More units to add - -commit 8473c4a47b1110aeef637a8ff56ec64f159727f7 -Author: John Verhaeg -Date: Tue Oct 11 11:20:13 2011 -0500 - - HHH-6722: Removed extraneous assertion from testCreateAndDropOnlyType method that causes failures on dialects that don't support drop table if exists - -commit 4cb4a2599460cfeb632d13a4d4c4ce72fcd01700 -Author: Strong Liu -Date: Tue Oct 11 17:20:18 2011 +0800 - - HHH-6715 Integrator classes not being located correctly - -commit 82b167e5f1f7357b281ab572d4a3db44c815d82a -Author: Guilherme Silveira -Date: Fri Oct 7 01:22:25 2011 -0300 - - removing useless variables - removing useless logical conditions - extracted some methods to improve cyclomatic complexity - extracted loop into two pieces to remove extra useless variables and minimize complexity - -commit f951e15feafef364c14e437df60123389d02c33f -Author: Strong Liu -Date: Sun Oct 9 16:19:52 2011 +0800 - - HHH-6717 oracle does not have a boolean type - -commit 884f6a245510f00c271c9d13eb70285106842445 -Author: Strong Liu -Date: Sun Oct 9 14:36:15 2011 +0800 - - HHH-4881 - restrict polymorphic query results - -commit e05b3a6c3846a58ebbc229bdc7d91c37d66d15df -Author: James Gilbertson -Date: Sat Oct 8 00:25:46 2011 -0600 - - HHH-4881: Added test for Path.type() - -commit 972aa060a6342118148974f7a522d424f8564de8 -Author: James Gilbertson -Date: Sat Oct 8 00:24:45 2011 -0600 - - HHH-4881: Keep track of the owning expression so we can get the path identifier - -commit 1b30c4a9f2c516fe8d8635bf6c3f0c356827b95c -Author: James Gilbertson -Date: Fri Oct 7 23:27:55 2011 -0600 - - HHH-4881: Merged test case from HHH-5282 - -commit fb1b4837215bb08db509c508e83e29ac898922d8 -Author: James Gilbertson -Date: Fri Oct 7 23:10:20 2011 -0600 - - HHH-4881: Added test cases for parameterized discriminator type - -commit 308847f526f47b6d9127b6f46f534447be50aa15 -Author: James Gilbertson -Date: Fri Oct 7 20:09:43 2011 -0600 - - HHH-4881: Use Loadable.getDiscriminatorValue() for nullSafeSet - -commit 11ef3e07657b4d987ad865e804d34838c3058fd1 -Author: James Gilbertson -Date: Fri Oct 7 20:08:09 2011 -0600 - - HHH-4881: Keep track of the actual value used for the discriminator - -commit 81ad5c0effd6462f7afaf7a03178e944c9d7cd47 -Author: Strong Liu -Date: Sun Oct 9 12:39:19 2011 +0800 - - correct typo in javadoc - update log trace level - -commit 7b1c172b844ff6cc5862027b8b16b8c53abf6cc7 -Author: Strong Liu -Date: Sat Oct 8 15:03:14 2011 +0800 - - HHH-6716 envers should set the TCCL to the envers classloader before constructing a dom4j instance. This will allow applications to use their own version of dom4j - -commit b307a801a748eed42810e10d7e413f185953fe43 -Author: Gail Badner -Date: Mon Oct 3 14:04:52 2011 -0700 - - Immutable natural key lookup not recognized using query cache - -commit 7d70a909c5b619ee30be40295525ef6a275fb54b -Author: John Verhaeg -Date: Mon Oct 3 00:41:32 2011 -0500 - - HHH-5419: Modified HQL rendering of COUNT function so that when a non-distinct entity with an ID is specified as a parameter, it renders a star instead of the ID attribute(s). This allows for greater support across DBs, since some do not support the previous rendering of multiple ID attributes when the ID happens to be a composite ID. - -commit 9039e4d29efeda7de24411b8100e205deff65964 -Author: Adam Warski -Date: Sat Oct 1 10:40:11 2011 +0200 - - HHH-6696: additional javadoc explanation - -commit 550865e3d306b67d3c6dcd860cb0e7c71a8d5ad4 -Merge: 8f520e1126 b622119104 -Author: Adam Warski -Date: Sat Oct 1 01:37:44 2011 -0700 - - Merge pull request #176 from lukasz-antoniak/HHH-6696 - - HHH-6696 - Allow specifying revision listener apart from @RevisionEntity annotation - -commit 8f520e112618e839bf10b6451b4445d4da1a43e5 -Author: Strong Liu -Date: Sat Oct 1 02:33:46 2011 +0800 - - HHH-6704 POSTGRESQL test failures - -commit 56ce194a2974e941c6f4f00193ee402dccef467d -Author: Strong Liu -Date: Sat Oct 1 02:30:09 2011 +0800 - - HHH-6702 mysql 51 test failures - -commit 3c07e5d6ba812fe2d4003db2edfb66f7a0af1ef6 -Author: Strong Liu -Date: Sat Oct 1 02:27:03 2011 +0800 - - HHH-6702 mysql 51 test failures - -commit 3d3b5b85f5e003e1a68c4d427bc99a80a05e8905 -Author: Strong Liu -Date: Sat Oct 1 01:21:14 2011 +0800 - - HHH-6703 id element has 'column' attribute, then the pk column is nullable in ddl created by schema export - -commit b622119104da5c3dd5e19db50ad58abe0d70efe5 -Author: Lukasz Antoniak -Date: Fri Sep 30 16:58:06 2011 +0200 - - HHH-6696 - Typical test case - -commit 67645497841b4795724ecc42e39a4a529b02747a -Author: Strong Liu -Date: Fri Sep 30 18:35:16 2011 +0800 - - add jboss nexus user guide to readme - -commit 30a0c3843a4b46f8b3077a195a09e903c77bec71 -Author: Strong Liu -Date: Fri Sep 30 17:49:46 2011 +0800 - - PostgreSQL does support 'drop table if exists' syntax (hibernate jira down) - -commit 9d7114ec55ebc83cc84a78ea236ef4940f25aaca -Author: Strong Liu -Date: Fri Sep 30 17:23:36 2011 +0800 - - HHH-6702 mysql test failures - -commit e4480f905c7cdf3e6c51a3aace7179fec1b41feb -Author: Strong Liu -Date: Fri Sep 30 17:19:50 2011 +0800 - - HHH-6702 mysql test failures - -commit a34c99a34c3b052b67578d00f7c590dacc99774b -Author: Strong Liu -Date: Fri Sep 30 17:09:07 2011 +0800 - - HHH-6697 EntityManager.persist should through EntityExistsException instead of PersistenceException (from https://github.com/hibernate/hibernate-core/pull/178) - -commit 45f3ced6daf96f1a697f350e134512562b48d3fd -Author: Lukasz Antoniak -Date: Thu Sep 29 20:50:07 2011 +0200 - - HHH-6696 - RevisionListener class configuration parameter - -commit cbec206e2f3da3e9ae3b451a7a2c204848cc5780 -Author: Emmanuel Bernard -Date: Thu Sep 29 15:36:58 2011 +0200 - - HHH-6691 Clarify exception thrown upon impossible unwrap operation - -commit 02ab02d3feffd581e8a833798d2ea27b9b3ff9c7 -Author: Steve Ebersole -Date: Wed Sep 28 22:16:53 2011 -0500 - - prep 4.0.0.CR4 - -commit fccd878f6eeff50f608dd17ca469aea1216326cb (tag: 4.0.0.CR4) -Author: Steve Ebersole -Date: Wed Sep 28 22:08:33 2011 -0500 - - prep 4.0.0.CR4 - -commit 333d989784560e4ee9229527e6390641e131f136 -Author: Strong Liu -Date: Wed Sep 28 22:24:29 2011 +0800 - - correct db allocator dbs - -commit 21ef67b12f0cb9dde1c4a3c8970cc04d5d684e13 -Author: Strong Liu -Date: Wed Sep 28 21:31:45 2011 +0800 - - add 'hibernate-matrix-skip-unittest' property to matrix plugin, which can be used to skip unit tests when running functional tests on DB matrix (to save some time) - -commit e655163c2494e29cd8d45a083bcd570b7122553e -Author: Strong Liu -Date: Wed Sep 28 15:50:54 2011 +0800 - - change ehcache disk location used for testing to avoid conflicts - -commit 3c4ed4fe6b2592df109f730b88678e2d05632f08 -Author: Gail Badner -Date: Tue Sep 27 23:02:57 2011 -0700 - - HHH-5832 : JPA Query and IdClass Causing NullPointerException - -commit e14e47968f8238192f2abf291ac549c55dcfd708 -Author: Steve Ebersole -Date: Tue Sep 27 12:45:07 2011 -0500 - - HHH-6683 - Consolidate (consistency) building of service registries - -commit f4fa17625591959322e179b1ffb7cd0feaa5281a -Author: Steve Ebersole -Date: Tue Sep 27 11:49:17 2011 -0500 - - HHH-6683 - Consolidate (consistency) building of service registries - -commit 8c691d5fcd403e606093a2194c42ffd476353d35 -Author: Steve Ebersole -Date: Tue Sep 27 11:03:44 2011 -0500 - - HHH-6663 - Proof/edit Services.xml in devguide - -commit 4a3db930d6518a7e34bc692269ab18e053756573 -Author: Steve Ebersole -Date: Thu Sep 15 15:37:38 2011 -0500 - - HHH-6660 - Edit Transactions.xml in devguide - -commit 4a3a59047ff1cc7faf414c5651f35b7c664d42c0 -Author: Galder Zamarreño -Date: Tue Sep 27 11:34:21 2011 +0200 - - HHH-6674 Upgraded to Infinispan 5.0.1.FINAL - -commit 50bbfa1002a97e1f64b710a0c1da08de62ab44ff -Author: Strong Liu -Date: Tue Sep 27 13:04:30 2011 +0800 - - HHH-5326 Added stats for UpdateTimestamp region - -commit 772bf93fcf5eb116287180ba3efca3e4d40afd01 -Author: Alex Snaps -Date: Sun Sep 25 12:34:43 2011 -0700 - - Added stats for UpdateTimestamp region - -commit bd54fe08f50210945805948fe376f614311d20d2 -Author: Strong Liu -Date: Tue Sep 27 01:00:49 2011 +0800 - - HHH-6677 skip @BeforeClassOnce / @AfterClassOnce if test is ignored - -commit 3fe833456b30db08376b1004db4b09330259c9b5 -Author: Alex Snaps -Date: Sun Sep 25 12:38:50 2011 -0700 - - Check whether lock is null before logging, as it will probably be - -commit 0669057f0acb87d0b11fc97ec0c63ca72f4a7312 -Author: Strong Liu -Date: Mon Sep 26 14:30:06 2011 +0800 - - fix matrix plugin issue - -commit 67f803c69dde7b2d4f9b56f7503cca8df72e63b6 -Author: Strong Liu -Date: Mon Sep 26 00:37:40 2011 +0800 - - HHH-6676 change the Intellij metadata generated by gradle idea task configuration (max heap size to 512M by default) - -commit b552f70726a78c5e50c7f1aabc5e85ae88f44532 -Author: Strong Liu -Date: Mon Sep 26 00:29:13 2011 +0800 - - HHH-6675 upgrade dependencies - -commit 3e3250e2a96c9f098626ba4b72e3d0fe143d48ab -Author: Gail Badner -Date: Fri Sep 23 11:04:21 2011 -0700 - - HHH-6669 : Manual SchemaExport broken due to temp code comments - -commit 24e3d1ce7277325278a986c0f355cdee2fc4dafd -Author: Strong Liu -Date: Fri Sep 23 16:08:05 2011 +0800 - - HHH-6456 don't know why this fix lost - -commit d56ebfb4431b921b7ce458563dc3661cacb71761 -Author: Gail Badner -Date: Thu Sep 22 12:53:40 2011 -0700 - - HHH-6625 : EntityPrinter.toString() fails for non-POJO entities (happens when logging) - -commit e20a0e6a9f5806864c9a7c97d9928d5b8c677d9e -Author: Emmanuel Bernard -Date: Tue Sep 20 18:51:14 2011 +0200 - - HHH-6668 Resource should not have heading / (hibernate.cfg.xml schema) - -commit 2a15694fa115ae4d3784ff0fd58ab1b61cf34413 -Author: CodingFabian -Date: Thu Sep 15 15:11:44 2011 +0200 - - ColumnName cache now uses a map which supports multithreaded access. - The implementation now uses ConcurrentHashMap which provides faster multithreaded gets and safe writes. - -commit 999526c3c36cbc0c9df0ba52c49e46da2bb8e764 -Author: Strong Liu -Date: Thu Sep 15 23:25:29 2011 +0800 - - minor change, correct javadoc and typo - -commit 50db873e2c4fac1619595a8758f71153fdae0563 -Author: Strong Liu -Date: Thu Sep 15 22:45:08 2011 +0800 - - correct unmappable non-utf-8 characters - -commit 1e1a6ebe0418de3755f38b982b5d69bc369439d6 -Author: Strong Liu -Date: Thu Sep 15 22:07:00 2011 +0800 - - HHH-6659 upgrade maven wagon plugin to 1.0 - -commit afc94dad59fcd74fdb4fb3bd2eac88603b1b2701 -Author: Steve Ebersole -Date: Wed Sep 14 21:27:11 2011 -0500 - - prep 4.0.0.CR3 - -commit 55da9dacdfc7a5d28f65aca3776c3fccc8f9d669 (tag: 4.0.0.CR3) -Author: Steve Ebersole -Date: Wed Sep 14 21:24:56 2011 -0500 - - prep 4.0.0.CR3 - -commit 1d0740484f99f68c719c3bc797269f2c9c8ebd7e -Author: Steve Ebersole -Date: Wed Sep 14 21:11:03 2011 -0500 - - HHH-6641 - Document services - -commit 7b3a481af1228018a8cde2a999e5360af1b52a62 -Author: Strong Liu -Date: Thu Sep 15 10:09:03 2011 +0800 - - HHH-6658 upgrade jboss-logging-tools to 1.0.0.Beta7 - -commit 6dc324fcef9dd041937290580fbcfbfc68dae38a -Author: Strong Liu -Date: Thu Sep 15 01:12:40 2011 +0800 - - HHH-6655 test case - -commit 4ee000ecf5c58e0d9787d6b3544d37920332ff8a -Author: Strong Liu -Date: Wed Sep 14 14:25:12 2011 +0800 - - HHH-6654 upgrade ant to 1.8.2 - -commit 0fd15e1f37ff9f9d557000b23b1c7c7cc2499eeb -Author: Steve Ebersole -Date: Tue Sep 13 20:15:03 2011 -0500 - - HHH-6645 - Fix entity information - -commit d652de654c8020de24d68a1205474ba8679af2b5 -Author: Steve Ebersole -Date: Tue Sep 13 20:08:42 2011 -0500 - - HHH-6653 - Clean up JAXB generated classes - -commit 9f214d80182390c9aabd446534a6f34047115ee6 -Author: Steve Ebersole -Date: Tue Sep 13 18:43:35 2011 -0500 - - HHH-6640 - Add ability for Integrator to prepare ServiceRegistryBuilder and MetadataImplementor as part of lifecycle - -commit 6cd04c2fb71cadc07789d0aabe2a4e1a8ae3a527 -Author: Strong Liu -Date: Tue Sep 13 16:46:38 2011 +0800 - - HHH-6650 upgrade jacc dependency - -commit 53626310cf27cd3507909af759d93dd55dd3f6fd -Author: Adam Warski -Date: Mon Sep 12 09:01:33 2011 +0200 - - HHH-6647: requesting an upgraded lock when looking for the last audit record to make sure the same one isn't found by two concurrent transactions - -commit 6df15ef85a0640e2d76e59494c8e4236c933382f -Author: Adam Warski -Date: Mon Sep 12 08:40:29 2011 +0200 - - Typo in method name - -commit f4c36a10f8366f97fa14424cc33178d4bd55ab0b -Author: John Verhaeg -Date: Fri Sep 9 10:30:01 2011 -0500 - - HHH-6439: Added getAddUniqueConstraintString method to Dialect and updated UniqueKey classes to use it - -commit 88b6b4c67b7d67487d0e7fbb81bde33adb142c5d -Author: John Verhaeg -Date: Fri Sep 9 09:41:02 2011 -0500 - - HHH-6581: Changed default access type determination to look for an explicit access annotation at the top of the hierarchy before falling back to the current strategy of examining identifiers - -commit 47d76b365cfdd55e15759fc424d808e50b9a82ae -Merge: 050e42fb51 578de2e5a2 -Author: Adam Warski -Date: Fri Sep 9 01:56:17 2011 -0700 - - Merge pull request #166 from lukasz-antoniak/HHH-6614 - - HHH-6614 - Envers bad performance without invoking EntityManager.clear() - -commit 050e42fb5110bd81a589dd082954d3f276a39073 -Author: Steve Ebersole -Date: Thu Sep 8 17:11:29 2011 -0500 - - HHH-6641 - Document services - -commit f4506a4fd9679d5e82a53217de4138082f495a60 -Author: Steve Ebersole -Date: Thu Sep 8 16:51:28 2011 -0500 - - HHH-6641 - Document services - -commit db7cdb95a819073b0a438bc1e3338242c0688596 -Author: Steve Ebersole -Date: Thu Sep 8 16:41:40 2011 -0500 - - HHH-6641 - Document services - -commit 578de2e5a25b6c0dae127bdd30a7e78b0f7417ad -Author: Lukasz Antoniak -Date: Thu Sep 8 22:48:34 2011 +0200 - - HHH-6614 - Fix and test - -commit ed9c2bb61c5e8e6ed8979a66e2244abe94b7d0eb -Author: Strong Liu -Date: Wed Sep 7 20:17:45 2011 +0800 - - HHH-6635 C3P0: hibernate.c3p0.* configuration properties not properly parsed - -commit fcf43b2933fd649d76e98b50937e18bf8e5fa920 -Author: Strong Liu -Date: Wed Sep 7 16:12:22 2011 +0800 - - HHH-6635 C3P0: hibernate.c3p0.* configuration properties not properly parsed - -commit 102f9b3876ecb166873a942a0fb3b4e80ef7c3de -Author: Emmanuel Bernard -Date: Wed Apr 6 18:09:47 2011 +0200 - - HHH-6084 Add tests for id strategy provider in hem - -commit 9b2dedc6819884861d97ce184f7bd4fed5d440e1 -Author: Emmanuel Bernard -Date: Tue Apr 5 19:53:51 2011 +0200 - - HHH-6084 define id strategy provider in HEM (waiting for MetadataImpl replacement in 4.1) - - Conflicts: - - hibernate-entitymanager/src/main/java/org/hibernate/ejb/Ejb3Configuration.java - -commit 7c39b19ab23344d27f912d83382c8b96574eca71 -Author: Emmanuel Bernard -Date: Wed Sep 7 09:39:41 2011 +0200 - - HHH-6091 Move DefaultIdentifierGeneratorFactory; use MutableIdentifierGeneratorFactory for public contracts - -commit 88a7edbdd71f32227b0989f433f6e8184b8b1b89 -Author: Emmanuel Bernard -Date: Tue Sep 6 19:07:22 2011 +0200 - - HHH-6091 Make IdentifierGeneratorFactory a service - - Create a MutableIdentifierGeneratorFactory to host the register contract - Make MutableIdentifierGeneratorFactory a default StandardServiceInitiator - -commit d71a15d1c1614f05eaf75ff44f8c30bb21f91560 -Author: Sanne Grinovero -Date: Wed Aug 31 23:30:45 2011 +0200 - - HHH-6626 Improve PutFromLoadValidatorUnitTestCase to be less timesensitive - -commit 4b9517d0d95652f5dcde10ba9afd2f952c8be020 -Author: Strong Liu -Date: Tue Sep 6 14:29:38 2011 +0800 - - HHH-6634 upgrade to jandex 1.0.3.Final - -commit 53cdcc5607aedfc980659017a4d85514fcadbf42 -Merge: 37c3266edd 7d593e32e2 -Author: Strong Liu -Date: Mon Sep 5 19:25:37 2011 -0700 - - Merge pull request #165 from lukasz-antoniak/HHH-6533 - - HHH-6533 - ByteTypeDescriptor is not working properly - -commit 7d593e32e2bb01bf236899c8023ed4e8efc483af -Author: Lukasz Antoniak -Date: Mon Sep 5 20:15:29 2011 +0200 - - HHH-6533 - Fix and test - -commit 37c3266eddb180055bf8c8112659104bde3e7b21 -Author: Strong Liu -Date: Thu Sep 1 15:00:15 2011 +0800 - - prepare for next 4.0.0 development - -commit bd5a0cf6d56283b2135c9fde5f3689b748016d56 (tag: 4.0.0.CR2) -Author: Strong Liu -Date: Thu Sep 1 12:54:43 2011 +0800 - - prepare for 4.0.0.CR2 release - -commit bb476c96107522053e10cfc3ae5e4cc12816c1f1 -Author: Steve Ebersole -Date: Wed Aug 31 23:50:09 2011 -0500 - - prepare for 4.0.0.CR2 release - -commit 020c9192458220d1d1fb5a69423e54c67bfd09a5 -Author: Steve Ebersole -Date: Wed Aug 31 23:18:02 2011 -0500 - - HHH-6412 - hibernate version is not injected by the injection plugin - -commit b0df669cbc848b2d41ea53f40abdc90a6d885436 -Author: Gail Badner -Date: Wed Aug 31 14:56:55 2011 -0700 - - HHH-6619 : Move org.hibernate.pretty.Printer to org.hibernate.internal.util.EntityPrinter - -commit 25acc5078e414c178eb03c5b0d7a713c8e12c8a4 -Author: Gail Badner -Date: Wed Aug 31 14:24:20 2011 -0700 - - HHH-6020 : Move to JBossTS caused some test failures in hibernate-envers - -commit 938c4a870c0c05af467cda8519f4f6dfa2228aa6 -Author: Steve Ebersole -Date: Wed Aug 31 16:16:59 2011 -0500 - - HHH-6384 - hibernate.hbm2ddl.auto=create does not drop tables - -commit 09bba73a25767034ceda1b85d2ac93a11d8891c5 -Author: Gail Badner -Date: Fri Aug 19 17:33:57 2011 -0700 - - HHH-6384 : hibernate.hbm2ddl.auto=create does not drop tables - -commit 61d60d0c8827063a7401291134db6b578c03dbb4 -Author: John Verhaeg -Date: Wed Aug 31 14:14:13 2011 -0500 - - HHH-6623 Turned off hibernate.show_sql in core's test/resources/hibernate.properties, which seems to be a sufficient workaround for now - -commit 2be950171045ba924686228bf3600d3182248bff -Author: Strong Liu -Date: Thu Sep 1 02:42:28 2011 +0800 - - update gradle wrapper version to 1.0-m3 - -commit ee3dd3c5ff0383100607e240fd998372f992fa36 -Author: Emmanuel Bernard -Date: Wed Aug 31 15:04:13 2011 +0200 - - HHH-6621 Upgrade Hibernate Commons Annotations to 4.0.0.CR2 - -commit 1f2f7270db578d53d33cf05c71bd4ed133b51821 -Author: Strong Liu -Date: Thu Sep 1 00:08:29 2011 +0800 - - HHH-6618 running hibernate functional test cases on DB matrix - -commit 45993edbc86353188841816391dc80c63ae70372 -Author: Emmanuel Bernard -Date: Wed Aug 31 16:00:17 2011 +0200 - - HHH-6622 Upgrade JBoss Logging to GA version - -commit aa5bcfa2ccce320ac54fb9de28278d58edaf75da -Author: Strong Liu -Date: Tue Aug 30 23:29:09 2011 +0800 - - HHH-6618 running hibernate functional test cases on DB matrix - -commit 822ae2a135e1a9dc55b492315cb1e580d913178a -Author: Strong Liu -Date: Tue Aug 30 18:39:35 2011 +0800 - - HHH-6588 rollback to use "org.hibernate.SQL" category to log sql - -commit 75e0ba4ce353629beee937a447d8252069fddcb0 -Author: Strong Liu -Date: Tue Aug 30 18:20:31 2011 +0800 - - HHH-6588 rollback to use "org.hibernate.SQL" category to log sql - -commit 3b7bdb8ddc3f7c7807e5aa1fc85853060097a6b8 -Author: Strong Liu -Date: Tue Aug 30 15:20:51 2011 +0800 - - HHH-6618 enable idea support for matrix sourceset - -commit e941eca2d55614d8daae991bc299a2ee9cc298ee -Author: Strong Liu -Date: Tue Aug 30 14:06:13 2011 +0800 - - HHH-6618 running hibernate functional test cases on DB matrix - -commit 68f7d9b71324c7c68d190d2874f673986769d591 -Author: Steve Ebersole -Date: Mon Aug 29 18:38:16 2011 -0500 - - HHH-6586 - Document metamodel package as experimental and unsupported - -commit 29bce38307b4f810424482e3490d36beacef1e87 -Author: Strong Liu -Date: Mon Aug 29 14:20:24 2011 +0800 - - HHH-6606 ignore test org.hibernate.metamodel.source.annotations.util.EmbeddableHierarchyTest#testEmbeddableHierarchy - -commit 1525067792e5f678a716a833958fb9426b4f3cb2 -Author: Lukasz Antoniak -Date: Sun Aug 28 09:25:39 2011 +0200 - - HHH-6594 - Fix and test - -commit 927539f24a20a68b20b892404c38e0192d6b6382 -Author: Scott Marlow -Date: Wed Aug 24 10:41:14 2011 -0400 - - HHH-6601 use DEBUG for logging of missing package-info messages - -commit 1ddc599803bafa9f2e1d1420ea74a8010bd3cb61 -Merge: 857a2268f9 b3bd4f7aae -Author: Strong Liu -Date: Wed Aug 24 13:08:19 2011 +0800 - - Merge remote branch 'lukasz/HHH-5848' - -commit 857a2268f9966601536e1821843b73e4ba1eccc2 -Merge: af0043ae6a 40474a69fa -Author: Adam Warski -Date: Sun Aug 21 23:23:48 2011 -0700 - - Merge pull request #157 from lukasz-antoniak/HHH-5930-4.x - - HHH-5930 [branch 4.x] - Remove hibernate-tools dependency from runtime scope - -commit 40474a69fadd1d7c58881a02e4f5a371c9989403 -Author: Lukasz Antoniak -Date: Sun Aug 21 17:53:21 2011 +0200 - - HHH-5930 - Removed Ant and Hibernate Tools dependency from Envers build - -commit af0043ae6a55de73c467bc5c5ab597360457291c -Author: Strong Liu -Date: Sat Aug 20 10:58:39 2011 +0800 - - HHH-5789 Hibernate 3.5.4 doesn't build with OpenJDK 6b18-1.8.2 or greater - -commit 77baa2aa6400852a731ed206de365896074d1e19 -Author: Strong Liu -Date: Sat Aug 20 10:45:20 2011 +0800 - - HHH-5789 Hibernate 3.5.4 doesn't build with OpenJDK 6b18-1.8.2 or greater - -commit 8ee4156a1a493541a31c7df906b254d513833e99 -Author: Strong Liu -Date: Sat Aug 20 10:33:02 2011 +0800 - - HHH-6577 code style format - -commit d2045611aa0d9fb23e74597c94bfed470563c872 -Merge: aee2312475 0962a5420f -Author: Strong Liu -Date: Sat Aug 20 10:29:45 2011 +0800 - - Merge remote-tracking branch 'cubrid/master' - -commit aee2312475c421a1f5f1c91e2dc5333db4cb46c6 -Author: Gail Badner -Date: Fri Aug 19 14:20:42 2011 -0700 - - HHH-1645 : Refresh with LockMode on an unitialized proxy does not work - -commit 4cbbdb65fd2ee473294e83c9b339ca04cb32dfd2 -Author: Steve Ebersole -Date: Wed Aug 17 21:26:53 2011 -0500 - - release 4.0.0.CR1 - -commit 41eb04fe81ac9d09cb6bdf8eb649a65a236527e0 (tag: 4.0.0.CR1) -Author: Steve Ebersole -Date: Wed Aug 17 21:05:19 2011 -0500 - - release 4.0.0.CR1 - -commit 0962a5420f2adf3dd3f844b4b4e1c53e5fa9b3c7 -Author: Esen Sagynov -Date: Wed Aug 17 18:42:43 2011 -0700 - - Added CUBRIDDialect source. Extended StandardDialectResolver by adding CUBRIDDialect info. - -commit fbb2c68b6b9d842c4f5e083b287a83cc3d88d4f1 -Author: Gail Badner -Date: Tue Aug 16 18:00:10 2011 -0700 - - HHH-6370 : HSQLDB fixes reported issues and adds minor enhancement (Fred Toussi) - -commit 01604bef94c10d7936befe4c98c5170f3e4db7ea -Author: Steve Ebersole -Date: Tue Aug 16 18:10:16 2011 -0500 - - HHH-6503 - Develop Set-style plural attribute support for new metamodel - -commit 859b61a7c4e315bfabda279ab3bbbb282a5df963 -Author: Steve Ebersole -Date: Fri Aug 12 11:47:34 2011 -0500 - - HHH-6503 - Develop Set-style plural attribute support for new metamodel - -commit 524443d848508e0fc0b83b27cd6e8bf86f3a9c0e -Author: Hardy Ferentschik -Date: Tue Aug 16 18:03:53 2011 +0200 - - HHH-6268 Fixing test errors caused by NullPointerExceptions and refactoring annotation processing code in EntityClass - -commit 39da72cadbf5f3d0a632de3fdb5d9a0f29e9a0ae -Author: John Verhaeg -Date: Tue Aug 16 10:41:40 2011 -0500 - - HHH-6268: Oops, shouldn't have been part of this push - -commit b3bd4f7aae5e57768285c09bff652004115d6a4f -Author: Lukasz Antoniak -Date: Mon Aug 15 22:18:49 2011 +0200 - - HHH-5848 - Fix and test - -commit adf627159447e872ad26e42d8dcaba802cf25aed -Author: JPAV -Date: Tue Jun 14 13:10:12 2011 -0500 - - HHH-6268 Bound JPA callback methods to entities, including those defined by default listeners, and added new method to Integrator that handles MetadataImplementor instead of Configuration, modifying affected classes accordingly. BeanValidationIntegrator and EnversIntegrator still need to be implemented but require other portions of metamodel to be completed first. - -commit 05cec5a4ba1dd72f9a772994f2cab20f01c7cb1d -Author: Strong Liu -Date: Mon Aug 15 15:33:39 2011 +0800 - - fix bug in previous re-fact - -commit 4ccc536c9926d29e41ada3001afe41e4f49d6400 -Author: Strong Liu -Date: Mon Aug 15 15:30:55 2011 +0800 - - HHH-6573 change to use ClassLoaderService to locate service initiator - -commit 71adfabca89cff01e758137078a0f479e339345f -Author: Strong Liu -Date: Mon Aug 15 14:55:06 2011 +0800 - - simple code refact - -commit dc7feab061395b66adc45eef6635377bec8172cb -Author: Gail Badner -Date: Thu Aug 11 18:00:28 2011 -0700 - - HHH-6498 HHH-6337 : Updates to support single-table inheritance using new metamodel - -commit 2faeb783a49be31f7ad04849650a8ffc5685fc77 -Author: Scott Marlow -Date: Thu Aug 11 11:04:22 2011 -0400 - - HHH-6564 support pre-AS7 transaction manager lookup and AS7-AS4 usertransaction lookup - -commit e1f86077c29b5d7f90f64f1f5f6fcb99f0ab75fe -Author: Gail Badner -Date: Wed Aug 10 13:45:29 2011 -0700 - - HHH-6565 : Unique constraint columns that already exist in the table are not found - -commit 446fcc6af8993f0bf8ac23d72370793827a493ac -Author: Gail Badner -Date: Tue Aug 9 14:06:27 2011 -0700 - - HHH-6563 : NullPointerException using annotations source if a unique constraint is not mapped with a constraint name - -commit 5ee60b1ca4e8be5a0c905ccce7545a3a2aae0bbf -Author: Gail Badner -Date: Mon Aug 8 12:46:43 2011 -0700 - - HHH-6560 : Discriminator match value is not initialized in root EntityBinding - -commit 50ee956d4996df3325bcf6483170ac869ff56f65 -Author: Strong Liu -Date: Mon Aug 8 14:04:53 2011 +0800 - - HHH-6262 Bind @EmbeddedId - -commit 89991f8610b5c723ba9bbeff7339c60435fbe5d6 -Author: Hardy Ferentschik -Date: Fri Aug 5 12:32:00 2011 +0200 - - HHH-6537 Adding check for @MapsId annotation to AssociationAttribute. - -commit 21ea415f61784e1d5c9dc0974320087f3560d565 -Author: Hardy Ferentschik -Date: Thu Aug 4 17:26:12 2011 +0200 - - HHH-6537 Upgrading classmate version - -commit 6065d57e39b80bd2b8b1daf0ed57873a9c8c7d8d -Author: Gail Badner -Date: Thu Aug 4 18:58:10 2011 -0700 - - HHH-6547 : Basic properties cannot be made nullable in HBM XML - -commit cb5a74fd5139b354ec52f115d5a146509eb15e06 -Author: Gail Badner -Date: Thu Aug 4 10:11:12 2011 -0700 - - HHH-6337 : Add EntityBinding methods to support single-table inheritance - -commit eb766cc0f77adcf56625625890dcd8bd00a93081 -Author: Hardy Ferentschik -Date: Thu Aug 4 16:06:52 2011 +0200 - - HHH-6537 Getting AssociationAttribute into shape. Parsing more association attributes and implementing missing attributes in ToOneAttributeSourceImpl. - - Preperation for adding @MapsId - -commit 683478674cc4041550199c00bd34852751b55688 -Author: Hardy Ferentschik -Date: Wed Aug 3 08:56:57 2011 +0200 - - HHH-6537 formatting - -commit cefa777c0089eac7456d50e866eaf612585c905f -Merge: 2d52494b90 72078ade4d -Author: Scott Marlow -Date: Wed Aug 3 19:20:27 2011 -0700 - - Merge pull request #147 from scottmarlow/master - - HHH-6543 change JBoss TM jndi string to java:jboss/TransactionManager - -commit 72078ade4d1f293d5c49a972c1822d4ea0ad3644 -Author: Scott Marlow -Date: Wed Aug 3 22:12:03 2011 -0400 - - HHH-6543 change JBoss TM jndi string to java:jboss/TransactionManager - -commit 2d52494b90507ba676ef2f444500feb9349785eb -Author: Gail Badner -Date: Wed Aug 3 17:06:54 2011 -0700 - - HHH-6423 : Add JoinedIterable - -commit 660a7cbef1eadfd1c2a6da5b853fa752e9cc26af -Author: Strong Liu -Date: Thu Aug 4 00:04:43 2011 +0800 - - simple code format - -commit 99e184883a825f974de81950bd24a21f5b4ca1b4 -Author: Hardy Ferentschik -Date: Wed Aug 3 15:20:06 2011 +0200 - - Setting development version - -commit 3bd2b171abc81080e05ed22127730446f123d451 (tag: 4.0.0.Beta5) -Author: Hardy Ferentschik -Date: Wed Aug 3 14:36:36 2011 +0200 - - Setting release version to 4.0.0.Beta5 - -commit b5ce077a091240e49d9ff04cf4be798ae02f61a9 -Author: Hardy Ferentschik -Date: Wed Aug 3 14:29:21 2011 +0200 - - Updating changelog for version 4.0.0.Beta5 - -commit 1d6a5d7fe1348ca67089802c9f94fbb7dec39cdb -Author: Gail Badner -Date: Tue Aug 2 16:56:59 2011 -0700 - - HHH-6529 : Type is not resolved for plural attributes - -commit 5dc04960d6ccb4f54f49c2fac83a0ccd2874fa2f -Merge: 0ff0e6e062 07d15fb39b -Author: Scott Marlow -Date: Tue Aug 2 13:55:31 2011 -0700 - - Merge pull request #146 from scottmarlow/master - - HHH-6536, set TCCL to the Hibernate classloader to workaround antlr loading class by name - -commit 07d15fb39b1ac7e28546ae5a67b387772ffbe33a -Author: Scott Marlow -Date: Tue Aug 2 14:08:19 2011 -0400 - - HHH-6536, set TCCL to the Hibernate classloader - -commit 0ff0e6e0627f4173d772ebe29e6b7e4547bca733 -Author: Hardy Ferentschik -Date: Tue Aug 2 17:32:20 2011 +0200 - - HHH-6535 Implementing support for @o.h.a.Target also fixing bug using ConfiguredClass.getClass() instead of ConfiguredClass.getConfiguredClass - -commit b336bf5d539e0758a2147f8b0f1b249f783cc8f7 -Author: Hardy Ferentschik -Date: Tue Aug 2 12:40:02 2011 +0200 - - HHH-6501 Adding support for @Parent in EmbeddedClass - -commit 6fb38e45ae65ba28cac9f9f7dde5ffa39c70a073 -Author: Hardy Ferentschik -Date: Tue Aug 2 12:26:12 2011 +0200 - - HHH-6501 Pushing custom tuplizer into ConfiguredClass - -commit b1478946dbf04fda6ee937d1d54033e47939e71b -Author: Hardy Ferentschik -Date: Tue Aug 2 12:00:05 2011 +0200 - - HHH-6393 Adding more tests and implementing nested embeddables - -commit e875bb6004357e63c94f1f186c71da1685502e8a -Author: Hardy Ferentschik -Date: Mon Aug 1 18:08:49 2011 +0200 - - HHH-6393 First cut of attribute overrides for embeddables - -commit ca7a1e284f0ec1bf1de62062bc87ad1204c37ecd -Author: Hardy Ferentschik -Date: Mon Aug 1 15:47:49 2011 +0200 - - HHH-6393 Making the name of the test classes consistent - -commit b8cc897bee1108c9c207dc38b8cddaeec5abf78a -Author: Hardy Ferentschik -Date: Mon Aug 1 15:22:43 2011 +0200 - - HHH-6520 Construction of type resolver needs to be deferred - -commit f2338af9eb88302635da168a0c280e6365ceb0f7 -Author: Hardy Ferentschik -Date: Mon Aug 1 14:35:15 2011 +0200 - - HHH-6520 Some formatting and method name changes. Also moving AbstractAttributeTypeResolver into the type sub-package - -commit 3689e533fbcaac195f05d7366f705902c33e5c93 -Author: Strong Liu -Date: Mon Aug 1 16:38:13 2011 +0800 - - HHH-6520 if no @GeneratedValue on an simple @Id property, then the generator type should be assigned - -commit 5a00cb9276c0d6abc392cbadf3ece1ff6877a4ac -Author: Strong Liu -Date: Mon Aug 1 15:36:25 2011 +0800 - - HHH-6521 Column name is not quoted even the global quote identifier property is enabled - -commit 37a8f83d2e475426027e044a33ff51168c958f04 -Author: Strong Liu -Date: Mon Aug 1 19:47:15 2011 +0800 - - HHH-6490 Support @javax.persistence.Lob - HHH-6492 Support @javax.persistence.Enumerated - refact HHH-6489 Support @javax.persistence.Temporal - refact test - add license header - -commit 67e8f311db30fa4f44b3cf0d2d48d067af3f949d -Author: Strong Liu -Date: Mon Aug 1 13:51:32 2011 +0800 - - simple code refact - -commit cc2dab0f183eb5fa84c00b64ad57bbec5948b2b9 -Author: Strong Liu -Date: Sat Jul 30 17:16:44 2011 +0800 - - HHH-6490 Support @javax.persistence.Lob - HHH-6492 Support @javax.persistence.Enumerated - refact HHH-6489 Support @javax.persistence.Temporal - -commit 2b0e0281b05023bbbb61d07c97e0bf39b517199f -Author: Gail Badner -Date: Fri Jul 29 14:39:36 2011 -0700 - - HHH-6506 : Descriminator type is not resolved - -commit bb7280a649b056e6bd6ef6a3b5e3ee876c8fd7ce -Author: Gail Badner -Date: Fri Jul 29 17:22:20 2011 -0700 - - HHH-6519 : Temporarily use default column precision, scale, length when not specified - -commit d011313b2676e43de672d5b20f30ece1de753822 -Author: Gail Badner -Date: Fri Jul 29 16:26:15 2011 -0700 - - HHH-6519 : Temporarily initialize default column precision, scale, and length in o.h.metamodel.relational.Size - -commit 7742811466bd42e189eb3dd7d6e1cd35086f67c4 -Author: Steve Ebersole -Date: Fri Jul 29 16:40:27 2011 -0500 - - HHH-6503 - Develop Set-style plural attribute support for new metamodel - -commit 631286c77bb1200e437208453e6fceed32b0c4a4 -Author: Steve Ebersole -Date: Fri Jul 29 00:27:43 2011 -0500 - - HHH-6503 - Develop Set-style plural attribute support for new metamodel - -commit 425f41f5d67b0785244f50688c5f1f18112ad37c -Author: Hardy Ferentschik -Date: Fri Jul 29 12:43:37 2011 +0200 - - HHH-6495 Implementing ComponentAttributeSource#getPath and re-enabling EmbeddableBinding test. Still not sure about all the different implementation in ComponentAttributeSourceImpl. Most of them just don't seem to be relevant. - -commit 85c63dbaf0bf8b4a84f7bccbf540e127ec61a174 -Author: Steve Ebersole -Date: Thu Jul 28 11:37:51 2011 -0500 - - Simple code cleanup - -commit baa649c8029454b4f935065c069c00fa06075274 -Author: Hardy Ferentschik -Date: Thu Jul 28 17:58:22 2011 +0200 - - HHH-6495 Adding a comment and reference to jira issue - -commit 61ab328b4a07a9ab63d60ed7894b4830d0a5057e -Author: Hardy Ferentschik -Date: Thu Jul 28 17:44:29 2011 +0200 - - HHH-6495 Passing BasicAnnotationBindingTest. More methods of ComponentAttributeSource need implementing though. - -commit ca1c77d9f6a15d77a8ee2d2f77a7b4ed2283d91a -Author: Gail Badner -Date: Thu Jul 28 08:47:09 2011 -0700 - - HHH-6499 : NPE can be thrown by some implementations of Helper.ValueSourcesAdapter.isIncludedInInsertByDefault() and isIncludedInUpdateByDefault() - -commit ab72eb05ec0283c2bd69ee50e173af30eeab0a7f -Author: Hardy Ferentschik -Date: Thu Jul 28 13:08:11 2011 +0200 - - HHH-6495 Putting FailureExpected on class level until the component processing via annotation is working - -commit b818f94eb127eaaeb03515471ed0c81d4a589cc7 -Author: Strong Liu -Date: Thu Jul 28 17:53:06 2011 +0800 - - HHH-1780 rollback wrongly commented test - -commit aac7e3ee7e91004402f8d9da1edf1b58d67b3314 -Author: Strong Liu -Date: Thu Jul 28 17:48:48 2011 +0800 - - HHH-1780 negation of EXISTS in hql query does not work - -commit ec89e8674ddda15bff12a8690efc9026ed7d4c37 -Author: Strong Liu -Date: Thu Jul 28 16:04:23 2011 +0800 - - HHH-6485 Add support for @DiscriminatorFormula - -commit 236ba1d2477a0c78029702aaf96c04305a7f34c5 -Author: Strong Liu -Date: Thu Jul 28 00:49:26 2011 +0800 - - HHH-6485 Add support for @DiscriminatorFormula - -commit ac7feff33a529684258cf6d19d99d346ef64a805 -Author: Gail Badner -Date: Wed Jul 27 21:35:58 2011 -0700 - - HHH-6500 : EntityBinding.getEntity().getSuperType() is null for subclass EntityBinding - -commit b2692620d714870e8df58dd469c22c21d9431594 -Author: Gail Badner -Date: Wed Jul 27 13:58:30 2011 -0700 - - HHH-6497 : Update AbstractEntityPersister to use AssociationAttributeBinding.getCascadeStyle() and getFetchMode() - -commit e1f7ee8e0faf7c769fc5d7c11e01e118f1e5cb0f -Author: Steve Ebersole -Date: Wed Jul 27 13:09:41 2011 -0500 - - HHH-6480 - Develop component binding for new metamodel - -commit 91f84c230349ae029414ee298c352767f0f27250 -Author: Steve Ebersole -Date: Wed Jul 27 11:31:30 2011 -0500 - - HHH-6480 - Develop component binding for new metamodel - -commit e540089783133ad692355fb7ac36b368fea73b4b -Author: Steve Ebersole -Date: Mon Jul 25 14:16:48 2011 -0500 - - HHH-6480 - Develop component binding for new metamodel - -commit 605ce4ba29cc67cbe52c7ca483a2fb82ae839596 -Author: Hardy Ferentschik -Date: Wed Jul 27 14:08:34 2011 +0200 - - HHH-6489 @Tempoeral support - -commit 3cbd2ae908ed8e00c0ff17f84a4445414b3e9b8f -Author: Hardy Ferentschik -Date: Wed Jul 27 13:40:25 2011 +0200 - - HHH-6488 Implementing SimpleIdentifierSource#getIdentifierGeneratorDescriptor for annotations - -commit 9bf55b6e07bd81290dc98cb2975a55b64db30d72 -Author: Hardy Ferentschik -Date: Wed Jul 27 13:39:26 2011 +0200 - - HHH-6488 Renaming JandexHelper#getValkueAsEnum to JandexHelper#getEnumValue - - Also adding a test to JandexHelperTest which tests retrieving a unknown - annotation parameter - -commit 9d63b054267e8e24d4039b876f49fa2ec2235001 -Author: Hardy Ferentschik -Date: Wed Jul 27 13:32:30 2011 +0200 - - HHH-6488 Adding missing license header - -commit 605c9e30a2cc738cb95c01387359987f35a8d4ef -Author: Hardy Ferentschik -Date: Wed Jul 27 13:31:25 2011 +0200 - - HHH-6488 Formatting and commenting - -commit 462d2adb69ca92b64ad398e3af9c90f3b76e24d4 -Merge: 350984a181 acd7ce4618 -Author: Adam Warski -Date: Tue Jul 26 10:59:37 2011 -0700 - - Merge pull request #139 from lukasz-antoniak/HHH-4648 - - HHH-4648 - Mapping exception when one class maps to multiple tables - -commit 350984a181ebeb09b71c91d43926debb77903f65 -Author: Hardy Ferentschik -Date: Tue Jul 26 14:23:46 2011 +0200 - - HHH-6212 Adding a secondary table test - -commit 3ff5c13058cf76033e7f0a43b75b20991ea92dcf -Author: Hardy Ferentschik -Date: Tue Jul 26 13:05:42 2011 +0200 - - HHH-6212 Some discriminator related cleanup. Getting rid of DiscriminatorColumnValues - -commit 57cb51fd14d14873d74cc151c6e921697004eadc -Author: Hardy Ferentschik -Date: Mon Jul 25 17:27:35 2011 +0200 - - HHH-6212 Adding 'Iterable getSecondaryTables()' to EntitySource - - Extending EntityClass to collect secondary table information - -commit 5954d1c2c42c2dc52ad3736eb893bbf5281011d8 -Author: Hardy Ferentschik -Date: Mon Jul 25 17:25:54 2011 +0200 - - HHH-6212 Consistent naming of test classes - -commit 8ecd7aace8b5ad1090482536c31f25bf9daae3e7 -Author: Hardy Ferentschik -Date: Mon Jul 25 17:05:04 2011 +0200 - - HHH-6212 Consistent naming of test classes - -commit 0c64e244c9b4d586b26c5ab46039495e00be33cc -Author: Hardy Ferentschik -Date: Mon Jul 25 14:59:50 2011 +0200 - - HHH-6212 Introducing ConstraintSource interface - - Implementing unique table constraints using ConstraintSource and - re-enabling UqiqueConstraintBindingTests - -commit 9eb049040a0391fc26763bf5f3d628c61fdbcef9 -Author: Hardy Ferentschik -Date: Mon Jul 25 14:58:32 2011 +0200 - - HHH-6212 Renaming SimpleAttribute to BasicAttribute - -commit ae8a29bdb2ae3c3469eaa3e81b518799f03b911a -Author: Hardy Ferentschik -Date: Mon Jul 25 14:56:49 2011 +0200 - - HHH-6216 Formatting and removing of obsolete imports and class - -commit acd7ce4618ffff7e8e0dbe6a95aaba907f8a28e9 -Author: Lukasz Antoniak -Date: Tue Jul 26 06:28:23 2011 +0200 - - HHH-4648 - Test refactoring - -commit 4fc2a8c0270168fc497fa48f1f4578c3c1a67e22 -Author: Lukasz Antoniak -Date: Tue Jul 26 06:21:18 2011 +0200 - - HHH-4648 - Test refactoring - -commit 5b635d2c44935d62fd4555af601d653bb5168b17 -Author: Lukasz Antoniak -Date: Tue Jul 26 00:24:18 2011 +0200 - - HHH-4648 - Test case - -commit bfa47345215ad054128d3ea861143eca9951ec4e -Author: Strong Liu -Date: Tue Jul 26 02:00:06 2011 +0800 - - HHH-6482 ddl from schema export is not correctly formatted - -commit 7529dd8e81be0d30c734ffcde8738025c0cc1dea -Author: Steve Ebersole -Date: Fri Jul 22 14:27:35 2011 -0500 - - HHH-6479 - Split notions of locating and creating an attribute - -commit 1de1325e64c69add75982de642563aa906c2c136 -Author: Steve Ebersole -Date: Fri Jul 22 13:11:20 2011 -0500 - - HHH-6478 - Code cleanup in metamodel package - -commit 8c6b2a52fe75f7e1c6f9a2f29013a7d9a5fb5e8d -Author: John Verhaeg -Date: Fri Jul 22 12:18:09 2011 -0500 - - HHH-6477: Updated XML files used in tests to not use namespace prefix for target namespace - -commit ceda40b686c528a3c1179ef37061850f43da2f57 -Author: Hardy Ferentschik -Date: Fri Jul 22 18:03:56 2011 +0200 - - HHH-6476 implementing AttributeSource.getPropertyAccessorName and adding tests - -commit 092af61f048d12ccfdda9e489fa73a243850df58 -Author: John Verhaeg -Date: Fri Jul 22 11:02:55 2011 -0500 - - HHH-6477: Added elementFormDefault='qualified' to hibernate configuration and mapping schemas - -commit 9ec53fa1f870d86bd3c0658ffe2b3ae7611eba37 -Author: Steve Ebersole -Date: Fri Jul 22 08:07:00 2011 -0500 - - HHH-6472 - Implementing EntityDiscriminator and discriminator match value - -commit 486352eaa9367c9c59cd92319b5d2373e94fc40e -Author: Steve Ebersole -Date: Thu Jul 21 12:35:30 2011 -0500 - - HHH-6471 - Redesign how EntityBinding models hierarchy-shared information - -commit 46102a2be3b8068cb8c354cd8ef78d96834923bf -Author: Steve Ebersole -Date: Thu Jul 21 12:15:48 2011 -0500 - - HHH-6471 - Redesign how EntityBinding models hierarchy-shared information - -commit 8639904969270c4e9f653376f916d79d7b35028b -Author: Hardy Ferentschik -Date: Thu Jul 21 18:28:44 2011 +0200 - - HHH-6447 Implementing EntityDiscriminator and discriminator value binding - -commit e358ab7b5ad942b1c24068c2df5874c501e5d4c7 -Author: Hardy Ferentschik -Date: Thu Jul 21 12:30:00 2011 +0200 - - HHH-6469 changing 'jaxb:version' to 'version' as per recommended workaround http://metro.1045641.n5.nabble.com/Both-jaxb-version-and-version-are-present-td1067289.html - -commit c069e6dadac74c6ad4a514844d82b6210caa89af -Author: Hardy Ferentschik -Date: Thu Jul 21 12:26:34 2011 +0200 - - HHH-6447 Formatting - -commit 520db31a650ca9773747f2418e6c91911024fa0d -Author: Steve Ebersole -Date: Thu Jul 21 01:35:34 2011 -0500 - - release 4.0.0.Beta4 - -commit 052ecb3652680acce54b52bc36d683574942d897 (tag: 4.0.0.Beta4) -Author: Steve Ebersole -Date: Thu Jul 21 00:00:22 2011 -0500 - - release 4.0.0.Beta4 - -commit dd2cbf863d81a834af11ada06f3fdf54ff060edb -Author: Steve Ebersole -Date: Wed Jul 20 23:22:02 2011 -0500 - - HHH-6467 - Non-association attributes are not dirty-checked - -commit c7ae4477ae3643081e3481ebf98e64c153fe72dd -Author: Steve Ebersole -Date: Wed Jul 20 18:16:24 2011 -0500 - - HHH-6453 - Enable new metamodel in BaseCoreFunctionalTestCase - -commit 2abfe3de23fbccec488d0cbce6b937483a3b01aa -Author: Steve Ebersole -Date: Wed Jul 20 15:58:13 2011 -0500 - - HHH-6447 - Develop shared binding creation approach - -commit acc93a3d8c085aba18bca5ba09ee8144c2da1eb1 -Author: Steve Ebersole -Date: Wed Jul 20 15:31:18 2011 -0500 - - HHH-6447 - Develop shared binding creation approach - -commit 4968ad11fba93e2b3685fc9ebd367dd8de064d71 -Author: Steve Ebersole -Date: Tue Jul 19 17:57:34 2011 -0500 - - HHH-6447 - Develop shared binding creation approach - -commit ab3d89ae512f36140184ce69719b0f6e0f580486 -Author: Gail Badner -Date: Wed Jul 20 02:48:31 2011 -0700 - - HHH-6460 : AbstractEntityPerister is missing simple property information - -commit f90f224f605125be90c4c74b523c09920f8785dd -Author: Gail Badner -Date: Wed Jul 20 02:19:37 2011 -0700 - - HHH-6257 : Add IdentifierGenerator to EntityIdentifier binding - -commit edb264ae156ca314c285d034c6397ecfa8d9b182 -Author: Gail Badner -Date: Tue Jul 19 16:30:29 2011 -0700 - - finish-sf-build - -commit 2b8f4bad7c010ad5f3a4658f7312ff986c174a6f -Author: Gail Badner -Date: Tue Jul 19 14:15:38 2011 -0700 - - HHH-6453 : Enable new metamodel in BaseCoreFunctionalTestCase - -commit ba56266dec254f977dd4a04d9a1ece2e1a3988ec -Author: Gail Badner -Date: Tue Jul 19 10:59:55 2011 -0700 - - HHH-6453 : Enable new metamodel in BaseCoreFunctionalTestCase - -commit e23636d72f1429b262f88f2e917364a3d717af43 -Merge: 2c37e01a00 b2cae5b120 -Author: Strong Liu -Date: Tue Jul 19 10:04:19 2011 -0700 - - Merge pull request #135 from alexsnaps/HHH-5478-4.0 - - HHH-5478 for 4.0. Also updated the FQCN which still referenced the internal package - -commit 2c37e01a00c8039eb801b30e309ef247c3813503 -Author: Hardy Ferentschik -Date: Tue Jul 19 17:39:24 2011 +0200 - - HHH-6447 Using shared binding approach via annotation - -commit 2ea24693c0cbff7fe98e6d52c72a763afb5a39f7 -Author: Hardy Ferentschik -Date: Mon Jul 18 18:19:39 2011 +0200 - - HHH-6371 Refactoring entity based test. Introducing @Resources - -commit b2cae5b120137ce996aa4ca0e227b717153ddcb6 -Author: Alex Snaps -Date: Tue Jul 19 13:10:02 2011 +0200 - - HHH-5478 Updated docs for ehcache transactional & clustered support - -commit f62e5256c18839df4d972ee7c29370d8eaae557e -Author: Alex Snaps -Date: Tue Jul 19 12:37:28 2011 +0200 - - HHH-5478 Adapted to new FQCN and added reference to cluster support - -commit 8d3e94ab834efc7c20e8a3cdc7b201d6458c2d94 -Author: Steve Ebersole -Date: Tue Jul 19 00:08:40 2011 -0500 - - HHH-6447 - Develop shared binding creation approach - -commit 49c54069cd68b66575359d2081adaed51ab9cadc -Author: Gail Badner -Date: Mon Jul 18 15:11:23 2011 -0700 - - HHH-6449 : Change Exportable.sqlCreateStrings/sqlDropStrings(MetadataImplementor) to take Dialect argument instead - -commit 5b7ee4f11bb47b0f77744b3e295209016f02f3fc -Author: Gail Badner -Date: Mon Jul 18 13:13:01 2011 -0700 - - HHH-6444 : Integrate new metamodel into SchemaExport - -commit 55a630b8fd1ce2eb69cb1ebf79a38b2f21d337c8 -Author: Steve Ebersole -Date: Mon Jul 18 15:10:38 2011 -0500 - - HHH-6395 - Deprecate org.hibernate.annotations.Entity - -commit 87251955015034eecc519afdccefbf843c58c894 -Author: Steve Ebersole -Date: Mon Jul 18 14:49:12 2011 -0500 - - HHH-6395 - Deprecate org.hibernate.annotations.Entity - -commit d9b4342562e41d0a07e9126cc4f4a1b20da94277 -Author: Steve Ebersole -Date: Mon Jul 18 14:44:57 2011 -0500 - - HHH-6399 - Create @SelectBeforeUpdate annotation - -commit b7fe6c0d585b198a3a1d214e788daf69e25bd98c -Author: Steve Ebersole -Date: Mon Jul 18 14:41:56 2011 -0500 - - HHH-6398 - Create @DynamicUpdate annotation - -commit 455b16075d5d72d3f2b7d9fe425946f0b2330997 -Author: Steve Ebersole -Date: Mon Jul 18 14:38:28 2011 -0500 - - HHH-6397 - Create @DynamicInsert annotation - -commit 764d55b3a1ee66b472482c4d88289292646f94eb -Author: Steve Ebersole -Date: Mon Jul 18 14:24:55 2011 -0500 - - HHH-6401 - Create @OptimisticLocking annotation - -commit 7dc7132fdbbf267ab2bd8da5dc3e4ec034968a0e -Author: Steve Ebersole -Date: Mon Jul 18 14:15:16 2011 -0500 - - HHH-6400 - Create @Polymorphism annotation - -commit d0476de7f8a961a9dbee0a51567aa2181c28d4a2 -Author: Strong Liu -Date: Tue Jul 19 01:50:18 2011 +0800 - - HHH-6451 adapt hibernate-ehcache to the new api - -commit c26a23bf90dd6b1885ee8cc21ac83bab33cad5ad -Author: Alex Snaps -Date: Thu Jul 14 15:14:35 2011 +0200 - - EHC-864 Moved all Hibernate dependent classes from ehcache-core to hibernate-ehcache module and fixed to use new API - -commit c7421837a480c642e289ca560ba15bec80e879f6 -Author: Steve Ebersole -Date: Mon Jul 18 12:25:07 2011 -0500 - - HHH-6447 - Develop shared binding creation approach - -commit 6ffd34d234b498823940bb51e6417d365c38fa19 -Author: Hardy Ferentschik -Date: Mon Jul 18 11:02:36 2011 +0200 - - HH-6447 marking failing test temporarily w/ @FailureExpected - -commit a7f5bc1a7de821bc8892e51fd79fbd36a04751a0 -Author: Andrew Lee Rubinger -Date: Fri Jul 15 17:02:41 2011 -0400 - - [HHH-6442] In the case a URL cannot be reconstructed due to MalformedURLException, use the one passed in (which will already have a URLStreamHandler association) - -commit c5b013d368e76e14103c835b0ba6b731820a95f5 -Author: Steve Ebersole -Date: Sat Jul 16 11:58:59 2011 -0500 - - HHH-6447 - Develop shared binding creation approach - -commit b17e062a37c588ea660fa9b8fbadd3f2f99d36b7 -Author: Gail Badner -Date: Fri Jul 15 17:53:05 2011 -0700 - - HHH-6450 : Change length argument of Dialect.getTypeName() and TypeNames size/capacity to long - -commit 809540b08c8b71de6ceffa74d8fe7f3a0f296ddc -Author: Steve Ebersole -Date: Fri Jul 15 18:28:24 2011 -0500 - - HHH-6447 - Develop shared binding creation approach - -commit d3d1fdf423ae618ff2aa01ebaa97feb73bb5ccf7 -Author: Steve Ebersole -Date: Fri Jul 15 18:09:59 2011 -0500 - - HHH-6447 - Develop shared binding creation approach - -commit 0c7498e31d405d1726a0dc2528c7ae93a0ff8758 -Author: Steve Ebersole -Date: Fri Jul 15 09:46:01 2011 -0500 - - HHH-6447 - Develop shared binding creation approach - -commit dfd4e61a9887315cd0c8f6cb463545c7f66ff4ea -Author: Hardy Ferentschik -Date: Fri Jul 15 19:03:24 2011 +0200 - - HHH-6371 Adding Hibernate type information for the attribute binding - -commit 3f31aa8f695ef0626a7818ac53e1c694892099be -Author: Hardy Ferentschik -Date: Fri Jul 15 18:48:01 2011 +0200 - - HHH-6371 Bringing the annotation side into sync with the new push (setter) approach for the binders - - Creating an explicit AnnotationBindingContext (instead of letting AnnotationProcessor implement it) and making use of the context in the global binders - - Updating EntityBinder to use the push approach. Still needs major cleanup - -commit aa28d7016eb180a34e7eca3e0bb7cd37cef0e9d7 -Author: Gail Badner -Date: Thu Jul 14 11:17:42 2011 -0700 - - HHH-6431 : Update MetadataImplementor imports - -commit 53e1a37adf8ceb3f53b5f6cae525950d56093281 -Author: Gail Badner -Date: Thu Jul 14 10:08:39 2011 -0700 - - HHH-6431 : Add Exportable.sqlCreateStrings() and sqlDropStrings() and implementations - -commit c558583346bbb745f5f5df6abf8a0714d15ac1e3 -Author: Steve Ebersole -Date: Thu Jul 14 13:07:05 2011 -0500 - - HHH-6371 - Develop metamodel binding creation using a push approach - -commit f7b0da60b310d957c29763d3f5d0781e2f00e027 -Author: Steve Ebersole -Date: Thu Jul 14 11:13:05 2011 -0500 - - HHH-6371 - Develop metamodel binding creation using a push approach - -commit 9972c7ecb750278883ef95f0d4e5c1b68ac1f833 -Author: Steve Ebersole -Date: Wed Jul 13 18:43:51 2011 -0500 - - HHH-6437 - Improve Database to track default Schema object - -commit 56aa17b0d5f1154ca746a1073afa79e9cb30729a -Author: Steve Ebersole -Date: Wed Jul 13 18:26:25 2011 -0500 - - HHH-6437 - Improve Database to track default Schema object - -commit 229842aadbeca067af1ce67eb2fae992bb5084ce -Author: Steve Ebersole -Date: Wed Jul 13 17:39:09 2011 -0500 - - HHH-6371 - Develop metamodel binding creation using a push approach - -commit 4e18a56850d9c1761b5bee35aa1f6a5e4926217b -Author: Steve Ebersole -Date: Wed Jul 13 16:17:49 2011 -0500 - - HHH-6371 - Develop metamodel binding creation using a push approach - -commit ad959ce566169f44888585515ae9a127647359fe -Author: Hardy Ferentschik -Date: Wed Jul 13 16:47:38 2011 +0200 - - HHH-6371 Fixing OverrideTest - package names in orm mapping files did not get updated properly during the package refactoring - -commit 5e7b730f09428318ff6cf99796a19d10fdc52305 -Author: Hardy Ferentschik -Date: Wed Jul 13 16:35:00 2011 +0200 - - HHH-6371 changing the import statements in the annotation xml processing to use org.hibernate.metamodel.source.annotation.jaxb instad of org.hibernate.metamodel.source.annotation.xml - -commit 8c28d46b0787ed63a83d79e04824f7d52b260e11 -Author: Steve Ebersole -Date: Wed Jul 13 09:13:22 2011 -0500 - - HHH-6371 - Develop metamodel binding creation using a push approach - -commit c97075c3c819e3de2a4911eae9e97a7a7e554a3d -Author: Steve Ebersole -Date: Wed Jul 13 08:43:27 2011 -0500 - - HHH-6371 - Develop metamodel binding creation using a push approach - -commit 24edf42c04a72bcc0d5f13203e43f227165b6f0d -Author: Steve Ebersole -Date: Tue Jul 12 12:58:40 2011 -0500 - - HHH-6371 - Develop metamodel binding creation using a push approach - -commit e339dac91ef4a599ec78bfa2881fc6c3ea86d0c9 -Author: Steve Ebersole -Date: Mon Jul 11 17:26:17 2011 -0500 - - HHH-6371 - Develop metamodel binding creation using a push approach - -commit c4c8c28a3b4eac6c9f63b120dce4bf9083196e42 -Author: Steve Ebersole -Date: Mon Jul 11 00:33:39 2011 -0500 - - HHH-6371 - Develop metamodel binding creation using a push approach - -commit a7179fbc496707ba5055ea7188a4f01c192b1665 -Author: Steve Ebersole -Date: Wed Jul 6 23:28:48 2011 -0500 - - HHH-6371 - Develop metamodel binding creation using a push approach - -commit 9e95d41689aaa59782df671843ef362b7dd8a3ff -Author: Steve Ebersole -Date: Wed Jul 6 04:44:58 2011 -0500 - - HHH-6371 - Develop metamodel binding creation using a push approach - -commit 66bd7960631fdbe008e172b0aeb336a91fa68494 -Author: Steve Ebersole -Date: Tue Jul 5 16:18:11 2011 -0500 - - HHH-6371 - Develop metamodel binding creation using a push approach - -commit 594f689d98e4c671644bed41e968ccded5a7092c -Author: Steve Ebersole -Date: Fri Jul 1 21:15:14 2011 -0500 - - HHH-6371 - Develop metamodel binding creation using a push approach - -commit 5efd0a84710d2f114f774621ec4a34d5d78fb002 -Author: Steve Ebersole -Date: Thu Jun 30 21:34:19 2011 -0500 - - HHH-6371 - Develop metamodel binding creation using a push approach - -commit 182150769a08fdd405ade6d176775577f7b515e5 -Author: Steve Ebersole -Date: Wed Jun 29 13:15:57 2011 -0500 - - HHH-6371 - Develop metamodel binding creation using a push approach - -commit 99f8d2627028b3983c07fe563dfc1ff926bd5f7e -Author: Hardy Ferentschik -Date: Wed Jul 13 11:44:24 2011 +0200 - - HHH-4630 Simplifying test and applying formatting style - -commit 3ec6c11f12a8cf9e6fa919949729484585e6b9c0 -Author: Hardy Ferentschik -Date: Tue Jul 12 21:32:14 2011 +0200 - - HHH-4630 fix for criteria join on a composite identifier - -commit 3dd9d37eec65f25731033aa3bb38b0157c5738f1 -Merge: 30843f2032 ad3b58f5e2 -Author: Gail Badner -Date: Tue Jul 12 14:26:59 2011 -0700 - - Merge branch 'HHH-6418' - -commit ad3b58f5e297ced6ea2c3f5f3b512227a67aa63d -Author: Gail Badner -Date: Tue Jul 12 14:26:08 2011 -0700 - - HHH-6418 : org.hibernate.metamodel.relational.AuxiliaryDatabaseObject extends org.hibernate.mapping.RelationalModel - -commit 30843f2032c9cd078ba1b96d7949e38abc7f9a8b -Author: Gail Badner -Date: Tue Jul 12 13:44:07 2011 -0700 - - HHH-6416 : Move AuxiliaryDatabaseObject into Database - -commit d58bb5a10314efda38074e5b25f054909daa1fb5 -Author: Hardy Ferentschik -Date: Tue Jul 12 15:02:35 2011 +0200 - - HHH-6392 making the simple class name the default jpa entity name - -commit 959056dee768cd986a03cfffc7b21452848ab70a -Author: Hardy Ferentschik -Date: Tue Jul 12 14:57:14 2011 +0200 - - HHH-6392 Making sure that overrides get applied and adding more tests - -commit 593066b7f37fa6413d8410a5fc8604c9bb8bb0ae -Author: Hardy Ferentschik -Date: Tue Jul 12 12:07:55 2011 +0200 - - HHH-6392 Formatting - -commit 2500a706685271e2268b91dcfa8f17c28b6220e1 -Author: Hardy Ferentschik -Date: Mon Jul 11 23:13:18 2011 +0200 - - HHH-6392 Applying overrides for mapped superclasses - -commit c2c3de9f9083493aace9d2ffb1e58216ed6b16d2 -Author: Hardy Ferentschik -Date: Mon Jul 11 18:41:54 2011 +0200 - - HHH-6392 Extracting the attribute overrides. Next step is to apply the overrides when creating the attribute bindings - -commit 1801faa1b3a4e3ceabbfd6fb2c7aac04a96d7dc7 -Author: Strong Liu -Date: Tue Jul 12 09:28:46 2011 +0800 - - HHH-2614 (I forgot to push ..., thanks hardy) - -commit 50ac18c5c3c438aca9894616dd356e24badbf369 -Author: Hardy Ferentschik -Date: Mon Jul 11 13:49:26 2011 +0200 - - HHH-2614 Fixing test now that there is a DerbyTenSevenDialect - -commit 77004f5fe25243c399501500b89d97282817f314 -Author: Hardy Ferentschik -Date: Fri Jul 8 18:57:06 2011 +0200 - - HHH-6392 Starting to refactor JandexHelper - -commit a353d34f780d5b6af6d4a2b228cd488bd913201d -Author: Hardy Ferentschik -Date: Fri Jul 8 18:56:42 2011 +0200 - - HHH-6392 Introducing a container for the attribute override values - -commit b413299847757e2121e7a9745498afb4815f7822 -Author: Strong Liu -Date: Mon Jul 11 16:54:17 2011 +0800 - - HHH-2614 Blob Length Set to 255 By Default With Derby DB - -commit 310c0441bbf606d4436570c1520a79aa80f9b7e9 -Author: Emmanuel Bernard -Date: Fri Jul 8 18:11:36 2011 +0200 - - HHH-6421 Reduce log level of LazyInitializationException from ERROR to TRACE - -commit e47460317c91d59a43812ee5155edca6b9c33889 -Author: Tomaz Cerar -Date: Fri Jul 8 16:39:08 2011 +0200 - - sql server dialect fix - -commit 3075d7d7ee2eeaf78a81762b6d52a56f498ed675 -Author: Strong Liu -Date: Fri Jul 8 22:25:10 2011 +0800 - - typo in javadoc - -commit c5e91f6bda0e906db8b229e383c142e2f1c1473c -Author: Emmanuel Bernard -Date: Fri Jul 8 01:40:53 2011 +0200 - - HHH-6419 Let SessionImplementor#getFactory pass even out of Tx in TL bound sessions - -commit c48d4208db50b277fe0c6c494ab2abbaeff61f66 -Author: Emmanuel Bernard -Date: Thu Jul 7 23:51:57 2011 +0200 - - HHH-6417 Implement EventType#toString - -commit b600f027a4fc70799369e266d2a1b2d6def93569 -Author: Hardy Ferentschik -Date: Thu Jul 7 11:51:02 2011 +0200 - - HHH-6278 Added some comments and renamed method in EntityClass - getPrimaryTableName to getClassNameForTable - -commit f84ab09e572d3d2946b98a623189a603d58b98d2 -Author: Strong Liu -Date: Thu Jul 7 13:57:02 2011 +0800 - - prep for next development cycle - -commit c6139a338d0d6b3045454e67408f114ba3e7e7c6 (tag: 4.0.0.Beta3) -Author: Strong Liu -Date: Thu Jul 7 13:27:12 2011 +0800 - - prepare 4.0.0.Beta3 - -commit 87db46d43022d2472097008cc7771f7f3762dd11 -Author: Strong Liu -Date: Thu Jul 7 13:25:12 2011 +0800 - - Added fixes for 4.0.0.Beta3 to changelog.txt - -commit ce47766281f9640c1dcc7572eba48e3cd6eabef1 -Author: Strong Liu -Date: Thu Jul 7 00:21:35 2011 +0800 - - HHH-6278 quote all db identifiers - also this commit contains code that make annotation binder applying naming strategy - -commit 5457b6c707b5a0eab8ae1e26a0de82f71ef351e0 -Author: Gail Badner -Date: Wed Jul 6 15:08:36 2011 -0700 - - HHH-6411 : Integrate new metamodel into SingleTableEntityPersister - -commit d981f549428ae34e07b9555b1b77acc54bc1cc4d -Author: Gail Badner -Date: Wed Jul 6 14:28:57 2011 -0700 - - HHH-6407 : Add SimpleValue.getAlias(Dialect) and implement in subclasses - -commit f0a8fe564316b4f59fde8ad80207d6efa4c0667c -Author: Emmanuel Bernard -Date: Wed Jul 6 23:09:59 2011 +0200 - - HHH-6408 Be tolerant with empty (ie not null) properties - -commit 671a273e759cc203a16fbb505fa9f967c415e32b -Author: Emmanuel Bernard -Date: Wed Jul 6 22:49:10 2011 +0200 - - HHH-6406 Move JBoss Transaction dependency to 4.15.1 - -commit 426406ef32017985239d25dccfaff99212d75772 -Author: Emmanuel Bernard -Date: Wed Jul 6 21:46:05 2011 +0200 - - HHH-6404 Move Hibernate Search integrator from Hibernate Core to Hibernate Search - -commit 94aea008d312bc856d28606007c10384d191f42d -Author: Hardy Ferentschik -Date: Wed Jul 6 17:50:26 2011 +0200 - - HHH-6394 fixing the check for resultClass in named native query - -commit bcdefd10a6110bfd6b3f2a18b95b62405493728d -Author: Hardy Ferentschik -Date: Wed Jul 6 17:12:10 2011 +0200 - - HHH-6289 Adjusting log levels and fixing formatting and javadocs - -commit d1eec59c0882f74970bc996d1aaf5eb65cdf75ce -Author: Hardy Ferentschik -Date: Wed Jul 6 14:46:07 2011 +0200 - - HHH-6381 Adding a actual assertion which tests the optional part. Also applying formatting styles. - -commit 20559966b355f53c39ffe349dc83a0e025beca64 -Author: David Mansfield -Date: Wed Jun 29 15:30:09 2011 -0400 - - HHH-6381 - handle optional=true joins for SecondaryTables in the JoinedSubclassEntityPersister - -commit 7c84b08391cb843f6cc0ece058a7d5939da02525 -Author: Gail Badner -Date: Tue Jul 5 21:01:11 2011 -0700 - - HHH-6389 : Add TableSpecification.getQualifiedName(Dialect) and implement in subclasses - -commit 3b22a9fd29d4b4ec6f1349a2d4d90ff8892ff416 -Author: Gail Badner -Date: Tue Jul 5 14:08:17 2011 -0700 - - HHH-6387 : Add EntityBinding.getFilterDefinitions() and addFilterDefinition() - -commit ec482d3d0e0af3b72b634ff71ea3c5082b43ee41 -Author: Hardy Ferentschik -Date: Tue Jul 5 15:26:13 2011 +0200 - - HHH-6201 Create attribute and attribute bindings for mapped super classes - -commit 546ba3c55099fd7c2b4764ff72f45fe1407e12ef -Author: Hardy Ferentschik -Date: Tue Jul 5 15:16:41 2011 +0200 - - HHH-6201 Introduce explicit maps for id-, simple- and association-attributes - -commit d3f20f44ea0594d48edaabb75db00aad6ab72ea4 -Author: Hardy Ferentschik -Date: Mon Jul 4 17:18:17 2011 +0200 - - HHH-6201 Import cleanup - -commit 2ebe0c40054f2b45e452a72c5d014556f41ab7a0 -Author: Hardy Ferentschik -Date: Mon Jul 4 17:17:51 2011 +0200 - - HHH-6201 Changing toString implementation to just print the simple class name - -commit 390d2fd00d7c7035c695324a6d87065a39daeb8d -Author: Hardy Ferentschik -Date: Mon Jul 4 17:13:56 2011 +0200 - - HHH-6201 Adding todo - -commit 2061fd266a1fe7d3aaf0583011e29c19a08a99fa -Author: Strong Liu -Date: Tue Jul 5 14:16:02 2011 +0800 - - HHH-6262 fix test failures - -commit e8b682b40521d3fd5e6d4e2f2f3bdd94ffe60063 -Author: Strong Liu -Date: Tue Jul 5 12:32:42 2011 +0800 - - HHH-6386 sybase improvement - -commit 793f317ea97f31eed9eeec8919da303786e29aba -Author: Strong Liu -Date: Fri Jul 1 00:31:17 2011 +0800 - - HHH-6262 bind @EmbeddedId - -commit 88f69a135b744c8953851874f8d40bad1b891b73 -Author: Gail Badner -Date: Fri Jul 1 19:18:30 2011 -0700 - - HHH-6365 : Use Identifier.toIdentifier() to create column names - -commit 64994913743937bd9929639bacff538232741bca -Author: Gail Badner -Date: Fri Jul 1 14:35:49 2011 -0700 - - HHH-6366 : Add integer value to uniquely identify Table and InLineView objects for column aliases - -commit 4febfe4d82f34a5d71bb1cbbd26f02afc72dc1a5 -Author: Gail Badner -Date: Fri Jul 1 13:45:05 2011 -0700 - - HHH-6365 : Use Identifier.toIdentifier() to create column names - -commit 8a5415d36713a6610ce7af666362c843bd8d4d18 -Author: Gail Badner -Date: Fri Jul 1 12:21:51 2011 -0700 - - HHH-6359 : Integrate new metamodel into entity tuplizers - -commit 913f95f8dfca72a43713463c08fbeb67b7bd0561 -Merge: 86e0afce22 1f0149378b -Author: Adam Warski -Date: Thu Jun 30 23:47:13 2011 -0700 - - Merge pull request #114 from lukasz-antoniak/HHH-5580-v1.2 - - HHH-5580 - Moving query API - -commit 86e0afce22469b2f4ac338f47df509d8d2cfae89 -Author: Gail Badner -Date: Wed Jun 29 15:35:07 2011 -0700 - - HHH-6352 : Change EntityBinding.getAttributeBindingClosureSpan() and getAttributeBindingClosure() to return data for declared attribute bindings - -commit 1d26ac1e12252ec6c4c3e463f77b7f812bc0f9b9 -Author: Gail Badner -Date: Wed Jun 29 14:51:43 2011 -0700 - - HHH-6360 : Build basic properties from an AttributeBinding - -commit 0f88ec8b71240d889b617f994b7e709e1e928a47 -Author: Gail Badner -Date: Wed Jun 29 14:05:28 2011 -0700 - - HHH-6372 : Provide a temporary way to initialize basic types in metamodel - -commit ff312720ce016bbc790dea86539dbb97f09fedc0 -Author: Hardy Ferentschik -Date: Wed Jun 29 18:00:32 2011 +0200 - - HHH-6173 allow embeddable classes to use inheritance as well - -commit 1ec38d23abc3e6b26e70628e480b0b3ea7cec4ac -Author: Hardy Ferentschik -Date: Tue Jun 28 19:21:28 2011 +0200 - - HHH-6173 Introduced org.hibernate.metamodel.source.annotations.attribute package and moving attribute related classes from org.hibernate.metamodel.source.annotations.entity into it. - - Also refactored generic type resolution via class mate - -commit 96b4d410c478a5ab719b55949ed40910aac92db5 -Author: Hardy Ferentschik -Date: Mon Jun 27 15:30:24 2011 +0200 - - HHH-6173 the makeXYX methods in EntityBinding now take the actual attribute instead of just the attribute name - -commit 295e67201c5583c36ef633503302b3d662f4278b -Author: Hardy Ferentschik -Date: Mon Jun 27 12:45:43 2011 +0200 - - HHH-6173 Creating domain component for embeddables - -commit d86ce7e68ae2ffc27bd7ea769dfb080eb10bef35 -Author: Hardy Ferentschik -Date: Fri Jun 24 16:48:10 2011 +0200 - - HHH-6173 formatting - -commit 157d50b434c3451a7c53ccabfeedd3028f944e34 -Author: Hardy Ferentschik -Date: Fri Jun 24 10:54:53 2011 +0200 - - HHH-6173 Fixing some bugs and adding some improvements pointed out by Strong - -commit 08ed4c1e80163581fa7c4d046ad502ffdd97402d -Author: Hardy Ferentschik -Date: Wed Jun 22 23:11:12 2011 +0200 - - HHH-6173 Passing association and attribute overrides to EmbeddedClass - -commit fcbca08a1f173f6643d6a90c6e93a49f7f6a36ab -Author: Hardy Ferentschik -Date: Tue Jun 21 23:15:27 2011 +0200 - - HHH-6173 making ConfiguredClass a base class for EnityClass and EmbeddedClass - -commit 33a4694fea6451efae2c1c24d15bffefa76f101e -Author: Adam Warski -Date: Wed Jun 29 18:27:35 2011 +0200 - - HHH-5917: improving documentation - -commit 9129cf38ce39c108ebf6fff9f33d21fb0e53c3cc -Merge: babeacefb0 1c1e333487 -Author: Adam Warski -Date: Wed Jun 29 09:19:19 2011 -0700 - - Merge pull request #112 from lukasz-antoniak/HHH-5917 - - HHH-5917 - Adding @Audited(auditedParents={classes}) - -commit babeacefb0860fa7a04de5bb78700bb109421850 -Author: Strong Liu -Date: Wed Jun 29 17:56:42 2011 +0800 - - HHH-6379 create EntityState enum to replace int constants in AbstractSaveEventListener - -commit 1f0149378b87826acf207b861534722f39480012 -Author: Lukasz Antoniak -Date: Wed Jun 29 09:28:35 2011 +0200 - - HHH-5580 - Renaming EntitiesChangedInRevisionManager to CrossTypeRevisionChangesReader - -commit 0c757327bd56ed7f5031c54326afc1f168835441 -Author: Gail Badner -Date: Tue Jun 28 13:21:16 2011 -0700 - - HHH-6372 : Provide a temporary way to initialize basic types in metamodel - -commit ffb14b28b72c67dc2d658bfeb89545ca16eb3399 -Author: Strong Liu -Date: Mon Jun 27 22:58:18 2011 +0800 - - HHH-6368 remove deprecated hibernate annotations - -commit 919cdf7c692645edfc1ad0732ee2a97b66ce5083 -Author: Gail Badner -Date: Mon Jun 27 19:59:51 2011 -0700 - - HHH-6372 : Provide a temporary way to initialize HibernateTypeDescriptor.explicitType for "basic" types - -commit 1c1e33348753e2d7695ce4180677bc32d3ad7cc8 -Author: Lukasz Antoniak -Date: Mon Jun 27 21:52:40 2011 +0200 - - HHH-5917 - Split test cases and updated documentation - -commit f4cc72b2d3fb968cf460ffe56a7c3abef9bd8882 -Author: Hardy Ferentschik -Date: Mon Jun 27 14:03:39 2011 +0200 - - Revert "HHH-6368 remove deprecated hibernate annotations" - - This reverts commit 5781948ab28ea2ae4fab11814d3638c0d40e0782. - - Re-adding the removed annotations since they are still used. - -commit 5781948ab28ea2ae4fab11814d3638c0d40e0782 -Author: Strong Liu -Date: Mon Jun 27 16:17:47 2011 +0800 - - HHH-6368 remove deprecated hibernate annotations - -commit 587c228973e152323335057de49b8f09a05ec06b -Author: Lukasz Antoniak -Date: Sun Jun 26 12:46:10 2011 +0200 - - HHH-5580 - Moving queries from AuditReader to EntitiesChangedInRevisionManager - -commit 83ba7be3a3d4252b8f3074fa148611e315ed5a2c -Author: Gail Badner -Date: Fri Jun 24 14:42:49 2011 -0700 - - HHH-6364 : Add AttributeBinding.getValuesSpan() and Tuple.valuesSpan() - -commit b174d78358fe2803b599d9c21ed5a1f43ecc81d4 -Author: Gail Badner -Date: Thu Jun 23 19:05:47 2011 -0700 - - HHH-6358 : Integrate new metamodel into EntityMetamodel - -commit 196f78c6a464e465b863fca2777a7315c2bdb3c9 -Author: Gail Badner -Date: Thu Jun 23 18:48:44 2011 -0700 - - HHH-6352 : Temporarily change EntityBinding.getAttributeBindingClosureSpan() and getAttributeBindingClosure() to return info for ID only - -commit 85245e5945cbf6cd7ff82b6f83fa03c4f56da70d -Author: Gail Badner -Date: Thu Jun 23 16:52:29 2011 -0700 - - HHH-6362 : EntityBindingStateImpl.getOptimisticLockMode() returns annotations-specific value - -commit ceb9c0fef2669388c302558f7d244530d302fb3a -Author: Gail Badner -Date: Wed Jun 22 16:40:28 2011 -0700 - - HHH-6352 : Add EntityBinding.getAttributeBindingClosureSpan() and getAttributeBindingClosure() - -commit f03ad76c7cb60155aa6c417cdd73776dba80db41 -Author: Steve Ebersole -Date: Wed Jun 22 17:19:55 2011 -0500 - - prepare for post 4.0.0.Beta2 development - -commit 59f498dc93ef654fe0251ccfa4ee609849fc8066 (tag: 4.0.0.Beta2) -Author: Steve Ebersole -Date: Wed Jun 22 16:41:35 2011 -0500 - - prepare 4.0.0.Beta2 - -commit b5f8d983129b0b66c440478c4429db331c9815e9 -Author: Strong Liu -Date: Thu Jun 23 00:24:06 2011 +0800 - - HHH-6332 rollback - -commit 592921ba5c8c8a6c511cce247a7459323dbfcc9d -Author: Strong Liu -Date: Wed Jun 22 17:45:59 2011 +0800 - - HHH-6348 POST_COMMIT_DELETE listener does not get executed - -commit 2815409af77b47e830fdc2feb5801248d15c3033 -Author: Gail Badner -Date: Wed Jun 22 00:21:07 2011 -0700 - - HHH-6346 : Add EntityBinding.entityTuplizerClass(); change getEntityPersisterClass() to return Class - -commit abaae293d850f70e141144d48784e9865b564072 -Author: Adam Warski -Date: Wed Jun 22 08:42:13 2011 +0200 - - HHH-6177: fixing a bug with mapping null references introduced by the last pull request - -commit 4662d0a71401f11d9436c1c95af61a7d5a2c8ba9 -Merge: 159f6205f9 e62271c7c4 -Author: Adam Warski -Date: Tue Jun 21 23:13:10 2011 -0700 - - Merge pull request #77 from skowronm/HHH-6177 - - HHH-6177: fixing problems with mixed inheritance by not using the properties tag when creating audit entities mapping - -commit 159f6205f9dfd9eba24a77eb42fd6e8070afdd68 -Author: Steve Ebersole -Date: Wed Jun 22 01:00:20 2011 -0500 - - HHH-6340 - Revisit EntityBindingState - -commit 6c9493017add087282570345c7a2e5def3dd9d8a -Author: Gail Badner -Date: Tue Jun 21 21:56:52 2011 -0700 - - HHH-6343 : Remove JavaClassNameResolver because it is not used - -commit 149771b6d828e04bcdd3644f34d99863bf93e509 -Author: Gail Badner -Date: Tue Jun 21 19:34:06 2011 -0700 - - HHH-6342 : Add EntityModeEntitySpecifics.getTuplizerClass() - -commit e2ff8ed5429b21cd79d595662d88e167d0d9bab1 -Author: Gail Badner -Date: Tue Jun 21 16:06:52 2011 -0700 - - HHH-6341 : Add AttributeBinding.isBasicPropertyAccessor() - -commit 2129f94aa3b6927352199093d40771ecda7ca25c -Author: Gail Badner -Date: Mon Jun 20 15:21:05 2011 -0700 - - HHH-6335 : Change PojoEntitySpecifics to use JavaType for entity and proxy classes - -commit 86e98b2432134ae7d221fe6e6e7f52ba73e3f1cb -Author: Steve Ebersole -Date: Mon Jun 20 15:15:36 2011 -0500 - - HHH-6334 - Create JavaType for the metamodel - -commit 2eab57d990081e33f3c2a0bcd70158a0475c2afa -Author: Hardy Ferentschik -Date: Mon Jun 20 19:49:43 2011 +0200 - - HHH-6308 upgrading to latest validator release - 4.2.0.Final - -commit 26a47fdc34d3b671de47d5d8803aac14c95e12e8 -Author: Steve Ebersole -Date: Mon Jun 20 12:43:14 2011 -0500 - - HHH-6333 - Create DeferredInitializationValue - -commit 6bd13cbfdaacfd937e456c56d1f5d703232217c2 -Author: Strong Liu -Date: Mon Jun 20 12:17:56 2011 +0800 - - typo in document - -commit fc90bc3a8af3db8c8aa09dd0b2879c883d557e7e -Author: Strong Liu -Date: Mon Jun 20 12:06:36 2011 +0800 - - HHH-6332 deploy javadoc jar - -commit 4a4f636caf9ecc62fe0d230f422ad3eab2517db0 -Author: Steve Ebersole -Date: Sun Jun 19 22:12:17 2011 -0500 - - HHH-6330 - Remove entity mode switching capability - -commit e62271c7c4a988517bffaf598d09d92ab22dda02 -Author: Michal Skowronek -Date: Sat Jun 18 17:22:57 2011 +0200 - - HHH-6177 Removed duplicated test cases - -commit 6f3c564b9ae240717e705f93db6f311292e4f3a8 -Author: Michal Skowronek -Date: Wed May 25 02:57:55 2011 +0200 - - Extended test cases and provided a fix for the issue - The idea for the fix is to simply stop using properties tag for relations in favor of plain (possibly multiple) propeties - -commit 1fa0ac0be0706103266afdb536eb3070dcd24965 -Author: Michal Skowronek -Date: Tue May 17 01:34:09 2011 +0200 - - Added annotation configuration to improve readability - Added JPA-based test-case - -commit dca0fa8baf423150eef2700a9c65b1df06ccd8f2 -Author: Michal Skowronek -Date: Sun May 15 18:34:38 2011 +0200 - - Test cases for the Jira Issue HHH-6177 - -commit 84ee0fb879b0e32131fd07b0a7ed4ffb658d3478 -Author: Lukasz Antoniak -Date: Sat Jun 18 10:04:52 2011 +0200 - - HHH-5917 - Fix and test - -commit a8ee2661740ce61d4ed9a8c1d1958f0585cf1c4a -Author: Strong Liu -Date: Fri Jun 17 16:43:33 2011 +0800 - - HHH-6327 NPE when using JDBC connection pool C3pO - -commit afc406a03bf58c38712ae3253cc16446449aad6d -Author: Ocean-Blue -Date: Thu Jun 16 12:36:10 2011 -0700 - - Add comments to setDate, setTime, setTimestamp methods to reduce confusion to the Hibernate newbies in future. - -commit 1e88107f3e2e5c85db70e6b5e2bf5c9594b3894b -Author: Hardy Ferentschik -Date: Thu Jun 16 18:40:26 2011 +0200 - - HHH-6173 Some initial refactorings to start processing @Embedded and @Embeddable - -commit 7700719306eb49d7d5f08af69cf39df622572ce7 -Author: Hardy Ferentschik -Date: Wed Jun 8 11:59:19 2011 +0200 - - HHH-6173 Removing unused import - -commit 5c012f63e5fc8aec02548913011846292ee1a2cf -Author: Hardy Ferentschik -Date: Wed Jun 15 12:01:56 2011 +0200 - - HHH-6287 Adding description to junit assertions - -commit 0eb87b73b948d518fd01e09b1bcf818efe2997f5 -Author: Strong Liu -Date: Wed Jun 15 16:18:52 2011 +0800 - - HHH-6287 bind @Table.uniqueConstraints - -commit ddc1bccee62c43ee8c9144fc53f349381a6c1ace -Author: Strong Liu -Date: Wed Jun 15 17:21:16 2011 +0800 - - add log - -commit 80916b95fe537bbb577df88726cee613a362c441 -Author: Strong Liu -Date: Wed Jun 15 16:44:53 2011 +0800 - - add logging of initator - -commit 6e15b5c2825ef917c33cdec89070fd52b7ddcc72 -Author: Strong Liu -Date: Wed Jun 15 10:54:40 2011 +0800 - - HHH-6322 upgrade to hibernate-jpa-2.0-api-1.0.1.Final - -commit 8aeaf2840852642c682c7995628a470d692dc844 -Author: Gail Badner -Date: Tue Jun 14 17:00:43 2011 -0700 - - HHH-6321 : Add org.hibernate.metamodel.binding.CascadeType.toCascadeStyle() - -commit 7e2e1e3ea7a3eab6fdba64e2fc0adbc23afe0266 -Author: Gail Badner -Date: Tue Jun 14 15:36:42 2011 -0700 - - HHH-6319 : Add getter for attribute node name - -commit 496b508c739aef3f6041a8ad50d778ec8cfa503f -Author: Gail Badner -Date: Tue Jun 14 15:20:44 2011 -0700 - - HHH-6320 : Add boolean values and getters to EntityIdentifier indicating if an ID is embedded or "identifier mapper" - -commit f12aad349321a97dfb8ea082fc9ed311ae358049 -Author: Gail Badner -Date: Tue Jun 14 13:54:24 2011 -0700 - - HHH-6318 : Change EntityIdentifier.attributeBinding to be type SimpleAttributeBinding - -commit 4ef305ae2c9632df2cfa89803a21030309a07764 -Author: Gail Badner -Date: Tue Jun 14 12:51:51 2011 -0700 - - HHH-6318 : Change EntityIdentifier.attributeBinding to be type KeyValueBinding - -commit b6f9d9d5d7c41bb8e456660b2793d74f0848c0e9 -Author: Hardy Ferentschik -Date: Tue Jun 14 16:17:23 2011 +0200 - - HHH-6300 Adding support for @BatchSize and @RowId - -commit 24bd5256931c6e8efa4beb878bcb766b393b5bbe -Author: Hardy Ferentschik -Date: Tue Jun 14 12:40:14 2011 +0200 - - HHH-6300 Adding support for custom sql via @SqlInsert, @SqlUpdate, @SqlDelete and @SqlDeleteAll - -commit a2982ea939ddacc1a651e59f631a864ec5519bf8 -Author: Strong Liu -Date: Tue Jun 14 16:57:45 2011 +0800 - - format - -commit 85ce03969dd5934a18cfb1acad409b04140addd8 -Author: Strong Liu -Date: Tue Jun 14 15:57:43 2011 +0800 - - format - -commit 002779dffb6e5a0e54e771c7bef388cccba2e82d -Author: Hardy Ferentschik -Date: Mon Jun 13 16:06:33 2011 +0200 - - HHH-6300 Adding support for @Synchronize annotation - -commit 5b4e976972677c39e08744eff0dcbc54b7ceaf53 -Author: Hardy Ferentschik -Date: Mon Jun 13 14:31:52 2011 +0200 - - HHH-6307 Upgrading slf4j to 1.6.1 - -commit cbd92d05bcfab5f1c81af1477767a4114c937246 -Author: Hardy Ferentschik -Date: Mon Jun 13 14:28:50 2011 +0200 - - HHH-6300 Creating initial version of EntityBindingStateImpl. Removing un-used setters in EntityBinding - -commit 671a6a38dbff32ab284afa811aa070f307cb78a7 -Merge: 05f2d8b451 f3a6476a66 -Author: Adam Warski -Date: Mon Jun 13 01:52:57 2011 -0700 - - Merge pull request #108 from lukasz-antoniak/HHH-5580-v1.1 - - HHH-5580 - Persisting entity name instead of entity class when tracking which entities changed at a given revision - -commit f3a6476a66cfa4576301f7eb98890ad502034d7a -Author: Lukasz Antoniak -Date: Sun Jun 12 14:15:10 2011 +0200 - - HHH-5580 - Refactoring - -commit 13c9fd4f9d177fb7d022c72d674f1a23b909c443 -Author: Lukasz Antoniak -Date: Sun Jun 12 13:55:00 2011 +0200 - - HHH-5580 - Persisting entity name by default - -commit 05f2d8b4512fb46387bdc6408a437cd6f06ea13f -Author: adamw -Date: Thu Jun 9 15:28:34 2011 +0200 - - Removing unused file - -commit 7eb68c88d3bfe96c747b82c66be60e3da86e0272 -Author: adamw -Date: Thu Jun 9 13:12:42 2011 +0200 - - Removing a problematic test which didn't test what it should anyway - -commit 9fde4c0da45f8b08d017f4623ec2fc745162d7d3 -Author: Strong Liu -Date: Thu Jun 9 12:14:52 2011 +0800 - - HHH-6297 remove legacy cache api - -commit 11f83b0373a2f02f9880098d8adc5fb027a774dc -Author: Strong Liu -Date: Thu Jun 9 11:55:06 2011 +0800 - - HHH-6297 remove legacy cache api - -commit 92ad3eed8080c63eb206665953cd050ba32373d5 -Author: Strong Liu -Date: Thu Jun 9 03:53:04 2011 +0800 - - HHH-6297 remove legacy cache api - -commit ad180ff95a8e26a5ac9c748e89b3b6c14df0cd30 -Author: Steve Ebersole -Date: Wed Jun 8 23:14:53 2011 -0500 - - prep for next development cycle - -commit 15bc4ed369163131dcc57526449a5f1af3d3c699 (tag: 4.0.0.Beta1) -Author: Steve Ebersole -Date: Wed Jun 8 22:43:35 2011 -0500 - - prep 4.0.0.Beta1 release - -commit c7818f3e1e8f4081c39690fe2312c91b07132b5a -Author: Steve Ebersole -Date: Wed Jun 8 22:39:07 2011 -0500 - - prep 4.0.0.Beta1 release - -commit 4b9b4da0413504b8d0d9b155c30392a428807d4a -Author: Steve Ebersole -Date: Wed Jun 8 21:20:32 2011 -0500 - - prep 4.0.0.Beta1 release - -commit dd46fe071a92398ac850b516795a6b4a53c4efc5 -Author: andy.miller -Date: Fri May 27 14:37:09 2011 -0600 - - HHH-6258: Change the un-released batch message from WARN to DEBUG for performance improvement. - -commit bf066b812138801635e52e2af86871e9f7151af3 -Author: andy.miller -Date: Fri May 27 14:12:57 2011 -0600 - - HHH-6258: Performance enhancement to toFragmentString method to only append to the StringBuffer, and not do inserts into the beginning, which causes additional buffer allocations and copies that are unnecessary. Also, changed the StringBuffer to a StringBuilder. - -commit 02a866c70268c886c1a789b6204888b57a1d8e59 -Author: andy.miller -Date: Thu May 26 15:52:19 2011 -0600 - - HHH-6258: Fixed a problem with a conflict with Gale's change to this class. I had to add the two local variables that she didn't have that I added. - -commit 09a9b65201569676ac8388d7bfbba6a3039ee1a4 -Author: Andrig Miller -Date: Wed May 25 18:01:25 2011 -0600 - - HHH-6258: Fixed typo when getting the JdbcServices.class from the serviceRegistry. I forgot to build the source before committing. - -commit e01bb8a91141d92d193158aaeaefbc378d5d2087 -Author: Andrig Miller -Date: Wed May 25 17:40:49 2011 -0600 - - HHH-6258: Wrap trace and debug log statements to lessen the load on JBossLogManagerLogger.doLog. This improved throughput quite a bit. - -commit a917bb4b40c36dc9e09e11aaba36e160fb91601b -Author: Andrig Miller -Date: Wed May 25 17:35:07 2011 -0600 - - HHH-6258: Cached JdbcServices and Dialect in local variables to lessen load on AbtractServiceRegistryImpl.localServiceBinding(java.lang.Class). This improved throughput. - -commit abe51d5b3531a2768214a82d192b9de6b85ec90b -Author: Andrig Miller -Date: Wed May 25 17:00:11 2011 -0600 - - HHH-6258: Cached service registry classes in local variables to remove load from AbstractServiceRegistryImpl.locateServiceBinding(java.lang.Class). This resulted in a decent improvement in throughput. - -commit 8593cf91cdaade80e42930ede063aa6c48fe934c -Author: Steve Ebersole -Date: Wed Jun 8 11:12:56 2011 -0500 - - HHH-6206 - Explicitly add antlr jar to transitive dependencies - -commit 98e7f9537f94b8a922928f730d68e6ec0cb0143e -Author: Steve Ebersole -Date: Wed Jun 8 10:53:18 2011 -0500 - - HHH-6229 - Clean up MappingDefaults - -commit 6d52bcff6b544e6685f97dcb9859bb39a986601a -Author: Gail Badner -Date: Wed Jun 8 02:20:43 2011 -0700 - - HHH-6217 : Create EntityBindingState and implement for HBM XML - -commit c93ce70f9dd294d59400fd5fe83b941981c38149 -Merge: f89afec721 337bec4574 -Author: Adam Warski -Date: Wed Jun 8 00:36:11 2011 -0700 - - Merge pull request #100 from lukasz-antoniak/HHH-4760 - - HHH-4760 - NotAuditedException occurs when AuditReader.getRevisions() is called for Javassist proxies - -commit f89afec7212badf377e9f6aab22751fc11437b93 -Merge: c678392e30 814b514933 -Author: Gail Badner -Date: Tue Jun 7 10:46:43 2011 -0700 - - Merge branch 'HHH-6110' - -commit c678392e301fa015523d97cce8e7d2f63bf2c05f -Author: Galder Zamarreño -Date: Tue Jun 7 12:12:30 2011 +0200 - - HHH-6219 Nullify pending put map or singleton to avoid leaks - -commit 2077b5f43c0758b76cbf8210f7f77b3d4a3c333e -Author: Strong Liu -Date: Tue Jun 7 17:52:48 2011 +0800 - - HHH-2176 DB2 setMaxResults problem in Hibernate 3.1.3 - -commit 814b51493375bb781713a992353b6babba12dd31 -Author: Gail Badner -Date: Tue Jun 7 02:41:49 2011 -0700 - - HHH-6110 : Integrate new metamodel into persisters - -commit f78c79d676a9ca90649f1c1e981ffaa235554fae -Author: Galder Zamarreño -Date: Mon Jun 6 18:44:45 2011 +0200 - - HHH-6062 Infinispan now integrates as a synchronization - - * A new property has been defined to control whether it hooks as a - synchronization or as an XA resource. - * Updated Infinispan to 5.0.0.CR4. - -commit ba44ae26cb36463af23a9e65aa6dcee5502151d8 -Author: Gail Badner -Date: Mon Jun 6 17:26:37 2011 -0700 - - HHH-6110 : Integrate new metamodel into persisters - -commit 9c90c25fea219986f6a77d9deace988452185f1a -Author: Strong Liu -Date: Tue Jun 7 00:17:18 2011 +0800 - - HHH-6294 use enum instead of constant - -commit 72aedc8682d49a85c63fb8546114e1e7b59a078c -Author: Strong Liu -Date: Tue Jun 7 00:16:33 2011 +0800 - - HHH-6294 use enum instead of constant - -commit 1320208bafce84367fda4b551b6c18a869fc46e0 -Author: Strong Liu -Date: Mon Jun 6 16:42:13 2011 +0800 - - HHH-4943 ilike support is incomplete - -commit c6db5cfdcbc4fa48702e702a417cde70a1e9b19c -Author: Strong Liu -Date: Mon Jun 6 14:19:05 2011 +0800 - - HHH-4943 - -commit 4c98afbbadb8de36582bb24f2584f9b8f2ccec08 -Author: Strong Liu -Date: Mon Jun 6 00:11:42 2011 +0800 - - HHH-6293 avoid create unnesserary Integer object - -commit baeb6dc4004907e78455e8473e5cae4d5143d6cc -Author: Steve Ebersole -Date: Sun Jun 5 18:45:30 2011 -0500 - - HHH-6291 - Basic MetadataImpl redesign - -commit b8b003efa343e879edfde327ba876d1c1fbafc7e -Author: Steve Ebersole -Date: Sun Jun 5 15:29:07 2011 -0500 - - HHH-6291 - Basic MetadataImpl redesign - -commit 337bec45747c87e6b064da25298ebb83feb8a8df -Author: Lukasz Antoniak -Date: Sat Jun 4 14:41:25 2011 +0200 - - HHH-4760 - Fix and test - -commit 252eee4dd2a8f8baac6ab27da9aec9187cb695e4 -Author: Strong Liu -Date: Sat Jun 4 12:36:11 2011 +0800 - - HHH-6292 avoid Boolean instance creation - -commit 421585526c534886c406f80120e1f3d873beac91 -Author: Strong Liu -Date: Sat Jun 4 10:43:01 2011 +0800 - - HHH-6282 remove tagRelease.sh, since we do not use it anymore - -commit 198aa1c242577c08fc9491fd3652ff1229be71bf -Merge: e68f4fb085 834fa2140f -Author: gbadner -Date: Fri Jun 3 15:14:58 2011 -0700 - - Merge pull request #99 from gbadner/HHH-6290-root - - HHH-6290 : Add EntityBinding.isRoot() - -commit e68f4fb0852f7e3eddff2771f313246af40ba0b3 -Author: Steve Ebersole -Date: Fri Jun 3 16:27:04 2011 -0500 - - HHH-6281 - Basic HbmBinder cleanup - -commit 834fa2140f7f7e99aee783843c7a8819cdf5a4bb -Author: Gail Badner -Date: Fri Jun 3 10:49:15 2011 -0700 - - HHH-6290 : Add EntityBinding.isRoot() - -commit b84ec25b63fa9a8d0f3c4465f98754ceb97f1914 -Author: adamw -Date: Thu Jun 2 16:59:47 2011 +0200 - - HHH-6020: marking the failing method as @FailureExpected, enabling the tests in the build - -commit 8d558505c0118757b044939806d64e132abca2f9 -Author: Strong Liu -Date: Thu Jun 2 22:03:37 2011 +0800 - - HHH-6282 clean out-of-date config files in etc dir - -commit 945d9376a2a6072bc6b9422ece181228bb029ed7 -Author: adamw -Date: Thu Jun 2 15:25:18 2011 +0200 - - HHH-6078: documenting how to implement conditional auditing - -commit dbf18c13ec5fe6de7f7e7287537161b7b5199369 -Author: adamw -Date: Thu Jun 2 12:14:58 2011 +0200 - - HHH-5967: forward-porting test - -commit e9cf8dd11521c0f07134a09041ddc0793d3f50b1 -Author: adamw -Date: Thu Jun 2 12:04:05 2011 +0200 - - HHH-5967: code cleanup, extending test - -commit c173762e59000675c4fa024e9b5c64116ebee2a4 -Author: Oliver Lorenz -Date: Wed May 25 19:20:01 2011 +0200 - - added class documentation to new test - -commit 51df2f78e45afcb3bb833a8196e688ea222a06a6 -Author: Oliver Lorenz -Date: Wed May 25 14:41:11 2011 +0200 - - optimized imports on test - -commit 4fac1d4344550b11661fafe66c4fcb2342924be8 -Author: Oliver Lorenz -Date: Wed May 25 13:48:00 2011 +0200 - - cleaned up the code I introduced - -commit 735899da92dd17e2ab62f920b7a8a7613ea572e8 -Author: Oliver Lorenz -Date: Wed May 25 11:53:30 2011 +0200 - - first fix (must still be cleaned up) - -commit 74b83b06f2d3d022d360660fd8941ea0b238de09 -Author: Oliver Lorenz -Date: Wed May 25 11:50:51 2011 +0200 - - added test for bug with ManyToMany Set - - added a Test that reproduces the bug with the ManyToMany Set when using the ValidityAuditStrategy - -commit 789bf604278cc9f80da74bb42b821351577ea274 -Author: adamw -Date: Thu Jun 2 11:07:11 2011 +0200 - - HHH-5580: some documentation fixes - -commit ae7b95c8766caee2a76bf234378ccb7947134ace -Author: adamw -Date: Thu Jun 2 10:08:05 2011 +0200 - - HHH-5580: fixing compilation error (class moved) - -commit f865be973994db70b866b3e3f320d314814af9b4 -Merge: 0c9a55d33c 4022571196 -Author: adamw -Date: Thu Jun 2 10:00:36 2011 +0200 - - Merge branch 'HHH-5580-POC' of git://github.com/lukasz-antoniak/hibernate-core - - Conflicts: - hibernate-envers/src/main/java/org/hibernate/envers/reader/AuditReaderImpl.java - -commit 0c9a55d33cdd71e700751c67ae5ce1a718ff2822 -Author: adamw -Date: Thu Jun 2 07:52:30 2011 +0200 - - HHH-5025: waiting max 3 seconds for the cache to be written to disk - -commit 0a55292b7c1565934592a99d30f9ab338689c359 -Merge: 7beb1f2601 d62e362d54 -Author: Adam Warski -Date: Wed Jun 1 22:37:50 2011 -0700 - - Merge pull request #90 from lukasz-antoniak/HHH-5025 - - HHH-5025 - Support caching audit queries using ehcache's DiskStore - -commit 7beb1f2601a566737e34a25910a0d22c28135fc3 -Author: Strong Liu -Date: Wed Jun 1 22:03:06 2011 +0800 - - HHH-6246 ConfiguredClass should honor default access from persistence-metadata-unit - -commit e0d90cee4995db66e7958f69273f17ab2d5f09c3 -Author: Steve Ebersole -Date: Wed Jun 1 16:42:23 2011 -0500 - - HHH-6279 - Bind database object definitions - -commit 1776207c8b219c19690ec5d2c21d25490172ee8e -Author: Hardy Ferentschik -Date: Wed Jun 1 14:53:10 2011 +0200 - - HHH-6171 adding comment - -commit 6fe3072976205390f945b7aa96e1ed12b6b16f94 -Author: Hardy Ferentschik -Date: Wed Jun 1 13:30:54 2011 +0200 - - HHH-6271 Making sure orm.xml version 1 is supported - -commit 7a187648932f33b0b8138b2968742372ca6c61a7 -Author: Strong Liu -Date: Wed Jun 1 16:31:01 2011 +0800 - - HHH-6273 - Bind identifier-generator definitions (was committed by Steve) - -commit 32a320d07864890f712c77d01f423b34975d94f8 -Author: Strong Liu -Date: Tue May 31 17:39:11 2011 +0800 - - HHH-6261 - -commit ec0e823b64d1dea23f3ce847346ba293ce02319f -Author: Hardy Ferentschik -Date: Tue May 31 11:16:32 2011 +0200 - - HHH-6261 formatting - -commit 19f629b461d40389c7cf960f015f103eb0e95641 -Author: Strong Liu -Date: Tue May 31 14:48:44 2011 +0800 - - HHH-6261 Bind @GeneratedValue - -commit 3ff1b440c24a0b904f767578a122707d0922a8c3 -Author: Strong Liu -Date: Mon May 30 20:00:38 2011 +0800 - - HHH-6261 - -commit 625d781af1ec2ae0c03d3db5b4f4832a8c61d8e9 -Author: Strong Liu -Date: Tue May 31 00:05:09 2011 +0800 - - HHH-4489 need method "refresh(String entityName, Object obj)" - -commit eb5bc1609d28dc740a249e622850a3b3b15b5ace -Author: Strong Liu -Date: Mon May 30 12:19:44 2011 +0800 - - HHH-4489 need method "refresh(String entityName, Object obj)" - -commit 4be53e9a22f3a619672441e140241e0da0f9fedb -Author: Strong Liu -Date: Tue May 31 00:52:01 2011 +0800 - - HHH-6276 org.hibernate.test.cache.ehcache.EhCacheRegionFactoryImpl fails due to no slf4j in test configuration - -commit 1ec6f9f793771c50383671f02d182d6891afab57 -Author: Strong Liu -Date: Tue May 31 00:39:22 2011 +0800 - - HHH-6276 org.hibernate.test.cache.ehcache.EhCacheRegionFactoryImpl fails due to no slf4j in test configuration - -commit 0f18069ecd05d6587b37949d191ff99f8393f353 -Author: Strong Liu -Date: Tue May 31 00:25:53 2011 +0800 - - HHH-6276 org.hibernate.test.cache.ehcache.EhCacheRegionFactoryImpl fails due to no slf4j in test configuration - -commit debd342e4881c3b681ac8f25aa808cb3a114d406 -Author: Hardy Ferentschik -Date: Mon May 30 11:17:40 2011 +0200 - - HHH-6263 Minor coding changes and removing unclear comment - -commit 151d9ce316f90f3766352db72effa62bc056e3eb -Author: Gail Badner -Date: Fri May 27 11:55:55 2011 -0700 - - HHH-6232 : Minor correction adding discriminator value to DiscriminatorBindingState - -commit 5df5883e31841943ac152e4a001bc18e34e51066 -Author: Gail Badner -Date: Tue May 17 15:28:32 2011 -0700 - - HHH-6232 : Add discriminator value to DiscriminatorBindingState - -commit 40225711963be4f38e961b2faef4a7ea545cba1a -Author: Lukasz Antoniak -Date: Sat May 28 17:01:26 2011 +0200 - - HHH-5580 - Naming and EntitiesModifiedAtRevisionQuery tests - -commit d62e362d54e1da0cbc700d5409460a542a394b26 -Author: Lukasz Antoniak -Date: Sat May 28 13:44:23 2011 +0200 - - HHH-5025 - Test case fix - -commit 792c85a053e310c65f85f307598d8a57f4a6971a -Author: Gail Badner -Date: Fri May 27 15:43:06 2011 -0700 - - HHH-6274 : Logging format error causes many test failures - -commit b11dafbc26eaa94a22e2e28e55b2d9ef85f6bd47 -Merge: 66347adca6 bd8e7e37f0 -Author: gbadner -Date: Fri May 27 15:00:47 2011 -0700 - - Merge pull request #92 from gbadner/HHH-6267-metadata-to-svc-initiators - - HHH-6267 : Plumb MetadataImplementor into service initiators registered i - -commit 66347adca60b61d700d2be2e057e33d1f0487666 -Author: Steve Ebersole -Date: Fri May 27 13:00:33 2011 -0500 - - HHH-6272 - More logging fix ups - -commit bd8e7e37f0a5182ea1132561bb38d76133846d8d -Author: Gail Badner -Date: Thu May 26 16:10:22 2011 -0700 - - HHH-6267 : Minor fixes for Plumb MetadataImplementor into service initiators - -commit 6b3d428366c9e90e216aecaa49b025e0a0adfc22 -Author: Gail Badner -Date: Thu May 26 15:23:05 2011 -0700 - - HHH-6267 : Minor fixes for Plumb MetadataImplementor into service initiators - -commit 8a0eeedec83b2427bcdf95303d9882da783f6e8d -Author: Gail Badner -Date: Thu May 26 13:48:38 2011 -0700 - - HHH-6267 : Plumb MetadataImplementor into service initiators registered in SessionFactoryServiceRegistry - -commit d99f2ad2dab95d8905fefcac4af0475509a4bb88 -Author: Steve Ebersole -Date: Thu May 26 15:58:53 2011 -0500 - - HHH-6266 - Bind filter definitions - -commit 5a1697a77e99d583bef49ef59ef786f91708b8ed -Author: Lukasz Antoniak -Date: Thu May 26 22:54:24 2011 +0200 - - HHH-5025 - Comments - -commit fd25e7704bc0cf73595a42c8a842e897fea34190 -Author: Steve Ebersole -Date: Thu May 26 15:26:40 2011 -0500 - - HHH-6264 - Bind typedef information - -commit 97d2ee3dac34aa7faaf4ef346884f2f1de6caa52 -Author: Lukasz Antoniak -Date: Thu May 26 22:16:49 2011 +0200 - - HHH-5025 - RevisionType serialization fix and test - -commit 227141e6433001359cf9f6477752e1f481df8611 -Author: Hardy Ferentschik -Date: Thu May 26 18:21:53 2011 +0200 - - HHH-6263 Binding @Proxy. Adding some tests - -commit bd900d9bb186c3733ca1a552f0b3d49510f2598f -Author: Hardy Ferentschik -Date: Thu May 26 14:10:10 2011 +0200 - - HHH-6263 Refactoring HibernateXmlBinder and HibernateMappingBinder. Removing the former and renaming the latter to HbmBinder - -commit 86ddbc09d9e578d719154591f7d9bbf3c0785b0b -Author: Gail Badner -Date: Tue May 24 13:53:21 2011 -0700 - - HHH-6110 : Integrate new metamodel into persisters - -commit 6a3d4dc4ca4c782da7daea51c34ebd42759746f6 -Author: Gail Badner -Date: Wed May 25 12:08:06 2011 -0700 - - HHH-6251 : Fixes/improvements to CollectionEement-related classes - -commit e61896454b8d82a1f852c3bcf69485166f6865fe -Author: Hardy Ferentschik -Date: Wed May 25 17:20:45 2011 +0200 - - HHH-6172 Parsing cascade type in AssociationAttribute - -commit 2570685399a8a25c2ada5b6abeff1b715b40cad0 -Author: Hardy Ferentschik -Date: Wed May 25 16:47:48 2011 +0200 - - HHH-6172 Introducing CascadeType enum as a replacement for the string 'cascade' - -commit 8ff2f9d1928327cd665068f809aab6dca082c49f -Merge: 1d8c06b321 f07044a82f -Author: Adam Warski -Date: Wed May 25 05:56:24 2011 -0700 - - Merge pull request #76 from skowronm/HHH-6176 - - HHH-6176: Envers ignores custom comparators for SortedSets - -commit 1d8c06b3213c8e98a617553e267d90ee3b7649c1 -Author: Sanne Grinovero -Date: Tue May 24 18:47:07 2011 +0100 - - HHH-6250 - Some classes still using SLF4J - -commit 0b7514d100dd884f4569544571d8d7e25ee532d3 -Author: Hardy Ferentschik -Date: Wed May 25 11:33:17 2011 +0200 - - HHH-6132 Formatting - -commit 41e81cbc67088f7fd9636fdb59cc3e912495fe24 -Author: Strong Liu -Date: Wed May 25 16:35:58 2011 +0800 - - HHH-2225 NPE when eager fetching joined component with native SQL query - -commit 6d5ed5fc5ef868957fc45fb303da39c82a5d4651 -Author: Gail Badner -Date: Tue May 24 13:45:25 2011 -0700 - - HHH-6251 : Create CollectionEement subclasses - -commit 9b48cd993e0aa810efa50fcf0cf8148d213f0a34 -Author: JPAV -Date: Tue May 24 13:02:09 2011 -0500 - - HHH-6132: Removed an extraneous Index parameter from the various JandexHelper.getValue methods, and modified all references to those methods accordingly - -commit 7258cb98f47afafa8d6a70954613188cb3d25e78 -Author: JPAV -Date: Mon May 9 11:26:00 2011 -0500 - - HHH-6132: Created binders for several global configurations and updated metadata appropriately. - -commit 3960b0d8eaab0bcd1cdd0fd3d73a48e34c792f5e -Author: Hardy Ferentschik -Date: Tue May 24 12:01:03 2011 +0200 - - HHH-6172 Extracting initial attributes for ManyToOne - -commit 49e75c83ce1ba3c23683b99482a96f358eef1a22 -Author: Hardy Ferentschik -Date: Mon May 23 22:58:30 2011 +0200 - - HHH-6172 Creating class hierarchy - MappedAttribute -> SimpleAttribute -> AssociationAttribute - -commit 7a33446f546c1b1703f2f654749db1f3a5ba6b90 -Author: Strong Liu -Date: Tue May 24 17:28:51 2011 +0800 - - HHH-6248 Ominous-sounding WARN message from SessionFactoryObjectFactory - -commit 36e0d7ecedb1b211c68014d26dedb9c2026af835 -Author: Lukasz Antoniak -Date: Mon May 23 19:42:58 2011 +0200 - - HHH-5580 - Documentation fix - -commit 7b2e5251d3148acbcbf68da445b412e0f4432435 -Merge: 4f1bee1727 b146696ee5 -Author: Adam Warski -Date: Mon May 23 10:26:08 2011 -0700 - - Merge pull request #81 from lukasz-antoniak/HHH-5808 - - HHH-5808 - ObjectNotFoundException for an audited optional association. Envers is creating a proxy even when the association is null. - -commit 4f1bee172774a60f1546d1a8bb6ca9a8e57f03d1 -Author: Steve Ebersole -Date: Mon May 23 11:59:47 2011 -0500 - - HHH-6247 - Log (warn) inability for EM to join transaction only when user explicitly asked for join - -commit c88cdaff96805c49bc4c3a326d97e87aef70addd -Author: Steve Ebersole -Date: Mon May 23 11:48:49 2011 -0500 - - HHH-6247 - Log (warn) inability for EM to join transaction only when user explicitly asked for join - -commit b1b9eb9864a37c3fefcee441c4a0008e04bdef02 -Author: Strong Liu -Date: Mon May 23 12:44:58 2011 +0800 - - HHH-6243 JBPAPP-3312 org.hibernate.test.legacy.CustomSQLTest fails - -commit 3b8678864a9e609ba0a8c55fe354f62f0b38591e -Author: Strong Liu -Date: Mon May 23 12:09:50 2011 +0800 - - HHH-6242 no Types.BINARY type mapping in PostgresqlDialect - -commit c1415b4b8f01d0c3f091f0e7373a00ac6fc9e16b -Author: Strong Liu -Date: Sun May 22 20:23:29 2011 +0800 - - HHH-6113 re-fact and more tests - -commit c62e5fccc848f33667cba9dccf9cb44e057d4675 -Author: Strong Liu -Date: Sun May 22 20:05:27 2011 +0800 - - HHH-6113 re-fact and more tests - -commit 2abbe4d8412df4864adfe6a3043e65bed2b1424b -Author: Strong Liu -Date: Tue May 17 20:14:32 2011 +0800 - - HHH-6113 change to a better class name - -commit cb63f03437e0e447847b3f8da718cb3fd31580d5 -Author: Strong Liu -Date: Sun May 15 16:37:31 2011 +0800 - - HHH-6113 test and license header - -commit b30024ee9daa2f04cd05bec146054e0c02074ade -Author: Strong Liu -Date: Fri May 13 16:08:12 2011 +0800 - - HHH-6113 mock global configurations to annotation - -commit f07044a82ff5884cbaa3513274e56c45396972e7 -Author: Michal Skowronek -Date: Sat May 21 22:11:28 2011 +0200 - - Added test cases for SortedMap - Fixed issue with custom comparators - -commit 71a256624f27a0131f73d037b61fbd7a4916fb52 -Merge: 3b1cd7638d 52b2930b47 -Author: Michal Skowronek -Date: Sat May 21 14:43:07 2011 +0200 - - Merge commit 'upstream/master' into HHH-6176 - -commit e558538ca1a86f116732c992bcafe75f6fb72c32 -Author: Lukasz Antoniak -Date: Sat May 21 13:35:36 2011 +0200 - - HHH-5580 - Cleanup - -commit c2e53061f2817ca091a5384a173b0e07067a5d2a -Author: Lukasz Antoniak -Date: Sat May 21 12:49:37 2011 +0200 - - HHH-5580 - Cleanup - -commit b146696ee52fa68ec2b9bc60ea9a769616f00ede -Author: Lukasz Antoniak -Date: Fri May 20 22:12:01 2011 +0200 - - HHH-5808 - Tests refactoring - -commit 52b2930b4777470653765af5d5cf8ea339fa8fa5 -Author: Steve Ebersole -Date: Fri May 20 12:22:33 2011 -0500 - - HHH-6240 - Add access to configuration options targetting metamodel building - -commit 65c2c831ca3053a695dd3e2e64b9b8e26582b08b -Author: Steve Ebersole -Date: Fri May 20 10:40:54 2011 -0500 - - HHH-6239 - Add service for access to configuration options/settings map - -commit 335eb1c23192898f69189ec475c1aba9a53f3611 -Author: Hardy Ferentschik -Date: Fri May 20 12:49:11 2011 +0200 - - HHH-6172 Adding annotation placeholders for annotation based state impls - -commit 5385cc5cc00d6ae4e838b252de4223db4a8d86b3 -Author: Steve Ebersole -Date: Thu May 19 17:29:21 2011 -0500 - - HHH-6237 - Remove Service proxy code - -commit c4f65ffd8e44c388e8f5c5dd6990d4906ec5a6a8 -Author: Lukasz Antoniak -Date: Thu May 19 21:39:31 2011 +0200 - - HHH-5808 - Code formatting - -commit bcfa5ffed9594adacbefd6e1ee8faaa65216848c -Author: Lukasz Antoniak -Date: Thu May 19 21:30:13 2011 +0200 - - HHH-5808 - Fix and test - -commit dcc3546378347f9374df1c21f57dbf1e06d2607b -Author: Scott Marlow -Date: Thu May 19 13:04:33 2011 -0400 - - change some connection related log messages from INFO to DEBUG - -commit 49cf328bb87cfaa77df2734c588e1196681abbc3 -Author: Hardy Ferentschik -Date: Thu May 19 17:01:10 2011 +0200 - - HHH-6172 Cleaning up AbstractBasicBindingTests - -commit 14efea6e21b0763a56cccec45ef87ffb1a2bd9b9 -Author: Hardy Ferentschik -Date: Thu May 19 15:32:00 2011 +0200 - - HHH-6171 Moving MappingDefaults and MappingHelper into sub-packages of hbm binding - -commit 6aee9365eefa9ccc29aeb20be9999d74d8183c88 -Author: Hardy Ferentschik -Date: Thu May 19 15:01:55 2011 +0200 - - HHH-6171 Binding OptimisticLock annotation - -commit fc456e37560125204f9a37abe1cd2328680eab8b -Author: Hardy Ferentschik -Date: Wed May 18 17:10:26 2011 +0200 - - HHH-6171 Implementing lazy, optional, property generation, insertable and updatable ofSimpleAttributeBindingState - -commit d6b36fca5a1d54071004e4f2ac3b71e04fe61b9f -Author: Hardy Ferentschik -Date: Wed May 18 14:52:36 2011 +0200 - - HHH-6171 Parsing o.h.a.Type and o.h.a.Parameter - -commit 2b694d7a86de7db604b668264e1c7b6f55fef2fe -Author: Hardy Ferentschik -Date: Wed May 18 14:21:23 2011 +0200 - - HHH-6171 Switching to Map as type parameters in HibernateTypeDescriptor (needs maybe to change to Map). Properties is the wrong class to use. - - Also fixed several variable and method typos, eg updatable instead of updateable. And we are talking about a discriminator not descriminator. - -commit 403b15cae8d19f83c35c9490826d24b0bf5c2fa0 -Author: Lukasz Antoniak -Date: Tue May 17 23:14:01 2011 +0200 - - HHH-5580 - Query refactoring - -commit bf4d8ad29036556ef7551257f75c83487dd945a9 -Author: Hardy Ferentschik -Date: Tue May 17 17:20:51 2011 +0200 - - HHH-6171 Some more name changes. Also adding setter/getter for TypeDef to MetadataImpl - -commit c7293c2170a21c84fd3aa766157deab4b7fe1d9a -Author: Hardy Ferentschik -Date: Tue May 17 15:12:57 2011 +0200 - - HHH-6171 Restructering packages, especially a new package for the entity binders. This is consistent w/ the glboal package which contains the binders for entity unrelated binding - -commit f01505591d137689c0dbd58df56946e5c55d91eb -Author: Galder Zamarreño -Date: Tue May 17 13:55:44 2011 +0200 - - HHH-6186 Upgraded to latest Infinispan 5.0 CR - -commit fc94dd07eb32c457ca1eda5f5b42638de964608b -Author: Hardy Ferentschik -Date: Tue May 17 12:33:39 2011 +0200 - - HHH-6230 Splitting org.hibernate.metamodel.state into org.hibernate.metamodel.binding.state and org.hibernate.metamodel.relational.state. - - Not 100% if this is the best structure, but seems in all cases better then org.hibernate.metamodel.state - -commit db4e0b0c52f24770e3c2d576cebbd1db372cf0b0 -Author: Hardy Ferentschik -Date: Tue May 17 12:25:33 2011 +0200 - - HHH-6230 Formatting and typo fix in method name - -commit 2fd2bc3e8dc6ccc29c5941144bb3e7f95edfa0d2 -Author: Hardy Ferentschik -Date: Tue May 17 12:20:07 2011 +0200 - - HHH-6230 Formatting - -commit fc942278cc25a7b3bfa96513c4d20d0baeed3331 -Author: Hardy Ferentschik -Date: Tue May 17 12:19:44 2011 +0200 - - HHH-6230 Fixing wrong usage of equals. A string was compared against an enum - -commit 755e6fcd25b86e6c1c8c531c171cc7ec830b0422 -Author: Gail Badner -Date: Mon May 16 18:18:58 2011 -0700 - - HHH-6230 : Rework attribute binding using attribute states - -commit 006c96b952db7abe5ae94e68dc86ee462757230d -Author: Stevo Slavic -Date: Tue May 17 01:17:39 2011 +0200 - - HHH-6228 Compile tasks using now UTF-8 encoding. Initially they used platform encoding making build platform dependent. - - Change-Id: I64d5496a71c96008b175f53b3febdad7ed6febfd - -commit 3b1cd7638df3a7314db04dba595ae2be95cf397f -Merge: fc7bb2162c cb7eb17caa -Author: Michal Skowronek -Date: Tue May 17 00:25:18 2011 +0200 - - Merge commit 'upstream/master' into HHH-6176 - -commit fc7bb2162c0a19357188dd5d809a79a6401c0255 -Author: Michal Skowronek -Date: Tue May 17 00:06:46 2011 +0200 - - Removed xml configuration-based test cases - -commit 7dc925fcf683414b1fab600b7a98cb4fad539c39 -Author: Lukasz Antoniak -Date: Mon May 16 22:06:45 2011 +0200 - - HHH-5580 - Improving findEntityTypesChangedInRevision() method performance - -commit cb7eb17caa6da6c231566be32c99aebfa3c995c4 -Author: Hardy Ferentschik -Date: Mon May 16 21:17:37 2011 +0200 - - HHH-6202 Binding discriminator column. - - Using org.hibernate.metamodel.binding.InheritanceType in ConfiguredClass which has a NO_INHERITANCE enum value. - Adding some initial tests - -commit 85b0725c2835357d715bf2550c78bad8bfc51bf8 -Author: Hardy Ferentschik -Date: Mon May 16 21:15:34 2011 +0200 - - HHH-6202 Cleanup of existing classes. Replacing TODO with AssertionFailure - -commit 94590c5062b623fe45ca1b672ac65b5aa48f7ad6 -Author: Lukasz Antoniak -Date: Mon May 16 19:29:57 2011 +0200 - - HHH-5580 - Naming - -commit 1878b238503f3b52a6e7b31f849d7253206c7465 -Author: Lukasz Antoniak -Date: Mon May 16 19:18:30 2011 +0200 - - HHH-5580 - Naming - -commit 5d766b237b23147ee0411862aee5d9d438441c97 -Author: Hardy Ferentschik -Date: Mon May 16 17:45:49 2011 +0200 - - HHH-6202 Adding new helper method for getting a single annotation instance from a map - -commit ac0cf3afd816d00b006a299094c37ae1f8744415 -Author: Hardy Ferentschik -Date: Mon May 16 17:34:28 2011 +0200 - - HHH-6202 Deleting deprecated annotations. Core 4 seems to be a good point to get rid of them. - -commit 3bef5524832e73192c43df3b8cc79042fed2c12a -Author: Hardy Ferentschik -Date: Fri May 13 18:39:02 2011 +0200 - - HHH-6202 Starting to process the discriminator column - -commit ab1dca7e8623c18eef03aea33874d628152a4ecf -Author: Hardy Ferentschik -Date: Thu May 12 17:09:44 2011 +0200 - - HHH-6202 Adding InheritanceType enum - -commit c380da695092d6a6c35b919e009f4aeaaeabc31c -Author: Michal Skowronek -Date: Sun May 15 19:52:36 2011 +0200 - - Updated JIRA Keys - -commit c49f7df178aedf312db8b997e811fa797a1050aa -Author: Michal Skowronek -Date: Sun May 15 19:40:51 2011 +0200 - - Test cases for the Jira Issue HHH-6176 - -commit dd55a99b00c447e53fe97bdbc423f3e6d7d59557 -Author: Lukasz Antoniak -Date: Sun May 15 00:46:54 2011 +0200 - - HHH-5580 - Using Criteria API in RevisionInfoQueryCreator - -commit b36b095c3ce32d2981f5780463bbea8d48105f5a -Author: Lukasz Antoniak -Date: Sat May 14 23:47:34 2011 +0200 - - HHH-5580 - Refactoring - -commit f70f8d7101f2b054a134459d6d64f30fda289db1 -Author: Strong Liu -Date: Fri May 13 21:16:15 2011 +0800 - - HHH-6133 update global configuration override strategy to make it consisit with previouse version - -commit 4e0f6a15780a4515320292137395f5b40fab6275 -Author: Strong Liu -Date: Fri May 13 12:54:33 2011 +0800 - - HHH-6133 new added list was not put into map in GlobalAnnotations - -commit 48d93c88bc299fd562ef613cbb1f791cdb1e43f0 -Author: Strong Liu -Date: Thu May 12 22:42:33 2011 +0800 - - HHH-5434 org.hibernate.test.filter.DynamicFilterTest testSqlSyntaxOfFiltersWithUnions fails with Ingres dialect - -commit 0278966b2eb2f112d0a66d8e4af97d6ab2617406 -Author: Hardy Ferentschik -Date: Thu May 12 12:04:45 2011 +0200 - - Removing obsolete DomHelper. Removing dom4j methods from MappingHelper. Removing getClassValue, because ClassLoaderService should be used - -commit 095e858f7746203df8e74b1c36b6038442b1a0c0 -Author: Hardy Ferentschik -Date: Thu May 12 11:07:10 2011 +0200 - - HHH-6133 Formatting and applying missing licence header - -commit 0e20d34cd8da3c0ed6b7904074620d2fd24913e5 -Author: Strong Liu -Date: Thu May 12 15:42:26 2011 +0800 - - HHH-6133 add an additional AnnotationValue for each mocked AnnotationInstance to mark it is from xml - -commit 7e999e421de7a887a1779451ec1b5e3fb50822b8 -Author: Strong Liu -Date: Thu May 12 15:34:39 2011 +0800 - - HHH-6133 mock attribute annotations wrt access type, was mock one attribute annotations on both property and field - -commit 635ee5a0ec88e7e68d1c65dcd8f0fe96d207ee3b -Author: Strong Liu -Date: Wed May 11 23:21:45 2011 +0800 - - HHH-6133 Enhance annotation based Jandex index with configuration extracted from orm.xml - -commit 31d0ca2f0f7d235b8d0069757ad47c6d03e5725a -Author: Strong Liu -Date: Wed May 11 23:21:28 2011 +0800 - - HHH-6133 Enhance annotation based Jandex index with configuration extracted from orm.xml - -commit fcf439d4d108a7cf17cb6566c886a80b3f1b3e5c -Author: Strong Liu -Date: Wed May 11 17:40:10 2011 +0800 - - HHH-6133 Enhance annotation based Jandex index with configuration extracted from orm.xml - -commit de1e1717c522231a83e1ef7654a6a18a1649ca8e -Author: Hardy Ferentschik -Date: Wed May 11 16:17:07 2011 +0200 - - HHH-6119 Formatting - -commit 790b8dcbf8e383e25b914e609177a8893bb49344 -Author: Michael Rudolf -Date: Wed Apr 13 14:09:25 2011 +0200 - - Added null checks to prevent NullPointerExceptions when the path source is null. - - Signed-off-by: Michael Rudolf - -commit 77753b3496704826f7c1a76b32ec1dacfffd5fdc -Author: Michael Rudolf -Date: Wed Apr 13 12:31:49 2011 +0200 - - Added test showing misbehaviour of AbstractPathImpl.get(String), which throws a NullPointerException while preparing an IllegalArgumentException that should be thrown here. - - Signed-off-by: Michael Rudolf - -commit 850cfda6c3fe497b5e7b52a13f35010665465234 -Author: Hardy Ferentschik -Date: Wed May 11 15:12:06 2011 +0200 - - HHH-6207 Implementing binding of @Cacheable. Changing implementation of Caching to use AccessType enum instead of string - -commit 3dfeceffe3bd47379674605c3f6a0ea9899b6adc -Author: Hardy Ferentschik -Date: Tue May 10 17:13:02 2011 +0200 - - HHH-6214 Updated test - -commit 996d567731bcb2b444d83f185473f78b3fc49e84 -Author: Hardy Ferentschik -Date: Tue May 10 15:48:14 2011 +0200 - - HHH-6214 Converting RegionFactory to a Service - -commit e98b3ac7279b311a725726e0406cd675641da19c -Author: Gail Badner -Date: Mon May 9 10:30:58 2011 -0500 - - HHH-6213 : Move domain and relational state interfaces into org.hibernate.metamodel.state - -commit 66a641df055432b4db45fc0400578717acfcbabd -Author: Steve Ebersole -Date: Mon May 9 10:07:18 2011 -0500 - - HHH-6211 - Fix bad pull request merge - -commit 6e716573313271ba77c5a608f9977730fad90b03 -Author: Steve Ebersole -Date: Mon May 9 10:06:45 2011 -0500 - - HHH-6211 - Fix bad pull request merge - -commit 040883617d8622e3c0266dd048f8a40e55ddeb77 -Author: Hardy Ferentschik -Date: Sun May 8 21:46:27 2011 +0200 - - some readme markdown improvements - -commit 99647833c426aed755050546a483d91a9f8d8e3a -Author: Hardy Ferentschik -Date: Sun May 8 21:33:37 2011 +0200 - - HHH-6207 Binfing o.h.a.Cache - -commit 83ef3ba3d692b4531dcd147bba85391e04c2cba3 -Author: Hardy Ferentschik -Date: Sun May 8 21:31:48 2011 +0200 - - HHH-6207 Making the readme a github markdown readme - -commit e5da09cee023ea1fd67d491a9ae761fdf36cfd2f -Author: Hardy Ferentschik -Date: Sun May 8 01:04:16 2011 +0200 - - HHH-6201 Introducing a Nonentity, refactoring ConfiguredClass to properly support binding of mapped superclasses and non entities - -commit 7b121038a1da9707125bc57543a83a5af94e2f7e -Author: Hardy Ferentschik -Date: Sun May 8 01:02:29 2011 +0200 - - HHH-6201 javadoc - -commit b14a514d7383de1c1b7583e88e58606556d19a52 -Author: Hardy Ferentschik -Date: Sun May 8 01:02:06 2011 +0200 - - HHH-6201 Handling of o.h.a.Entity and o.h.a.Immutable - -commit a4357757c115c535cecc2f9f848eeeb1a945b2c8 -Author: Hardy Ferentschik -Date: Sun May 8 01:01:12 2011 +0200 - - HHH-6201 typo - -commit 6c1d61c7b802062c4d6cbf83299363f08597508f -Author: Hardy Ferentschik -Date: Sun May 8 01:00:55 2011 +0200 - - HHH-6201 Import cleanup - -commit 2ba3cc6dab8907e84159b034515c8ced80f0555b -Author: Lukasz Antoniak -Date: Sun May 8 00:40:14 2011 +0200 - - HHH-5580 - Handle PersistentCollectionChangeWorkUnit - -commit d1e092b471c34c57d43fbf37db111e2de30d7704 -Author: Lukasz Antoniak -Date: Sat May 7 23:23:15 2011 +0200 - - HHH-5580 - Documentation update - -commit 53699cecac7477d64ac3dff6c3a24d5658bfc789 -Author: Lukasz Antoniak -Date: Sat May 7 19:06:21 2011 +0200 - - HHH-5580 - Modified EntityTrackingRevisionListener interface - -commit 88eda2b0815622107484f2cab29c1104e2db2cd9 -Author: Lukasz Antoniak -Date: Fri Apr 29 13:44:39 2011 +0200 - - HHH-5580 - Query fix - -commit 87a01563feb82cf6845840dd579ff8bb2bb0ff3b -Author: Steve Ebersole -Date: Thu May 5 15:41:37 2011 -0500 - - prepare for post 4.0.0.Alpha3 dev - -commit 5873ff8e949bc8d6b54b43f5578fa041d07d5532 -Author: Steve Ebersole -Date: Wed May 4 21:58:48 2011 -0500 - - prepare 4.0.0.Alpha3 - -commit 9c388815ff287dba57e479d79fc6737593bb53cc -Author: Steve Ebersole -Date: Wed May 4 21:37:29 2011 -0500 - - prepare 4.0.0.Alpha3 - -commit 53f854391198f5134cd9f074f1878b432c09a6c2 -Merge: 101aa09e36 cf12382292 -Author: Greg Luck -Date: Thu May 5 10:14:17 2011 -0700 - - Merge pull request #60 from alexsnaps/4.0 - - HHH-6083 - -commit 101aa09e3610dacd267ce4af1fcfcda167c0ec16 -Author: Hardy Ferentschik -Date: Thu May 5 15:44:05 2011 +0200 - - HHH-6174 Adding support for o.h.a.Index - -commit 328d72e1cddda1c1d55d8b40699768c9c5c04b82 -Author: Hardy Ferentschik -Date: Thu May 5 15:43:42 2011 +0200 - - HHH-6174 Making the usage of binder classes more consistent. AnnotationBinder is now differentiating now between pro and post entity binding - -commit 03d975fdb7f0902cd959766811e5e12d116df91b -Author: Hardy Ferentschik -Date: Thu May 5 15:40:56 2011 +0200 - - HHH-6174 Implementing toString, equals and hashCode - -commit 3028ad2f341b18cd64d9144c05523c376e472a2d -Author: Hardy Ferentschik -Date: Thu May 5 15:40:24 2011 +0200 - - HHH-6174 Formatting - -commit f3cf1d2ae59a364e62dd877da4a40b872c3e4474 -Author: Hardy Ferentschik -Date: Thu May 5 15:39:39 2011 +0200 - - HHH-6174 Allowing of creation of ObjectName from single string - -commit 360317eedf33bc3815f821071e2651db670bd095 -Author: Steve Ebersole -Date: Wed May 4 18:49:33 2011 -0500 - - HHH-6200 - Split org.hibernate.hql package into api/spi/internal - -commit a806626a2765b270b68df16f43709d4022cc2b53 -Author: Steve Ebersole -Date: Wed May 4 18:33:12 2011 -0500 - - HHH-6199 - Split org.hibernate.exception package into api/spi/internal - -commit 4ee0d4237d9c5cb2d160a29bfc717dd9c2015173 -Author: Steve Ebersole -Date: Wed May 4 18:20:50 2011 -0500 - - HHH-6198 - Split org.hibernate.event package into api/spi/internal - -commit fb44ad936d8d54d311ecbaea1633683a8d809d04 -Author: Steve Ebersole -Date: Wed May 4 17:15:40 2011 -0500 - - HHH-6196 - Split org.hibernate.engine package into api/spi/internal - -commit 7a5f0b4836dd5ca9490ba993487701733f0d32e5 -Author: Steve Ebersole -Date: Wed May 4 15:49:57 2011 -0500 - - HHH-6194 - Better jaxb task to leverage Gradle up-to-date checking - -commit 3090fe9c1dba6e01c7d13a7e58b2599323ac6ac2 -Author: Steve Ebersole -Date: Wed May 4 15:25:39 2011 -0500 - - HHH-6193 - Split org.hibernate.context package into api/spi/internal - -commit 36ba1bcafb9aa91b77cbd850d1ebf0aa88d35c54 -Author: Steve Ebersole -Date: Wed May 4 15:13:28 2011 -0500 - - HHH-6192 - Split org.hibernate.collection package up into api/sip/internal - -commit c930ebcd7d348683fb45fac73f65e6318b659c05 -Author: Steve Ebersole -Date: Wed May 4 14:43:03 2011 -0500 - - HHH-6191 - repackage org.hibernate.cache per api/spi/internal split - -commit b9d002778b8c17a8b7a5c5a5aa2e2a12148b0c3f -Author: Steve Ebersole -Date: Wed May 4 11:11:19 2011 -0500 - - HHH-6158 - Deprecate SessionFactoryStub - -commit 6315cde48d19a741daa9c9466c62b55110390661 -Author: Steve Ebersole -Date: Wed May 4 11:06:58 2011 -0500 - - HHH-6158 - Deprecate SessionFactoryStub - -commit 8b709f7461bf96a304b52e7ef6df54bd6f917993 -Author: Steve Ebersole -Date: Wed May 4 11:02:01 2011 -0500 - - HHH-6147 - Add support for multi-tenancy to StatelessSession building - -commit 33b33ca7dc52de4a00b01ec34f8d5ee44dcd1bad -Author: Steve Ebersole -Date: Wed May 4 09:20:57 2011 -0500 - - HHH-5652 - Create "Take It Further" tasks for the JPA chapter of the GSG - -commit a1974db6078b6c6ef768a4a0fabb98b7cf878ad1 -Author: Steve Ebersole -Date: Wed May 4 08:55:26 2011 -0500 - - HHH-5887 - Document typo hibernate.hbm2ddl.import_files - -commit e2db59de70ee06f5b3d303df0ef07e70d90bdf8c -Author: Hardy Ferentschik -Date: Wed May 4 15:15:29 2011 +0200 - - HHH-6189 Binding @Where on entiry level - -commit e8bd7dfd66ca606adaf1baa6b8a5ef55d7abfbd6 -Author: Hardy Ferentschik -Date: Wed May 4 14:25:08 2011 +0200 - - HHH-6171 Extracting state classes from EntityBinder and enabled creation of versioned attribute - -commit 64fe46444bf55f06d7a7b533fb3169653420d573 -Author: JustinKSU -Date: Thu Apr 28 19:09:12 2011 -0500 - - HHH-6169 - Only call getVersion methods if debugs is enabled - -commit f0c2488d91ab7a1dd2a04f20b3367b712c5cea7d -Author: Gail Badner -Date: Tue May 3 21:35:12 2011 -0700 - - HHH-2049 : LEFT OUTER JOIN subcriteria filters children (Mattias Jiderhamn) - -commit a6b8d6220970185a82c18057c36a150b531b4ca8 -Author: Steve Ebersole -Date: Tue May 3 14:33:09 2011 -0500 - - HHH-6094 - Test failures in hibernate-infinispan dealing with query caching - -commit 658a06e5c38161ef10f3a8a5d8609ed6c9ca2ba3 -Author: Hardy Ferentschik -Date: Tue May 3 18:07:14 2011 +0200 - - HHH-6171 Mapping simple attribute (non id) - -commit 46f5022b60b67b66c2d5f2014c45557334c57413 -Author: Hardy Ferentschik -Date: Tue May 3 16:53:36 2011 +0200 - - HHH-6171 Javadoc changes - -commit d48010643bf452eac9576e85fdd84e52fa2b7d4b -Author: Hardy Ferentschik -Date: Tue May 3 16:53:19 2011 +0200 - - HHH-6171 Collecting information for relational state of attributes - -commit 95802a0e9392b7e171233b5723b7ce551c0afe04 -Author: Hardy Ferentschik -Date: Tue May 3 10:07:29 2011 +0200 - - HHH-6174 Creating schema and (primary) table - -commit e7c26b28a6e59939147e1554efa399d13e4e456d -Author: Steve Ebersole -Date: Tue May 3 07:55:19 2011 -0500 - - HHH-6183 - Deprecate Configuration - -commit ca37b335e45f5d89cdf05fc293c35458d83c9db9 -Author: Steve Ebersole -Date: Tue May 3 07:52:44 2011 -0500 - - HHH-6181 - Deprecate EJB3Configuration - -commit e4a6c96b55e68ea3b5f33ba4bb6d36686c988bc7 -Author: Hardy Ferentschik -Date: Tue May 3 10:31:44 2011 +0200 - - HHH-2578 Removing unused imports to remove compilation errors - -commit 0537740ffaa34c87a4d574745c0fc86e514642b5 -Author: Steve Ebersole -Date: Mon May 2 12:09:34 2011 -0500 - - HHH-2578 - redesign SessionFactory building - -commit cfb4f1ded8a024b6703267430f0b046b6c323d24 -Author: Steve Ebersole -Date: Mon May 2 11:47:28 2011 -0500 - - HHH-2578 - redesign SessionFactory building - -commit 99cec1404f3374282aa6bde695013a638fdb3dc2 -Author: Gail Badner -Date: Sun May 1 19:42:18 2011 -0700 - - HHH-6168 : Misc fixes to many-to-one AttributeBinding - -commit b667767f85a378c8d6d4eb06da13bf6cda24cf3d -Author: Gail Badner -Date: Sun May 1 11:59:22 2011 -0700 - - HHH-6168 : test for many-to-one AttributeBinding and misc corrections - -commit 1ae1d4b699e27a706deceee8878b01e268a45cdf -Author: Hardy Ferentschik -Date: Fri Apr 29 20:47:28 2011 +0200 - - HHH-6174 extracting table name from hierarchy - -commit 627b4ea6a14894e622e1ade0e914f75918b47123 -Author: Steve Ebersole -Date: Fri Apr 29 09:54:51 2011 -0500 - - HHH-6164 - Prefer regsitering JTA syncs via TransactionManager - -commit 5f607c6b9f2b6829aad6a4565c9dc049902ca265 -Author: adamw -Date: Fri Apr 29 16:16:39 2011 +0200 - - HHH-6020: properly passing the JTA transaction setting to EJB3Configuration - -commit 997dd00880653e14b4a4d3a2c611e67f273f4ced -Author: Gail Badner -Date: Tue Apr 26 10:37:28 2011 -0700 - - HHH-6168 : Create an AttributeBinding for many-to-one and implement DomainState and RelationalState for HBM XML - -commit 000b647e4349be9c4ef6e9e78c325d4ba37ab0b1 -Author: Hardy Ferentschik -Date: Thu Apr 28 18:09:34 2011 +0200 - - HHH-6161 Working w/ domain and relational state objects - -commit 98342a7e2dd54df9b7fcb8e7b63ebd5441bd2217 -Author: Lukasz Antoniak -Date: Wed Apr 27 23:49:22 2011 +0200 - - HHH-5580 - Tracking entity names in revision - -commit 3ec1928653c0d61e89b1f23ed0f85f4c7729083b -Author: Steve Ebersole -Date: Wed Apr 27 11:48:47 2011 -0500 - - HHH-6163 - Need to fix location of envers integrator service file - -commit d953449b3ab104ea6dfc643e789f2fa74941de92 -Author: Hardy Ferentschik -Date: Wed Apr 27 15:36:56 2011 +0200 - - HHH-6161 Taking care of added package names via MetadataSources.addPackage - -commit 805191524d9a8879a7662d9ac4a69c33494ef7e3 -Author: Hardy Ferentschik -Date: Wed Apr 27 14:28:46 2011 +0200 - - HHH-6109 Adding license headers - -commit 061fbc15b95991dc5fa93ca30d1ecf0a79d7cb6b -Merge: b398e8c932 d56089559c -Author: Adam Warski -Date: Wed Apr 27 05:46:32 2011 -0700 - - Merged pull request #68 from lukasz-antoniak/HHH-4787. - - HHH-4787 - AuditProperty.isNull() query fix and tests - -commit b398e8c932811739b07ead5541a23d3079e68c74 -Author: Hardy Ferentschik -Date: Tue Apr 26 18:37:02 2011 +0200 - - HHH-6161 Configure annotation based configuration via MetadataSources - * Removing obsolete XmlHelper - * Updating tests - * Fixing bug in JaxbHelper related to orm parsing - -commit dd019a1f43450f44b39431aa4c66f4d2cb51be14 -Author: Hardy Ferentschik -Date: Thu Apr 21 18:00:44 2011 +0200 - - HHH-6148 Adding classmate as a replacement for the commons annotations generic resolution code - -commit 8f01c1c200adf3182670e5271cf72a9a52ad6e22 -Author: Hardy Ferentschik -Date: Tue Apr 19 15:27:11 2011 +0200 - - HHH-6114 Working w/ the sate objects - -commit 88172d1fb06fe9c9c765254885fa632ccded921a -Author: Steve Ebersole -Date: Mon Apr 25 21:29:32 2011 -0500 - - HHH-6117 - Figure out best way to handle SessionFactoryObjectFactory dealing with JNDI - -commit d631671761f7c17c6f2fdc42886858d463af82f8 -Author: JPAV -Date: Mon Apr 25 16:40:43 2011 -0500 - - HHH-6080: Created XSDs from existing mapping and configuration DTDs - -commit 1a40b0232f2bb218830699cd87e0e48b1dea58e9 -Author: Steve Ebersole -Date: Sun Apr 24 12:03:00 2011 -0500 - - HHH-6117 - Figure out best way to handle SessionFactoryObjectFactory dealing with JNDI - -commit ff74ceaaa46951b6da0bfebd7fba5eda79b6714b -Author: Steve Ebersole -Date: Sun Apr 24 09:24:32 2011 -0500 - - HHH-6155 - Migrate o.h.impl package to o.h.internal - -commit 85094bddbf3569676d453e94bc7672f8083a9f7e -Author: Steve Ebersole -Date: Sat Apr 23 16:12:37 2011 -0500 - - HHH-6144 - Introduce ServiceRegistryBuilder - -commit 7d82752fb0dd5a827dd79c45bacbcba30b58a0b3 -Author: Steve Ebersole -Date: Sat Apr 23 14:34:11 2011 -0500 - - HHH-6154 - Add a README for describing build - -commit ddcdd841414bfdac794cb64b6f4c1520ae4df6b6 -Author: Steve Ebersole -Date: Fri Apr 22 22:44:52 2011 -0500 - - HHH-6150 - JBoss AS7 integration work - -commit 59ec34cffdb6ecfee7232fe0799087312b606f27 -Author: Steve Ebersole -Date: Fri Apr 22 21:05:54 2011 -0500 - - HHH-6150 - JBoss AS7 integration work - -commit f07b88c75f09506c7fb5bfb590835d0565b8d51b -Author: Steve Ebersole -Date: Fri Apr 22 17:34:31 2011 -0500 - - HHH-6150 - JBoss AS7 integration work - -commit 16e86687c96dd918c8f7808d330347965ec39154 -Author: Steve Ebersole -Date: Fri Apr 22 17:19:35 2011 -0500 - - HHH-6150 - JBoss AS7 integration work - -commit 41e7b963880ea11f1e4a1d6f944079ef8f4cfcf7 -Author: JPAV -Date: Thu Apr 21 16:59:25 2011 -0500 - - Revert "HHH-6080: Created XSDs from existing mapping and configuration DTDs" - - This reverts commit 60d2c5a7bb9aebca891373d70bc9961330dbe8e6. - -commit d56089559c98386e47f06f9a8be1ce97b645b04b -Author: Lukasz Antoniak -Date: Thu Apr 21 20:12:29 2011 +0200 - - HHH-4787 - Clean up - -commit 4810a480964b0f699d601b131794ddc26f73b634 -Author: Lukasz Antoniak -Date: Thu Apr 21 20:04:16 2011 +0200 - - HHH-4787 - AuditProperty.isNull() query fix and tests - -commit 60d2c5a7bb9aebca891373d70bc9961330dbe8e6 -Author: JPAV -Date: Wed Apr 20 14:00:23 2011 -0500 - - HHH-6080: Created XSDs from existing mapping and configuration DTDs - -commit 20064fa743cb3ec34e732d7fd6f5719d8b119ddf -Author: Steve Ebersole -Date: Wed Apr 20 16:33:31 2011 -0500 - - HHH-6146 - remove SF.setTenantIdentifier, add to withOptions selections - -commit 53e043988049e46b64207f49d3f03a629e8f81e1 -Author: Steve Ebersole -Date: Wed Apr 20 15:58:10 2011 -0500 - - HHH-6144 - Introduce ServiceRegistryBuilder - -commit bd82732deeee6db423e1dc5e6a590e90c5ec15b7 -Author: Gail Badner -Date: Tue Apr 19 14:29:03 2011 -0700 - - HH-6131 : Updates for "XML" prefix for jaxb-generated classes - -commit 0362f64ba9d2ebde170913dcc52204cf021ad8bd -Merge: 86c15fd212 d6e9138aec -Author: Gail Badner -Date: Tue Apr 19 13:18:51 2011 -0700 - - Merge branch 'HHH-6131' of https://github.com/hferentschik/hibernate-core into HHH-6131-jaxb-prefix - -commit 86c15fd21234381e2cc713d07e9652f01078613d -Author: Lukasz Antoniak -Date: Tue Apr 19 18:10:25 2011 +0200 - - HHH-5276 - Refactoring - -commit ac49a906e8566f29767927a0dd8dc6b9328115ab -Author: Lukasz Antoniak -Date: Sat Apr 16 18:37:01 2011 +0200 - - HHH-5276 - REVINFO in different database schema creation - -commit d2f7ee8ae5967384d51d948a28b8955b93b62fd4 -Author: Steve Ebersole -Date: Tue Apr 19 10:32:08 2011 -0500 - - HHH-6142 - Integrate JAXB-based binding code and MetadataSources - -commit 363608a604d73558f5d645b64061880db4ff619e -Author: Steve Ebersole -Date: Tue Apr 19 10:00:58 2011 -0500 - - HHH-6141 - Develop scheme for ordered processing of MetadataSources sources - -commit ddb79d1709e219957a9776ba9c380ff9dcd2b87b -Author: adamw -Date: Tue Apr 19 17:26:52 2011 +0200 - - HHH-6069: fixing test & adding toString() on the entity - -commit 255f2234e042d31860dd2ff4a2dbcf31e620a811 -Author: Lukasz Antoniak -Date: Sat Apr 16 10:25:47 2011 +0200 - - HHH-6069 - Tests moved - -commit 33074dc2dc604b736ef8ff8e7342a481f4fd6266 -Author: Lukasz Antoniak -Date: Sat Apr 16 10:17:12 2011 +0200 - - HHH-6069 - Tests moved - -commit d7cc102b008d1586b85f6f443dce90b531df3b71 -Author: Lukasz Antoniak -Date: Fri Apr 15 00:05:00 2011 +0200 - - HHH-6069 - Escape entity fields name - -commit 0d71d356973b8e02264325e3f312c650b7f32844 -Author: Steve Ebersole -Date: Tue Apr 19 09:04:55 2011 -0500 - - HHH-6138 - Implement addition of annotated classes and packages in MetadataSources - -commit 70d2e3848b0c96adfb33e8c1a3accb5dfd79cb59 -Author: Steve Ebersole -Date: Tue Apr 19 08:48:54 2011 -0500 - - HHH-6082 - Incorporate EntityManager documentation into main dev guide - -commit 28a3e38f7aaf401c42cefebf1810cc9ab2d995dd -Author: Steve Ebersole -Date: Sun Apr 17 15:26:20 2011 -0500 - - HHH-6073 - -commit 5c4f817255d2c7affb7eedef786d6491ce0b6cb5 -Author: Steve Ebersole -Date: Tue Apr 5 09:17:08 2011 -0500 - - HHH-6082 - Incorporate EntityManager documentation into main dev guide - -commit 1dbb1237e3f9773492be6af11c8aacb8743ddf31 -Author: Gail Badner -Date: Mon Apr 18 23:38:14 2011 -0700 - - HHH-6134 : merge with master - -commit eb414295aa4f8af81f4ebdde7ca3fe9ec2a43ba6 -Author: Gail Badner -Date: Mon Apr 18 15:13:18 2011 -0700 - - HHH-6134 : Migrate processing hbm.xml files to use Jaxb-generated classes - -commit d6e9138aec8f4497f319e056aaa06e72051c92b3 -Author: Hardy Ferentschik -Date: Mon Apr 18 14:19:40 2011 +0200 - - HHH-6131 Prefixing JAXB classes with 'XML' - -commit c88fcff77a32308b5a80285712cc9dc647031871 -Author: Steve Ebersole -Date: Sun Apr 17 14:16:21 2011 -0500 - - HHH-6129 - org.hibernate.LobHelper#createNClob can now return NClob - -commit 939fba6b725832861ef2330be02ee8db7f126bfd -Author: Steve Ebersole -Date: Sun Apr 17 09:34:43 2011 -0500 - - HHH-6129 - org.hibernate.LobHelper#createNClob can now return NClob - -commit 303691c80e251d2a1ad3512772e97f5d19786bb1 -Author: Steve Ebersole -Date: Sun Apr 17 09:21:06 2011 -0500 - - HHH-5914 - Remove deprecated Hibernate type constants from org.hibernate.Hibernate and manuals - -commit da028ee13716a3f2d8a4edb764db39c2991f0598 -Author: Hardy Ferentschik -Date: Fri Apr 15 23:51:08 2011 +0200 - - HHH-6114 Starting to bind id attributes - -commit dd9ccddc6ee88d9fa599d86c66384e1cf2341218 -Author: Hardy Ferentschik -Date: Fri Apr 15 23:50:42 2011 +0200 - - HHH-6114 Creating placeholder for QueryBinder - -commit 82ae20598bb0201434e873c0659300862810d7db -Author: Hardy Ferentschik -Date: Fri Apr 15 15:04:46 2011 +0200 - - HHH-6114 Implementing fetch profile parsing and binding as example for other global configurations - -commit e1ba813122cb5965face492010a086ef04298b02 -Author: Hardy Ferentschik -Date: Fri Apr 15 15:03:59 2011 +0200 - - HHH-6114 Restructuring packages to accommodate for all required annotation binding code - -commit 74c6773c44296f2132ad916b6aaaa10ff743b795 -Merge: d8fd8cd03b 5273a75094 -Author: Steve Ebersole -Date: Thu Apr 14 15:07:04 2011 -0500 - - Merge branch 'master' of github.com:hibernate/hibernate-core - -commit d8fd8cd03b94c128c6110b34c96bb4c6effbc2b0 -Author: Steve Ebersole -Date: Thu Apr 14 15:05:05 2011 -0500 - - HHH-468 - MysqlDialect incorrectly maps java.lang.Boolean to SQL BIT - -commit 5273a7509437f5d0ca448bd262280340aac1ab92 -Author: Hardy Ferentschik -Date: Thu Apr 14 17:40:16 2011 +0200 - - HHH-6114 Discovering mapped properties - -commit 78ad67cff61a5723c90aa0c1f92d9ec3d75240f4 -Author: Hardy Ferentschik -Date: Wed Apr 13 17:56:32 2011 +0200 - - HHH-6114 Determining inheritance strategy and starting to process mapped properties - -commit f27695b68084b9ec1f0e3d8b5e3dcc612c491b1f -Merge: 0023dc695d 40f28ff69c -Author: adamw -Date: Thu Apr 14 12:31:05 2011 +0200 - - Merge branch 'HHH-4073' of https://github.com/lukasz-antoniak/hibernate-core into lukasz-antoniak-HHH-4073 - -commit 0023dc695dc82938f6838138180545c750ac47f8 -Author: Steve Ebersole -Date: Wed Apr 13 23:16:06 2011 -0500 - - HHH-6093 - Account for tenant identifier on QueryKey - -commit 44cca7a375ab61a95c5e41bbe6bade9b6ae10339 -Author: Steve Ebersole -Date: Wed Apr 13 22:33:54 2011 -0500 - - HHH-6106 - Fix up IntelliJ project generation - -commit d24835fdd58f361902435f70154ed8f7019da85c -Author: Scott Marlow -Date: Wed Apr 13 23:15:06 2011 -0400 - - hhh-6095 flush/lock fix to throw TransactionRequiredException - -commit 8edc1f1880a42e39518b17aa95254eefd2151b81 -Author: Steve Ebersole -Date: Wed Apr 13 18:55:54 2011 -0500 - - HHH-6118 - Make Metadata more user-friendly API - -commit 0f336414a26213ae8dd8f764a4c9ca5c16b9c07a -Author: Steve Ebersole -Date: Wed Apr 13 18:28:42 2011 -0500 - - HHH-6118 - Make Metadata more user-friendly API - -commit 775e02233107525055538c61f0b4c1a668145821 -Author: Steve Ebersole -Date: Wed Apr 13 14:47:18 2011 -0500 - - HHH-6118 - Make Metadata more user-friendly API - -commit 40f28ff69c955b1b29a8f76d3d835fac4725474b -Author: Lukasz Antoniak -Date: Wed Apr 13 19:12:44 2011 +0200 - - HHH-4073 - Discriminator formula support in Envers - -commit be7b44c2f7689e7108f5d4972c585ca4b2e8e909 -Author: Hardy Ferentschik -Date: Tue Apr 12 18:08:26 2011 +0200 - - HHH-6114 Determining the default access type of a class hierarchy - -commit 4d24c16b49d20f85173f9998555198e51a12d818 -Author: Hardy Ferentschik -Date: Tue Apr 12 18:07:48 2011 +0200 - - HHH-6114 Using the ClassLoaderService available via the service registry in Metadata for class loading - -commit ad17f89c4c29f0327c843cf5265e156d65743ab1 -Author: Steve Ebersole -Date: Tue Apr 12 09:07:31 2011 -0500 - - HHH-6097 - Review log levels, especially related to i18n messages - -commit 62da5aa5bc2600252399060a0c48d32505b879ac -Author: Steve Ebersole -Date: Mon Apr 11 21:59:50 2011 -0500 - - HHH-6097 - Review log levels, especially related to i18n messages - -commit 55ff0d2f079cad25c3ecc652b8b4777e170102f7 -Author: Steve Ebersole -Date: Mon Apr 11 18:10:47 2011 -0500 - - HHH-6107 - Metamodel dependence on ServiceRegistry - -commit 9d93e1188e6846989b7bff59eb7c28a51291c18b -Author: Steve Ebersole -Date: Mon Apr 11 17:43:43 2011 -0500 - - HHH-6115 - jaxb generation should follow directory pattern - -commit 3853152782f47d473b2670cffd3a778b8be788b7 -Author: Steve Ebersole -Date: Mon Apr 11 15:41:11 2011 -0500 - - HHH-6106 - Fix up IntelliJ project generation - -commit 653bbfa46daacd93bc2380f3a8d55f42a86abd26 -Author: Gail Badner -Date: Mon Apr 11 13:13:29 2011 -0700 - - HHH-6092 : Merge with master - -commit 412fa9406f5797b93cc2d7de39ad3878df647bd6 -Author: Gail Badner -Date: Wed Apr 6 11:00:07 2011 -0700 - - HHH-6092 : Domain and relational state for SimpleAttributeBinding - -commit 014702fa2357ebef1d278cb990b1d8ca0c12b9fd -Author: Gail Badner -Date: Tue Mar 29 22:51:42 2011 -0700 - - HHH-6092 : Moved HBM XML processing logic into "DomainState" objects used to initialize binding - -commit 2cd428759a9481f88d559b594a33a151d31e36a5 -Author: Gail Badner -Date: Tue Mar 29 03:00:44 2011 -0700 - - HHH-5672 : Binding from hbm.xml mapping - -commit 26097229e6015fd3ed9f21a5dc8f35650be1403c -Author: Hardy Ferentschik -Date: Tue Mar 29 13:58:17 2011 +0200 - - HHH-5672 annotation binding beginnings. Trying to recreate the simple hbm tests for annotations - -commit 0d29c346ecc09c4abe41552829da621682bba2bc -Author: Hardy Ferentschik -Date: Mon Apr 11 18:51:41 2011 +0200 - - HHH-6111 enabling jaxb model generation for hbm configuration files - -commit a3ebcd81bc08bc219832fb02d6f36aff4f97087b -Author: Hardy Ferentschik -Date: Mon Apr 11 18:50:28 2011 +0200 - - HHH-6080 Converted the Hibernate configuration and mapping dtd files into xsd files - -commit 297c703449644870f0767823b5df8c3d73d5a7c9 -Author: Hardy Ferentschik -Date: Fri Apr 1 18:02:07 2011 +0200 - - HHH-6109 Starting the implementation of a replacement for InheritanceState. The determined mapped classes need to be pre-processed - in order to detmerine inheritance features, default access types, etc - -commit 42502e696b920a18e5e8587517c35bcb048438f8 -Author: Hardy Ferentschik -Date: Tue Mar 29 13:58:17 2011 +0200 - - HHH-6109 Starting work for annotation binding against the new metamodel. Enabling JAXB for parsing of orm.xml - -commit 72a2862ea9ab4956417df60b14b6f912433b25af -Author: Strong Liu -Date: Sat Apr 9 02:18:46 2011 +0800 - - HHH-6102 - ISE should be thrown when EM is colsed and joinTransaction is called, even with RESOURCE-LOCAL TX - -commit dfcdab4a33aa664d6f19c366f1b36e22800658a5 -Author: Steve Ebersole -Date: Fri Apr 8 10:25:02 2011 -0500 - - HHH-6096 - H2Dialect should use CACHED option for temporary table creation - -commit 38068e149507f4ad097d474504f34f6aaf6aac07 -Author: Steve Ebersole -Date: Fri Apr 8 10:17:52 2011 -0500 - - HHH-6101 - Clean up checks for java 1.3 versus 1.4 - -commit 6504cb6d78740d2a4695096463f40baf18c9af11 -Author: Steve Ebersole -Date: Fri Apr 8 09:44:11 2011 -0500 - - HHH-6098 - Slight naming changes in regards to new logging classes - -commit a616a83d8e85a2aba5151d8ae5398b0b1f5a4cfc -Author: Steve Ebersole -Date: Thu Apr 7 12:50:06 2011 -0500 - - HHH-6097 - Review log levels, especially related to i18n messages - -commit cf1238229251fc4e7c88e171edd2f26f31a19310 -Merge: 8bd56a097a 5408dac36b -Author: Alex Snaps -Date: Thu Apr 7 16:39:20 2011 +0200 - - Merge remote branch 'upstream/master' into 4.0 - -commit 5408dac36bdbce25f580827140bedbc3c3ba7f65 -Author: Steve Ebersole -Date: Wed Apr 6 17:36:47 2011 -0500 - - prepare for 4.0.0.Alpha3 development - -commit 484d5e2fbba09c75d30c9a1c15861451b5eeb763 (tag: 4.0.0.Alpha2) -Author: Steve Ebersole -Date: Wed Apr 6 16:28:39 2011 -0500 - - prepare 4.0.0.Alpha2 release - -commit 691712fcbbfd47d9bb119c499cc84d894f1aab2d -Author: Steve Ebersole -Date: Wed Apr 6 16:10:02 2011 -0500 - - prepare 4.0.0.Alpha2 release - -commit 2a8c81790b4b1313bcb1ba032274fea23300ca4c -Author: Steve Ebersole -Date: Wed Apr 6 14:44:46 2011 -0500 - - HHH-6094 - Test failures in hibernate-infinispan dealing with query caching - -commit 0d04cc15c69cda210992ee9c85d1ed20c40fc9ef -Merge: 9a81587505 ef35cd7be3 -Author: Steve Ebersole -Date: Wed Apr 6 14:00:14 2011 -0500 - - Merge branch 'master' of github.com:hibernate/hibernate-core - -commit 9a81587505a864a2915b328c5a9777fe8ff779eb -Author: Steve Ebersole -Date: Wed Apr 6 13:54:03 2011 -0500 - - HHH-6081 - Finish up Integrator - -commit ef35cd7be3a2a81e6b53635f2f54bce2d94b3916 -Author: Strong Liu -Date: Thu Apr 7 02:03:48 2011 +0800 - - HHH-6076 - query with setFirstResult throws Exception on derby - -commit de38d784c7138a6c93a2b46f2354189e82a8018e -Author: Strong Liu -Date: Thu Apr 7 01:59:56 2011 +0800 - - HHH-6076 - query with setFirstResult throws Exception on derby - -commit 7b4998d1ce2491fe08313e0ee542e2c5d34908af -Author: Steve Ebersole -Date: Wed Apr 6 12:28:00 2011 -0500 - - HHH-5244 - Flesh out H2Dialect temp table support - -commit 154675d32270f7a9b8ac77ea0ef2b92d9ba49525 -Author: Steve Ebersole -Date: Wed Apr 6 12:27:46 2011 -0500 - - HHH-6088 - Move to slf4j-log4j12 for test logging - -commit 03c40093911dbfd41a85ee9929127717442417f2 -Author: Steve Ebersole -Date: Wed Apr 6 11:32:57 2011 -0500 - - HHH-6088 - Move to slf4j-log4j12 for test logging - -commit 7c4a9dac817212e5e1779b57a38ef3c9c588812e -Author: Steve Ebersole -Date: Wed Apr 6 11:31:14 2011 -0500 - - HHH-6073 - Dialects cannot use the Thread Context ClassLoader with AS7, please change to use the - -commit aad256c63469420387edd30726715581f3cfd4d7 -Author: Steve Ebersole -Date: Tue Apr 5 16:10:41 2011 -0500 - - HHH-6081 - Finish up Integrator - -commit bd5c483b67ac6d7873a0b2c9b8549930a1e40c00 -Author: Steve Ebersole -Date: Tue Apr 5 16:08:59 2011 -0500 - - HHH-6073 : test fix up - -commit 8bd56a097ad6b379bb70bc20c8ea098f5cbf162f -Author: Alex Snaps -Date: Tue Apr 5 17:46:57 2011 +0200 - - Added tests for newly introduced RegionFactories and upgraded to 2.4.1 (2.3 is busted with Hibernate 4.0) - -commit 5e8e49d3ae8ae9d2a6ab6849f9c44ce013b87bd3 -Author: Steve Ebersole -Date: Tue Apr 5 10:26:58 2011 -0500 - - HHH-6073 - -commit a67b6028c11f5da2b1c7fc078f5a0483713dfb79 -Author: Scott Marlow -Date: Fri Apr 1 16:10:34 2011 -0400 - - HHH-6073 Dialects shouldn't use TCCL (revised to leave DerbyDialect alone) - -commit 1da2262a4ac6d59ad7ba724aa77e77442bf4a45a -Author: Steve Ebersole -Date: Sat Apr 2 18:30:37 2011 -0500 - - HHH-5966 - Finish up loose ends for overriding a SqlTypeDescriptor - -commit b95ebe7e5baa716e6d3b5febb4072e1e70e86b69 -Author: adamw -Date: Sat Apr 2 11:38:12 2011 +0200 - - HHH-6020: removing the testng tests file - -commit abf2d21279b6efed611b28a4d7753aa9a09aae31 -Author: adamw -Date: Sat Apr 2 10:02:48 2011 +0200 - - HHH-6020: keeping the in-memory database open for the duration of the JVM lifetime - so that the JTA tests pass - otherwise after creating the tables, all connections are closed before executing tests, which causes the DB to be cleared. - -commit 8ac8b87d8c302b2f6aed6b1a8ecbf374a3e26be3 -Author: adamw -Date: Sat Apr 2 10:01:59 2011 +0200 - - HHH-6020: fixing the jta exception listener test - different exception thrown - -commit 8c233312ce103bc6157368f1fc126ea5aaa38ee4 -Author: adamw -Date: Sat Apr 2 09:03:46 2011 +0200 - - HHH-6020: some refactoring on how the JTA tests are done. All hibernate config is in the AbstractEntityTest now, instead of loading an xml file. - -commit e9f16e4a7656f4ad3215b1c3de2b9ac7ebfba868 -Author: adamw -Date: Fri Apr 1 23:16:23 2011 +0200 - - HHH-6014: ignoring the performance tests - -commit 3b83b6fd54843ff842987dae9f46b121975bca2b -Author: adamw -Date: Fri Apr 1 23:16:01 2011 +0200 - - HHH-6014: The flush mode must be set before all test methods - -commit 0b844b609ba1af729c85b97e28dc92f2e5e4f315 -Author: adamw -Date: Fri Apr 1 23:11:37 2011 +0200 - - HHH-6014: Adding @Priority(10) to all initData methods. - -commit 9165b0c235dfb5d01187c9b14e7a00b128db2c0f -Author: adamw -Date: Fri Apr 1 23:10:58 2011 +0200 - - HHH-6014: Adding a priority annotation. Higher test method priority means that the method will be executed first. - -commit 8e1110634fee1b957635eaab8dee2cba5e3bab97 -Author: adamw -Date: Fri Apr 1 22:13:31 2011 +0200 - - HHH-6014: Making the runnable work from command line - -commit 38e0484b4e2cdb3fcb1d2acc7256ae292c9f7bbb -Author: Steve Ebersole -Date: Fri Apr 1 14:50:19 2011 -0500 - - HHH-2763 - Allow collection initialization during flush - -commit c2167b85a7c931064f7e122274a8dfccb206cefa -Author: adamw -Date: Fri Apr 1 21:39:49 2011 +0200 - - HHH-6014: Removing the testng dependency from envers and from the available libraries as it isn't used anymore - -commit fb512cdc25f97f7189bef04e351044fbf2ae62c7 -Author: adamw -Date: Fri Apr 1 21:37:59 2011 +0200 - - HHH-6014: Migrating the tests from testng to junit - -commit 26b5e1afa81074ea9970edc756b1bbfd0f285709 -Author: adamw -Date: Fri Apr 1 21:35:53 2011 +0200 - - HHH-6014: A JUnit test runner for Envers, which uses the CustomTestRunner and wraps it with a Parametrized test runner, so that tests are run with two audit strategies - -commit 285da70a251412ffc0a8cd6eb314f7f308ec1b39 -Author: Steve Ebersole -Date: Fri Apr 1 12:13:25 2011 -0500 - - HHH-2860 - Consolidate Session creation options/parameters - -commit b9381f671727a1621638945715715ac08a66c0b1 -Author: Steve Ebersole -Date: Fri Apr 1 08:34:15 2011 -0500 - - HHH-4362 - @RowId - -commit ada64c172a01b9a9f0011b1871baacb950e3e3c3 -Author: Steve Ebersole -Date: Thu Mar 31 20:44:02 2011 -0500 - - HHH-4362 - @RowId - -commit df9d8939bbb4d9c84d710c0ac0ee0310359382c6 -Author: Steve Ebersole -Date: Thu Mar 31 15:20:33 2011 -0500 - - HHH-2860 - Consolidate Session creation options/parameters - -commit 8e2619c31e8febeb3c18b9750e38c3558b82781d -Author: adamw -Date: Thu Mar 31 18:31:41 2011 +0200 - - Updating the failing JtaTransaction test - for some reason, only with the JTA config, the test entity table isn't created, although the log contains the schema export messages, create table statements etc. - -commit 7a5c85823ba1edbbf9cc1074892e3f5c53b69c66 -Author: Steve Ebersole -Date: Thu Mar 31 10:31:09 2011 -0500 - - HHH-5989 - Add tests of JPA-style transaction joining - -commit 33cc3f3f62eab7868d1d053a3f258492f88f043a -Author: adamw -Date: Thu Mar 31 15:59:36 2011 +0200 - - HHH-6036: Removing old Envers docs - -commit e71762a313a71bba7c06e51c4c8694a2c79ed12b -Author: adamw -Date: Thu Mar 31 15:50:28 2011 +0200 - - HHH-6036: Adding a basics chapter to introduce Envers concepts - -commit e9c555b2144d8da7eaf519de38a3ef2babde92c1 -Author: adamw -Date: Thu Mar 31 14:35:44 2011 +0200 - - HHH-6036: As the Envers docs are merged into the dev guide adding me as one of the authors :) - -commit ce4faca5284d1a47f8fc075268f11bcae7daafd0 -Author: adamw -Date: Thu Mar 31 14:31:11 2011 +0200 - - HHH-6036: Moving the "links" chapter of Envers docs - -commit 02e06265e8f132f1fba435f3871bcf212192e9ba -Author: adamw -Date: Thu Mar 31 14:27:41 2011 +0200 - - HHH-6036: Moving the "configuration" chapter of Envers docs - creating a new section on Envers mapping annotations - -commit e72fa13bd49598b791184eb56f301a281600a438 -Author: adamw -Date: Thu Mar 31 14:16:13 2011 +0200 - - HHH-6036: Some corrections to the "revision log" chapter of Envers docs - -commit a16177035a181588c558eff4e54f1a7ae163e210 -Author: adamw -Date: Thu Mar 31 14:02:36 2011 +0200 - - HHH-6036: Moving the "query" chapter of Envers docs - -commit 9758c63354299a0b618a219bba01cb70bdc827a0 -Author: adamw -Date: Thu Mar 31 13:57:34 2011 +0200 - - HHH-6036: Moving the "schema" and "tables" chapters of Envers docs - -commit 6c7ec667a06d0c54af77a5d225f8f83a81390b0a -Author: adamw -Date: Thu Mar 31 13:53:47 2011 +0200 - - HHH-6036: Moving the "partitioning" chapter of Envers docs - -commit 61bd52fb34afac44d669b2508386f3b59cd7164f -Author: adamw -Date: Thu Mar 31 13:49:44 2011 +0200 - - HHH-6036: Moving the "mapping exceptions" chapter of Envers docs - -commit f36ebfee26c26df950c578def9310d9b58ac90ac -Merge: ee2dd0ddf5 1a1432179f -Author: Steve Ebersole -Date: Wed Mar 30 17:00:09 2011 -0500 - - Merge branch 'master' of github.com:hibernate/hibernate-core - -commit ee2dd0ddf5d42ff5343a97bfb7e4a7938ab36eec -Author: Steve Ebersole -Date: Wed Mar 30 16:58:15 2011 -0500 - - HHH-5996 - Wire in JdbcServices into SchemaUpdateTask, SchemaExportTask, SchemaValidatorTask, HibernateService.dropSchema(), HibernateService.createSchema() - -commit 1a1432179fef4f1423e5f020265026cde8b8698d -Author: adamw -Date: Wed Mar 30 20:44:47 2011 +0200 - - HHH-6064: only registering the Envers listeners if there are any audited entities - -commit 3e22ef111cbfdb528f27f6f7057dc51a1f825195 -Author: Steve Ebersole -Date: Wed Mar 30 13:28:01 2011 -0500 - - HHH-6061 - ValidatoryFactory type checking - -commit 5b5ec673b4ca35ea271a62890a18974242ca8aa5 -Author: David Mansfield -Date: Tue Mar 29 14:16:00 2011 -0400 - - HHH-3646 - documentation for Criteria query of collection-of-component and collection-of-scalar functionality - -commit 90fdca9053d1d0f7d14e2c7b20c243ca62d07305 -Author: David Mansfield -Date: Thu Mar 10 11:50:36 2011 -0500 - - HHH-3646 - throw a better exception when criteria is placed directly on component - - In the CriteriaQueryTranslator, we process the path given by - a SubCriteria object looking for the entity name for the property. If - the SubCriteria was mistakenly created on a component type, we will exit - the loop using the owning entity, and will eventually end up failing - (throwing an exception) trying to lookup up the restricted property - against the entity, instead of against the component. Fix this by - throwing a more informative exception, and modify the documentation to - be explicit about how to do this properly. - -commit 69b09dfcd235ff2374fb7a02070f7edaf246f2a3 -Author: David Mansfield -Date: Thu Mar 10 11:33:50 2011 -0500 - - HHH-3646 - don't append spurious comma in SQL select fragment - - In the JoinWalker, we assemble an SQL select list fragment - from a list of Joinables. In the existing code, we see it's - possible for the selectFragment generated by a joinable to be empty. - However if the LAST joinable generates an empty fragment, we put - a spurious comma into the fragment. Fix this by only prepending a - comma when necessary. - -commit 9f311a469863c79f544efb9fbfa6cd3d1f94f989 -Author: David Mansfield -Date: Tue Mar 29 14:00:46 2011 -0400 - - HHH-3646 - implement Criteria API querying of collection-of-component and collection-of-scalar - - The general approach is: - - * create an interface called the CriteriaInfoProvider which abstracts - the operations that are different for the different types of Criteria - targets. - * change the getPathEntityName method to be a factory method for - creating the proper implementation of the interface - * change the rest of CriteriaQueryTranslator to use the interface - instead of using the previous entity-only implementation - * implementations of the interface exist for - Entity: this implements the same code as currently exists - ComponentCollection: for collection-of-component - ScalarCollection: for collection-of-value - Component: for components - * update the logic in CriteriaJoinWalker which has to be very careful - about how it works since the walker walks certain property paths twice. - -commit 4ddaaa1deb9d724d5dedd6fb4637d1c3e4b85670 -Author: David Mansfield -Date: Thu Mar 10 11:54:02 2011 -0500 - - HHH-3646 - make SessionFactoryHelper::getCollectionPropertyMapping public - it will be used later - -commit b8230bd07dfdf6e9042e3628b81e8e507f1bcfbe -Author: David Mansfield -Date: Mon Mar 28 17:56:24 2011 -0400 - - HHH-3646 - implement a test case for query collection-of-component - -commit 64b73d630159793346d6d7994f556cba1617a044 -Author: David Mansfield -Date: Mon Mar 28 17:46:38 2011 -0400 - - HHH-3646 - implement a test case for query collection-of-value - -commit e0431adca9d6a547e1669e862dbd653ed6e7b656 -Author: adamw -Date: Wed Mar 30 19:00:51 2011 +0200 - - HHH-6023: a citation pointing to the Envers User Guide in "take it further" - -commit d104f28a596e8a19c993676ea3c14d8f0a9b952b -Author: Steve Ebersole -Date: Wed Mar 30 11:35:29 2011 -0500 - - HHH-5348 - support for TypedQuery jpaql/hql "scalar" queries - -commit 7501fdea5399dacf73095aafda663a7c0980af3f -Author: adamw -Date: Wed Mar 30 17:59:48 2011 +0200 - - HHH-6023: "take it further" for Envers - -commit 801e59e6061ef4d5280da3fc1888d6b6c4398faf -Author: Strong Liu -Date: Wed Mar 30 19:03:05 2011 +0800 - - HHH-6058 - Error in mapping file in Event.hbm.xml file for documentation in download - -commit 8a7d14203d03f4e5c0cd77cdea62b97450ce9a6d -Author: Strong Liu -Date: Wed Mar 30 18:58:08 2011 +0800 - - HHH-6057 documentation, hibernate.cfg.xml references wrong hbm path - -commit 05f9bdcbb0b4bc9cec53fa70a9a6ab3599733fe5 -Author: David Mansfield -Date: Tue Mar 29 16:08:39 2011 -0400 - - clear stats before running to ensure accurate test results - -commit 7058cb048f9b943db855b2029957a5c959c6e153 -Author: David Mansfield -Date: Tue Mar 29 16:08:15 2011 -0400 - - remove state after running to avoid failure later - -commit ba71fe0132dc0dea8365005493c89cc8148f303b -Author: Steve Ebersole -Date: Tue Mar 29 15:14:09 2011 -0500 - - HHH-6036 - integration documentation generation - -commit ef3830b7eec1f14d3acb6039063f51451f7209af -Author: Steve Ebersole -Date: Mon Mar 28 16:55:23 2011 -0500 - - HHH-5913 - Implement set of event listeners as a service - -commit a485bc634943fb84d3c824b1fd952f3c5c4c9e72 -Author: Steve Ebersole -Date: Mon Mar 28 13:21:57 2011 -0500 - - Minor changes to buildSrc build script - -commit 339faabb145dd656a898d1ecadc133e498a11474 -Author: Steve Ebersole -Date: Mon Mar 28 12:40:26 2011 -0500 - - HHH-6052 - Make statistics a service - -commit 634d9186a5c6de862bdfcb0827f49d3e46b34936 -Author: Galder Zamarreño -Date: Mon Mar 28 17:22:28 2011 +0200 - - HHH-6015 - Fix classloader issue - -commit 2e0f128cbcb40dcefb43f87c210135b4449abc95 -Author: Emmanuel Bernard -Date: Mon Mar 28 15:47:44 2011 +0200 - - HHH-5947 Migrate tests to JUnit 4 infra - -commit 93569a6c8233ae2d82d5ac9c4af1eff4ad06346b -Author: Manuel Bernhardt -Date: Wed Feb 23 14:06:17 2011 +0100 - - HHH-5947 Clarifying the documentation - -commit cf9391f40d85cc5e66bc121edc2c035d35d53a2b -Author: Manuel Bernhardt -Date: Wed Feb 23 14:03:07 2011 +0100 - - HHH-5947 Clarifying the documentation - -commit 9d697660f65be0529559386f6369acbdcb4c2eeb -Author: Manuel Bernhardt -Date: Tue Feb 22 17:52:45 2011 +0100 - - HHH-5947: 'Fix' that at least improves the error message - -commit 928354827a4cc2003f8bfb46f035f3221e20a70a -Author: Manuel Bernhardt -Date: Tue Feb 22 15:49:49 2011 +0100 - - HHH-5947: Test case - -commit 753b95729a375aaa5355bec7fa542489ff506862 -Author: Steve Ebersole -Date: Mon Mar 28 08:03:11 2011 -0500 - - HHH-5913 - Implement set of event listeners as a service - -commit 6a180aaa1fbc14d52f922c8da168b40a1417590b -Author: Steve Ebersole -Date: Mon Mar 28 07:55:45 2011 -0500 - - HHH-5913 - Implement set of event listeners as a service - -commit 2f04cbffe6fdd85986a35dd279947d567e540a86 -Author: Steve Ebersole -Date: Sun Mar 27 14:35:01 2011 -0500 - - HHH-5913 - Implement set of event listeners as a service - -commit e3a0525fb10cc4b19ea661679f7d4c5d98271af5 -Author: Steve Ebersole -Date: Sun Mar 27 14:07:23 2011 -0500 - - HHH-5913 - Implement set of event listeners as a service - -commit 42c609cfddf2cfef674bed28e854842bd5ab5829 -Author: Steve Ebersole -Date: Sun Mar 27 08:52:56 2011 -0500 - - HHH-5913 - Implement set of event listeners as a service - -commit c28b553f215d1b986963bac76021bdf78cd8a310 -Author: Steve Ebersole -Date: Sat Mar 26 22:04:36 2011 -0500 - - HHH-5913 - Implement set of event listeners as a service - -commit e8ebe8e39682c649e61cca4047574227f6c9cd80 -Author: Steve Ebersole -Date: Sat Mar 26 21:31:53 2011 -0500 - - HHH-5913 - Implement set of event listeners as a service - -commit 5adf2960c28a4acf6ccde8811bd797aa5d911647 -Author: Steve Ebersole -Date: Mon Mar 21 08:55:33 2011 -0500 - - HHH-5913 - Implement set of event listeners as a service - -commit 478e10ae3ad77770f58254e8c5f3890fa79cb9a6 -Author: Steve Ebersole -Date: Sun Mar 27 10:43:38 2011 -0500 - - HHH-5562 - Improve how event listeners are handled and introduce a service pattern for integrators to leverage - -commit 7cba21dcd91455e5564829072b69fd809957d778 -Author: Steve Ebersole -Date: Sun Mar 27 10:39:38 2011 -0500 - - HHH-5562 - Improve how event listeners are handled and introduce a service pattern for integrators to leverage - -commit 47abaf12fa6be50e95b2a3b8b3d424611c873d66 -Author: Steve Ebersole -Date: Sat Mar 26 10:50:18 2011 -0500 - - HHH-5697 - Support for multi-tenancy - -commit fe8c7183d172946a03818be2cec1c9c2fc819316 -Author: Steve Ebersole -Date: Sat Mar 26 09:11:33 2011 -0500 - - HHH-5697 - Support for multi-tenancy - -commit d42d52b8f1ecb044fc116461bee8d6d23c7a5843 -Author: Steve Ebersole -Date: Fri Mar 25 18:46:20 2011 -0500 - - HHH-5697 - Support for multi-tenancy - -commit 3ff0288da5f7d74f9fe964712a7ae869aee69bfd -Author: Steve Ebersole -Date: Fri Mar 25 18:31:04 2011 -0500 - - HHH-5697 - Support for multi-tenancy - -commit 98877a3b280279ce835d79deb51549652de08317 -Author: Steve Ebersole -Date: Fri Mar 25 12:44:32 2011 -0500 - - HHH-6053 - Create an interface for centralizing the contract that is shared between Session and StatelessSession - -commit d4783bdaeb9832dd5f92ba4515e18e6e1e7730e3 -Author: Steve Ebersole -Date: Fri Mar 25 10:54:18 2011 -0500 - - HHH-6051 - Create a SessionFactory scoped ServiceRegistry - -commit 7ece2ee52f86b835f6d1bb0a2f9d2b3350c7acc2 -Author: Steve Ebersole -Date: Fri Mar 25 10:54:03 2011 -0500 - - HHH-5942 - Migrate to JUnit 4 - -commit 815baf43483d87f4eb2335a680501c384fc65f02 -Author: Steve Ebersole -Date: Thu Mar 24 22:18:36 2011 -0500 - - HHH-6051 - Create a sessionfactory scoped ServiceRegistry - -commit 731d00fd6d75e1973473626bce8eeaf16ebf2ca8 -Author: Steve Ebersole -Date: Thu Mar 24 14:31:50 2011 -0500 - - HHH-6047 - allow nesting of ServiceRegistry - -commit 4d3ad4b4c8904ae2dd6c99a207a16fd7bfe3844f -Merge: f5a3e38cd7 64c38a0726 -Author: JPAV -Date: Thu Mar 24 13:12:56 2011 -0500 - - Merge branch 'master' of git://github.com/hibernate/hibernate-core - -commit f5a3e38cd7495a0c30e25f3461e062ba046ea2b8 -Author: JPAV -Date: Thu Mar 24 13:12:51 2011 -0500 - - HHH-6050 Changed single compile-time dependency to slf4j in parent build file to testRuntime - -commit 64c38a0726d7f7668cd87b0f22f6faaa05a9ea1c -Author: Steve Ebersole -Date: Thu Mar 24 08:15:10 2011 -0500 - - HHH-2680 - Blobs not updated on Session.merge() for detached instances - -commit d55e33c919dad4cf370dd0b6e73c1af1dba9a00c -Author: Strong Liu -Date: Thu Mar 24 16:10:21 2011 +0800 - - HHH-6036 - ignore publican temp output directory - -commit aa24c3a0c500295aa2f908b692d4a24fbc575046 -Merge: 97fb031dba 8c56875fc5 -Author: Strong Liu -Date: Thu Mar 24 15:48:07 2011 +0800 - - HHH-6036 Doc integration - -commit 97fb031dba8a09ce50bccc0edbd02175eed8cc06 -Author: Steve Ebersole -Date: Wed Mar 23 17:32:00 2011 -0500 - - HHH-2680 - Blobs not updated on Session.merge() for detached instances - -commit a491f6457090a8c7f0dfd9676fb7aec47aca96e6 -Author: Steve Ebersole -Date: Wed Mar 23 17:30:13 2011 -0500 - - HHH-2680 - Blobs not updated on Session.merge() for detached instances - -commit fd08540859213d209c29d8496eb9172954c520b1 -Merge: 1421c3f54d 9b06108300 -Author: Steve Ebersole -Date: Wed Mar 23 12:07:15 2011 -0500 - - Merge branch 'master' of github.com:hibernate/hibernate-core - -commit 1421c3f54df8a949abd2f1b680c8cabfba03f163 -Author: Steve Ebersole -Date: Wed Mar 23 12:06:19 2011 -0500 - - HHH-5284 - Allow Type to dictate the default length/scale/precision - -commit 9b061083006ce86b37f588e70d548e0f7f9b6247 -Merge: 7767dfbc06 a933851765 -Author: JPAV -Date: Tue Mar 22 14:12:21 2011 -0500 - - Merge branch 'master' of git://github.com/hibernate/hibernate-core - -commit 7767dfbc06bf0c7db190e48c2af91a269923435e -Author: JPAV -Date: Tue Mar 22 14:11:59 2011 -0500 - - HHH-5615 Replaced slf4j references with jboss-logging for a few classes that fell through the cracks - -commit a933851765c1362cee51bfa31a64461a159363ce -Author: Steve Ebersole -Date: Tue Mar 22 11:35:28 2011 -0500 - - HHH-6001 - Add a top-level directory inside the release bundle archives - -commit 8c56875fc50d3f274a33d566be7823c06020113a -Author: Strong Liu -Date: Tue Mar 22 23:39:53 2011 +0800 - - HHH-6036 integration documentation generation - -commit 51b2fa1e2bac0d7b897ade1a2ae9c320c0cbb276 -Author: Steve Ebersole -Date: Tue Mar 22 09:53:42 2011 -0500 - - HHH-6016 - Migrate version injection plugin to Gradle - -commit 02021165f2cafd76d1d7025c1d318d30120ba65b -Author: Strong Liu -Date: Tue Mar 22 22:43:26 2011 +0800 - - HHH-6036 jdocbook does not support Common_Content notation - -commit 29e21e9b257635a9319bde1ce269d53ffa225517 -Author: Steve Ebersole -Date: Tue Mar 22 08:29:49 2011 -0500 - - HHH-6038 - Migrate to use newly separated gradle-upload-auth-plugin - -commit 671ef3accd228b5f60f0aeada950557f5026a7c3 -Author: Steve Ebersole -Date: Mon Mar 21 20:33:19 2011 -0500 - - HHH-6016 - Migrate version injection plugin to Gradle - -commit 4f188a934c48e442985c72a39f9c53bbe31fd301 -Author: Steve Ebersole -Date: Mon Mar 21 18:37:44 2011 -0500 - - HHH-6033 - Migrate stats to api/spi/internal split - -commit 398cabe2a7ac932fa32f651805ecacc1bc4e2d72 -Author: Steve Ebersole -Date: Mon Mar 21 15:32:50 2011 -0500 - - minor updates to upload auth gradle plugin - -commit f93d1412a4ab1ffd2372786390478453c89e925b -Author: Steve Ebersole -Date: Mon Mar 21 11:51:49 2011 -0500 - - HHH-6033 - Migrate stats to api/spi/internal split - -commit b14de70d7b37dbcb6c67fec53af2c524c4e2b122 -Author: Steve Ebersole -Date: Mon Mar 21 09:01:04 2011 -0500 - - HHH-6028 - Remove o.h.classic stuff - -commit 3402ba3a67d17c96ffd46ca7c0482d1c97556cc9 -Author: Steve Ebersole -Date: Sat Mar 19 08:16:33 2011 -0500 - - HHH-6028 - Remove o.h.classic.Session/Validatable - -commit efa325f5db2d38a8e8cb5c6a88d16f53f951bc16 -Author: Steve Ebersole -Date: Fri Mar 18 17:47:49 2011 -0500 - - HHH-6027 - Migrate o.h.action pakcage to api/spi/internal split - -commit 19791a6c7d17f6f5d74dd9b42bdb4fcb7f5a9be1 -Author: Steve Ebersole -Date: Fri Mar 18 15:51:43 2011 -0500 - - HHH-6026 - Migrate bytecode provider integrations to api/spi/internal split - -commit 82d2ef4b1fd4d2c3f33bd5df7697d2437d8c72a5 -Author: Steve Ebersole -Date: Fri Mar 18 14:48:17 2011 -0500 - - HHH-6025 - Remove cglib dependencies - -commit 0af3a39c8695731c331ea0aa4caa04cf5dab1e31 -Author: Steve Ebersole -Date: Fri Mar 18 14:05:51 2011 -0500 - - HHH-5650 - Pull documentation building into 'release' module - -commit fcc4593eb3775db7d6c61afa240d2809934c3743 -Author: Steve Ebersole -Date: Fri Mar 18 12:38:55 2011 -0500 - - HHH-5650 - Pull documentation building into 'release' module - -commit f09b5921ef3e06b5079328f43bcfa2493f0d3708 -Author: Steve Ebersole -Date: Fri Mar 18 09:49:00 2011 -0500 - - HHH-6001 - Add a top-level directory inside the release bundle archives - -commit 13f6417ea617d35d7cc9293cfd1b40ad58ad23c8 -Author: Steve Ebersole -Date: Fri Mar 18 09:02:31 2011 -0500 - - HHH-6002 - Use today's year when building copyright footer for aggregated javadocs - -commit 53941b9b72377abf549c26b8b05696f760e3b09e -Author: Steve Ebersole -Date: Fri Mar 18 08:29:15 2011 -0500 - - HHH-4999 - createSQLQuery(query).list() result screw up when when columns in different tables have same name - -commit 0a908cb5181a430b4b3bc32ef3122dd0411e1d56 -Author: Steve Ebersole -Date: Thu Mar 17 18:20:50 2011 -0500 - - HHH-5942 - Migrate to JUnit 4 - -commit a4562f4da1de88c66916f652659414a6d8db5bb1 -Author: Steve Ebersole -Date: Thu Mar 17 09:59:34 2011 -0500 - - HHH-5942 - Migrate to JUnit 4 - -commit 819f8da9eae198f9b7509965ad902604760fa6b1 -Author: Steve Ebersole -Date: Thu Mar 17 15:07:08 2011 -0500 - - HHH-5672 - Develop the binding model (binding between logical and relational) - -commit 394211b42fbd434ac802db838ff253cc00471c97 -Merge: 6493976266 77130ca9cd -Author: Steve Ebersole -Date: Thu Mar 17 13:49:28 2011 -0500 - - Merge branch 'master' of github.com:hibernate/hibernate-core - -commit 64939762660641be62c6c73d20a3633b4a42b647 -Author: Steve Ebersole -Date: Thu Mar 17 13:25:28 2011 -0500 - - Better handling of implicit literal numeric expression typing - -commit 5f3749e590dda0407c3e37e7d83d998426a5d7d9 -Author: Emmanuel Bernard -Date: Thu Mar 17 10:24:08 2011 +0100 - - Add JavaDoc to signal Hibrnate OGM dependencies - -commit 77130ca9cd830f9884abe3eb96109cb7c6cf8c08 -Author: Emmanuel Bernard -Date: Thu Mar 17 10:24:08 2011 +0100 - - Add JavaDoc to signal Hibrnate OGM dependencies - -commit ba30df2f952ba230fffcb960563f534e45a61198 -Merge: 718d56e267 5c8e4f195d -Author: Steve Ebersole -Date: Wed Mar 16 13:42:23 2011 -0500 - - Merge branch 'master' of github.com:hibernate/hibernate-core - -commit 718d56e267a08e9db8036caf58c84543ddbd6e0f -Author: Steve Ebersole -Date: Wed Mar 16 13:38:14 2011 -0500 - - HHH-6013 - Consolidate on single JTA impl for testing - -commit 5c8e4f195d1ac7b49e349d7bed741e041a56b5b1 -Author: Galder Zamarreño -Date: Wed Mar 16 18:32:08 2011 +0100 - - HHH-6015 - Investigate hibernate-infinispan test failures - - Some tests were relying on empty caches at the start, so - make sure these are clear. - -commit 29a90c3aa8b9bf2870683e69a699c47e10522e0b -Author: Misty Stanley-Jones -Date: Wed Mar 16 02:29:48 2011 +1000 - - Adding Dev Guide - -commit 1419b51736333358436d5cd2d6057c473b71adbc -Author: Emmanuel Bernard -Date: Tue Mar 15 14:28:34 2011 +0100 - - HHH-5993 Add documentation for session factory observer config - -commit 12bd0f24c0bea0219531cd1f518c4c755441ab0d -Author: Emmanuel Bernard -Date: Tue Mar 8 19:54:46 2011 +0100 - - HHH-5993 Add SessionFactoryObserver configuration option to HEM - -commit f3bab5638253c48dc3e1909f77d17ca45356f0b2 -Author: Galder Zamarreño -Date: Tue Mar 15 14:08:36 2011 +0100 - - HHH-6015 - hibernate-infinispan test failures after migration to JUnit4 - - Fixed isolated classloader test making sure the two classloaders - required are created, one with the classes and the other without them. - -commit 5fb8b92eef2cc47944bb1fc5fc1ca397532ae110 -Author: Steve Ebersole -Date: Mon Mar 14 13:38:58 2011 -0500 - - cleaned up erroneously committed bin/ directories - -commit bcff8948fba02334f41f61e0969ec81daed23bdf -Author: Steve Ebersole -Date: Mon Mar 14 13:30:28 2011 -0500 - - HHH-5942 - Migrate to JUnit 4 - -commit 9ad55dc4bd146e8ef9298d252691acfeaa596b63 -Author: Steve Ebersole -Date: Mon Mar 14 12:51:04 2011 -0500 - - HHH-5942 - Migrate to JUnit 4 - -commit df4df47b95f379286e9d0898c3efd27dde22be03 -Author: Steve Ebersole -Date: Sun Mar 13 19:58:48 2011 -0500 - - HHH-5942 - Migrate to JUnit 4 - -commit 20a120ef6c1f86a13f7f22b020279990750f3372 -Author: Steve Ebersole -Date: Sat Mar 12 14:47:55 2011 -0600 - - HHH-5942 - Migrate to JUnit 4 - -commit ed882f68aeb0436092f5cd456f5e19f1a412de63 -Author: Steve Ebersole -Date: Sat Mar 12 12:27:56 2011 -0600 - - HHH-5942 - Migrate to JUnit 4 - -commit 1c203f35ec10602041fb10bca640efa2ed86195e -Author: Steve Ebersole -Date: Sat Mar 12 12:19:56 2011 -0600 - - HHH-5942 - Migrate to JUnit 4 - -commit a6f8767a3c46a4a80eab8d291b5da3eeaf5ed84a -Author: Steve Ebersole -Date: Fri Mar 11 00:12:58 2011 -0600 - - HHH-5942 - Migrate to JUnit 4 - -commit fd3fb8b3160285c83488862e453ca625e689ff97 -Author: Steve Ebersole -Date: Wed Mar 9 05:26:46 2011 -0600 - - HHH-5942 - Migrate to JUnit 4 - -commit 03ada52204a5aad401eaa3094290300f9fda7041 -Author: Steve Ebersole -Date: Mon Mar 7 16:20:53 2011 -0600 - - HHH-5942 - Migrate to JUnit 4 - -commit 74df160f319d774fd2d90837cace40f6ad13623f -Author: Emmanuel Bernard -Date: Mon Mar 14 18:53:52 2011 +0100 - - HHH-5940 Make @MakKeyJoinColumns work and add test - -commit b30ff014ad646643fc3a8fc39fe77e7e6acc1a09 -Author: Gail Badner -Date: Fri Mar 11 16:34:47 2011 -0800 - - HHH-6010 : Remove duplication in code involving Work and ReturningWork - -commit 53bc7d1bb4735ae1344b24a8e5bcdc58eea85d62 -Author: Sanne Grinovero -Date: Thu Mar 10 18:51:12 2011 +0000 - - cleanup .gitignore from duplicates - -commit f25a62855ed269900275610f9df88ef250af5255 -Author: Steve Ebersole -Date: Wed Mar 9 18:40:41 2011 -0600 - - prepare for 4.0.0.Alpha2 development - -commit 0fece2cf809e7cc1408d1e08ffdb3539a5a74b74 (tag: 4.0.0.Alpha1) -Author: Steve Ebersole -Date: Wed Mar 9 18:22:34 2011 -0600 - - prepare 4.0.0.Alpha1 release - -commit 30ab30c5fa1c784f90ef5e0dcfc816b6a98eb01c -Merge: 7c5f2ae5db b1a9f36375 -Author: Gail Badner -Date: Wed Mar 9 15:12:54 2011 -0800 - - Merge branch 'master' of github.com:hibernate/hibernate-core - -commit 7c5f2ae5db5f35cbf2baba11bbc04e3df7ee87e6 -Author: Gail Badner -Date: Wed Mar 9 15:12:30 2011 -0800 - - HHH-5949 : Migrate, complete and integrate TransactionFactory as a service - -commit b1a9f36375d4d90095ce82642ebc1a26c93f0a53 -Author: Steve Ebersole -Date: Wed Mar 9 15:29:16 2011 -0600 - - HHH-6000 - split annotation processor execution out into separate tasks - -commit 97a310d26db2a1b1a287661f8eabf6ac37b6a0ec -Author: JPAV -Date: Wed Mar 9 14:58:22 2011 -0600 - - HHH-5615 Converted logging framework from slf4j to jboss logging for a few class that fell through the cracks - -commit 4b130da83ece3536936317b235c4d90d0cef8c0e -Author: Gail Badner -Date: Wed Mar 9 12:14:19 2011 -0800 - - HHH-5590 : Don't log and rethrow exception in AbstractFlushingEventListener - -commit 329486bc69875e8030318292dc32b7037be55365 -Author: Steve Ebersole -Date: Wed Mar 9 13:55:19 2011 -0600 - - HHH-5990 - Remove non-maintained second level cache integrations - -commit 7f7f073c9bb815a650b6d840722e48e4e9bf0efc -Author: Steve Ebersole -Date: Wed Mar 9 13:49:20 2011 -0600 - - HHH-5990 - Remove non-maintained second level cache integrations - -commit 4926904ed7e9b05fd48a2be2627f2417644322bc -Author: Steve Ebersole -Date: Wed Mar 9 13:30:29 2011 -0600 - - HHH-6000 - split annotation processor execution out into separate tasks - -commit 7f09622a681d263d1c529cf332ca2c6c898d52f1 -Merge: 43b812c1de f4815ee3a9 -Author: Steve Ebersole -Date: Wed Mar 9 13:21:40 2011 -0600 - - Merge branch 'master' of github.com:hibernate/hibernate-core - -commit 43b812c1de9011c19596ec757d02e19534a1b1cc -Author: Steve Ebersole -Date: Wed Mar 9 13:15:47 2011 -0600 - - HHH-6000 - split annotation processor execution out into separate tasks - -commit 8e71b82183441c1a3e81f2ca00d7db7171fb15e9 -Author: Steve Ebersole -Date: Wed Mar 9 13:02:24 2011 -0600 - - HHH-5949 - Migrate, complete and integrate TransactionFactory as a service - -commit f4815ee3a967244e1cd7319690aa83b9560ebafe -Author: JPAV -Date: Wed Mar 9 10:32:02 2011 -0600 - - Removed bin folder from entity manager module - -commit c29b62dfa88ad6ff9b6be088cbf98401a0417500 -Author: JPAV -Date: Wed Mar 9 10:29:47 2011 -0600 - - Modified .gitignore to ignore Eclipse bin folders correctly - -commit 613f38fb5c67fc27efa7336ad80bb3cfcbfca589 -Merge: 5492f60f06 29c9e81210 -Author: Steve Ebersole -Date: Wed Mar 9 10:02:44 2011 -0600 - - Merge branch 'master' of github.com:hibernate/hibernate-core - -commit 5492f60f060e886ad6fed1c5282dea1203c7894b -Author: Steve Ebersole -Date: Wed Mar 9 10:01:54 2011 -0600 - - HHH-5994 - Inserts may be delayed because TransactionCoordinatorImpl.isTransactionInProgress() returns false for non-JTA transactions - -commit 29c9e812103ca041d2aa971b5421623b63462adf -Author: JPAV -Date: Wed Mar 9 10:00:59 2011 -0600 - - Removed docs folder from swarmcache module - -commit 6e35a578700618cf13fa61d5ed7b1c4ff7ef3277 -Merge: 8b94ac65a1 d3b5c687ee -Author: Steve Ebersole -Date: Wed Mar 9 09:52:53 2011 -0600 - - Merge branch 'master' of github.com:hibernate/hibernate-core - -commit 8b94ac65a1e8afec0b91ecdc202ad5979826ec1a -Author: Steve Ebersole -Date: Wed Mar 9 09:52:12 2011 -0600 - - HHH-5994 - Inserts may be delayed because TransactionCoordinatorImpl.isTransactionInProgress() returns false for non-JTA transactions - -commit d3b5c687ee5a34b3e8fe1cf6b4bb2d218b32f118 -Author: Gail Badner -Date: Wed Mar 9 03:50:31 2011 -0800 - - HHH-5890 : License comment refers to non-exiting page - -commit 8870afb074db31e779e6f093981716574c5c4e24 -Author: Gail Badner -Date: Wed Mar 9 03:44:03 2011 -0800 - - HHH-5994 : Changed MergeTest.mergeManaged to be FailureExpected - -commit 121c039ecd8573819489256bb42d5b8c58f4d7f5 -Author: Gail Badner -Date: Wed Mar 9 03:24:25 2011 -0800 - - HHH-5766 : New services are not wired into standalone SchemaExport, SchemaUpdate, and SchemaValidator - -commit 32577a8a799e29f73809747b6c7f33a44b182230 -Author: Gail Badner -Date: Tue Mar 8 21:14:29 2011 -0800 - - HHH-5961 : Contextual LOB creator is used when the JDBC driver does not support JDBC4 Connection.createBlob() - -commit ad5f88c2d64f7d4694837896f8f9843c2f10d7c1 -Author: Gail Badner -Date: Tue Mar 8 21:12:02 2011 -0800 - - HHH-5961 : Contextual LOB creator is used when the JDBC driver does not support JDBC4 Connection.createBlob() - -commit 724cd1f95d07b87610090920a5e0df8790ad5c47 -Author: Gail Badner -Date: Tue Mar 8 20:37:08 2011 -0800 - - HHH-5995 : Compile error because Statement is undefined in SqlExceptionHelper - -commit 78136e02ffc66d981e591b99fcf3130e35a808a2 -Merge: b7b52903b5 985b45a920 -Author: JPAV -Date: Tue Mar 8 16:31:47 2011 -0600 - - Merge branch 'master' of git://github.com/hibernate/hibernate-core - -commit b7b52903b5b6b551cc08af254531621931abf6ac -Author: JPAV -Date: Tue Mar 8 16:26:03 2011 -0600 - - Final sync with upstream master - -commit 346418c4ef7b9a21dc659af43ff614d5db2343f9 -Merge: 98058c2aea 0b10334e40 -Author: JPAV -Date: Tue Mar 8 16:19:57 2011 -0600 - - Final sync with upstream master - -commit 985b45a920aed2bc76831f907cd12c48a103c173 -Author: Gail Badner -Date: Tue Mar 8 13:32:23 2011 -0800 - - HHH-5842 : Types.Binary column type should be registered with a length for HSQLDialect - -commit b710115a93bb103469766f9a52272ff3d447e7f6 -Author: Emmanuel Bernard -Date: Tue Mar 8 19:50:13 2011 +0100 - - HHH-5916 Remove unnecessary property for persister class provider - - Now replaced with the service's property PersisterClassResolverInitiator.IMPL_NAME - aka "hibernate.persister.resolver" - -commit 0b10334e403cf2b11ee60725cc5619eaafecc00b -Author: Gail Badner -Date: Mon Mar 7 13:40:06 2011 -0800 - - HHH-5991 : add Configuration.buildSessionFactory() (without ServiceRegistry arg) - -commit b1036c09a7e9548cdfd629dc56e04c03d4dadf0f -Author: Gail Badner -Date: Mon Mar 7 08:53:30 2011 -0800 - - HHH-5983 : Actions have non-transient references that cause inconsistencies after deserialization - -commit e1c03f28fd9f5e3b196e1fc9e619dbace7f6aa7d -Author: Steve Ebersole -Date: Mon Mar 7 10:48:32 2011 -0600 - - HHH-5949 - Migrate, complete and integrate TransactionFactory as a service - -commit 16464ae8bebf8d16e66c2e3cf8cc0657f3682a39 -Author: Steve Ebersole -Date: Mon Mar 7 07:51:18 2011 -0600 - - HHH-5987 - Remove org.hibernate.ejb.CurrentEntityManagerImpl - -commit 56d242acdf54275f79e681c0bf34127de5be00fa -Author: Steve Ebersole -Date: Sun Mar 6 08:46:57 2011 -0600 - - HHH-5949 - Migrate, complete and integrate TransactionFactory as a service - -commit 0816d00e5946ba2b2e88c9c76fda75d941bff738 -Author: Steve Ebersole -Date: Sat Mar 5 09:26:31 2011 -0600 - - HHH-5986 - Refactor org.hibernate.util package for spi/internal split - -commit 73e85ee761a455a12aab7132bfa308fa50c6680a -Author: Steve Ebersole -Date: Sat Mar 5 08:06:21 2011 -0600 - - HHH-5781 - Refactor code in org.hibernate.jdbc to spi/internal and remove obsolete code - -commit 21cc90fbf448ff537e44d12e26679d6b0d49ed9f -Author: Steve Ebersole -Date: Fri Mar 4 21:46:06 2011 -0600 - - HHH-5985 - Remove TransactionHelper in preference of IsolationDelegate - -commit ddfcc44d760938578771cb6ce24c809c980c8b8b -Author: Steve Ebersole -Date: Fri Mar 4 15:36:07 2011 -0600 - - HHH-5916 - Add support for a programmatic way to define a default EntityPersister and CollectionPersister class implementation - -commit 537ee25e823e4c68b0142db24b207370a8110aa9 -Merge: 747c2dd50d 0093974180 -Author: Gail Badner -Date: Fri Mar 4 11:33:28 2011 -0800 - - Merge branch 'master' of github.com:hibernate/hibernate-core - -commit 747c2dd50d960aa861baaf64a3369dd6e89e6f33 -Author: Gail Badner -Date: Fri Mar 4 11:18:34 2011 -0800 - - HHH-5982 : Flush checker bugs - -commit 0093974180ae14bbcc2cd7e32d1225f2189b36a3 -Merge: 4f4f374dae 1dc88b3c38 -Author: Steve Ebersole -Date: Fri Mar 4 12:46:15 2011 -0600 - - Merge branch 'master' into HHH-5981 - -commit 4f4f374daefc1c3d0901db542f157ec7192ce846 -Author: Steve Ebersole -Date: Fri Mar 4 12:43:43 2011 -0600 - - HHH-5981 - Clarify Session.disconnect() and Session.reconnect() behavior - -commit 1dc88b3c384e539edc3069ee2c0c79ee30c9e382 -Merge: 48c4db0b57 818987751e -Author: Strong Liu -Date: Fri Mar 4 23:28:52 2011 +0800 - - Merge branch 'master' of github.com:hibernate/hibernate-core - -commit 48c4db0b579ddd7966bf85b0a90cffcab3fb29c1 -Author: Strong Liu -Date: Fri Mar 4 23:15:05 2011 +0800 - - HHH-5707 Deprecated DomainObjectCollection.allObjects(), TaskCollection.allTasks() and PluginCollection.allPlugins(). These are replaced by DomainObjectCollection.all(). - -commit 818987751e31fe8408d88291e5a3e119710a64c4 -Author: David M. Carr -Date: Thu Feb 24 17:14:08 2011 -0500 - - HHH-5977 Add a couple additional unit tests for when you use a @JoinColumn with a secondary table specified. - -commit 4d5b9f1ca13093325f05a1295449c3a92cc65463 -Author: Steve Ebersole -Date: Thu Mar 3 14:16:58 2011 -0600 - - HHH-5949 - Migrate, complete and integrate TransactionFactory as a service - -commit bf186e7a6e8d3ca03f0de0722d57533042bb9f97 -Author: Steve Ebersole -Date: Thu Mar 3 11:53:20 2011 -0600 - - HHH-5949 - Migrate, complete and integrate TransactionFactory as a service - -commit b4a440e8d365c8cbc2bbce77cd9f89e009d761c4 -Author: Steve Ebersole -Date: Wed Mar 2 16:46:08 2011 -0600 - - HHH-5949 - Migrate, complete and integrate TransactionFactory as a service - -commit 08d9fe2117a1afc60ad15cb1b6124b057b6eae32 -Author: Steve Ebersole -Date: Wed Mar 2 15:57:28 2011 -0600 - - HHH-5949 - Migrate, complete and integrate TransactionFactory as a service - -commit 7243d04541f5bb81f409d7f1033a133fc79e90ea -Author: Gail Badner -Date: Fri Feb 25 16:29:09 2011 -0800 - - HHH-5941 : remove deprecated set(), nullSafeSet(), get(), nullSafeGet() methods and add SessionImplementer argument to UserType.nullSafeGet()/nullSafeSet() - -commit 98058c2aea6620839e5faca020836dd988e205f4 -Author: JPAV -Date: Fri Feb 25 11:41:52 2011 -0600 - - removed transitive=false for dependency - -commit 79080f74d6ffe9415c9047b2cbf0031442b1027b -Merge: 094bfc4def 39d2d53968 -Author: JPAV -Date: Thu Feb 24 16:18:35 2011 -0600 - - sync with master - -commit 094bfc4def148a9da4ca3ca92228bf6ee172c01e -Author: JPAV -Date: Thu Feb 24 13:25:02 2011 -0600 - - Removed bin folders - -commit 89eabb920dda69df83a60fa5d327017b4dbeb5a6 -Author: Gail Badner -Date: Wed Feb 23 15:37:37 2011 -0800 - - HHH-5957 : Provide a way for dialects to override a SqlTypeDescriptor - -commit c71e3c4bafad4f1f979945c7e94ab8d73c4c2f5a -Author: JPAV -Date: Wed Feb 23 16:46:58 2011 -0600 - - Changed copyright notice from JBoss to Hibernate for new logging classes - -commit 0c5526f724551edb2d518d822521651172fe13f0 -Author: Steve Ebersole -Date: Mon Feb 21 23:41:17 2011 -0600 - - HHH-5765 - Replaced ServiceRegistryHolder with ServiceRegistryBuilder - -commit e9ec8ef587b011f07314b20fd9236ec4f37ec287 -Author: Steve Ebersole -Date: Mon Feb 21 22:18:17 2011 -0600 - - HHH-5943 - Make ServiceRegistry mutable - -commit 8a530db254b18dc7db1a04cbdd01bcb69b1d72ca -Author: Steve Ebersole -Date: Mon Feb 21 21:46:54 2011 -0600 - - HHH-5943 - Make ServiceRegistry mutable - -commit 72a94161e2df71b98a2791b1bf7af4a474c7b348 -Author: Steve Ebersole -Date: Mon Feb 21 19:19:20 2011 -0600 - - HHH-5943 - Make ServiceRegistry mutable - -commit 11d32ba69c6fb557356116336947e9df34eb7566 -Author: Steve Ebersole -Date: Mon Feb 21 17:31:40 2011 -0600 - - HHH-5943 - Make ServiceRegistry mutable - -commit 02cf95da339aa1f278fea3d97d6d2eacb06e2b24 -Author: Emmanuel Bernard -Date: Mon Feb 14 19:17:09 2011 +0100 - - HHH-5916 Add documentation for PersisterClassProvider option on Hibernate EntityManager - -commit a829d9c1c7c79c2fc556e8419306f0c56ad92ba6 -Author: Emmanuel Bernard -Date: Mon Feb 14 19:04:07 2011 +0100 - - Clean documentation - -commit 77c8d31ee173da8eaaa386c020fe65a6cc2f034b -Author: Emmanuel Bernard -Date: Mon Feb 14 19:03:51 2011 +0100 - - HHH-5916 Add doc for PersisterClassProvider - -commit bac44e377d1977c5f5b786e9bc56b8a5a394844c -Author: Emmanuel Bernard -Date: Mon Feb 14 14:26:13 2011 +0100 - - HHH-5916 Add test for PersisterClassProvider on Ejb3Configuration - -commit c48e7df2a46684df0fb35f8daca6351e3ded618c -Author: Emmanuel Bernard -Date: Mon Feb 14 14:26:06 2011 +0100 - - HHH-5916 Add test for Configuration.setPersisterClassProvider - -commit 24936b0b70bec8978e6a328e556df0a46af8dddd -Author: Emmanuel Bernard -Date: Mon Feb 14 14:00:39 2011 +0100 - - HHH-5916 Expose persister class provider via Ejb3Configuration - -commit eb9a093262970d52333b8a3c81f8dd30d1a3ebb3 -Author: Emmanuel Bernard -Date: Mon Feb 14 13:59:24 2011 +0100 - - HHH-5916 extract property name to instance logic into helper method - -commit 4ffba763cf6645e722a2deeea552f998ec7dc22a -Author: Emmanuel Bernard -Date: Mon Feb 14 13:56:59 2011 +0100 - - HHH-5916 Use PersisterClassProvider in Binders - -commit 55eb37ed52a4056b31a78bee8887a01c61c568af -Author: Emmanuel Bernard -Date: Mon Feb 14 13:54:48 2011 +0100 - - HHH-5916 Expose PersisterClassProvider configuration - -commit 337fd3025608ed47884aae472d308703b8e7f5bd -Author: Emmanuel Bernard -Date: Mon Feb 14 13:47:06 2011 +0100 - - HHH-5916 Add contract for custom default persister class provider - -commit e7d19bb4da4ccf19b21b190bc4e937dd5e4db26e -Author: Brian Parker -Date: Sat Feb 12 15:10:41 2011 -0600 - - Apply read and write expressions to the revision entity. - -commit 7a6aab6d023138ce09eb31712ad57a87d4fbb248 -Author: Steve Ebersole -Date: Mon Feb 14 09:29:05 2011 -0600 - - HHH-5928 - Clean up compilation warnings - -commit f13acbe670c2885f65687565a45d6cc53de4b866 -Author: Steve Ebersole -Date: Thu Feb 10 10:13:14 2011 -0600 - - HHH-5897 - Upgrade to Gradle 0.9.2 - -commit cf6594b9af1533e3b9e94a5430aec47cd7615297 -Author: Steve Ebersole -Date: Thu Feb 10 10:10:23 2011 -0600 - - HHH-5897 - Upgrade to Gradle 0.9.2 - -commit 4fd609e41e7ea8a20ce88734381e44db9e52e5d4 -Author: Steve Ebersole -Date: Thu Feb 10 09:45:28 2011 -0600 - - HHH-5904 - Deploy just testing artifacts from hibernate-core, not all tests - -commit 7b9d7f2c25c54ba746535244b918ec42b9f78cea -Author: Strong Liu -Date: Wed Feb 9 20:45:48 2011 +0800 - - HHH-5907 change to use autobox instead of create new object everytime to get minor improvement - -commit 82adfaa16e45c004f79ede8b05c885f1bc27a51b -Author: Strong Liu -Date: Wed Feb 9 20:45:31 2011 +0800 - - ignore eclipse bin directory from git - -commit 3db29f4ae191ad50c19b59897dd86fa675dce769 -Author: Emmanuel Bernard -Date: Wed Feb 9 10:30:35 2011 +0100 - - HHH-5906 make AbstractEntityPersister#getPropertyUniqueness public - -commit dc59f6bdd1d037103a1ff4cb24a1dadf99bbf8d5 -Author: Steve Ebersole -Date: Tue Feb 8 14:27:57 2011 -0600 - - HHH-5904 - Deploy just testing artifacts from hibernate-core, not all tests - -commit b2a79676243a224b4c20bdd6f252ab88156929d4 -Author: Steve Ebersole -Date: Tue Feb 8 11:27:27 2011 -0600 - - HHH-5903 - Rename ServicesRegistry to ServiceRegistry - -commit 2aa2dc0c591906ad6c07ecf875d0828eb8f8a7a3 -Author: Steve Ebersole -Date: Tue Feb 8 11:19:50 2011 -0600 - - HHH-5897 - Upgrade to Gradle 0.9.2 - -commit f8b76e204ee4932250d41e004902502d7434316c -Author: Steve Ebersole -Date: Tue Feb 8 08:12:02 2011 -0600 - - HHH-5900 - Revert change to add upload repositiory authentication handling in build script - -commit 58c615aef418c662ae5698126053d928eda87048 -Author: Steve Ebersole -Date: Tue Feb 8 07:59:22 2011 -0600 - - HHH-5898 - Improve authentication for Gradle uploads - -commit a02a8a88b5796916acc69913041d28e21c5f949d -Author: Steve Ebersole -Date: Mon Feb 7 18:20:50 2011 -0600 - - HHH-5898 - Improve authentication for Gradle uploads - -commit 4410a941e7608e94d57c121f3ae97b0a0ffe6eed -Author: Gail Badner -Date: Mon Feb 7 13:56:41 2011 -0800 - - HHH-5704 HHH-5893 : Added tests for empty LOBs - -commit c6a407332a983b515f613529105da700e0825598 -Author: Emmanuel Bernard -Date: Fri Jan 28 12:35:03 2011 -0600 - - HHH-5879 Expose getPropertyUniqueness from AbstractEntityPersister - -commit ab0e173f0e8bab3959b6789ea5558dcea2403c37 -Author: Emmanuel Bernard -Date: Fri Jan 28 12:33:29 2011 -0600 - - HHH-5879 Open Core ComponentType metamodel - - Add a getter to isKey - -commit de7ce17f35142a86e8e0eebf81ea01cd4d46f9c8 -Author: Emmanuel Bernard -Date: Fri Jan 28 12:32:02 2011 -0600 - - HHH-5879 Improve AbstractEntityPersister to allow better subclassing in the loader area - - Make use of a getLoader() getter which is protected - -commit f93581115e4c0c3355fefc954ee38073227e6793 -Author: Emmanuel Bernard -Date: Fri Jan 28 12:25:27 2011 -0600 - - HHH-5879 Make property protected for use by the OGM persister - -commit 11c2537526c9f023cc5d6202d1111f8d3c900a20 -Author: Emmanuel Bernard -Date: Fri Jan 28 12:24:15 2011 -0600 - - HHH-5879 expose getPropertyColumnUpdateable getPropertyColumnInsertable - -commit 2ccc73454ae154598130946bcab73abf2d0dfe79 -Author: adamw -Date: Mon Jan 31 12:26:26 2011 +0100 - - HHH-5883: Fixing - @Lob annotated field throws MappingException when the field type is serializable - -commit 318352519f0e0c54725ff112abb060a28a17f4e9 -Author: Hardy Ferentschik -Date: Fri Jan 28 17:51:52 2011 -0600 - - HHH-5880 Added username and password for authentication of deploys into remote repos - -commit 9d3b6bbb1d2a1e16a90686f0234d40aa88b9fc38 -Author: Sanne Grinovero -Date: Fri Jan 28 16:36:19 2011 -0600 - - HHH-5880 needs to use classifier "tests" not "test" - -commit d0ef75f1cab3815965915e5382add1f1b61d7eb7 -Author: Hardy Ferentschik -Date: Fri Jan 28 15:49:22 2011 -0600 - - HHH-5880 Changed gradle build for for to push testing jar - -commit 67606ca651c310d22ffba124eef2fd58e17da596 -Author: Galder Zamarreño -Date: Mon Jan 24 19:53:35 2011 +0100 - - HHH-5859 - Upgraded to 4.2.0.CR1 - - Apart from upgrading Infinispan, test transaction manager code has been - changed so that read only transactions are not committed twice. - -commit 078dc9405599a62df2137c73437f0b8ec8ebb341 -Author: Gail Badner -Date: Fri Jan 21 14:04:22 2011 -0800 - - HHH-4878 : document materialized blob/clob, text/image and minor corrections - -commit d1515a2911d52b54674219bbd2f629773a5cd75a -Author: Gail Badner -Date: Fri Jan 21 13:05:54 2011 -0800 - - HHH-5126 : "in" expression and column-valued-input-parameter - -commit 1be9fc80c98b53c4c5339334106ff5544aaa4d75 -Author: Steve Ebersole -Date: Fri Jan 21 14:05:16 2011 -0600 - - HHH-5821 - JPA EntityType's (or ManagedType's) getSingularAttributes() returns the version attribute with isVersion set to false. - -commit 4aa9cbe5b7dc9976af2233681fb09e347400fff3 -Author: Steve Ebersole -Date: Fri Jan 21 12:39:25 2011 -0600 - - HHH-5823 - Poor multithread performance in UpdateTimestampsCache class - -commit ddbeaf5625e7d4513097604b7f1fbe968a3739ca -Author: Steve Ebersole -Date: Fri Jan 21 12:10:18 2011 -0600 - - HHH-5824 - Poor multithread performance in SessionFactoryImpl.getQueryCache method - -commit 144dde0080bf4146d6ff059d3dec263966a0413c -Author: Steve Ebersole -Date: Fri Jan 21 11:07:59 2011 -0600 - - HHH-5550 - Hibernate.createBlob() fails when used in current_session_context_class=thread mode - -commit 7c3aafb7c2143aaaf3ea3102e0bf464930cd5066 -Author: Steve Ebersole -Date: Thu Jan 20 15:12:52 2011 -0600 - - HHH-5853: Problem loading cachable collections defined with a property-ref key with a versioned owner - -commit 2641842ba90404916a38df78fc6f00d9125f6a39 -Author: Sanne Grinovero -Date: Fri Jan 14 16:31:01 2011 +0000 - - HHH-5843 - Avoid useless branches during HQL parsing when trace logging is disabled - -commit 19bc3ba7fcea40ba8a8185119a4d3cdf00a25152 -Author: JPAV -Date: Tue Feb 22 16:28:42 2011 -0600 - - Modified infinispan module's build to exclude older version of jboss-logging library - -commit 39d2d53968fcf9725dc55b1558d0c0dd67b01f26 -Author: Steve Ebersole -Date: Mon Feb 21 23:41:17 2011 -0600 - - HHH-5765 - Replaced ServiceRegistryHolder with ServiceRegistryBuilder - -commit 3ba07b3f18eff2156b804f19f96e89cf0c4309c2 -Author: Steve Ebersole -Date: Mon Feb 21 22:18:17 2011 -0600 - - HHH-5943 - Make ServiceRegistry mutable - -commit 2a64bcf9a7e616e9f7653d078caeaa4d343d97a2 -Author: Steve Ebersole -Date: Mon Feb 21 21:46:54 2011 -0600 - - HHH-5943 - Make ServiceRegistry mutable - -commit 73ff2534e25ec52b4625f09f203e3a5fc3a2c3f2 -Author: Steve Ebersole -Date: Mon Feb 21 19:19:20 2011 -0600 - - HHH-5943 - Make ServiceRegistry mutable - -commit f53a6c708af7e89bd3a2f4cc80bdcf30c5febfaa -Author: Steve Ebersole -Date: Mon Feb 21 17:31:40 2011 -0600 - - HHH-5943 - Make ServiceRegistry mutable - -commit ece77365dcfb01771618065e6dd5424f6e521a86 -Author: JPAV -Date: Wed Feb 16 16:14:27 2011 -0600 - - Updated to work with latest releases of jboss-logging and jboss-logging-tools - -commit 7e42b464442d0535d2d1dbb7dc501c8064825d54 -Author: Emmanuel Bernard -Date: Mon Feb 14 19:17:09 2011 +0100 - - HHH-5916 Add documentation for PersisterClassProvider option on Hibernate EntityManager - -commit 1f063b7d353ebe208420db4e6b0bec5538a5461a -Author: Emmanuel Bernard -Date: Mon Feb 14 19:04:07 2011 +0100 - - Clean documentation - -commit 3a8c801ad6048f90dd8688658b604105c4657a1a -Author: Emmanuel Bernard -Date: Mon Feb 14 19:03:51 2011 +0100 - - HHH-5916 Add doc for PersisterClassProvider - -commit d5c16fb11df9f8d386dfa21415491ee24fba6b11 -Author: Emmanuel Bernard -Date: Mon Feb 14 14:26:13 2011 +0100 - - HHH-5916 Add test for PersisterClassProvider on Ejb3Configuration - -commit ea9b756738140d279747011ba213e04e11341506 -Author: Emmanuel Bernard -Date: Mon Feb 14 14:26:06 2011 +0100 - - HHH-5916 Add test for Configuration.setPersisterClassProvider - -commit 876d613974e00dad3e765d72a1ece80704147647 -Author: Emmanuel Bernard -Date: Mon Feb 14 14:00:39 2011 +0100 - - HHH-5916 Expose persister class provider via Ejb3Configuration - -commit d5d492744f13e2a4d70e3c20ae07acb27c4c8261 -Author: Emmanuel Bernard -Date: Mon Feb 14 13:59:24 2011 +0100 - - HHH-5916 extract property name to instance logic into helper method - -commit e18799b03611ef8dc37690585de984f63b35bc34 -Author: Emmanuel Bernard -Date: Mon Feb 14 13:56:59 2011 +0100 - - HHH-5916 Use PersisterClassProvider in Binders - -commit d7c48d779c57af185888929b399e79a62c0fcc97 -Author: Emmanuel Bernard -Date: Mon Feb 14 13:54:48 2011 +0100 - - HHH-5916 Expose PersisterClassProvider configuration - -commit cd4b49a8029397a890bd8fc4800c27f9abf70461 -Author: Emmanuel Bernard -Date: Mon Feb 14 13:47:06 2011 +0100 - - HHH-5916 Add contract for custom default persister class provider - -commit c61606c45817b59cee64725076a4ea2cc4d51473 -Author: Brian Parker -Date: Sat Feb 12 15:10:41 2011 -0600 - - Apply read and write expressions to the revision entity. - -commit f7c3091381951e1a2b45178b399facbe4a85abae -Author: Steve Ebersole -Date: Mon Feb 14 09:29:05 2011 -0600 - - HHH-5928 - Clean up compilation warnings - -commit e6eb434f7b06cd7de68618c9b1af50407fb94b00 -Author: Steve Ebersole -Date: Thu Feb 10 10:13:14 2011 -0600 - - HHH-5897 - Upgrade to Gradle 0.9.2 - -commit d0573b1623275ce48347aa3d2d66ffcdbfc02149 -Author: Steve Ebersole -Date: Thu Feb 10 10:10:23 2011 -0600 - - HHH-5897 - Upgrade to Gradle 0.9.2 - -commit 3ba79384f00c1b64505b3656dc614c708afb2671 -Author: Steve Ebersole -Date: Thu Feb 10 09:45:28 2011 -0600 - - HHH-5904 - Deploy just testing artifacts from hibernate-core, not all tests - -commit ac27759f2e26658dc8d46dc5a3ca947caba56b79 -Merge: ef301deadc 2a0309c3d0 -Author: Steve Ebersole -Date: Thu Feb 10 09:41:34 2011 -0600 - - Merge branch 'master' of github.com:hibernate/hibernate-core - -commit 9b725c471cd178c2ff87faea9da1ccf75d1732c0 -Author: JPAV -Date: Wed Feb 9 15:23:05 2011 -0600 - - Attempt to compile twice, once only for annotations, then for everything else - -commit c7f09e51300343c8aa90d435a0142656b1fe47da -Author: JPAV -Date: Wed Feb 9 13:05:57 2011 -0600 - - Attempt to compile twice, once only for annotations, then for everything else - -commit 2a0309c3d0676b551de56eefed05278410ad04be -Author: Strong Liu -Date: Wed Feb 9 20:45:48 2011 +0800 - - HHH-5907 change to use autobox instead of create new object everytime to get minor improvement - -commit eedc3d0101a0f28b99a4f599e87397ed4ab25ebd -Author: Strong Liu -Date: Wed Feb 9 20:45:31 2011 +0800 - - ignore eclipse bin directory from git - -commit ab6860a3e81d5bd20f1ebf80932dc7171bb87c67 -Author: Emmanuel Bernard -Date: Wed Feb 9 10:30:35 2011 +0100 - - HHH-5906 make AbstractEntityPersister#getPropertyUniqueness public - -commit ef301deadc9a7bd66c8f5a7da2fa678909a77a37 -Author: Steve Ebersole -Date: Tue Feb 8 14:27:57 2011 -0600 - - HHH-5904 - Deploy just testing artifacts from hibernate-core, not all tests - -commit acf89b9e6800984a67b83c75a591c25c8ae21fb7 -Author: JPAV -Date: Tue Feb 8 14:01:34 2011 -0600 - - Changes from requests at Hibernate meeting: message codes, use XXXf methods for debug and trace, use @Cause - -commit 8c806d361d63764e8523006944dde52aff70532c -Author: JPAV -Date: Tue Feb 8 13:55:27 2011 -0600 - - Changes from requests at Hibernate meeting: message codes, use XXXf methods for debug and trace, use @Cause - -commit 011d7e1114adfceca6e54e340ed814f414fb4ce6 -Author: Steve Ebersole -Date: Tue Feb 8 11:27:27 2011 -0600 - - HHH-5903 - Rename ServicesRegistry to ServiceRegistry - -commit 2f8655e661326b8947dae64516336831ba44af03 -Author: Steve Ebersole -Date: Tue Feb 8 11:19:50 2011 -0600 - - HHH-5897 - Upgrade to Gradle 0.9.2 - -commit 8f593ed866fe819819c4001e1c35e6bea1cc7511 -Author: Steve Ebersole -Date: Tue Feb 8 08:12:02 2011 -0600 - - HHH-5900 - Revert change to add upload repositiory authentication handling in build script - -commit c893a6fc6b327225eafe1cbe4e7a45de5df35dce -Author: Steve Ebersole -Date: Tue Feb 8 07:59:22 2011 -0600 - - HHH-5898 - Improve authentication for Gradle uploads - -commit e7d5b9c0bfa894e8252f162a08a583926405d09e -Author: Steve Ebersole -Date: Mon Feb 7 18:20:50 2011 -0600 - - HHH-5898 - Improve authentication for Gradle uploads - -commit 67c05ff9f5543507e972f5c56081f36bc1970500 -Author: Gail Badner -Date: Mon Feb 7 13:56:41 2011 -0800 - - HHH-5704 HHH-5893 : Added tests for empty LOBs - -commit 224121aee15210b9b2d501b0f1f52b12ef13c3be -Author: Emmanuel Bernard -Date: Fri Jan 28 12:35:03 2011 -0600 - - HHH-5879 Expose getPropertyUniqueness from AbstractEntityPersister - -commit 1ae42c886ed1cad12497086385cceea99c43fa49 -Author: Emmanuel Bernard -Date: Fri Jan 28 12:33:29 2011 -0600 - - HHH-5879 Open Core ComponentType metamodel - - Add a getter to isKey - -commit ffd659ff772278a65cf33f9d720a79aae98c313f -Author: Emmanuel Bernard -Date: Fri Jan 28 12:32:02 2011 -0600 - - HHH-5879 Improve AbstractEntityPersister to allow better subclassing in the loader area - - Make use of a getLoader() getter which is protected - -commit efabd6fa49fce0b64e3651b923262ec0ca77959b -Author: Emmanuel Bernard -Date: Fri Jan 28 12:25:27 2011 -0600 - - HHH-5879 Make property protected for use by the OGM persister - -commit 83196824d711a25b5978d60df291f7d4c2f28e00 -Author: Emmanuel Bernard -Date: Fri Jan 28 12:24:15 2011 -0600 - - HHH-5879 expose getPropertyColumnUpdateable getPropertyColumnInsertable - -commit d8772c04a8ca03dc9861f89c542c3d26cc7fe1bc -Author: adamw -Date: Mon Jan 31 12:26:26 2011 +0100 - - HHH-5883: Fixing - @Lob annotated field throws MappingException when the field type is serializable - -commit 595f919e4cfed2b28a1264f7d6f5411f877c717b -Author: Hardy Ferentschik -Date: Fri Jan 28 17:51:52 2011 -0600 - - HHH-5880 Added username and password for authentication of deploys into remote repos - -commit 9f992cd6d05a1eab960f73e876e126bef0ef829c -Author: Sanne Grinovero -Date: Fri Jan 28 16:36:19 2011 -0600 - - HHH-5880 needs to use classifier "tests" not "test" - -commit 79e9a77d4e17303b3b993844773e222f8691a608 -Author: Hardy Ferentschik -Date: Fri Jan 28 15:49:22 2011 -0600 - - HHH-5880 Changed gradle build for for to push testing jar - -commit c26763c2e9bdedaa9773c7df1446dbc9efa92298 -Author: JPAV -Date: Tue Jan 25 14:54:39 2011 -0600 - - Added used of @Cause to log messages - -commit 5dfcdae14dd4a63d6673321b879d6dfa2096ccae -Author: Galder Zamarreño -Date: Mon Jan 24 19:53:35 2011 +0100 - - HHH-5859 - Upgraded to 4.2.0.CR1 - - Apart from upgrading Infinispan, test transaction manager code has been - changed so that read only transactions are not committed twice. - -commit f26e8cdd2c925fc208902929a5130d87fa328f43 -Author: Gail Badner -Date: Fri Jan 21 14:04:22 2011 -0800 - - HHH-4878 : document materialized blob/clob, text/image and minor corrections - -commit 0013a90d20e36b369934e4076394ae735df656ec -Author: Gail Badner -Date: Fri Jan 21 13:05:54 2011 -0800 - - HHH-5126 : "in" expression and column-valued-input-parameter - -commit 140059528bfe187bc30bd8194183e2530ab3a70d -Author: Steve Ebersole -Date: Fri Jan 21 14:05:16 2011 -0600 - - HHH-5821 - JPA EntityType's (or ManagedType's) getSingularAttributes() returns the version attribute with isVersion set to false. - -commit ccd23dbd3d967a93939a950412a30a57502d992b -Author: Steve Ebersole -Date: Fri Jan 21 12:39:25 2011 -0600 - - HHH-5823 - Poor multithread performance in UpdateTimestampsCache class - -commit 4d6a68c2d07c5984afbbeb5bbcd89ffa84097a20 -Author: Steve Ebersole -Date: Fri Jan 21 12:10:18 2011 -0600 - - HHH-5824 - Poor multithread performance in SessionFactoryImpl.getQueryCache method - -commit 0c48de64742f927bd9f0952eb43ad885edd91447 -Author: Steve Ebersole -Date: Fri Jan 21 11:07:59 2011 -0600 - - HHH-5550 - Hibernate.createBlob() fails when used in current_session_context_class=thread mode - -commit e79eae88bc183c9f41767cdd4dee0fd43f31eec7 -Author: Steve Ebersole -Date: Thu Jan 20 15:12:52 2011 -0600 - - HHH-5853: Problem loading cachable collections defined with a property-ref key with a versioned owner - -commit cb7cd71fdf520feb1d6d07e84449dcff88e98608 -Author: Hardy Ferentschik -Date: Wed Jan 19 10:05:37 2011 +0100 - - HHH-5843 Adding a log.isTraceEnabled call before the actual log call - - Not really related to the HQL parsing, but it is also a small logging performance change - -commit 3bf6625ab1665f0231c58920a4e0084edda1bbf3 -Merge: 126592a55d adbe3920f1 -Author: Hardy Ferentschik -Date: Wed Jan 19 09:27:21 2011 +0100 - - Merge branch 'HHH-5843' of git://github.com/Sanne/hibernate-core into Sanne-HHH-5843 - -commit af241781450e1e110ecad6ccdf0939d183bb085c -Author: JPAV -Date: Mon Jan 17 23:50:42 2011 -0600 - - Give each project a single logger - -commit 3712e1ad7efccd2ba0c24b3d7d3b23f84d948b9d -Author: JPAV -Date: Mon Jan 17 23:49:48 2011 -0600 - - Give each project a single logger - -commit 9b7eb48b559b417e1b2f17a5cadff8ee2f7ce03b -Author: JPAV -Date: Tue Dec 21 15:55:43 2010 -0600 - - Replaced references to slf4j with references to new jboss.logging.Logger implementations and i18n'd where it was clear how to do so. - -commit a9b1425f3f07021dae556e710b2bdfdc3812661b -Author: JPAV -Date: Tue Dec 21 15:51:02 2010 -0600 - - Replaced references to slf4j with references to new jboss.logging.Logger implementations and i18n'd where it was clear how to do so. - -commit 126592a55d61195d55c73f36f8427badb79a713f -Author: Gail Badner -Date: Mon Jan 17 13:50:39 2011 -0800 - - HHH-5695 : Test case for derived ID with bidirectional one-to-one - -commit a6d19f257bb622137b878948dd8d149d9b265203 -Merge: 15cc1e7493 60857d3966 -Author: Gail Badner -Date: Mon Jan 17 12:26:43 2011 -0800 - - Merge branch 'master' of github.com:hibernate/hibernate-core - -commit 15cc1e7493d5b850eba91e16ac64b9d8dac2b265 -Author: Gail Badner -Date: Mon Jan 17 12:25:16 2011 -0800 - - HHH-5359 : Derived entity use case fails when the association is bidirectional - -commit adbe3920f1973a886983a6deee9d865ce57d5c00 -Author: Sanne Grinovero -Date: Fri Jan 14 16:31:01 2011 +0000 - - HHH-5843 - Avoid useless branches during HQL parsing when trace logging is disabled - -commit 60857d39662dedaf9654557549229bf00ec361d9 -Author: Emmanuel Bernard -Date: Fri Jan 14 16:03:44 2011 +0100 - - HHH-5280 Fix excessive caching of the owner - - An entity can have more than one owner - (eg 2 unidirectional collections pointing to same object) - Make the cache filter by type - -commit 0600527a6b250cbabb20dc1445014fe636591d77 -Author: Emmanuel Bernard -Date: Fri Jan 14 15:52:43 2011 +0100 - - HHH-5280 Add test failing on multiple owners - -commit af81f187b4debf78dc6f9bd07f9ea65ea76b4404 -Author: Sanne Grinovero -Date: Thu Jan 13 18:34:48 2011 +0000 - - HHH-5838 - Proxool connection pool should only close pools it opened - -commit 90bb8634df215f965462a35f3072ed6eec269fc0 -Author: Sanne Grinovero -Date: Thu Jan 13 11:49:42 2011 +0000 - - HHH-5838 - Proxool connection pool should only close pools it opened - -commit 3fab254606a0a0e0c24a7dab50e66f24ab2c5cf0 -Author: Sanne Grinovero -Date: Thu Jan 13 11:46:15 2011 +0000 - - HHH-5839 - non-utf8 characters in AuditReaderImpl - -commit 04da27507ed317395239494be92ec65b9477b842 -Author: Galder Zamarreño -Date: Wed Jan 12 15:09:08 2011 +0100 - - HHH-5793 - All put/remove calls should skip cache load and remote get - -commit e024adebe77f8512b83bd53c8ebcbb0bb18fb38c -Author: Gail Badner -Date: Tue Jan 11 18:18:17 2011 -0800 - - HHH-5817 : Passing char[] or byte[] to equal function of CriteriaBuilder throws ClassCastException (Vyacheslav Dimitrov) - -commit 1c158b0bb7de87dd8d5f225e12906832e6f39d26 -Author: Gail Badner -Date: Tue Jan 11 17:21:08 2011 -0800 - - HHH-5826 : SerializationHelper.resolveClass() never tries loader3 - -commit ca057ccb4ccc867ccff48e729ea9a4523dd9b03d -Author: Gail Badner -Date: Fri Jan 7 16:35:26 2011 -0800 - - HHH-5717 : LockOptions not set correctly for queries - -commit 0a9e201a014c3be3e7ff421c77e155bc650fe17d -Author: Galder Zamarreño -Date: Fri Jan 7 15:44:29 2011 +0100 - - HHH-5793 - Apply skip cache load optimization to timestamp updates - -commit 35bf5300c3c8d14c253c5e9ca62a7ce1fd91b8c1 -Merge: 20f8a8e2d3 a45ada43e2 -Author: Gail Badner -Date: Tue Jan 4 12:59:24 2011 -0800 - - Merge branch 'HHH-5811-ByteArrayLob' - -commit a45ada43e220f93094233c2677eeb1aba3c05477 -Author: Gail Badner -Date: Tue Jan 4 12:58:09 2011 -0800 - - HHH-5811 : flush causes update on unchanged Byte[] field - -commit 20f8a8e2d3b5f66350b572191527796bc61605ff -Author: Emmanuel Bernard -Date: Tue Jan 4 15:45:02 2011 +0100 - - HHH-5816 Expose list of modified properties in PostUpdateEvent - -commit 0541cbf96615bb8c59231b08c6c9062bf7757ee1 -Author: Hernán Chanfreau -Date: Mon Jan 3 20:32:05 2011 -0200 - - Adding 'serviceRegistryHolder' instance variable due to changes commited on master for Configuration class - -commit 83b1f22ea92a7733baed3b5cbea422e40df4fed0 -Author: Hernan -Date: Fri Dec 17 20:24:48 2010 -0200 - - Removing isNotAudited() method. - -commit 1a081d29cb96e3d43bdc3ffc24463260505670cb -Author: Hernan -Date: Fri Dec 17 20:19:45 2010 -0200 - - Replacion deprecated AnnotationConfiguration with Configuration. - -commit fe31aeda16d070b06a3144e5de72ff2be8e8840c -Author: Hernan -Date: Fri Dec 17 20:18:48 2010 -0200 - - - Creating abstract test with one session-per-test - - - Fixing typo error. - -commit 102faba8f483e3377f652bef9e8fdaaa9921a99d -Author: Hernan -Date: Thu Dec 9 00:10:21 2010 -0200 - - Removing isEntityClassNotAudited() and isEntityNameNotAudited() method for later discussion. - -commit 323d9dd16e099b49fb9c2eac10e32635e41295a7 -Author: Hernan -Date: Thu Dec 9 00:08:22 2010 -0200 - - Removing isEntityClassNotAudited() and isEntityNameNotAudited() method for later discussion. - -commit 89393c5e9eb3064b031702834d7cee5ec8ba2a41 -Author: Hernan -Date: Sat Nov 27 12:55:56 2010 -0200 - - HHH-5588 - - Removing EnversExeption and using HibernateException instead. - -commit c981bef5c191374cea7f4dc2228b99887bb70c67 -Author: Hernan -Date: Mon Nov 15 00:20:01 2010 -0200 - - HHH-5588: Improve support for entityNames in envers - - Extending test cases for testing resolution for entityNames for entities retrieved previously by envers - -commit 80ef651e4a1c3e20afdaa5f667ecfef768c295ba -Author: Hernan -Date: Mon Nov 15 00:17:59 2010 -0200 - - Let the subclasses redefine the configuration file name overriding getHibernateConfigurationFileName() method. - -commit 188ec620e863510a28e16ec08886f132e064f29f -Author: Hernan -Date: Mon Nov 15 00:16:47 2010 -0200 - - Creating a generic envers exception - -commit 46660fd04594d06a7602f453e9d5f1de1a09aba9 -Author: Hernan -Date: Mon Nov 15 00:16:04 2010 -0200 - - Resolving HHH-5588: Improve support for entityNames in envers. - - When instantiating an historic entity, envers put its entityName on the cache for future uses. - -commit 7ec8c113271bde141a10a1ff3b09d841fd31d7b2 -Author: Hernan -Date: Mon Nov 15 00:14:19 2010 -0200 - - Resolving HHH-5588: Improve support for entityNames in envers. - - Adding isNotAudited for determine if an entity is marked as @Audited(NOT_AUDITED) - -commit eaeb4f8343254c9e81be31fe1cef5a068de6ae72 -Author: Hernan -Date: Mon Nov 15 00:13:05 2010 -0200 - - Resolving HHH-5588: Improve support for entityNames in envers. - - Adding entityNameCache for resolving entityNames in envers. - -commit 328c098ab9bf56963dec6fc0bff98bba2dcb25a4 -Author: Hernan -Date: Mon Nov 15 00:11:49 2010 -0200 - - Resolving HHH-5588: Improve support for entityNames in envers. - - Adding methods for knowing if an entityName is marked to be resolved by core (@Audited(targetAuditMode='NOT_AUDITED') - isEntityNameNotAudited() - - Adding method to resolve the entityName for an entity retrieved previously by envers. - getEntityName() - -commit dc9172774236eafb95bfce30222f12f75ca8066f -Author: Hardy Ferentschik -Date: Mon Jan 3 16:58:46 2011 +0100 - - HHH-5800 This test now also derives from HibernateTestCase. This way the test is aligned with the tests added for this issue. - -commit 95c23b6f507f95480f8f0d2b403617cba922c3f5 -Author: Hardy Ferentschik -Date: Mon Jan 3 16:55:30 2011 +0100 - - HHH-5800 Applying Hibernate code formatting style - -commit bde29a52d274be55687322094082bca0ae907076 -Author: davidmc24 -Date: Sat Jan 1 13:59:21 2011 -0500 - - HHH-5800 Fix override handling for associations as per chapter 12 of the JPA 2.0 specification. - - Some subelements should merge with Java annotations in some contexts (such as directly within an entity) but not in others (such as in an association mapping). The methods to handle these elements were enhanced to be aware of these two different modes through the use of a boolean flag. - -commit 99c4ecef99246836dc424dfecb0fbaf102142ead -Author: davidmc24 -Date: Fri Dec 31 17:39:30 2010 -0500 - - HHH-5800 Add tests for element-collection orm XML support - -commit af1e078f83d121c3f57abe21c9d34e99fd8a8092 -Author: davidmc24 -Date: Thu Dec 30 22:49:34 2010 -0500 - - HHH-5800 Add tests for many-to-many orm XML support - -commit 33d9cbaa766829f236a5d06a49759f133f633b04 -Author: davidmc24 -Date: Thu Dec 30 22:10:27 2010 -0500 - - HHH-5800 Add tests for one-to-one orm XML support - -commit e0b06e8a57cd7abbf1eb8f4bd0867195bc44b7ab -Author: davidmc24 -Date: Wed Dec 22 00:45:34 2010 -0500 - - Attempt to match Hibernate code conventions - -commit 6de52c2db3d6357cfe02ebf8f506054554fd00f0 -Author: davidmc24 -Date: Tue Dec 21 21:04:37 2010 -0500 - - HHH-5800 Add tests for one-to-many orm XML support - -commit 9bdd76b0e70fe9d7d86dd3182ebeb1a260160bf1 -Author: davidmc24 -Date: Tue Dec 21 20:51:10 2010 -0500 - - HHH-5800 Add tests and fixes for many-to-one orm XML support - -commit c06cac6b36e3db825e8ceb7294ef9ae4785f82b6 -Author: Erik-Berndt Scheper -Date: Thu Dec 23 11:49:30 2010 +0100 - - HHH-5807 - Weird characters in license headers lead to compilation errors with UTF-8 character set - -commit f97d02c61b6f25b97db4a78c4fe5f5c0e828f917 -Author: Strong Liu -Date: Thu Dec 23 17:54:37 2010 +0800 - - HHH-5806 mapping static inner class causes hsqldb tests fails - -commit ed48037692a1205f85aec08b4bd80d9199be55fb -Merge: 998c28f6e0 6ac46d506b -Author: Strong Liu -Date: Thu Dec 23 17:52:50 2010 +0800 - - Merge branch 'master' of github.com:hibernate/hibernate-core - -commit 6ac46d506b04d589c84d179e61ad5a12811db550 -Author: Erik-Berndt Scheper -Date: Wed Dec 22 11:47:09 2010 +0100 - - HHH-5750 - Added license header - -commit f125f06c4575294ed58960f6e09c524d29114440 -Author: Erik-Berndt Scheper -Date: Wed Dec 22 11:37:07 2010 +0100 - - HHH-5750 - Proxied objects lose the temporary session used to initialize them - -commit 1dc7317694c2725f49725de64fdb6b79e3c1a689 -Author: Greg Luck -Date: Tue Dec 21 15:24:50 2010 +1000 - - Create new Ehcache CacheRegionFactory implementation. This delegates to underlying classes in Ehcache. - -commit bf6bd51c7e8ca4bd354afa4579d21c5383a2846a -Author: Gail Badner -Date: Mon Dec 20 17:27:10 2010 -0800 - - HHH-5325 : Improvements to test suite (fixes HQLDB 2.0 failures) - -commit 0ffe3690ec9f12c387293ed57521df70e5e1bb88 -Merge: 262f25311d 863864fcce -Author: Gail Badner -Date: Mon Dec 20 16:43:41 2010 -0800 - - Merge branch 'master' of github.com:hibernate/hibernate-core - -commit 863864fcce3bcdba5e9783adf9d23863f50ce202 -Author: Galder Zamarreño -Date: Mon Dec 20 11:00:45 2010 +0100 - - HHH-5793 - Query and timestamp caches to use cluster cache loader - - Make evict put calls skip the cache loader since previous value is not - needed. - -commit 262f25311d3b5a3953512d2bf4f88215defee515 -Author: Gail Badner -Date: Fri Dec 17 16:10:33 2010 -0800 - - HHH-5791 : NPE merging transient entity with non-nullable property set to null with delayed insert if check_nullability set to false - -commit 4fa467a8a4142550596be495e0f935e5b0f2d65b -Merge: 66f8e90e7c 2b7573febb -Author: Gail Badner -Date: Fri Dec 17 10:42:17 2010 -0800 - - Merge branch 'master' of github.com:hibernate/hibernate-core - -commit 2b7573febb15486a917cf93cfba67de83d436c7a -Author: Hardy Ferentschik -Date: Fri Dec 17 15:36:10 2010 +0100 - - HHH-5736 Removing unnecessary instance check. Applying Hibernate formatting. - -commit ed89cef855d1bb345047a88f90b0c93c9a9b1402 -Author: Hardy Ferentschik -Date: Fri Dec 17 15:35:12 2010 +0100 - - HHH-5736 Removing unnecessary instance check. Applying Hibernate formatting. - -commit 18ed85a0cd50117a20cc01fd318357f517a23f30 -Author: Hardy Ferentschik -Date: Fri Dec 17 15:33:39 2010 +0100 - - HHH-5736 Adding actual asserts to the tests and adding some new tests - -commit a4fdb870f2bc56ac11ec5f7e13d1e2ce8dbd2046 -Author: Vyacheslav Dimitrov -Date: Mon Dec 6 22:50:29 2010 +0300 - - HHH-5736 Fixed tests - -commit 0c05f66f8d4f156e432d10e035e8857e63eeb122 -Author: Vyacheslav Dimitrov -Date: Mon Dec 6 18:13:36 2010 +0300 - - HHH-5736 Fixed problem with "not" function of CriteriaBuilder - -commit 66f8e90e7c3d6a47f2fee0ee7d48e92e2db28fc6 -Merge: e5da3bf149 1f0c74cb5e -Author: Gail Badner -Date: Thu Dec 16 23:59:10 2010 -0800 - - Merge branch 'HHH-5778-batch' - -commit 1f0c74cb5eaef450aa206876bd328eabbf6170a1 -Author: Gail Badner -Date: Thu Dec 16 17:36:18 2010 -0800 - - HHH-5778 : Wire in new batch code - -commit e5da3bf14953c55ba12691d6c30dd292e8c4daac -Author: Hardy Ferentschik -Date: Thu Dec 16 15:26:50 2010 +0100 - - HHH-5794 Adding/Updating license headers - -commit 66f7018b9debcb6b43fe37263fd44a1d1b435be5 -Author: David M. Carr -Date: Wed Dec 15 12:50:20 2010 -0500 - - Remove extraneous comments from test entity. - -commit 48f5b51ca73892908cb8b210fc46883f2acee6d7 -Author: David M. Carr -Date: Wed Dec 15 12:45:58 2010 -0500 - - More changeset cleanup. - -commit 5cbffa051db3ae52b5e06a6bc8515c503d57375e -Author: David M. Carr -Date: Wed Dec 15 11:55:52 2010 -0500 - - Tidy up the changeset a little. - -commit 13f25fe72fe42b54fec478bc45ed3fe3fdce4fcc -Author: David M. Carr -Date: Wed Dec 15 09:53:54 2010 -0500 - - Enhance the test to cover additional mapping elements, and implement support for them. - -commit 363aa25c55f73834ee03d98c5b125dce6b2954b2 -Author: David M. Carr -Date: Tue Dec 14 16:00:39 2010 -0500 - - Add support for map-key-class in orm.xml - -commit 7d884f4bb693a5353bce47e649a696e4e02d92d4 -Author: dcarr -Date: Tue Dec 14 15:19:47 2010 -0500 - - Enhance Ejb3XmlTest to try to persist an entity mapped using in the orm.xml - -commit 998c28f6e0392793bcaf892bf1450f15593bf5a2 -Author: Strong Liu -Date: Thu Dec 16 22:18:26 2010 +0800 - - upgrade the wrappered gradle to 0.9-rc-3 - -commit 7262276fa911285b8b3094c57af13322ee9d18dc -Author: Gail Badner -Date: Tue Dec 14 15:09:05 2010 -0800 - - HHH-5778 : Wire in new batch code - -commit b3aa9e0c283842aa206c1fbea51f212c9abe64c4 -Author: Galder Zamarreño -Date: Wed Dec 15 17:37:34 2010 +0100 - - HHH-5793 - Query and timestamp caches to use cluster cache loader - - * Query and timestamp caches now use cluster cache loader instead of - state transfer in order to remain asynchronous. - * To maintain previous semantics, after query or timestamp regions have - been completely evicted, a check has been added to avoid going remote if - the region was invalid. - -commit 4c7983151cc460acd41865a1e4fcededce5350a8 -Author: Strong Liu -Date: Tue Dec 14 04:53:15 2010 +0800 - - HHH-5727 Collection member declaration not handling optional AS in HQL. - -commit 55e27c38259ee735b00cf235867c529e48f71973 -Author: Emmanuel Bernard -Date: Fri Dec 10 14:19:20 2010 +0100 - - Fix minor typos in the Dialect JavaDocs - -commit 64c2d4846fffbfd033cfd2b21c1f41414f1ed680 -Merge: e7daff9d93 4e102c68c1 -Author: Gail Badner -Date: Thu Dec 9 20:35:48 2010 -0800 - - Merge branch 'master' of github.com:hibernate/hibernate-core - -commit e7daff9d93be1fe934300b7015b7b114262046cd -Author: Gail Badner -Date: Thu Dec 9 20:23:08 2010 -0800 - - HHH-5782 HHH-5783 : Remove "throws SQLException" from ConnectionManager methods; ConnectionManager should set timeout - -commit 4e102c68c1d7b377b06936d0221f0f331f63a515 -Author: adamw -Date: Wed Dec 8 19:56:04 2010 +0100 - - Refactoring the norevision tests: checking explicitly the revision numbers, introducing an abstract common class - -commit 76b59a702c9740db07f917b006b2a69747992200 -Author: Svyatoslav Reyentenko -Date: Mon Dec 6 23:44:14 2010 +0300 - - Moved hbm.xml -> annotations. - -commit c2ba8360c8d298d42233c3ee1db77b3d3a7517a4 -Author: Svyatoslav Reyentenko -Date: Thu Dec 2 23:58:58 2010 +0300 - - Tests are slightly changed to do more work - -commit e831e29435845c4511e10acb9b9bff22f98604d7 -Author: Svyatoslav Reyentenko -Date: Thu Dec 2 03:34:10 2010 +0300 - - Ignore collection changes if no revision on collection change is set - -commit fd54b2df565e362d3e8a97920e2dfb5ceab0176f -Author: Svyatoslav Reyentenko -Date: Thu Dec 2 03:07:03 2010 +0300 - - Test for creating revision on collection change - -commit b006a6c3c5911fdb3ee767c4983e952d9439951c -Author: Gail Badner -Date: Wed Dec 8 17:23:44 2010 -0800 - - HHH-5765 : Refactor JDBCContext/ConnectionManager spi/impl and to use new proxies - -commit cc4055d50c59bb058bbb0f05f194785026f149b2 -Merge: f76555a993 12a0baeaa4 -Author: Strong Liu -Date: Fri Dec 3 22:39:38 2010 +0800 - - merge https://github.com/hibernate/hibernate-core/pull/20 - -commit 12a0baeaa4f5c89c6012fd517dc0aa90e661a36a -Author: Strong Liu -Date: Fri Dec 3 22:30:51 2010 +0800 - - update document for the new adding dialect and also updated some steal dialect info - -commit f76555a9931c01223e9b22ce085ea9c5f24a66d5 -Author: Galder Zamarreño -Date: Wed Dec 1 09:00:29 2010 +0100 - - HHH-5767 - Add running test information to Infinispan 2LC build - -commit 30524ae8734470268a5d6007396a985345f505e7 -Merge: 97fef96b98 fb8ec5e3f9 -Author: Gail Badner -Date: Thu Dec 2 11:22:48 2010 -0800 - - Merge branch 'master' of github.com:hibernate/hibernate-core - -commit 97fef96b98c6264d1985054b3f29524a3d2c9910 -Author: Gail Badner -Date: Thu Dec 2 11:16:10 2010 -0800 - - HHH-5765 : Integrate LogicalConnection into ConnectionManager - -commit fb8ec5e3f9b07c6faecd9ac214ffb603933ba53f -Author: Erik-Berndt Scheper -Date: Thu Dec 2 15:56:30 2010 +0100 - - HHH-5761 - Update source repository links in Envers documentation - -commit b37cd1a8d66d855428bcc6de01e70d13bbea5c32 -Author: Strong Liu -Date: Thu Dec 2 13:17:23 2010 +0800 - - HHH-5768 upgrade H2 version to 1.2.145 (was 1.2.140) - -commit da1750881adba648d6756f2da4054b634dd01389 -Author: Gail Badner -Date: Tue Nov 30 22:47:28 2010 -0800 - - HHH-5765 : changed ConnectionManager.Callback to extend ConnectionObserver - -commit fda684a5a61f3b1d701b05703a1a9ccff6824197 -Author: Gail Badner -Date: Tue Nov 30 20:31:53 2010 -0800 - - HHH-5765 : remove dialect and connection provider from Settings - -commit 3ca8216c7c982bbe5f8beccd10229ba6b3e78803 -Author: Gail Badner -Date: Tue Nov 30 18:50:34 2010 -0800 - - HHH-5765 : Wire in SQLExceptionHelper for converting SQLExceptions - -commit 91d444423bd5cc33e5589e721c25a86b3b50633d -Author: Gail Badner -Date: Tue Nov 30 14:31:30 2010 -0800 - - HHH-5765 : Wire in dialect factory and resolvers from service registry - -commit 88543c7a585dbafe6d2f5e2824a9754ec419655f -Author: Gail Badner -Date: Tue Nov 30 11:38:53 2010 -0800 - - HHH-5765 : Wire in connection provider from service registry - -commit 5aed6b19cbbd171f77c80dbfd8671cd47d6ab368 -Author: Strong Liu -Date: Mon Nov 29 18:11:44 2010 +0800 - - HHH-5726 update test case - -commit 915d6f9eeab7250aa8344c12c88c454b7d89dd93 -Author: Strong Liu -Date: Mon Nov 29 17:38:31 2010 +0800 - - update StandardDialectResolver to return correct dialect for ms sql server - -commit 01dd9a44e500c145f2f15938a61db86bc6596d54 -Merge: de1d2a6247 38cd2fe25c -Author: Strong Liu -Date: Mon Nov 29 16:57:03 2010 +0800 - - Merge branch 'mssql2005' of https://github.com/valotas/hibernate-core into valotas-mssql2005 - -commit de1d2a6247fa6d950e5e53021a0896c7820f6623 -Author: Erik-Berndt Scheper -Date: Wed Nov 24 13:58:54 2010 +0100 - - HHH-5371 - Document sql table partitioning for audit tables - -commit 38cd2fe25c0dfc58c47cc00f4494c8c14ab86755 -Author: Yoryos Valotasios -Date: Tue Nov 23 00:46:48 2010 +0200 - - SQLServer2005Dialect: Made some comments more specific - -commit 2ae06c94697785d4f3405dd864e4d74122051168 -Author: Yoryos Valotasios -Date: Tue Nov 23 00:44:02 2010 +0200 - - SQLServer2005Dialect: removed useless commented code - -commit f6a349bcb834fbabdcd11ccf29cabbaa886de9b3 -Author: Yoryos Valotasios -Date: Tue Nov 23 00:25:14 2010 +0200 - - SQLServer2005Dialect: Moved the small methods on top of the class - -commit 48239bbbcc2d1a070b4f9bbb7c33a98815e28604 -Author: Yoryos Valotasios -Date: Tue Nov 23 00:22:39 2010 +0200 - - Added some comments - -commit b47dc5aedab3267b296aee5b34ff28b4e0186d57 -Author: Yoryos Valotasios -Date: Tue Nov 23 00:19:22 2010 +0200 - - SQLServer2005Dialect: modifications in order to support variable limit - -commit 11a98623e58b000165ff7d42cf04599ffa8e992d -Author: Yoryos Valotasios -Date: Mon Nov 15 00:58:57 2010 +0200 - - Dialect: Improved exception messages by adding the dialect class name - -commit 71cef3831d49cbab8be646363de51ae140573edd -Author: Yoryos Valotasios -Date: Mon Nov 15 00:33:09 2010 +0200 - - SQLServer2005Dialect: Added @Override to the supportsVariableLimit method - -commit 571318e6e462c186533e65d6d43d55e9e8c530f8 -Author: Yoryos Valotasios -Date: Mon Nov 15 00:12:10 2010 +0200 - - Added comments. The dialect should also fix HHH-3936 - -commit ceba976e5740cfe7dfb0bfc3d31409d732efc210 -Author: Yoryos Valotasios -Date: Sun Nov 14 23:56:33 2010 +0200 - - SQLServer2008Dialect should extend SQLServer2005Dialect - -commit 2964b975ef05173949f2700a33c3297923832ccd -Author: Yoryos Valotasios -Date: Sun Nov 14 23:55:06 2010 +0200 - - HHH-3965: registered some more columntypes as varchar(max) and varbinary(max) - -commit c9833f3eaa04890652091f8709f10130866e0518 -Author: Yoryos Valotasios -Date: Sun Nov 14 23:51:15 2010 +0200 - - HHH-3965 fix, make use of varbinary(max) and varchar(max) - -commit 9e2902807c8bd3dd4bab8963ad26dc18f9a0994d -Author: Yoryos Valotasios -Date: Sun Nov 14 23:31:20 2010 +0200 - - Make use of generics for the Dialect and TypeNames class - -commit 5d8c5d371bd13b4af1ef973d54a269d6a2d7147c -Merge: ce56969173 fb26f4c1a0 -Author: Steve Ebersole -Date: Thu Nov 11 11:41:38 2010 -0600 - - Merge branch 'HHH-5709' of https://github.com/tblachowicz/hibernate-core into tblachowicz-HHH-5709 - -commit ce56969173e33d857fc812d895c90dc25dd6ab78 -Author: Hardy Ferentschik -Date: Thu Nov 11 17:30:34 2010 +0100 - - HV-361 Taking into account that applyDDL can be called multiple times. Adding comment that @Range annotation is automatically taken care of, because it is a composing constraint of @Min and @Max - -commit ff47006731fc56f49db88b4fd2564900cc38b116 -Author: Hardy Ferentschik -Date: Thu Nov 11 17:29:25 2010 +0100 - - HV-361 Adding test for @Range constraint - -commit 0cb3e66eefaefb5ce9228d03fd8c63cffd47638a -Author: Hardy Ferentschik -Date: Thu Nov 11 17:09:44 2010 +0100 - - HV-361 Adding test entity for @Range constraint - -commit c07ee1a4c0b34d69149e02df09d2e4273091582c -Author: Hardy Ferentschik -Date: Wed Nov 10 19:38:47 2010 +0100 - - HV-361 Making sure that multiple column checks are properly added - -commit c22a6be53317e2d157514cac1265d9eef39b29c7 -Author: Hardy Ferentschik -Date: Wed Nov 10 18:00:40 2010 +0100 - - HV-361 Changing existing tests to use @RequiresDialect(DialectChecks.SupportColumnCheck) - -commit d24a06ee8d4bec8cd33a037af56c3ad0a3d6c6a8 -Author: Hardy Ferentschik -Date: Wed Nov 10 17:41:20 2010 +0100 - - HV-361 Formatting and adding/updating copyrights - -commit fd0a463f0e6cc40a6a49443d5defc849bd2980ef -Author: nandina -Date: Wed Nov 10 17:11:22 2010 +0530 - - Added comments for changes of HHH-5686 - -commit 696fcccd0f51f01a77cf590a27cd14a5317de82c -Author: nandina -Date: Thu Nov 4 17:20:39 2010 +0530 - - Fix for HHH-5686 Changed the generation of HQL query for one to many relations from "select new list(r) from Relation r" to "select r from Relation r". - -commit 97f8ceac9bf21499fa7e158ef5b5fa979ca6d2ac -Author: Strong Liu -Date: Thu Nov 11 19:09:50 2010 +0800 - - HHH-5727 Collection member declaration not handling optional AS in HQL. - -commit ae271db9baf3b44d2921d271418f98be6549f56b -Author: Yoryos Valotasios -Date: Wed Nov 10 22:06:42 2010 +0200 - - renamed the old SQLServerDialect unit tests to SQLServer2005DialectTestCase - -commit e3ad6c881e37f2e65242425e8149ecc21bdae66b -Author: Yoryos Valotasios -Date: Wed Nov 10 22:05:23 2010 +0200 - - SQLServer2005Dialect: supports sql server 2005 but not 2000 - -commit 2ec009440e5a9b8d940e6b242851765facf9e1d6 -Author: Yoryos Valotasios -Date: Wed Nov 10 22:03:47 2010 +0200 - - SQLServerDialect fallback to the pre HHH-2655 one - -commit 6e565102b5b4487ac43f528406017a39ec37b991 -Author: Strong Liu -Date: Wed Nov 10 22:58:30 2010 +0800 - - HHH-5715 revert the change made in hibernate.properties, default is H2 - -commit 42261a61dfba0204487a0261084aa0d7634ab5ae -Author: Emmanuel Bernard -Date: Wed Nov 10 12:23:38 2010 +0100 - - HHH-5724 display the constraint failures on Bean Validation exception - -commit fb26f4c1a0907a0568fc1ba7b1fdc486e2ae2ea9 -Author: Tomasz Blachowicz -Date: Tue Nov 9 09:53:02 2010 +0000 - - HHH-5709: New property of PersistentClass finally renamed to jpaEntityName - -commit 4d31c6b88e2c1adcaff77a07155288d59544d303 -Merge: 1adfc0af43 69ed7a9b88 -Author: Strong Liu -Date: Sun Nov 7 20:21:57 2010 +0800 - - Merge branch 'HHH-5715' of https://github.com/valotas/hibernate-core into valotas-HHH-5715 - -commit 1adfc0af43f5ae4a7af4c79b138d22bbeefa40f0 -Author: Emmanuel Bernard -Date: Sat Nov 6 18:44:44 2010 +0100 - - HHH-5705 Fix typo in query - -commit 5bc23dadc282ed8220223711175d46c7970ae34a -Author: Emmanuel Bernard -Date: Sat Nov 6 18:44:36 2010 +0100 - - HHH-5705 Fix typo - -commit 0a5e29498a4667e5147e0342cdb867b401e8ee1e -Author: Emmanuel Bernard -Date: Sat Nov 6 18:18:56 2010 +0100 - - HHH-5701 Add .metadata/* to .gitignore - -commit 69ed7a9b8858f274c5e76d45e05d91072cf8dcf8 -Author: Yoryos Valotasios -Date: Sat Nov 6 15:39:44 2010 +0200 - - Make use of better method names - -commit d390f855444b227f55d8e899d16e8583bbcace4f -Author: Yoryos Valotasios -Date: Sat Nov 6 15:34:35 2010 +0200 - - SQLServerDialect: Added comments and refactored some varibles - -commit b9f84044e635969527697ad7da50a05017877fa2 -Author: Yoryos Valotasios -Date: Sat Nov 6 15:33:45 2010 +0200 - - removed useless wrong assert statement - -commit 74c9ec6bda3531f36f25e09866dff489d75fdbaa -Author: Yoryos Valotasios -Date: Thu Nov 4 23:38:17 2010 +0200 - - Modified the SQLServerDialect in order to replace the distinct keyword with a groub by clause - -commit 55c822c56e30b380c70eece2dc5214a75854a7b1 -Author: Yoryos Valotasios -Date: Fri Nov 5 11:23:08 2010 +0200 - - HHH-5715 test case - -commit c0352429db5b02f8177d881b2b8074110706d579 -Author: Hardy Ferentschik -Date: Thu Nov 4 10:37:10 2010 +0100 - - HHH-5714 Upgraded metamodelgen dependency - - The new version allows now also to use the -s option for generating the sources into a seprate directory. - -commit f29fab99a6156f482537ebbc37deada7cbdf9676 -Author: Tomasz Blachowicz -Date: Wed Nov 3 14:10:58 2010 +0000 - - HHH-5709: New property added to PersistentClass to hold the name of the entity compliant with JSR-317 spec. Used by JPA2 metamodel. - -commit b48c5b601c03d4307b3ffe137259e398c0e8fbcb -Author: Tomasz Blachowicz -Date: Tue Nov 2 22:06:09 2010 +0000 - - The name of the entity returned by the JPA2 meta-model EntityType.getName() is now PersistentClass.nodeName. - This guarantees that EntityType.getName() == @Entity.name for classes annotated with JPA2. - -commit ba040a3378bd3a6606219ad529111fc936c8896f -Author: Strong Liu -Date: Tue Nov 2 20:47:37 2010 +0800 - - HHH-5700 incorrect test logic of org.hibernate.test.readonly.ReadOnlyCriteriaQueryTest - -commit 528b652d07ee7560b67d0e22e27339c6cc9796f2 -Author: Strong Liu -Date: Tue Nov 2 20:39:03 2010 +0800 - - HHH-2655 ROW_NUMBER for Paging - -commit 61060d13a94b7b784f77f6c6af8623a6e113d510 -Author: Steve Ebersole -Date: Mon Nov 1 13:57:29 2010 -0500 - - HHH-5706 - Incorrect accounting for 1-based LOB offsets - -commit fad1801cbee962896a6bda52ced0fca418e5105a -Author: Steve Ebersole -Date: Mon Nov 1 13:44:41 2010 -0500 - - HHH-5707 - Gradle 0.9-rc-2 - -commit 2a7b091da94feb55827baadb8ccf4fe022e82ad6 -Author: Hardy Ferentschik -Date: Mon Nov 1 17:50:40 2010 +0100 - - HHH-5693 Revert back to a single compile, but without -s option - - When using the two compile steps the package-info.class are getting corrupted. For this reason I am switching back to a single compile, but without the -s option to avoid the problem on Mac. As a result the meta model classes are generated in target/classes/test. On the other hand the build script is simpler, because it relies on more defaults. - -commit 7b24b764f0a81a4694e4e27a4f34bde715c5fab9 -Author: Hardy Ferentschik -Date: Mon Nov 1 17:47:03 2010 +0100 - - HHH-5693 Re-enable failing tests after fixing the gradle build - -commit 722f96a9c566498f4b26b8dad32db6198249937a -Author: Strong Liu -Date: Mon Nov 1 15:18:26 2010 +0800 - - remote the out-of-date pom.xml - -commit 54da3d52825a0c96009908a5debcdb40b8da3c04 -Merge: a3a732b494 c6a6e5cea1 -Author: Strong Liu -Date: Mon Nov 1 12:21:56 2010 +0800 - - Merge branch 'master' of github.com:hibernate/hibernate-core - -commit a3a732b494d93445ae9c7f683b9e6b4960d38e42 -Author: Strong Liu -Date: Mon Nov 1 12:20:03 2010 +0800 - - HHH-2655: make use of the ROW_NUMBER function - -commit 9b32e9462aa59ac3f3ecf921e97515a45a8e08d4 -Author: Yoryos Valotasios -Date: Sat Oct 30 00:00:48 2010 +0300 - - HHH-2655: bug fix: row_number() function is not zero and so we must increament the given limit and offset by one - -commit c6a6e5cea19da5da60c4e16323e8acbdf5a2ed21 -Author: adamw -Date: Thu Oct 21 15:59:03 2010 +0200 - - Fix for HHH-4646 and HHH-5177: removing unneeded addPropertiesFromClassRec method - -commit 65e14bb39bd6875a84b59b4e7feda69d62a1cbb0 -Author: Hernán Chanfreau -Date: Tue Oct 19 13:39:18 2010 -0300 - - Fix for HHH-4646 and HHH-5177 - - Adding tests cases: - - MappedSuperclass audited at class level with a NotAuditedSubclass and: - - Audited subclass at class level - - Audited subclass at method/field level - - MappedSuperclass audited at method/field level with a NotAuditedSubclass and: - - Audited subclass at class level - - Audited subclass at method/field level - -commit b919969497f0602a4a3b49e6b38de59eb13a3fed -Author: Hernán Chanfreau -Date: Tue Oct 19 13:34:37 2010 -0300 - - Fix for HHH-4646 and HHH-5177 - - - Read audited properties from subclasses first, then check recursively on superclasses. - - Chech on superclasses only if a class is audited - - Calculate if the "current" class of the recursion is audited at class level. - - Created ComponentAuditedPropertiesReader subclass for AuditedPropertiesReader to use for reading component audited properties inside classes - - Created a protected method in AuditedPropertiesReader, letting the subclass do their job. - - Ordered the code to be more understandable. - -commit 873fe754e3d37b2e1ab36ca4f3e4b1278a74e0ee -Author: Hernán Chanfreau -Date: Tue Oct 19 13:27:17 2010 -0300 - - Fix for HHH-4646 and HHH-5177 - - added methods isEmpty() and contains(key) - -commit 5b782a83ea1935fc7925fd1931f9cf98ab55e4c5 -Author: Hernán Chanfreau -Date: Tue Oct 19 13:08:29 2010 -0300 - - HHH-4646 and HHH-5177 - - Deleting obsolete tests - -commit 179837554f0e7814a7abafe43ce5967ae0510901 -Author: Hardy Ferentschik -Date: Fri Oct 29 14:59:16 2010 +0200 - - HHH-5693 Disable package-info related tests for now - -commit 895e1bf7161df5192062fbf09b88674896e3b0f7 -Author: Yoryos Valotasios -Date: Thu Oct 28 21:36:16 2010 +0300 - - HHH-2655: Modified the SQLServer2008Dialect to make use of the ROW_NUMBER function for queries with limit - -commit ca009f53405cdee355043563bd094eb7b1daae06 -Author: Strong Liu -Date: Thu Oct 28 16:22:05 2010 +0800 - - HHH-3873 DB2Dialect.getLimitString raise DB2 error message when called with limit=0 - -commit f0967db638a56fb251c9111b1782537b2c5bc3b4 -Author: Hardy Ferentschik -Date: Tue Oct 26 15:37:05 2010 +0200 - - HHH-5693 remove obsolete ant build file - -commit 2b2fb03aa45b32d44dc5dfa0f669bfaecd83f7d2 -Author: Hardy Ferentschik -Date: Tue Oct 26 14:47:51 2010 +0200 - - HHH-5693 Moved the bundlesTargetDir creation outside copy task - -commit c3dd29af3f1dfb951e56096df5a2055d1768ebae -Merge: e660463523 98f41bd6a8 -Author: Hardy Ferentschik -Date: Tue Oct 26 12:03:26 2010 +0200 - - Merge branch 'master' of github.com:hibernate/hibernate-core - -commit e660463523c22e22842fcd2b2aa2ebb07ff815ba -Author: Hardy Ferentschik -Date: Tue Oct 26 12:03:09 2010 +0200 - - HHH-5693 Change way the target directory is discovered - - Depending on wether the tests are run from the command line (Gradle) or IDE (Idea at least) the path will vary. For this reason one cannot just navigate back in the path. Instead I am assuming that there is a 'target' directory. - -commit 2d501faa8a0db535bdcb9bc5dedf108495a9db04 -Author: Hardy Ferentschik -Date: Tue Oct 26 11:12:31 2010 +0200 - - HHH-5693 Added comment about the need for two compilations - -commit 461354be09548014b8b9bc36a235e11890750281 -Author: Hardy Ferentschik -Date: Tue Oct 26 11:08:32 2010 +0200 - - HHH-5693 Update creation of URLClassloader for resource loading - - This is necessary, because of changes of the loction of the test classes. - It used to be target/test-classes, now it is target/classes/test - -commit 7eedcfea4e5bd183d727a2fae4766d8719fc12b9 -Author: Hardy Ferentschik -Date: Tue Oct 26 11:01:39 2010 +0200 - - HHH-5693 Update the filtered resource files to use @@ as token for filtering - - Tokens use now the @property@ syntax instead of ${property}, because underneath - ant filtering is used. Also remove hibernate.connection.isolation property which - is irrelevant for these tests. - Update gradle build script to use filtering when copying the bundle resources. - The script also adds a new compilation task for just compiling the metamodel. - Seems to be needed for Mac. - -commit dde0e644951a3b846bd2e929aeef7773b553e595 -Author: Hardy Ferentschik -Date: Tue Oct 26 10:55:02 2010 +0200 - - HHH-5693 Update version of metamodel generator to 1.1.0.CR1 - -commit 98f41bd6a851120c3798f38dfc2d0096735aa694 -Author: Strong Liu -Date: Tue Oct 26 15:12:14 2010 +0800 - - HHH-5168 DB2Dialect generates CROSS JOINs which aren't supported - -commit 1f012f8b3696e8d01fae850c88370f6ba0df660f -Merge: 1a8aca99db 514b3a28c0 -Author: Galder Zamarreño -Date: Tue Oct 19 09:33:55 2010 +0200 - - Merge branch 'hhh5599' - -commit 514b3a28c0028e55ad8df5b7363b56bb39ba4350 -Author: Galder Zamarreño -Date: Tue Oct 19 09:32:49 2010 +0200 - - [HHH-5599] (NPE occurs when using Infinispan as L2 Cache) Protect against null cleaned and use conditional removes on pending puts - -commit 1a8aca99db39330afabc2a5b4fd672e61aba0831 -Merge: 6b8d3f7f70 40cd2bcd02 -Author: Steve Ebersole -Date: Fri Oct 15 15:37:09 2010 -0500 - - Merge branch 'metamodel-import' - -commit 40cd2bcd02cf4f772f1ae5ddaa9af55b43596531 -Author: Steve Ebersole -Date: Fri Oct 15 15:35:30 2010 -0500 - - HHH-5662 - Import the initial work - -commit 6ea31ce77969df430e8184b6e8ab54f32c212a71 -Author: Steve Ebersole -Date: Fri Oct 15 13:56:33 2010 -0500 - - HHH-5662 - Import the initial work - -commit 6b8d3f7f70113a4d591d6e95d4e06d81b4efc2c1 -Merge: 2de00decc6 aec8d1a742 -Author: Galder Zamarreño -Date: Fri Oct 15 18:26:31 2010 +0200 - - Merge branch 'master' of github.com:hibernate/hibernate-core - -commit 2de00decc60a53b35d61fdf8c73999d380b13f0c -Author: Galder Zamarreño -Date: Fri Oct 15 18:24:44 2010 +0200 - - [HHH-5669] (Fix gradle build issues with Infinispan 2LC) Fix several issues to get build and unit tests working. Upgraded to Infinispan 4.2.0.ALPHA3 as well. - -commit 960326510f87ff8754572843b6a25ecefcd3a3c0 -Author: Steve Ebersole -Date: Thu Oct 14 16:37:14 2010 -0500 - - HHH-5662 - Import the initial work - -commit aec8d1a742410314b0e65ee63aaff8f8b2be9c9d -Author: Steve Ebersole -Date: Thu Oct 14 09:33:20 2010 -0500 - - HHH-5658 - Better .gitignore - -commit 2b11cfcddf91e85015b49a1e82e1cc403795704b -Author: Steve Ebersole -Date: Thu Oct 14 09:09:31 2010 -0500 - - HHH-5658 - Better .gitignore - -commit ae557f7f3b19ad6babd39866b3d572941e82dd0b -Merge: 8575247aaf 06e4f69b93 -Author: Steve Ebersole -Date: Wed Oct 13 19:16:23 2010 -0500 - - Merge branch 'HHH-5655' - -commit 06e4f69b93db55d9642298a4ccf248bd056262b6 -Author: Steve Ebersole -Date: Wed Oct 13 19:11:08 2010 -0500 - - HHH-5655 - In Gradle build, better account for non-standard local maven repo cache locations - -commit 8575247aafd8ad5c1fc60faac01963908cb11ab9 -Author: Gail Badner -Date: Wed Oct 13 16:04:04 2010 -0700 - - HHH-5638 : move o.h.engine.jdbc.proxy to o.h.engine.jdbc.internal.proxy - -commit 7f91fb73d56de125958a65883cb137eb53a35573 -Author: Gail Badner -Date: Wed Oct 13 15:04:05 2010 -0700 - - HHH-5656 : Import ServicesRegistry bootstrap code and service tests - -commit d4bf11d8ba495ce308e7914fc1c2620937b68612 -Author: Gail Badner -Date: Wed Oct 13 13:16:25 2010 -0700 - - HHH-5641 : Import JtaPlatform services - -commit 4bdf804a373cc8a2bdadae396ce065090ecf133c -Merge: 2600ac58fe 70f53da5da -Author: Gail Badner -Date: Wed Oct 13 13:02:32 2010 -0700 - - Merge branch 'master' of github.com:hibernate/hibernate-core - -commit 2600ac58fe00b6c5b62e0a2c1e7c745e71ec9e9d -Author: Gail Badner -Date: Wed Oct 13 12:57:34 2010 -0700 - - add *~ to .gitignore - -commit 70f53da5da607b00621bd2bd006b69c6568576fc -Author: mstanleyjones -Date: Wed Oct 13 14:27:28 2010 +1000 - - Edited Envers chapter - -commit e34e4641035eabbadbfeed15e7f11bd4a8481afe -Author: mstanleyjones -Date: Wed Oct 13 14:12:31 2010 +1000 - - Edited the JPA chapter. - -commit 5d6317e71534beaecac0cea2c858fcd765a04146 -Author: mstanleyjones -Date: Wed Oct 13 13:35:50 2010 +1000 - - Edit the Annotations tutorial. - -commit 8c809ab97639a12d72a50d965c634a3331b54880 -Author: Misty Stanley-Jones -Date: Wed Oct 13 11:36:27 2010 +1000 - - Edits to Getting Started Guide - -commit a23796c92dcef22bf9cc132eaf32fab173fc9976 -Author: Gail Badner -Date: Tue Oct 12 15:20:46 2010 -0700 - - HHH-5618 : Support legacy connection providers - -commit 0b9888e0e5c29974202859703815d5abef95d404 -Merge: 39749511e2 ee6bde2957 -Author: Steve Ebersole -Date: Tue Oct 12 15:49:09 2010 -0500 - - Merge branch 'master' of github.com:hibernate/hibernate-core - - Conflicts: - build.gradle - -commit 39749511e211a264a82199439a86678ba145ebe6 -Author: Steve Ebersole -Date: Tue Oct 12 15:41:27 2010 -0500 - - HHH-5647 - Develop release process using Gradle - -commit d2c88d55dfee8b105b1072b1a7afea82632e2869 -Author: Steve Ebersole -Date: Tue Oct 12 15:39:33 2010 -0500 - - HHH-5647 - Develop release process using Gradle - -commit ee6bde2957ead5e64488089851f838388e6b1e55 -Author: Gail Badner -Date: Tue Oct 12 13:20:06 2010 -0700 - - change h2 to 1.2.140; add DVCC=TRUE to TestingDatabaseInfo - -commit 4550cdf688bfd2ddd18f72ace494a6dff71f1e84 -Author: Strong Liu -Date: Tue Oct 12 16:30:02 2010 +0800 - - HHH-5649 improve eclipse support with migration to gradle - -commit bea71a4562a0cb9ff17bb05a9e3549a19333ee5a -Author: Steve Ebersole -Date: Mon Oct 11 17:46:16 2010 -0500 - - HHH-5616 - Switch to Gradle for builds .. incorrect .gitignore - -commit 2443fede6596eb0ff9de6730d84555dd1dc41819 -Author: Steve Ebersole -Date: Mon Oct 11 17:43:42 2010 -0500 - - HHH-5616 - Switch to Gradle for builds .. incorrect .gitignore - -commit b5f4f8aebcd9aa6330c8e917166275ec66a22359 -Author: Steve Ebersole -Date: Mon Oct 11 16:42:43 2010 -0500 - - HHH-5616 - Switch to Gradle for builds - -commit 9440bb81815ee9210ffc25f1cc4cb4ab6ef062a7 -Author: Steve Ebersole -Date: Mon Oct 11 14:38:03 2010 -0500 - - HHH-5616 - Switch to Gradle for builds - -commit f8acf15d4120d27709ccfecb67b551e9bc0c492d -Author: Steve Ebersole -Date: Mon Oct 11 09:30:26 2010 -0500 - - HHH-5616 - Switch to Gradle for builds ... applied javadoc and source jar creation tasks - -commit d18170e490037ee76fd1b7549106ab0305a34483 -Author: Steve Ebersole -Date: Mon Oct 11 09:29:51 2010 -0500 - - HHH-5616 - Switch to Gradle for builds .. disable hem tests due to tcl needing to be given to shrinkwrap stuff - -commit 30851c854515ed7898cd09d10f7b26347b02b446 -Author: Steve Ebersole -Date: Mon Oct 11 07:48:33 2010 -0500 - - HHH-5616 - Switch to Gradle for builds - -commit 248ef9771f53a62e221e69940d39c60427f49ac7 -Author: Steve Ebersole -Date: Mon Oct 11 07:47:31 2010 -0500 - - HHH-5616 - Switch to Gradle for builds .. gradlew - -commit 7ce80c9c2d89217b47e24d83fa61d7e7c7e7307b -Author: Steve Ebersole -Date: Sun Oct 10 15:06:06 2010 -0500 - - HHH-5616 - Switch to Gradle for builds .. IntelliJ - -commit 901513ed7c59ef38562a421a9c27f4219b3c36f3 -Author: Steve Ebersole -Date: Sun Oct 10 08:17:52 2010 -0500 - - HHH-5616 - Switch to Gradle for builds .. uploads - -commit cf19ba338f2bbc075920043926b1710ebfe670cd -Author: Steve Ebersole -Date: Sat Oct 9 14:01:09 2010 -0500 - - HHH-5616 - Switch to Gradle for builds .. swarmcache - -commit d19182f32b53e7a4591df40d56486c578e703243 -Author: Steve Ebersole -Date: Sat Oct 9 13:58:02 2010 -0500 - - HHH-5616 - Switch to Gradle for builds .. oscache - -commit 8beaccc7eb33325606d8ef5df928c4782cd042e9 -Author: Steve Ebersole -Date: Sat Oct 9 13:55:13 2010 -0500 - - HHH-5616 - Switch to Gradle for builds .. infinispan - -commit 429d0fd8f941b37d2bd5f38b57089af3f05c92c0 -Author: Steve Ebersole -Date: Sat Oct 9 13:44:08 2010 -0500 - - HHH-5616 - Switch to Gradle for builds .. ehcache - -commit 328b91119230ee825062b7f8ab9a28bff0388d84 -Author: Steve Ebersole -Date: Sat Oct 9 13:31:54 2010 -0500 - - HHH-5616 - Switch to Gradle for builds .. c3p0 - -commit f83af2d9d3175e7eceb00d411e6bb49612c8e044 -Author: Steve Ebersole -Date: Sat Oct 9 13:28:21 2010 -0500 - - HHH-5616 - Switch to Gradle for builds .. c3p0 - -commit 51edbb579709a20645977e4dbc3bddee98e9253f -Author: Steve Ebersole -Date: Sat Oct 9 13:27:47 2010 -0500 - - HHH-5616 - Switch to Gradle for builds .. c3p0 - -commit e21fed8304935dc8a1efeee115a4e720b9d2667b -Author: Steve Ebersole -Date: Sat Oct 9 13:24:27 2010 -0500 - - HHH-5616 - Switch to Gradle for builds .. envers - -commit 89298608b0ba18049272fc0f2784fb3d251da905 -Author: Steve Ebersole -Date: Sat Oct 9 13:02:49 2010 -0500 - - HHH-5616 - Switch to Gradle for builds .. em - -commit 239927e376507be8334f8db4ec9d5c7e31e073e1 -Author: Steve Ebersole -Date: Fri Oct 8 21:58:14 2010 -0500 - - HHH-5616 - Switch to Gradle for builds - -commit 9134d89dc03ea2d4b7da5597e5d9517ba6e4f212 -Author: Steve Ebersole -Date: Fri Oct 8 21:56:06 2010 -0500 - - HHH-5616 - Switch to Gradle for builds - -commit f476da02ee80827a3111129f46efb688ed9e3b5a -Author: Steve Ebersole -Date: Fri Oct 8 21:54:46 2010 -0500 - - HHH-5616 - Switch to Gradle for builds - -commit 5d12ea828708002e96668bc9f5612e2bf55c16c5 -Author: Steve Ebersole -Date: Fri Oct 8 20:54:35 2010 -0500 - - HHH-5616 - Switch to Gradle for builds - -commit 737ab3b672c3da3df56283a4f749e284a9575ae7 -Author: Steve Ebersole -Date: Fri Oct 8 20:51:41 2010 -0500 - - HHH-5616 - Switch to Gradle for builds ... working hibernate-core - -commit 93bc4272dfb024f63360b0b4c48bc8e7944953c5 -Author: Steve Ebersole -Date: Fri Oct 8 20:29:59 2010 -0500 - - HHH-5616 - Switch to Gradle for builds - -commit 34c2839dccef33a8f3abb4eaf3192c1e1d9e1814 -Author: Steve Ebersole -Date: Fri Oct 8 20:20:10 2010 -0500 - - HHH-5616 - Switch to Gradle for builds - -commit 0bfe7869e41076fd0846ca7592740710876f2427 -Author: Gail Badner -Date: Mon Oct 11 11:51:23 2010 -0700 - - HHH-5638 HHH-5639 HHH-5640 : Import DialectFactory. DialectResolver, ConnectionProvider, and JDBC batching services - -commit 1f5c6f9578912c7c2460f962476502884743d564 -Author: Steve Ebersole -Date: Fri Oct 8 18:01:45 2010 -0500 - - HHH-5632 - Import initial services work - -commit bf51fb9a1a017ef41e1ee28a3c5bd24facb01cc9 -Author: Steve Ebersole -Date: Fri Oct 8 16:36:51 2010 -0500 - - HHH-5632 - Import initial services work - -commit a8a9d24e771111bc2ad109e591c3c3e6fb1181f8 -Author: Steve Ebersole -Date: Thu Oct 7 13:57:22 2010 -0500 - - HHH-5632 - Import initial services work - -commit 882866173171204465345184a3de1f9fb790c41a -Author: Steve Ebersole -Date: Thu Oct 7 13:39:28 2010 -0500 - - HHH-5632 - Import initial services work - -commit 03c004bd132a25e4ddabaeca962c54c80c193078 -Author: Steve Ebersole -Date: Thu Oct 7 12:46:51 2010 -0500 - - HHH-5632 - Import initial services work - -commit 1a522bb9684460205447367ceb4e4902bc296c6c -Author: Steve Ebersole -Date: Thu Oct 7 12:29:23 2010 -0500 - - HHH-5632 - Import initial services work - -commit e3e5df4d2e596c2e2d9ca593b63b5283cc03cc99 -Author: Steve Ebersole -Date: Thu Oct 7 12:25:17 2010 -0500 - - HHH-5632 - Import initial services work - -commit 7627ad2718fce6acc2238531fa58826278755514 -Author: Steve Ebersole -Date: Thu Oct 7 12:24:22 2010 -0500 - - HHH-5632 - Import initial services work - -commit a316a8a50129b0cd606bcd2129f44316746fc0c2 -Author: Steve Ebersole -Date: Fri Oct 8 15:36:02 2010 -0500 - - HHH-5623 - Baseline on JDK 1.6 - -commit 7b521af146b8c7d3281a20087a2514b7abcce2ef -Merge: 794d07f564 3acb59af23 -Author: Steve Ebersole -Date: Fri Oct 8 14:42:26 2010 -0500 - - Merge branch 'master' of github.com:hibernate/hibernate-core into HHH-5623 - -commit 794d07f564c47e6a4d13f063103136d028d9a512 -Author: Steve Ebersole -Date: Fri Oct 8 13:40:21 2010 -0500 - - HHH-5623 - Baseline on JDK 1.6 - -commit 28a6acdcdaaa02edd21151bbe94121810e4632bc -Author: Steve Ebersole -Date: Thu Oct 7 16:46:49 2010 -0500 - - HHH-5623 - Baseline on JDK 1.6 - -commit 3acb59af23142ae7fcbb41d94778fd757602620f -Merge: dc00c4dcde 1d8c9f5d6c -Author: Gail Badner -Date: Thu Oct 7 14:06:25 2010 -0700 - - Merge remote branch 'upstream/master' - -commit dc00c4dcde1bae399a9350bd4a13f9a2a449f6c3 -Author: Gail Badner -Date: Thu Oct 7 13:36:24 2010 -0700 - - HHH-5163 : ClassCastException caching results using ResultTransformer - -commit 1d8c9f5d6c77f34a68c00e3391d205f1022a86e9 -Author: Steve Ebersole -Date: Thu Oct 7 14:55:40 2010 -0500 - - HHH-5634 - Clean up stuff no longer needed - -commit 3ab5f48b0a19d0decb64ec1484b3d3f516e0d828 -Author: Steve Ebersole -Date: Thu Oct 7 14:30:54 2010 -0500 - - HHH-5617 - Migrate to Git for source control - -commit 47eace5163305adf80d29d8c130864191a685386 -Author: Steve Ebersole -Date: Wed Oct 6 17:39:33 2010 +0000 - - HHH-5629 - Inconsistent consistency checks for entities already found in session - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20780 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 6c6e6ab193f48ed93d5b76f394e6bef78205921a -Author: Erik-Berndt Scheper -Date: Mon Oct 4 18:11:33 2010 +0000 - - HHH-5371 Support revend timestamp to enable audit table partioning by time - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20775 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit dbe30fc518bb0167279e2d8e4c0c94c2ad323230 -Author: Erik-Berndt Scheper -Date: Mon Oct 4 14:52:19 2010 +0000 - - fixed envers build (broken since rev 20760) - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20774 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 59ec34d5b673460a83009f024ae18437f85e452b -Author: Emmanuel Bernard -Date: Mon Oct 4 14:05:41 2010 +0000 - - HHH-5578 fix incorrect use of JDK 6 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20772 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit e2f6b83754e5d706bc1363bc8487c20079b214b3 -Author: Emmanuel Bernard -Date: Mon Oct 4 09:46:17 2010 +0000 - - HHH-5578 centralize specj property discovery - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20769 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit c21ea5e3e1e0a92d27b1edc43026f1d0ce2ae607 -Author: Emmanuel Bernard -Date: Mon Oct 4 09:45:41 2010 +0000 - - HHH-5578 implement a cleaner version of getPropertyOverriddenByMapperOrMapsId in the SpecJ case - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20768 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 3b3c8bc9233cd869c5e0219226983e15f78791ef -Author: Emmanuel Bernard -Date: Mon Oct 4 09:45:09 2010 +0000 - - HHH-5578 Support SpecJ's proprietary syntax - - Generalize the fix a bit - Clean some more style issues - Fix issues related to the atomicity test - fixed setting proper value on property marked as many-to-one-key - fixed parsing bug, now it shouldnt affect other many-to-one in the same entity - fixed annotation check on many-to-one property - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20767 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 3684576124fa73f41474a4fc79d360b7ea003937 -Author: Emmanuel Bernard -Date: Mon Oct 4 09:44:12 2010 +0000 - - HHH-5578 Add support for SpecJ's proprietary syntax - - Initial patch by Stale - Uses a specific property to activate - Fix a couple of test issues (The test made change on an unmanaged object wo reattaching it) - Fix some code style issues - Add TODOs for a proper solution - Use the correct PropertyData - Populate the metamodel with the PropertyData - corresponding to the @ToOne instead of reusing the - PropertyData from the @Id property - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20766 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit e1cea7d8e1c488350f84469f8b3ec058dafede5f -Author: Steve Ebersole -Date: Thu Sep 30 17:47:19 2010 +0000 - - HHH-5609 - Move SessionImplementor#wasInsertedDuringTransaction to PersistenceContext - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20760 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 747076abb14a3ba6115c36dea53dd9ca0c62b53b -Author: Steve Ebersole -Date: Thu Sep 30 15:18:21 2010 +0000 - - HHH-5606 - Incorrect standard type regsitrations to date/time - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20759 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 066ea8d6674c5b0b2b60a7d41047467d503713a0 -Author: Steve Ebersole -Date: Thu Sep 30 13:15:55 2010 +0000 - - HHH-5607 - Add derby profile - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20758 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 2a7be6d0d14b44ae32b24228132d8ad2963a7777 -Author: Hardy Ferentschik -Date: Thu Sep 30 08:49:21 2010 +0000 - - Fixed typo in string null check of project name. -z instead of -Z - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20756 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit f3eb7978fd9e9f5979057b8764cf64ebb6a45682 -Author: Gail Badner -Date: Wed Sep 29 21:23:58 2010 +0000 - - update changelog.txt for 3.6.0.CR2 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20754 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 4b84e848dd4fdfca0e00508e375fdf83b1424c46 -Author: Steve Ebersole -Date: Wed Sep 29 20:56:44 2010 +0000 - - Updating pom versions to /home/steve/projects/hibernate/core/trunk for release tagging - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20753 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 909ff003bd8b2b7ad8056d7dc9e147ccafa5461a -Author: Steve Ebersole -Date: Wed Sep 29 20:55:58 2010 +0000 - - Updating pom versions to /home/steve/projects/hibernate/core/trunk for release tagging - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20751 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit d4f8eddc1a259784e5af9e8f88054aae20114f0e -Author: Hardy Ferentschik -Date: Wed Sep 29 12:50:23 2010 +0000 - - HHH-5190 added documentation - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20750 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit bf7607e24495af5133165ae6ed6b85feecf59148 -Author: Hardy Ferentschik -Date: Wed Sep 29 10:45:08 2010 +0000 - - HHH-5190 - Introduced new annotation @DiscriminatorOptions and deprecated @ForceDiscriminator - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20749 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 4e2887c0c0069245eb086ec459c9a2411faf450d -Author: Emmanuel Bernard -Date: Wed Sep 29 09:44:15 2010 +0000 - - HHH-4510 Rename @ReadWriteExpression to @ColumnTransformer - - It relates to the ResultTransformer we have but at the column level - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20748 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 6a14aeeba79d3536a893f63154c0b697db3f3711 -Author: Emmanuel Bernard -Date: Wed Sep 29 09:42:52 2010 +0000 - - HHH-4510 Fix bug where explicit @Column would not match @ReadWriteExpresion with empty forColumn - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20747 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 768088881b1713b6624fe01ada92dfa0816be34c -Author: Emmanuel Bernard -Date: Wed Sep 29 09:12:51 2010 +0000 - - HHH-4510 Allow forColumn to be left if a property has a single column - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20746 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 558d9469e018962a2b3159561bcc0996ecfc62fc -Author: Erik-Berndt Scheper -Date: Tue Sep 28 23:50:53 2010 +0000 - - HHH5371 - Rollback until after 3.6.0 release as per Adam's request via IM - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20745 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit b258e58e69a4cbe51720fdffcf9fe85352159dc6 -Author: Erik-Berndt Scheper -Date: Tue Sep 28 22:24:09 2010 +0000 - - HHH-5371 - Add support for REVEND_TSTMP which will enable audit table partitioning - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20744 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 8f8e0fbfe25cdfd78ff5a9853c2f0e1701aafa09 -Author: Erik-Berndt Scheper -Date: Tue Sep 28 22:23:04 2010 +0000 - - HHH-5371 - Add support for REVEND_TSTMP which will enable audit table partitioning - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20743 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 5fc7e88533bb82846ab13dde7147357b51919d95 -Author: Hardy Ferentschik -Date: Tue Sep 28 16:39:06 2010 +0000 - - HHH-5205 Updated documentation about @Source - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20742 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 7419fc298dab9afe82fbdbb8b64854fa37f60817 -Author: Hardy Ferentschik -Date: Tue Sep 28 16:32:26 2010 +0000 - - HHH-5205 - Renamed BinderHelper.isDefault() to BinderHelper.isEmptyAnnotationValue() , because this describes better what the function does. Also renamed VersionTest to OptimisitcLockAnnotationTest to better describe what gets tested. - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20741 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit e14f58de29eb5f8a3de7480dbd8bc10fcc9e6185 -Author: Hardy Ferentschik -Date: Tue Sep 28 16:28:30 2010 +0000 - - HHH-5205 - Added @Source and emum SourceType, fixed implementation and added a test - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20740 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 7d167768d25e30fc0065e51db80bea84785c9c34 -Author: Emmanuel Bernard -Date: Mon Sep 27 22:09:02 2010 +0000 - - HHH-4510 Merge @ReadExpression and @WriteExpression in @ReadWriteExpression - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20729 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 51bf38d4b04e656321ae56a1c887a24eaa3933f5 -Author: Emmanuel Bernard -Date: Mon Sep 27 22:07:44 2010 +0000 - - HHH-4510 Add support for column-levle custom read/write expression - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20728 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 122d54fee81f9d13f7ab38cc4b6d3ff166177443 -Author: Erik-Berndt Scheper -Date: Sun Sep 26 19:56:28 2010 +0000 - - HHH-5560 - Rename Envers ValidAuditTimeStrategy to ValidityAuditStrategy - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20718 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit dd8fe46f583f567b9e92d46eca6ec57ff1bc24d6 -Author: Erik-Berndt Scheper -Date: Sun Sep 26 19:55:50 2010 +0000 - - HHH-5560 - Rename Envers ValidAuditTimeStrategy to ValidityAuditTimeStrategy - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20717 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 5823732c455ccdd3acfda931d1f75f765dc43399 -Author: Strong Liu -Date: Sun Sep 26 19:12:41 2010 +0000 - - HHH-5572 sybase does not support setBlob - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20716 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 09e4531dad9915080b3380f14823a8260fec1fee -Author: Strong Liu -Date: Sun Sep 26 19:04:30 2010 +0000 - - HHH-5572 sybase does not support setBlob - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20715 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit dd1070c47454051d7c35488343950a2de300f9ed -Author: Strong Liu -Date: Sun Sep 26 18:17:36 2010 +0000 - - correct non utf-8 character - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20714 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit b21ae56c674dc62cf56c5da3bc0752a5103f920e -Author: Strong Liu -Date: Sun Sep 26 18:10:52 2010 +0000 - - HHH-3032 Sybase restriction of using alias in sub-query - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20713 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 685ddb254eee996c37f6de2027e66e7ef7b895e2 -Author: Strong Liu -Date: Sun Sep 26 16:47:04 2010 +0000 - - HHH-5598 add sybase jdbc4 profile - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20712 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 4fb0ccd5f1c9bb6e9bc140c605bdea1f40ab32e1 -Author: Strong Liu -Date: Sun Sep 26 15:42:11 2010 +0000 - - HHH-5598 sybase's getCurrentTimestampSQLFunctionName should be getdate() - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20711 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 21dbc7ff0a7359d66f7e28b0513259c24a876510 -Author: Strong Liu -Date: Sun Sep 26 15:39:58 2010 +0000 - - HHH-5598 sybase ASE cannot handle select count(distinct c1, c2, c3) from t1. - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20710 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 0f70f7243d48399f178f484d02ef24f13f233d23 -Author: Strong Liu -Date: Sun Sep 26 15:32:06 2010 +0000 - - HHH-5598 sybase supports grid id generate strategy - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20709 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 87b645e0c154f1d00ae453cdc44b089b0761705a -Author: Strong Liu -Date: Sun Sep 26 15:28:34 2010 +0000 - - HHH-5598 sybase and ms sql server do support union all - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20708 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 636f7286037a365463e90ac448c763ffdaec51c4 -Author: Steve Ebersole -Date: Sat Sep 25 16:27:09 2010 +0000 - - HHH-2917 - Using subselects as operands for arithmetic operations causes NullPointerException - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20707 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit dbdcb0131224dfcf2d31dd5ac8fe8e38b8d93934 -Author: Steve Ebersole -Date: Sat Sep 25 15:47:57 2010 +0000 - - HHH-5591 - ConcurrentStatisticsImpl#queryExecuted() does not update queryExecutionMaxTimeQueryString - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20706 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 1fccf2a04ef9b771b3d8f76049ef18b252be44d1 -Author: Steve Ebersole -Date: Sat Sep 25 15:35:02 2010 +0000 - - HHH-5581 - Improve InformixDialect sequence support - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20705 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 61fc1a482e5999201b57dde6166f2855d0abaab6 -Author: Strong Liu -Date: Sat Sep 25 10:41:36 2010 +0000 - - HHH-5597 org.hibernate.test.criteria.LikeTest.testLike fails on postgresql because of the default escape charactor - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20704 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit d8d1a0da62301853920a58ac80e5d10cd55ebdd1 -Author: Strong Liu -Date: Sat Sep 25 10:39:40 2010 +0000 - - HHH-5596 org.hibernate.test.annotations.onetoone.OneToOneTest.testPkOneToOneSelectStatementDoesNotGenerateExtraJoin() fails on postgresql - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20703 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 1b6b995166bb8e781328093a6a629d05a546b8d5 -Author: Strong Liu -Date: Sat Sep 25 10:34:41 2010 +0000 - - HHH-5595 postgresql jdbc driver does not implement the setQueryTimeout method - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20702 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit f11f7f28b47c65401bd03e3bcecec528d1cd7ded -Author: Strong Liu -Date: Sat Sep 25 09:22:53 2010 +0000 - - HHH-5594 minor improvement - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20701 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit c31d2b093da38d92daac654c9f6a817c97a97e5c -Author: Strong Liu -Date: Sat Sep 25 09:22:27 2010 +0000 - - HHH-5594 org.hibernate.test.jpa.lock.JPALockTest fails on hsqldb - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20700 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 834551b33ea22ad520fd462c6486f12c6d372284 -Author: Strong Liu -Date: Sat Sep 25 07:57:56 2010 +0000 - - HHH-5593 org.hibernate.test.legacy.FooBarTest.testCollectionWhere fails on hsqldb - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20699 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 5ee8c0fc75874c67b1ccbcec88b7637f1a66f7fd -Author: Strong Liu -Date: Sat Sep 25 06:07:07 2010 +0000 - - HHH-5592 org.hibernate.test.naturalid.mutable.MutableNaturalIdTest hangs on postgresql - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20698 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit ab9bf1dd0c005cf184bcb16951b92dea1172f4fa -Author: Strong Liu -Date: Sat Sep 25 05:53:53 2010 +0000 - - HHH-5592 org.hibernate.test.naturalid.immutable.ImmutableNaturalIdTest hangs on postgresql - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20697 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 998ef3d98ab353d92d5405fab64c933f4267c716 -Author: Strong Liu -Date: Sat Sep 25 05:29:17 2010 +0000 - - HHH-5592 org.hibernate.test.jpa.naturalid.ImmutableNaturalIdTest hangs on postgresql - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20696 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit f518b84b1bde575df350ec1345fc34d37c0d1820 -Author: Strong Liu -Date: Sat Sep 25 02:47:05 2010 +0000 - - HHH-5592 org.hibernate.test.hql.ASTParserLoadingOrderByTest hangs on postgresql - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20695 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit bc8fee2624e4d9c7412e099ee22b6bab42448ab1 -Author: Strong Liu -Date: Fri Sep 24 15:39:44 2010 +0000 - - HHH-5589 mysql does not support column check - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20694 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 13699d792b9f69fa13a1540617db71109aa9688e -Author: Gail Badner -Date: Mon Sep 20 17:42:39 2010 +0000 - - HHH-892 : HQL parser does not resolve alias in ORDER BY clause - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20673 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit dde16433adddc33f31d540a149bf0e73196b7b86 -Author: Adam Warski -Date: Mon Sep 20 13:44:04 2010 +0000 - - Minor corrections to the tutorial - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20665 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 902b3ac2dcf919a6e6ff94de95cddd8948867341 -Author: Strong Liu -Date: Sat Sep 18 13:47:12 2010 +0000 - - HHH-5572 rollback, since this change causes org.hibernate.test.annotations.indexcoll.IndexedCollectionTest#testJPA2DefaultMapColumns to fail. - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20663 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 6e1eaa837c50ff476508b6f1843dd782796e3961 -Author: Strong Liu -Date: Fri Sep 17 10:31:59 2010 +0000 - - HHH-5572 clean up Sybase job failures - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20662 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 321762f375438c0d421be3c83777aecd0ad36a81 -Author: Strong Liu -Date: Fri Sep 17 09:26:03 2010 +0000 - - HHH-5572 clean up Sybase job failures - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20661 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 5064d48151274bab0bc8d6a7e8818a934d777244 -Author: Galder Zamarreno -Date: Fri Sep 17 06:42:31 2010 +0000 - - [HHH-5563] (JndiInfinispanRegionFactory creates region with a stopped cache, if region previously existed) Fix compilation error as a result of merge. - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20657 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit a2162b981e4b1ef6fa1aa1191d785a42095e828f -Author: Gail Badner -Date: Thu Sep 16 20:29:03 2010 +0000 - - HHH-892 HHH-5574 : test cases for HQL ORDER BY - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20656 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 19300880d63f0c0bc6049c3b2cac6e311bf845b6 -Author: Steve Ebersole -Date: Thu Sep 16 20:23:07 2010 +0000 - - HHH-5490 - dirty data be inserted into 2L cache - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20655 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit d587904e9859a0548509618025a0093e645d6aef -Author: Galder Zamarreno -Date: Thu Sep 16 17:26:33 2010 +0000 - - [HHH-5552] (Infinispan listener implementations need to load entities and keys using application classloader) A wrapper class now puts the right classloader for listener calls. - [HHH-5563] (JndiInfinispanRegionFactory creates region with a stopped cache, if region previously existed) A check was added to start the cache if no invocations are allowed any more. - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20653 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 0088c9f213e57452e68f73b0e40482aa60921701 -Author: Steve Ebersole -Date: Thu Sep 16 16:53:09 2010 +0000 - - HHH-5573 - Change TestCase to rebuildSessionFactory() whenever sessions var is accessed - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20651 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit bdab36f6f25cd9ec934e4bdfbf633edd3aea9bcb -Author: Strong Liu -Date: Thu Sep 16 11:00:16 2010 +0000 - - HHH-5572 clean up Sybase job failures - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20650 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit d90cc02c06ef0647b58c407488349dedab4b6f17 -Author: Strong Liu -Date: Thu Sep 16 06:36:49 2010 +0000 - - HHH-5568 correct wrong format in document - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20648 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 3eb9c70d44a637a510669a8e9820947fd96a96e3 -Author: Steve Ebersole -Date: Wed Sep 15 18:26:18 2010 +0000 - - Updating pom versions to 3.6.0-SNAPSHOT for release tagging - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20644 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 743dd39cc9dd58fdddb12d99a213445632d0b1f4 -Author: Steve Ebersole -Date: Wed Sep 15 18:25:47 2010 +0000 - - Updating pom versions to 3.6.0.CR1 for release tagging - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20642 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit f8fef6b6e6c3f4ee0583c34ce0424a2203108b39 -Author: Steve Ebersole -Date: Wed Sep 15 17:34:49 2010 +0000 - - prep 3.6.0.CR1 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20640 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit be7fc3798c1ae5856f43dbda5662cd224092e7b1 -Author: Steve Ebersole -Date: Wed Sep 15 17:25:58 2010 +0000 - - HHH-5441 - Create "Getting Started Guide" - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20639 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 641073eb063819c63303255e486753dd67605942 -Author: Strong Liu -Date: Wed Sep 15 02:47:38 2010 +0000 - - HHH-5558 rollback - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20637 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 6aede23d2e010f5d64921ec6a33b082516305c8e -Author: Galder Zamarreno -Date: Tue Sep 14 15:43:58 2010 +0000 - - [HHH-5564] (Upgrade to Infinispan 4.2.x) Upgraded to 4.2.0.ALPHA1. - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20636 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit d651fba422900123ae2e158a93902436f240dee1 -Author: Strong Liu -Date: Mon Sep 13 09:44:07 2010 +0000 - - HHH-5558 Change made so that temp tables need not to be deleted, they get deleted automatically in Sybase. - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20634 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit ed2630c1779f4d678b2201c8ac02c651bcabcbc2 -Author: Hardy Ferentschik -Date: Mon Sep 13 05:46:30 2010 +0000 - - HHH-5524 changed script so that the tagUrl is right for branches as well - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20633 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 7cb332acaba974606316cbbed3d5b9b75b0995d6 -Author: Strong Liu -Date: Mon Sep 13 03:13:08 2010 +0000 - - HHH-5557 Sybase supports alias length upto 30 characters - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20632 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit da4ffe2cf885bf59b3a1073d8d4888f091310581 -Author: Hardy Ferentschik -Date: Sun Sep 12 22:47:21 2010 +0000 - - HHH-5524 added tagRelease script and added support for scm urls - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20631 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit dedd57ef71f849e3b5b6c229c4c67293080b2e26 -Author: Steve Ebersole -Date: Sat Sep 11 19:18:58 2010 +0000 - - HHH-5468 - Write a chapter about setting up database access - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20624 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 7803cb5b8158232a6370ee268434e93b1ef68237 -Author: Steve Ebersole -Date: Sat Sep 11 19:18:00 2010 +0000 - - HHH-5468 - Write a chapter about setting up database access - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20623 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 0ac3d2397971e4161f93ccbb76e3b29578041030 -Author: Steve Ebersole -Date: Fri Sep 10 20:20:55 2010 +0000 - - HHH-5446 - Write an envers tutorial guide - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20346 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 9a3e4229fd12bc348cf24349abe310b8ca2fcf74 -Author: Steve Ebersole -Date: Fri Sep 10 20:19:35 2010 +0000 - - HHH-5446 - Write an envers tutorial guide - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20345 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit a4ea233ef8de179c26d982e2c56ed1b3152e5251 -Author: Galder Zamarreno -Date: Thu Sep 9 09:19:11 2010 +0000 - - [HHH-5542] (Infinispan region factory uses same cache instance for all timestamp regions) - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20328 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit df6072d2e54c89f401edef0cc73015abc272e933 -Author: Galder Zamarreno -Date: Thu Sep 9 08:03:31 2010 +0000 - - [HHH-5545] (Resolve query cache results not up to date testsuite failures) - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20327 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit c11a29742027c1475b4afc7f24f4c9e317928e3b -Author: Steve Ebersole -Date: Thu Sep 9 03:35:35 2010 +0000 - - HHH-5543 - JEE bootstrapping should only parse and validate mapping files once - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20325 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 8e2ccbe4513563ef059826f0a4f911ff5819dde7 -Author: Steve Ebersole -Date: Thu Sep 9 02:53:03 2010 +0000 - - HHH-5310 - orm_2_0.xsd compliant mapping files break in JEE use cases - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20323 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 74020983925d3eb4f79e3e74eeb03b34e9c7844f -Author: Steve Ebersole -Date: Wed Sep 8 18:03:28 2010 +0000 - - HHH-5310 - orm_2_0.xsd compliant mapping files break in JEE use cases - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20321 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 9efd8968341cdc52612325b102e72aa09b2915a6 -Author: Strong Liu -Date: Wed Sep 8 03:06:25 2010 +0000 - - HHH-5356 Sybase 15 does not support cross join - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20317 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 9c919ee9dc0404123bacbcdd5fe89504891c9b71 -Author: Adam Warski -Date: Tue Sep 7 13:52:38 2010 +0000 - - HHH-5372: - applying patch by Matthew B. Jones and Erik-Berndt Scheper - Using the revend column in queries that retrieve historical data, which is much faster then doing the subselect. - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20315 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 28dae5c9f3f78311aed3e264638f08702301449c -Author: Adam Warski -Date: Sat Sep 4 07:40:43 2010 +0000 - - HHH-5499: - Extend AuditReader interface with findRevisions() method - Applying patch by Erik-Berndt Scheper - thanks! - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20309 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 6299d0845baa30232959535c519883e6173a0c42 -Author: misty -Date: Fri Sep 3 06:55:53 2010 +0000 - - Edits to the Getting Started Guide - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20307 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit dbcced88aabe877a38ee7028c180c8c4edfa8c7d -Author: Strong Liu -Date: Wed Sep 1 18:58:32 2010 +0000 - - HHH-5484 org.hibernate.type.UUIDCharType incorrectly mapped to char and causes test fail due to the padding space - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20303 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit ea855dc9b27006319080a2a010dfda779563fc3e -Author: Steve Ebersole -Date: Wed Sep 1 17:03:05 2010 +0000 - - Updating pom versions to 3.6.0-SNAPSHOT for release tagging - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20302 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 39369ad10043a02bd28cbe279e44f64a48db2e23 -Author: Steve Ebersole -Date: Wed Sep 1 17:02:23 2010 +0000 - - Updating pom versions to 3.6.0.Beta4 for release tagging - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20300 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 80b6cf42affb2071fcd77c3a503f20e95aaea84d -Author: Steve Ebersole -Date: Wed Sep 1 16:59:50 2010 +0000 - - prepare 3.6.0.Beta4 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20299 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 207833454842c4e8b48e7c26edcdef41ad1d26b3 -Author: Steve Ebersole -Date: Wed Sep 1 15:33:30 2010 +0000 - - HHH-5466 - Create "Developer Guide" - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20298 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit ab97bf0bf02ced3a0db34d3a189a0008bcd53009 -Author: Steve Ebersole -Date: Tue Aug 31 19:07:03 2010 +0000 - - HHH-5517 - Switch uuid generation in SessionFactory to org.hibernate.id.UUIDGenerator instead - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20296 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 21c49fff68cc4bae1584c2830ee4af8b636e6fdf -Author: Steve Ebersole -Date: Tue Aug 31 18:57:54 2010 +0000 - - HHH-5520 - Per org.hibernate.cache.RegionFactory javadocs, implementors should be allowed to use no-arg constructor - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20295 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 487ccb38d0128ba666c3cfa4ec441881d8889802 -Author: Steve Ebersole -Date: Tue Aug 31 18:44:56 2010 +0000 - - HHH-5489 - Deprecate jbosscache as a second level cache provider, in favor of infinispan - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20294 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 0b6e54aa82e60a844acb1fe5f21b85b7453b2325 -Author: Steve Ebersole -Date: Tue Aug 31 18:19:55 2010 +0000 - - HHH-5441 - Create "Getting Started Guide" - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20293 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit e79afeb58806879eeb79c04c5bc8e6ab2d8c5632 -Author: Steve Ebersole -Date: Tue Aug 31 17:59:31 2010 +0000 - - HHH-5445 - Write a jpa/entitymanager tutorial guide - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20292 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit efe2ad807ac2a215dc1ae734b76a9e454b2b0f47 -Author: Galder Zamarreno -Date: Tue Aug 31 16:05:27 2010 +0000 - - [HHH-5519] (VersionedItem should not extend Item, otherwise query cache results are confusing) Fixed. - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20291 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 31037bd103d255a0a286dc05cf05d3ebb84743dc -Author: Galder Zamarreno -Date: Tue Aug 31 15:09:48 2010 +0000 - - [HHH-5511] (Infinispan Region.destroy() impl should call cache.stop()) Fixed. - [HHH-5512] (JndiInfinispanRegionFactory shouldn't try to stop CacheManager) Fixed. - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20288 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 8176661952f5cce4e4da1a7489b77a699921551d -Author: Steve Ebersole -Date: Tue Aug 31 13:03:19 2010 +0000 - - HHH-5444 - Write annotations tutorial chapter - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20287 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 2778bcd212b9837a764ca7c46d93db621293d520 -Author: Steve Ebersole -Date: Tue Aug 31 12:43:29 2010 +0000 - - HHH-5442 - Write native tutorial chapter - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20286 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit df3b5147c7b5aaaf14003c5af9fac8b2da818bfb -Author: Steve Ebersole -Date: Tue Aug 31 11:09:44 2010 +0000 - - HHH-5442 - Write native tutorial chapter - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20285 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 95b00867cedcf464ba85d4d8178f8e4c52e12cf6 -Author: Galder Zamarreno -Date: Tue Aug 31 09:08:33 2010 +0000 - - [HHH-5515] (Upgrade to Infinispan 4.1.0.CR3) Done. - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20284 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 222e0937c57d213d45301f16418a8614793041d2 -Author: Galder Zamarreno -Date: Tue Aug 31 08:29:12 2010 +0000 - - Fix unit test by adding necessary Configuration.buildMappings() call, otherwise cache strategy is not set correctly in entity. - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20283 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 19e9a408c286e4872329273974cf9052aae767fe -Author: Gail Badner -Date: Tue Aug 31 00:18:55 2010 +0000 - - HHH-817 : Projection aliases should not be applied to where-clause (Milosz Tylenda) - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20282 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit b4ac7275e57842a10c82160e0d99d7835e66e4a3 -Author: Steve Ebersole -Date: Fri Aug 27 21:44:31 2010 +0000 - - HHH-5441 - Create "Getting Started Guide" - separate tutorial project for bundling - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20278 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 1532e22327e528d85f80ed788ff947e3533f4071 -Author: Steve Ebersole -Date: Fri Aug 27 21:44:03 2010 +0000 - - HHH-5441 - Create "Getting Started Guide" - separate tutorial project for bundling - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20277 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 227572cfcf9d94ba7dbe54df63d21ce9685c442b -Author: Steve Ebersole -Date: Fri Aug 27 11:10:51 2010 +0000 - - HHH-5510 - Upgrade to maven-jdocbook-plugin 2.3.3 - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20276 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit b012b7bd230a34faf1a61fa811de4126f8e36902 -Author: Steve Ebersole -Date: Fri Aug 27 10:48:39 2010 +0000 - - HHH-1189 - interfaces for Proxies are not regonized as interfaces - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20275 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit aa350edc92ad70c80b3e9fc962b77bb7d94d2a25 -Author: Strong Liu -Date: Fri Aug 27 05:29:28 2010 +0000 - - HHH-5510 Upgrade to maven-jdocbook-plugin 2.3.3 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20273 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 15ee506630a915708ba4225268cafc42ec56949f -Author: Steve Ebersole -Date: Fri Aug 27 01:50:32 2010 +0000 - - HHH-1189 - interfaces for Proxies are not regonized as interfaces - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20272 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 232a77e5ddfa3eaf59034a7e55fd52debeb0242a -Author: Steve Ebersole -Date: Thu Aug 26 21:00:47 2010 +0000 - - HHH-5507 - Add @MapKeyType annotation - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20271 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 07092e1cafd39bb60010d4bc75356f454239e684 -Author: Steve Ebersole -Date: Thu Aug 26 20:24:12 2010 +0000 - - HHH-5509 - Leverage StandardBasicTypes internaly - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20270 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit a8c7b9c1f0d223ddd6dedef5bc6f0eda70290cca -Author: Steve Ebersole -Date: Thu Aug 26 19:11:48 2010 +0000 - - HHH-5335 - a few typo fixes in Dialect and in tests - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20269 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 88ef1602933626bdebd526f5461321e1ac808dfb -Author: Steve Ebersole -Date: Thu Aug 26 18:53:07 2010 +0000 - - HHH-5427 - derby 10.6.1.0 native sequence support broken - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20268 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 43122d96c35d2950e910495e777b13051c125190 -Author: Steve Ebersole -Date: Thu Aug 26 17:53:24 2010 +0000 - - HHH-5453 - ByteCodeHelper.readByteCode won't load classes bigger than a constant size - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20267 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 98338e8e8b986d835f2bf617e02d727752e7fe26 -Author: Strong Liu -Date: Thu Aug 26 08:10:11 2010 +0000 - - HHH-5506 rollback maven-jdocbook-plugin to 2.3.0 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20265 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit dde9a42b667cbf8699634901a95a7e5bf1a81dff -Author: Strong Liu -Date: Wed Aug 25 16:01:09 2010 +0000 - - HHH-5505 enable Sybase 15.5 in the test db profile - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20264 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit f5194940ec7eacb1d4287863b7794a8a03bd3a08 -Author: Steve Ebersole -Date: Tue Aug 24 17:19:03 2010 +0000 - - HHH-5464 - Write a chapter about obtaining Hibernate - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20258 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 034c7b77c10ec1caf407258d52e26c07a8077623 -Author: Steve Ebersole -Date: Tue Aug 24 17:15:42 2010 +0000 - - HHH-5444 - Write annotations tutorial chapter - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20255 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit adc1ab6c024b0f02ec454807d0c254236dc8c8c3 -Author: Steve Ebersole -Date: Tue Aug 24 15:45:32 2010 +0000 - - HHH-5442 - Write native tutorial chapter - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20249 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit dd86190b17fa9768444444115f3539a3cce7526a -Author: Steve Ebersole -Date: Tue Aug 24 14:29:49 2010 +0000 - - HHH-5502 - Upgrade to maven-jdocbook-plugin 2.3.2 - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20248 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit c020d25a7021070219871545b11177d0e074a783 -Author: Adam Warski -Date: Mon Aug 23 14:21:30 2010 +0000 - - HHH-5142: - Exception when initializing lazy @ManyToMany indexed collection containing not audited entities - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20226 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 1065aa72a7d2f13b7d44938e826368f982dd938b -Author: Adam Warski -Date: Sun Aug 22 10:28:50 2010 +0000 - - HHH-5197: - quickstart covers also direct Hibernate usage - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20217 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 4ed4f1f4198f195c788b91588b88a38a38964b60 -Author: Adam Warski -Date: Sun Aug 22 10:15:05 2010 +0000 - - Cleanup: moving entityNames tests to integration - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20216 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 27c43633ab05dfd1df90b2da7dd3ff5b55f0dd6b -Author: Gail Badner -Date: Fri Aug 20 17:18:44 2010 +0000 - - HHH-3334 : Cascade-save breaks if parent ID is assigned (delays insert) and child has identity ID (early insert) (Wallace Wadge) - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20210 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit d3998b672efbd126dd0ba06034adfbe4b865fe11 -Author: misty -Date: Fri Aug 20 05:23:28 2010 +0000 - - Rolling back to the last version Steve worked on (20171) - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20202 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit ca1f02f4c9798a2be503623bcc766b40498e3e4f -Author: misty -Date: Fri Aug 20 01:01:03 2010 +0000 - - HHH-5541 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20200 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 0c5c9874e604b78e527f5a4434211b11ef72aa48 -Author: misty -Date: Fri Aug 20 00:30:53 2010 +0000 - - HHH-5541 Edited Native tutorial to clarify options. Left some comments for questions I have. - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20199 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 9ba97ec5ccfab24c0ed128abc5415950a5b17867 -Author: Gail Badner -Date: Thu Aug 19 23:06:32 2010 +0000 - - HHH-5225 : Cannot parse order-by fragment if it contains a registered function without parentheses - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20197 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit f881605577b2fa954cabcefa7951ac1642f99a6f -Author: Gail Badner -Date: Thu Aug 19 19:57:42 2010 +0000 - - HHH-5163 : added test implementing a workaround for ClassCastException caching results using a ResultTransformer - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20194 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 60bceb24f7369b79b28c8b201886ae13a3a97da3 -Author: Steve Ebersole -Date: Thu Aug 19 16:41:31 2010 +0000 - - HHH-5440 - Joined collection expressions not properly "rendered" in JPA Criteria queries - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20193 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit fa587d4da7fc9c091ad75b72cc47d7cc1d749ff2 -Author: Steve Ebersole -Date: Wed Aug 18 18:47:29 2010 +0000 - - Updating pom versions to 3.6.0-SNAPSHOT for release tagging - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20171 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit a03a7678664563c19f007bdb2f6fe2dc93000d5e -Author: Steve Ebersole -Date: Wed Aug 18 18:46:58 2010 +0000 - - Updating pom versions to 3.6.0.Beta3 for release tagging - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20169 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit aed42329692f544a2673f41e9aec3c21a85196be -Author: Steve Ebersole -Date: Wed Aug 18 18:42:16 2010 +0000 - - changelog in prep for 3.6.0.Beta3 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20167 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit cf2cab9e18ed10a3c7d00a96494052d7b70b4372 -Author: Steve Ebersole -Date: Wed Aug 18 17:27:40 2010 +0000 - - HHH-1643 - Sub-query as function parameter - either sub-query is missed from SQL or NullPointerException raised - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20163 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 39b0774ae36f81643a0026b39db5a799220d302c -Author: Steve Ebersole -Date: Wed Aug 18 17:05:44 2010 +0000 - - HHH-5469 - HHH-3659 is only half done, due to HHH-4989 (i.e. no HQL performance log when running Java 5) - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20161 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 37af87bba0eb21bf5af9df1f4c0b86ea37bd1a74 -Author: Gail Badner -Date: Tue Aug 17 18:22:38 2010 +0000 - - HHH-5473 : Default for CHECK_NULLABILITY does not allow merge retries - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20156 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 35912c5e366d534dd1aa19da8668a3c10a89afdc -Author: Hardy Ferentschik -Date: Tue Aug 17 15:12:41 2010 +0000 - - HHH-5485 - Allow entity resolver to handle old and new Hibernate namespace. Using hibernate.sourcefroge.net outputs a warning now - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20155 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 67a59a3ea610ef46a2da7ae5e038b2cbc6ce1fbb -Author: Hardy Ferentschik -Date: Tue Aug 17 14:13:58 2010 +0000 - - HHH-5485 Move hiberante dtd files from http://hibernate.sourceforge.net to http://www.hibernate.org/dtd - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20154 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 691b5b616b3de61f71968d29a2db71cb563bb74c -Author: Gail Badner -Date: Tue Aug 17 03:28:30 2010 +0000 - - HHH-5180 : StandardQueryCache.get() does not handle EntityNotFoundException for natural key lookups - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20153 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit c2e3712ddc1586ce6ea721d02a17f1e69d99ac8e -Author: Steve Ebersole -Date: Mon Aug 16 21:10:23 2010 +0000 - - HHH-5441 - Create "Getting Started Guide" - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20152 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 54ae3b1dae1205cbba44a8c660fda6987b6543b7 -Author: Steve Ebersole -Date: Mon Aug 16 18:42:39 2010 +0000 - - HHH-5441 - Create "Getting Started Guide" - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20151 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 5c8aa8b2922ae955cd8a59c810051b1b5e9b018f -Author: misty -Date: Mon Aug 16 06:43:06 2010 +0000 - - File naming error - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20150 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 1ec99eab12cad7c5178788145439c77ae54efde2 -Author: misty -Date: Mon Aug 16 06:39:11 2010 +0000 - - Adding CDATA to the XML examples - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20149 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit c4e630364a7594832ae2486307b7f021c19ed433 -Author: misty -Date: Sun Aug 15 23:30:30 2010 +0000 - - Line edits regarding HHH-5441 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20148 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 916a6ecb3e1a01c9cace3dcb7a60a7368a5188d0 -Author: misty -Date: Sun Aug 15 23:30:03 2010 +0000 - - Line edits regarding HHH-5441 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20147 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 4857ccd3692547b807cd833a0f6ffd81e9894ccd -Author: Steve Ebersole -Date: Sun Aug 15 15:51:53 2010 +0000 - - HHH-5466 - Create "Developer Guide" - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20146 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 2fc6a49ce8e08724b849aa279e736a7f77e6f1ac -Author: Steve Ebersole -Date: Sun Aug 15 15:45:21 2010 +0000 - - HHH-5479 - Upgrade jDocBook plugin to 2.3.0 - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20145 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit f31242f7698ab9ff1701c1d72ab5e508437426ce -Author: Steve Ebersole -Date: Sun Aug 15 15:36:50 2010 +0000 - - HHH-5441 - Create "Getting Started Guide" - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20144 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit b621e682d75d68b8e2f2ff10669c17d60e7a5521 -Author: Steve Ebersole -Date: Fri Aug 13 22:29:41 2010 +0000 - - HHH-5426 - HQL update/delete does not invalidate the query cache - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20143 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 36c471e57941d22e3134d8519659946797ec5c2b -Author: Steve Ebersole -Date: Fri Aug 13 20:21:07 2010 +0000 - - HHH-5300 - Configurable QueryPlanCache reference counts (Manuel Dominguez Sarmiento) - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20141 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 8a0a4a249c431550b63bda8767dd174e2d477b9e -Author: Steve Ebersole -Date: Fri Aug 13 16:46:02 2010 +0000 - - HHH-5449 - Versioned HQL update might issue incorrect SQL - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20140 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit f81847111565021502cb291518c91daeb2390737 -Author: Steve Ebersole -Date: Fri Aug 13 16:32:46 2010 +0000 - - HHH-5477 - Introduce StandardBasicTypes for standard basic type constants - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20138 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 5decc1449264576d56fa64cc9c7999114d3be78e -Author: Steve Ebersole -Date: Fri Aug 13 13:15:52 2010 +0000 - - HHH-5441 - Create "Getting Started Guide" - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20137 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit f0f82e4f1ba7416ef010d5d71914a2bbde7fc22f -Author: Steve Ebersole -Date: Thu Aug 12 19:13:48 2010 +0000 - - HHH-5474 - Clean up usages of now deprecated ExtendedMappings - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20136 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 74eb608be6e926bc77bb60b7279b08f9c67c691e -Author: Steve Ebersole -Date: Thu Aug 12 17:01:49 2010 +0000 - - HHH-5300 - Configurable strong and soft reference QueryPlanCache sizes - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20135 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 31ef7e5f7aaf38fc1a49f4ad95f76bd7969dfc3e -Author: Steve Ebersole -Date: Wed Aug 11 20:37:49 2010 +0000 - - HHH-5468 - Write a chapter about setting up database access - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20134 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 6003d708b07f9941ce0cc51ab1060bd35366d4a0 -Author: Steve Ebersole -Date: Wed Aug 11 19:18:05 2010 +0000 - - HHH-5466 - Create "Developer Guide" - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20133 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 13ca84e6c41f214626094e70908ff30b505a026d -Author: Steve Ebersole -Date: Wed Aug 11 16:06:22 2010 +0000 - - HHH-5442 - Create a "quick start" guide - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20132 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 8c9c64b1eb30e3d66de7b7f828d21cce28dffce2 -Author: Steve Ebersole -Date: Tue Aug 10 20:57:50 2010 +0000 - - HHH-5442 - Create a "quick start" guide - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20131 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 609a8d15c278b30ea35212dfa576da556f8aa7d8 -Author: Steve Ebersole -Date: Mon Aug 9 19:56:25 2010 +0000 - - HHH-5451 - deprecate cglib as bytecode provider - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20130 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 43537cf45ecab8bc3fb408943276dcf1d5773662 -Author: Steve Ebersole -Date: Fri Aug 6 22:00:52 2010 +0000 - - HHH-5438 - Skip deployment of "irrelevant" modules - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20119 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 99b111d613f222723ba090d67487a5745adfd1ef -Author: Steve Ebersole -Date: Fri Aug 6 21:34:44 2010 +0000 - - HHH-5442 - Create a "quick start" guide - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20118 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 8329e0e3c50199fd4c55acbde1207c5456dfd492 -Author: Steve Ebersole -Date: Thu Aug 5 15:52:56 2010 +0000 - - HHH-5439 - Deployment of site.xml - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20116 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 00a1085b7c9ab8128aa804077af594f76bdb1ccf -Author: Steve Ebersole -Date: Wed Aug 4 15:53:09 2010 +0000 - - Updating pom versions to 3.6.0-SNAPSHOT for release tagging - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20114 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 7ccd26144494faadd6fede36e302b55b160d3311 -Author: Steve Ebersole -Date: Wed Aug 4 15:52:39 2010 +0000 - - Updating pom versions to 3.6.0.Beta2 for release tagging - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20112 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit ddcc4abf475261b6976da07ca7ba0d0423f6c63f -Author: Steve Ebersole -Date: Wed Aug 4 15:49:30 2010 +0000 - - prep 3.6.0.Beta2 release - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20111 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit bb3bf3e0124686e60e87937c94e6c8cdc588d347 -Author: Strong Liu -Date: Wed Aug 4 13:55:54 2010 +0000 - - HHH-5349 CriteriaHQLAlignmentTest fails with an error running with the Ingres dialect - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20110 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 4813b1973bc31555f21fbbec5d2f7c78e3db653b -Author: Strong Liu -Date: Wed Aug 4 13:41:58 2010 +0000 - - HHH-5435 Add identity column support to the Ingres10Dialect - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20107 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 7a7d3d8daf06a60eed9cffdb9549d0574d55a865 -Author: Strong Liu -Date: Tue Aug 3 12:23:30 2010 +0000 - - HHH-5355 org.hibernate.test.id.uuid.sqlrep.sqlchar.UUIDCharTest errors with IngresDialect - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20103 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 2e5a338dd62a315cfb20fd0353ab0857adf9aceb -Author: Galder Zamarreno -Date: Tue Aug 3 11:27:04 2010 +0000 - - [HHH-5431] (Infinispan's CacheAdapterImpl.putAllowingTimeout not using silent flag) Added fail silently flag. - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20100 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit dc6fe99c370c23c2019f4b01b2f7ce36b3e1f983 -Author: Sanne Grinovero -Date: Mon Aug 2 21:19:55 2010 +0000 - - HHH-5259 Invalid reflection optimization configuration property name in Hibernate documentation - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20098 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 217898d8aa8455c99e6b0146279afe9b8e80d9e5 -Author: Steve Ebersole -Date: Mon Aug 2 18:51:45 2010 +0000 - - HHH-5212 - Alter SQLFunction contract to be more flexible - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20097 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit fbe7d325e264e7f927f086f4abebbdd2bd2393e4 -Author: Gail Badner -Date: Fri Jul 30 21:28:15 2010 +0000 - - HHH-2510 HHH-4011 : Override hashCode and equals() in AliasToBeanResultTransformer and make serializable - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20093 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 3ecbfeb2b2945c2707e0c490c483ff5e2e40e386 -Author: Steve Ebersole -Date: Fri Jul 30 20:02:23 2010 +0000 - - HHH-5375 - Merge AnnotationConfiguration into Configuration - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20092 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit ef46a4efb77a7028500801a9db2a2c398e7e6b7f -Author: Gail Badner -Date: Fri Jul 30 03:03:41 2010 +0000 - - HHH-5424 HHH-5425 : Put ResultTransformer in QueryKey only if data is transformed; PropertyAccessException when caching 1 result per row - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20078 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit baa9e9854a8ded188f85a6937ec2dea5e284c9e3 -Author: Emmanuel Bernard -Date: Thu Jul 29 17:31:57 2010 +0000 - - Rename 'JBoss' to 'JBoss AS' - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20076 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 4d9e5c12c7938957c480e3f5cbbfbe4a7d677e68 -Author: Emmanuel Bernard -Date: Thu Jul 29 17:31:28 2010 +0000 - - HHH-5423 Provide a JBoss TS TransactionManagerLookup implementation for standalone (non JNDI) usage - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20075 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 7689d5e33cfbd2d2209a298da41d1451f86abc25 -Author: Gail Badner -Date: Wed Jul 28 18:55:13 2010 +0000 - - HHH-5163 : added logging and test cases for ClassCastException when caching transformed query results - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20074 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 7e5bae6660c17748b05d8327cbffc59b513c206d -Author: Strong Liu -Date: Tue Jul 27 16:17:42 2010 +0000 - - HHH-5420 introducing new dialect for ms sql server 2008 with jdbc 3.0 and above - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20073 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 84c52c457dcfbe2788dbf74d04a305d7a7326fdd -Author: Steve Ebersole -Date: Mon Jul 26 20:03:49 2010 +0000 - - HHH-5400 - Blob persistence fails with Hibernate 3.6.0-SNAPSHOT, works with 3.5.3-Final - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20070 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 9dff7187449d4d0c012d4393a50dc042c3c72fca -Author: Steve Ebersole -Date: Mon Jul 26 17:25:47 2010 +0000 - - HHH-5416 - upgrade to h2 1.2.140 - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20069 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 94b394f58dac693f1c46037ecd7acd692041df00 -Author: Steve Ebersole -Date: Mon Jul 26 16:53:33 2010 +0000 - - HHH-5415 - org.hibernate.type.descriptor.java.DataHelper dumping "NClob not found" exception to stderr - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20068 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 33f05cd48796650a6e751890c228a44534419c68 -Author: Steve Ebersole -Date: Mon Jul 26 16:47:20 2010 +0000 - - HHH-5400 - Blob persistence fails with Hibernate 3.6.0-SNAPSHOT, works with 3.5.3-Final - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20067 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 01ba27d700023a7cd00369b3e89fce3e8b854bf7 -Author: Steve Ebersole -Date: Fri Jul 23 17:41:08 2010 +0000 - - HHH-5246 - Addition of withClause for DetachedCriteria (Shawn Clowater) - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20028 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 434dba63e48ba75348ed171059dc9c7e7b2fc510 -Author: Steve Ebersole -Date: Fri Jul 23 17:35:55 2010 +0000 - - HHH-5296 - AbstractFromImpl::getJoin() shall return empty set, not null - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20027 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 1252346e762d09a3677d8ea784e0e8dc98d25685 -Author: Steve Ebersole -Date: Fri Jul 23 17:24:15 2010 +0000 - - HHH-5283 - Add BasicType handling of java.net.URL - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20025 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 537f135ee17afa505848a31004e491d1c01401db -Author: Steve Ebersole -Date: Fri Jul 23 17:15:54 2010 +0000 - - HHH-5295 - Rendered JPAQL query shall be the same all the times, aliases shall not have random indexes - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20024 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit c508fd265236cbaeafe315c50e7f1a4c3e06ec43 -Author: Steve Ebersole -Date: Fri Jul 23 17:00:19 2010 +0000 - - HHH-5283 - Add BasicType handling of java.net.URL - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20022 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit d10415dafe5ec99c4d60d73aa12ca373826aaef0 -Author: Emmanuel Bernard -Date: Fri Jul 23 16:42:36 2010 +0000 - - HHH-5408 Change wording on "What is hibernate-jpa-2.0-api-x.y.z.jar" to suit Oracle - - Lance asked us to adjust some details on how we use the word TCK. Basically better not use the word, it's too complicated :( - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20021 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 6cd8f776f90c2ffa15d906cb2fa3946e2d417d1b -Author: Steve Ebersole -Date: Fri Jul 23 16:38:57 2010 +0000 - - HHH-5401 - Update to HHH-5381 HSQLDB new dialect (Fred Toussi) - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20019 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 4f34ef69079d56c426a4a4ca7f1bfaac410e7e16 -Author: Steve Ebersole -Date: Fri Jul 23 16:33:39 2010 +0000 - - HHH-5331 - Remove reflection calls on SessionFactory for JDK 1.5 detection in relation to Statistics - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20017 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit f0bda99d6889a0e5f1a56cbd3b9591332fc39408 -Author: Steve Ebersole -Date: Thu Jul 22 20:40:12 2010 +0000 - - HHH-5097 - Bug in ParameterizedFunctionExpression with two or more parameters: IllegalArgumentException - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20016 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit fff88d21823558a512ee885c08c98d6c6cb59b75 -Author: Steve Ebersole -Date: Thu Jul 22 20:23:08 2010 +0000 - - HHH-3908 - Expose way to fully control fetching and result mapping on SQLQuery - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20014 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit be6042d8fe22854772fc474fdacd911264d48951 -Author: Gail Badner -Date: Thu Jul 22 19:52:43 2010 +0000 - - HHH-2350 : second-level cache broken for non-inverse bidirectional one-to-many relation - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20013 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit ca051ab83486d3fdd106b72b243de2cea6a294fd -Author: Steve Ebersole -Date: Wed Jul 21 20:35:55 2010 +0000 - - Updating pom versions to 3.6.0-SNAPSHOT for release tagging - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20001 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 173817e56af1b0abe5827494d03e21466a6a739b -Author: Steve Ebersole -Date: Wed Jul 21 20:35:16 2010 +0000 - - Updating pom versions to 3.6.0.Beta1 for release tagging - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19999 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 198956f3c91c643d0657b2dd2fb80692210dd3b5 -Author: Steve Ebersole -Date: Wed Jul 21 20:24:04 2010 +0000 - - prep 3.6.0.Beta1 release - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19998 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 5d742087ac33be68f0524b33182410105407bbde -Author: Steve Ebersole -Date: Wed Jul 21 19:23:21 2010 +0000 - - HHH-5181 - Merge hibernate-annotations module code into hibernate-core - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19997 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 6b8d49ca828f87d631a9b467e097f3c55b22fdaa -Author: Steve Ebersole -Date: Wed Jul 21 19:04:40 2010 +0000 - - HHH-5381 - HSQLDB new dialect (Fred Toussi) - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19996 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 7f815de1a7c955671f78afb209b4044fae0d231b -Author: Steve Ebersole -Date: Wed Jul 21 17:31:09 2010 +0000 - - HHH-3001 - The NoopOptimizer is not thread safe - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19994 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 48a5e04caa06cfdcd36df1900d640fe9433fe4b5 -Author: Steve Ebersole -Date: Wed Jul 21 06:00:52 2010 +0000 - - HHH-5397 - Odds and ends from documentation merge : fixed rendering issue - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19991 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 0303d887613b5c7942498c7c4c52add6b95da48f -Author: Steve Ebersole -Date: Wed Jul 21 05:44:34 2010 +0000 - - HHH-5397 - Odds and ends from documentation merge - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19989 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit f7af0da1ce966add52acdf4a0ff115bebffb25fc -Author: Steve Ebersole -Date: Wed Jul 21 05:39:40 2010 +0000 - - HHH-5397 - Odds and ends from documentation merge : architecture.xml - removed duplicated discussion of object states - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19988 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 1d434437d55f6c08fb2b6b1fb1ef85b9893856d5 -Author: Steve Ebersole -Date: Wed Jul 21 05:33:45 2010 +0000 - - HHH-5397 - Odds and ends from documentation merge : had types.xml in wrong position - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19986 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit d7443d751785d32ff93ad975ce54673fbea90f9b -Author: Steve Ebersole -Date: Wed Jul 21 05:27:58 2010 +0000 - - HHH-5397 - Odds and ends from documentation merge : architecture.xml + POT and PO - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19983 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 5857f0dfc5f3a3783faf0fe97b1f59cc8d648c55 -Author: Steve Ebersole -Date: Wed Jul 21 04:36:05 2010 +0000 - - HHH-5397 - Odds and ends from documentation merge : types.xml + POT and PO - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19982 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 2e284f628723883379e8f82b137fc5296d448e71 -Author: Steve Ebersole -Date: Wed Jul 21 04:34:02 2010 +0000 - - HHH-5397 - Odds and ends from documentation merge : types.xml + POT and PO - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19981 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit b9540230a0d7a6ce21c70f1c66a9c685856cb945 -Author: Steve Ebersole -Date: Wed Jul 21 01:13:45 2010 +0000 - - HHH-5397 - Odds and ends from documentation merge : initial POT and PO synchs - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19980 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 57e91ccacb780f8a0275dbb5d2526e200987dbeb -Author: Steve Ebersole -Date: Wed Jul 21 01:11:34 2010 +0000 - - HHH-5397 - Odds and ends from documentation merge : initial POT and PO synchs - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19979 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 249127b8c0c94d9a6e381afa2d0d7c6a6151a513 -Author: Steve Ebersole -Date: Wed Jul 21 00:58:10 2010 +0000 - - HHH-5397 - Odds and ends from documentation merge : persistent_classes.xml - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19978 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 17261e1e06ecb3ef437ba613311656855979422d -Author: Adam Warski -Date: Tue Jul 20 12:45:55 2010 +0000 - - HHH-5395: - - fixing the Lobs test, calculating the type name correctly - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19977 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 77a75a94b50d80d4a6e41c279448fc768d94b9ca -Author: Gail Badner -Date: Tue Jul 20 01:22:12 2010 +0000 - - HHH-2269 : Many-to-one cascade fails with TransientObjectException if inverse collection is CascadeType.DELETE_ORPHAN - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19969 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 7293187a0187539eea7fce40de46f5bf585740bf -Author: Gail Badner -Date: Mon Jul 19 22:09:56 2010 +0000 - - HHH-3334 : Added FailureExpected test for Cascade-save breaks if parent ID is assigned (delays insert) and child has identity ID (early insert) - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19967 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 0b1c720ef6a056f2e20345c68e7ebef1220bb6fa -Author: Hardy Ferentschik -Date: Fri Jul 16 20:53:11 2010 +0000 - - HHH-5389 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19964 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 12bf2c4ec63da0192c0f8bddfc83a306309e6ca2 -Author: Hardy Ferentschik -Date: Fri Jul 16 19:46:12 2010 +0000 - - HHH-5153 Added @Filter and @FilterDef to filtering chapter - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19963 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 1dd65401f3373c7eebb9313a3c426affc186a3ff -Author: Steve Ebersole -Date: Fri Jul 16 19:04:26 2010 +0000 - - HHH-5384 - HEM should not register its own Synchronization - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19962 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 207a95a49ac420fdfa94ad329787ecadd15724ac -Author: Hardy Ferentschik -Date: Fri Jul 16 15:27:49 2010 +0000 - - HHH-5388 Added annotation documentation for named (native) queries, tuplizers and fetch profiles - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19961 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 01a0729cf3e867abae9b8bba38680496da1725e4 -Author: Hardy Ferentschik -Date: Fri Jul 16 15:24:32 2010 +0000 - - HHH-5155 Added additional modules as chapter 22 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19960 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 457f2a9d6021c37a70600dc65764793c005602f7 -Author: Gail Badner -Date: Thu Jul 15 23:47:32 2010 +0000 - - HHH-5267 : Added FailureExpected test for updating one-to-one mapped as delete-orphan while detached - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19959 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 03f6f7fdd85a8923534f88cdca6f9bbbdb4bc345 -Author: Hardy Ferentschik -Date: Thu Jul 15 15:58:43 2010 +0000 - - HHH-5380 Added annotations in the cache configuration mix - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19956 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 6a2d5753821bba8a1adbe510a07a3bb4293b980b -Author: Hardy Ferentschik -Date: Wed Jul 14 19:31:59 2010 +0000 - - HHH-5379 Added CascadeTypes for annotations - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19954 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 741ff6c53e061258d7841f4697c5242efff29585 -Author: Steve Ebersole -Date: Wed Jul 14 18:59:15 2010 +0000 - - HHH-5382 - Upgrade to slf4j 1.6 - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19953 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 04983c2528e531a125dfa83ffb29f5d67be8e941 -Author: Steve Ebersole -Date: Wed Jul 14 18:44:11 2010 +0000 - - HHH-5374 - Upgrade to H2 version 1.2.139 - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19952 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit f49096641f0bddf4f43e9286d34112107a40036a -Author: Steve Ebersole -Date: Tue Jul 13 16:53:46 2010 +0000 - - HHH-5375 - Move AnnotationConfiguration-added methods to Configuration and deprecate AnnotationConfiguration - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19944 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 29c16a5ff382858ef6f8ad14e26810cd76ab5b1a -Author: Hardy Ferentschik -Date: Tue Jul 13 13:55:32 2010 +0000 - - HHH-5150 Added the properties hibernate.id.new_generator_mappings and hibernate.cache.default_cache_concurrency_strategy to the configuration poroperties section - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19942 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 22131bd2e52e26544c27c905a5177156c5990e6d -Author: Hardy Ferentschik -Date: Tue Jul 13 10:40:39 2010 +0000 - - HHH-4945 - * Removed obsolete testcase EJB3TestCase. - * Removed obsolete FlushTest (not clear what it really tested) - * Updated GetLoadTest and MergeTest to depend on ejb TestCase - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19941 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit e197d208b6c24ff1c5660b5652cee0cd85d8123e -Author: Steve Ebersole -Date: Sun Jul 11 22:16:38 2010 +0000 - - HHH-5373 - Better account for SQLWarnings in temp table creation - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19931 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 21b68ef40f8e55366bea309ed41d32c31e27d272 -Author: Steve Ebersole -Date: Sat Jul 10 13:48:34 2010 +0000 - - HHH-5370 - Building IN condition with CriteriaBuilder providing collection of values not working. - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19930 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit b50d8268d50b5f48b89e94c9c74949e1a7e77e1a -Author: Adam Warski -Date: Sat Jul 10 12:48:19 2010 +0000 - - HHH-5315: - - work units executed both in the before tx completion process and in the synchronization - - each test class has its own H2 database - - tests in a JTA environment - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19928 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 8ff871941daaff0c2a6572f58a58fd35f3e687b2 -Author: Steve Ebersole -Date: Fri Jul 9 18:03:11 2010 +0000 - - HHH-5367 - Move annotations module sources into core module - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19927 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit e12bb146b45c9b0d1a8db7023b6b78b1966cb163 -Author: Steve Ebersole -Date: Fri Jul 9 17:55:59 2010 +0000 - - HHH-5366 - Move annotations module tests into testsuite module - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19926 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 3e4b274cee61d6acaa31af57ac3547865b229de1 -Author: Steve Ebersole -Date: Fri Jul 9 17:52:47 2010 +0000 - - HHH-5366 - Move annotations module tests into testsuite module - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19925 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit df184979ed2f19887bbea46603148dd59d3bfd1f -Author: Steve Ebersole -Date: Thu Jul 8 23:56:18 2010 +0000 - - HHH-5367 - Move annotations module sources into core module - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19922 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 1ca2bc19a5f667e10f9a2c2b10320b9c40921563 -Author: Steve Ebersole -Date: Thu Jul 8 23:41:23 2010 +0000 - - HHH-5367 - Move annotations module sources into core module - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19921 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit cc3b41a09c983913594b16d6c909be0bfd41bd7a -Author: Steve Ebersole -Date: Thu Jul 8 17:32:44 2010 +0000 - - HHH-5357 - Rename hibernate-testing packages - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19920 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 3a3dd1f1cce2d3c00695558e89cd94e41cbca5e1 -Author: Steve Ebersole -Date: Thu Jul 8 16:11:34 2010 +0000 - - HHH-4240 - SecondaryTables not recognized when using JOINED inheritance (missed declaring Company entity) - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19919 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 76cc4c27e4d6e0cecafc0e5c71dd9656057a062f -Author: Galder Zamarreno -Date: Thu Jul 8 14:08:58 2010 +0000 - - [HHH-5362] (Upgrade trunk to latest Infinispan 4.1) Updated to 4.1.0.CR1. - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19918 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit cb2993cfbb1798593e5e481befb9b68c8427a78f -Author: Hardy Ferentschik -Date: Thu Jul 8 09:49:37 2010 +0000 - - HHH-5334 Fixed bug in MetaDataCache.findMember - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19917 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit d40d1edb094b0629ef5b2faedf0b157ef76f6bf5 -Author: Steve Ebersole -Date: Wed Jul 7 20:30:20 2010 +0000 - - cleanup unused directories - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19913 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit f1b9e38bee9372d50a38ab8e751c7578698f2d62 -Author: Steve Ebersole -Date: Wed Jul 7 20:02:06 2010 +0000 - - cleaned up unused directory - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19912 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 2075bfc425c2c5f941cd2ff8ad520e1a0be893b8 -Author: Steve Ebersole -Date: Wed Jul 7 20:00:04 2010 +0000 - - HHH-5358 - Merge jmx module back into core - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19911 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 30f384d2243503165db6171278e59ead960ae341 -Author: Steve Ebersole -Date: Wed Jul 7 19:39:23 2010 +0000 - - HHH-5357 - Rename hibernate-testing packages - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19910 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 7697640089a7ae805ce7f4cc6c9ae258d7c70be0 -Author: Sharath Reddy -Date: Wed Jul 7 14:05:01 2010 +0000 - - HHH-4240 - SecondaryTables not recognized when using JOINED inheritance - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19908 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 80b082086ea076f5d32ea7eed20f178b95df2189 -Author: Galder Zamarreno -Date: Mon Jul 5 17:36:04 2010 +0000 - - [HHH-5260] (Allow query region name specific eviction settings) Ported to trunk. - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19901 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 6e57774e42dcb936d6d89e6f99869532656aecbe -Author: Adam Warski -Date: Mon Jul 5 17:04:29 2010 +0000 - - HHH-4716: - - applying patch - thanks to Hernan Chanfreau! - - supporting the entity-name concept of Hibernate - when guessing from the class name doesn't work - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19899 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 41ca853f367ffce9c7f738fe6c4f709c0ef93073 -Author: Sharath Reddy -Date: Sun Jul 4 19:47:28 2010 +0000 - - HHH-4250 : @ManyToOne - @OneToMany doesn't work with @Inheritance(strategy= InheritanceType.JOINED) - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19895 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit f9f20312418edb90b8768c5ea4f4d3b50381421c -Author: Sharath Reddy -Date: Sun Jul 4 19:44:44 2010 +0000 - - HHH-4250 : @ManyToOne - @OneToMany doesn't work with @Inheritance(strategy= InheritanceType.JOINED) - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19894 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit bf9ef75d061824228e21f030232945626a22d260 -Author: Adam Warski -Date: Fri Jul 2 12:57:18 2010 +0000 - - HHH-3764, HHH-3765: - documentation - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19891 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit baba9f5ea8321d855014ac78b83310c2e68d8d7c -Author: Hardy Ferentschik -Date: Fri Jul 2 08:54:15 2010 +0000 - - HHH-5317 Updated the hibernate-validator dependency to 4.1.0.Final. Added a profile to EM which will add the jaxb classes in case the build is using java 5. HV 4.1.0.Final now uses the provided scope for the jaxb depdencies - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19890 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit f7c7c55e2a1cc34556d8e39b457547e94d92a658 -Author: Adam Warski -Date: Fri Jul 2 06:32:13 2010 +0000 - - HHH-3764: - - adding an end-revision column to the audit entities if the appropraite strategy is used - - HHH-3765: - - filling in the end-revision column on audited entities changes - - - applying patch by Stephanie Pau - thanks! - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19888 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit db16c3f29aa465a5c1f99dfa1fa5c73711fdac6d -Author: Hardy Ferentschik -Date: Wed Jun 30 11:50:41 2010 +0000 - - HHH-5149 Reviewing the collection mapping chapter - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19859 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 41b09cb0f93f909d19d89096a359f0949adaa44e -Author: Strong Liu -Date: Tue Jun 29 08:54:06 2010 +0000 - - HHH-4156 c3p0 is not used when only specific hibernate.c3p0.* properties - and code style format - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19855 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 58a3499c4e167fe318b36ba58f174c4c00e5c033 -Author: Strong Liu -Date: Tue Jun 29 07:24:22 2010 +0000 - - HHH-5213 Add native SQL Boolean type to Ingres10Dialect - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19852 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit ef977f37c648da1b29e822706b8db328735a9589 -Author: Strong Liu -Date: Tue Jun 29 07:07:39 2010 +0000 - - HHH-5336 a few typo fixes - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19851 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit c6d51a1993f22d2355a46c328210f163d7a5d205 -Author: Strong Liu -Date: Tue Jun 29 06:52:24 2010 +0000 - - correct typo in the javadoc - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19848 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit c251637ed6ee7e13859c443b79f35b4e94b387ff -Author: Strong Liu -Date: Tue Jun 29 06:51:14 2010 +0000 - - HHH-3659 statistics: Execution time of a query - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19847 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit e7a5de444c86111db9738165ad21c92584387146 -Author: Strong Liu -Date: Mon Jun 28 09:47:17 2010 +0000 - - HHH-5340 Typo in tutorial at web site - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19829 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 505e7eeacbc84a3dc1a59cbe28377b87cf32b517 -Author: Strong Liu -Date: Thu Jun 24 09:50:07 2010 +0000 - - HHH-4568 Sybase - Test BatchTest fails due to 'unexpected row count from update' - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19819 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit d8a70268b828ccab9bb7fcb1a809499cceb98253 -Author: Strong Liu -Date: Thu Jun 24 06:31:48 2010 +0000 - - HHH-5272 Typo in tutorial at web site - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19817 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 80b0d4d93e6acd501ddf4546cf9a53a7ec8506b4 -Author: Emmanuel Bernard -Date: Wed Jun 23 22:33:43 2010 +0000 - - Clean import statements - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19806 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 11b3b8430877733b8d3939ab0d2b46da64b73067 -Author: Emmanuel Bernard -Date: Wed Jun 23 22:33:24 2010 +0000 - - HHH-5337 Documentation for hibernate.hbm2ddl.import_files - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19805 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit fe92f840721d13dd25609e5e1500755afb8261cc -Author: Emmanuel Bernard -Date: Wed Jun 23 22:33:00 2010 +0000 - - HHH-5337 support for comma-separated multi-files imports - - hibernate.hbm2ddl.import_files=[filename],[filename2],... - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19804 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 5aad112e03346ee7ad508d5acc7be5067146f843 -Author: Emmanuel Bernard -Date: Wed Jun 23 22:32:15 2010 +0000 - - HHH-5337 Allow Customization of DML import file name - - hibernate.hbm2ddl.import_file=[filename] - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19803 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit ffe92dacfad674c20f03cc14336de2689cf1c899 -Author: Emmanuel Bernard -Date: Wed Jun 23 14:54:25 2010 +0000 - - HHH-5329 Consider NoClasDefFoundError as a sign of not having Java 5 and concurrent package - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19798 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit e7dce75a9f84c24a73693171fcf4c3e05348f664 -Author: Galder Zamarreno -Date: Tue Jun 22 23:52:38 2010 +0000 - - [HHH-5332] (JndiInfinispanRegionFactory cannot be instantiated) Fixed. - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19784 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 03c182e14d21566e80816e2baea6c102c9f72ed9 -Author: Strong Liu -Date: Tue Jun 22 16:54:54 2010 +0000 - - HHH-5323 correct jdbc driver version for testing - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19783 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 41c0622e83bf0e03cdf6af65e0ef604cce29fed2 -Author: Hardy Ferentschik -Date: Tue Jun 22 16:36:45 2010 +0000 - - HHH-5149 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19782 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 795199863924e1edfe2511c3fb551d8e0dd05c50 -Author: Strong Liu -Date: Sun Jun 20 19:55:55 2010 +0000 - - HHH-5342 Testes fail on mysql - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19775 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit e6862c0be0b8eda6c8211ec2a12c68eafb418cf0 -Author: Emmanuel Bernard -Date: Fri Jun 18 16:40:00 2010 +0000 - - HHH-5319 Add more tests on @OneToMany @JoinTable unidirectional - - In particular, test delete of the owning object wo the associated objects - and clean up properly after the test. - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19766 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 7e9ddb926a01e9210c384ea605966c6b5213808a -Author: Hardy Ferentschik -Date: Fri Jun 18 15:40:14 2010 +0000 - - HHH-5318 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19765 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 704503eea233afa7a10e1796e038e9b3402cd118 -Author: Adam Warski -Date: Wed Jun 16 18:06:57 2010 +0000 - - HHH-5288: - - applying patch by Erik-Berndt Scheper - thanks! - - Envers auditReader.find() returns wrong data for embedded components using fields with default values - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19750 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit ef90b00b148e74f985926b1c4110d4eb8aa45318 -Author: Hardy Ferentschik -Date: Wed Jun 16 10:43:40 2010 +0000 - - HHH-5281 apply @Length ddl constraints (without loading HV classes) - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19747 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit c0e94443b1841a5dd229194c7b8c9fe69789be51 -Author: Hardy Ferentschik -Date: Tue Jun 15 14:53:17 2010 +0000 - - HHH-5094 applied some changes as on 3.5 branch - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19740 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 6d9c10deab1c8c5d8fc9455b5ee754566c032558 -Author: Gail Badner -Date: Tue Jun 15 02:44:40 2010 +0000 - - HHH-5195 : FilterImpl.validate() throws NullPointerException on deserialization - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19730 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 3c57a05313b3932b11797d85a345710c51cd4032 -Author: Gail Badner -Date: Tue Jun 15 02:15:54 2010 +0000 - - HHH-5195 : FilterImpl.validate() throws NullPointerException on deserialization - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19728 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 182ee2f34efd041fc4e94c18aa0d1b196a2e6d26 -Author: Gail Badner -Date: Tue Jun 15 02:15:05 2010 +0000 - - HHH-5195 : FilterImpl.validate() throws NullPointerException on deserialization - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19727 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 06f9e60a0ad9b6b93429b7fac8113f9443fb161c -Author: Steve Ebersole -Date: Mon Jun 14 18:59:10 2010 +0000 - - HHH-3579 - Support for PostgreSQL UUID data type - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19726 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 55de9e8e5f2e4296eb703191e25ddde60a209106 -Author: Hardy Ferentschik -Date: Mon Jun 14 12:34:32 2010 +0000 - - HHH-5149 Updated collection mapping to take annotatons into consideration - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19725 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 0fe85c11947c50c5df55d0f755b6ec72d37022a7 -Author: Gail Badner -Date: Mon Jun 14 05:19:07 2010 +0000 - - HHH-5220 : Unit tests related to HHH-5063 and HHH-5135 fail on DB2 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19723 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 9e6d8be37608cd41b40e3c2d60ebd7062cdbdb6a -Author: Gail Badner -Date: Mon Jun 14 04:27:40 2010 +0000 - - HHH-5220 HHH-5231 : Fix unit test failures and DB lockups for SELECT COUNT(DISTINCT arg1, arg2) tests - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19722 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit c53359d4685358f9423f3a73220dd7eee24462c6 -Author: Gail Badner -Date: Sun Jun 13 22:19:34 2010 +0000 - - HHH-5251 : NativeSQLQueryReturn impls pre-cache a final hashcode based on non-final fields - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19721 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit cd304f83cf84e621f885e45d6d81cddf9d209d74 -Author: Steve Ebersole -Date: Fri Jun 11 20:07:05 2010 +0000 - - HHH-5098 - AssertionFailure thrown when collection contains a parameterized type - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19719 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit e630fde1aa1d3f07d35271c7d5659cbdf5162a56 -Author: Strong Liu -Date: Fri Jun 11 18:13:13 2010 +0000 - - HHH-4036 EntityMetamodel entityNameByInheritenceClassNameMap field used inconsistently - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19717 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 1cec58314de72d9168bf56679bbe57a034d70134 -Author: Strong Liu -Date: Fri Jun 11 16:41:14 2010 +0000 - - typo in the entitymanager doc - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19716 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit d77d703ebe5cc1514fd1dc59cd11431304a3ddc7 -Author: Emmanuel Bernard -Date: Thu Jun 10 16:22:34 2010 +0000 - - HHH-5149 Reorganise sections of basic O/R mappings - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19713 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 10fc436d8a8fdbeab46ed47e22b1c8614d504711 -Author: Emmanuel Bernard -Date: Thu Jun 10 16:21:56 2010 +0000 - - HHH-5149 Add documentation for to one associations sharing primary keys - - Move shared orthogonal options like lazy / eager fetching to the super section - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19712 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 79161977748233850292f1e306bc296bd9c3a309 -Author: Emmanuel Bernard -Date: Thu Jun 10 16:21:22 2010 +0000 - - HHH-5149 Add documentation for to one associations with foreign key - - Describe foreign key and association table options. - Describe various configurations like fetch lazy and co. - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19711 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 74a5e4b4055a00c8bcdd6a0ef7621eb2e13f94ba -Author: Emmanuel Bernard -Date: Thu Jun 10 16:20:43 2010 +0000 - - HHH-5149 fix text not wrapping up in html rendering - - Was due to a itemizedlist embedded in a para - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19710 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 1eaf80e3a94511186485bd6806e8f6ff072fe9f2 -Author: Emmanuel Bernard -Date: Thu Jun 10 16:13:06 2010 +0000 - - HHH-5148 add JAVA role to a programlisting - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19709 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit b58d3be7dcdef0561a79afed389f5bec2507e9f6 -Author: Emmanuel Bernard -Date: Thu Jun 10 16:12:27 2010 +0000 - - HHH-5149 remove typo - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19708 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 3766cea7c248af3248ea94a98e250f7de5692527 -Author: Adam Warski -Date: Wed Jun 9 08:52:22 2010 +0000 - - * always adding a nested type mapping, if there are type properties; not only in case of instances of CustomType - * simplifying the basic generator because of the new type hierarchy - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19703 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit f0df563982bb98fcebf895b7bd28643b21808ceb -Author: Adam Warski -Date: Tue Jun 8 07:15:42 2010 +0000 - - svn merge -r 19697:19698 https://svn.jboss.org/repos/hibernate/core/branches/envers-hibernate-3.3 . - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19699 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit e6d7d62bc0707c86e91bd73adad9f2a37ce31a68 -Author: Strong Liu -Date: Sat Jun 5 14:14:58 2010 +0000 - - HHH-5294 declare source files encoding to utf-8 to avoid maven warning - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19695 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit e4eed4c7e5e3da008459436b4ce44a8973eb29ee -Author: Emmanuel Bernard -Date: Wed Jun 2 14:50:48 2010 +0000 - - HHH-5286 Add test on scanner with intergration map being null - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19667 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 41bb1776194fc41ffbb67091c8d5f710e64e8ed0 -Author: Emmanuel Bernard -Date: Wed Jun 2 13:17:23 2010 +0000 - - HHH-5286 Scanner instances can now be passed in the integration map - - The Scanner builder was only considering the scanner key from the properties - not the integration map and hence never handled instances. Now fixed. - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19665 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 5af328cb4ad3d5a87731078f724fdb5d329025c2 -Author: Steve Ebersole -Date: Wed Jun 2 05:15:54 2010 +0000 - - HHH-5262 - Allow UserType and CompositeUserType to be registered with BasicTypeRegistry - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19649 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 3dd364c71605b7cd755cd5e716bff491da7de5ed -Author: Emmanuel Bernard -Date: Tue Jun 1 23:23:40 2010 +0000 - - HHH-5268 Add documentation for uuid and uuid2 identifier generators - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19648 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 94f5659503819cfdf070fcf3666b78b5a43823c2 -Author: Steve Ebersole -Date: Tue Jun 1 19:16:50 2010 +0000 - - HHH-3579 - Support for PostgreSQL UUID data type - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19647 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 7aa8449788db052c020784353156e64b8afa0df8 -Author: Steve Ebersole -Date: Tue Jun 1 18:34:12 2010 +0000 - - HHH-5268 - Support for java.util.UUID properties/generators - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19646 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 41b2416be4d41731be4bb4c930b8a965d5a215bf -Author: Hardy Ferentschik -Date: Mon May 31 10:48:08 2010 +0000 - - HHH-5233 Fixed implementation for multiple fetch profiles overrides. Cleaned up pom. - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19634 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 087f2b567ac1845bf1bd52973472e408104f12bb -Author: Hardy Ferentschik -Date: Fri May 28 14:21:57 2010 +0000 - - HHH-5204 Aligned the properties of SkipForDialect, RequiresDialect and RequiresDialectFeature - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19627 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 9409685386c9e091dbb30adfc6b2caf6de51e2f1 -Author: Hardy Ferentschik -Date: Thu May 27 18:44:57 2010 +0000 - - HHH-5004 Fixed problems in PropertyContainer and added some more comments. Cleaned up some code in InheritanceState - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19626 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit cd6cf45eb9a289a1647383c65154ca988f2d21db -Author: Steve Ebersole -Date: Wed May 26 22:27:27 2010 +0000 - - HHH-4868 - Upgrade to Javassist 3.12.0.GA - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19625 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 6d01dd07b029ac0b4f9ad091c852d94e4feac608 -Author: Steve Ebersole -Date: Wed May 26 22:08:33 2010 +0000 - - HHH-2268 - Skip bridge methods during getter determination (JDK Bug 5062759) - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19624 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 39c75a50c6f4d645f76b5d31859bd657b5f06ab8 -Author: Steve Ebersole -Date: Wed May 26 21:31:54 2010 +0000 - - HHH-4147 - Eager Bidirectional association with @ManyToOne in PK lead to infinite loop - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19623 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 3af3e38b53f01d9366e47306ab8e2f737fddc5cd -Author: Emmanuel Bernard -Date: Wed May 26 16:22:31 2010 +0000 - - HHH-5149 mark multiple mapping of the same entity as XML only - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19622 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 3c9c1c598f2083367c989bf8b9d8cc9d7abd9989 -Author: Emmanuel Bernard -Date: Wed May 26 16:21:56 2010 +0000 - - HHH-5149 Merge doc for generated properties and quoted elements - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19621 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit c906bc9780b2d3341a90707f17c1b7a9272908a4 -Author: Emmanuel Bernard -Date: Wed May 26 16:21:22 2010 +0000 - - HHH-5149 remove alternative mapping section - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19620 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 89b2659331050749226e427cc12f6426ab2ffbef -Author: Emmanuel Bernard -Date: Wed May 26 16:20:43 2010 +0000 - - HHH-5149 Merge embedded object / component documentations - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19619 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 7c5f43737e797d2ec9ad1a7976e5a15e0f29a6e8 -Author: Emmanuel Bernard -Date: Wed May 26 16:20:08 2010 +0000 - - HHH-5149 merge natural id documentation - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19618 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit d5e59832f2bce23916e22e98cf010c1e74c21dd9 -Author: Emmanuel Bernard -Date: Wed May 26 16:19:35 2010 +0000 - - HHH-5149 Merge section with annotations own construct - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19617 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 74874857d4638cdc9240f68111e799d870fe98a2 -Author: Emmanuel Bernard -Date: Wed May 26 16:19:02 2010 +0000 - - HHH-5149 move xml specific constructs to its dedicated section - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19616 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit f50d19fc7c4e98ad28abb3c22f6e3166841009fc -Author: Emmanuel Bernard -Date: Wed May 26 16:18:28 2010 +0000 - - HHH-5149 Merge @Any documentation - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19615 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit a0edae6efae7f3c2383a334492d013beaf315c02 -Author: Emmanuel Bernard -Date: Wed May 26 16:17:33 2010 +0000 - - HHH-5149 Merge property documentation - - I've decided to keep the split because the annotation concepts are layered fairly differently than - the xml ones on properties. - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19614 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit f42826502b632052b20553a1eb211aadb54b95ab -Author: Emmanuel Bernard -Date: Wed May 26 16:16:55 2010 +0000 - - Fix typo on doc - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19613 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit c952c87ab42204cf980f526841ba864d6feb4dc6 -Author: Steve Ebersole -Date: Wed May 26 15:54:28 2010 +0000 - - HHH-5263 - Improve preface - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19612 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 21af0d0146dcf847df75dab831253d66340e30e6 -Author: Hardy Ferentschik -Date: Wed May 26 11:09:16 2010 +0000 - - HHH-5147 Applied patch and removed obsolete code and comments - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19611 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit db5b3a4c0aa398868a94cdaa79018889c37d8d4d -Author: Steve Ebersole -Date: Tue May 25 20:45:26 2010 +0000 - - HHH-5263 - Improve preface - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19609 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit a05dc9066a9c36b79ebdf9bad6753d28e0ac890d -Author: Steve Ebersole -Date: Tue May 25 19:07:43 2010 +0000 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19607 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 30ea7142e868c3b94e41f492a7b9a4d19d0a8019 -Author: Emmanuel Bernard -Date: Tue May 25 13:08:22 2010 +0000 - - HHH-5258 isLoaded and superclasses and private properties now works - - Use getDeclaredField and getDeclaredMethod, use the whole class hierarchy - and use a cache to speed up both class hierarchy - and property to Member computation - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19601 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 66ef8d95c59417256cd417374ef76f2e2636a1dd -Author: Emmanuel Bernard -Date: Tue May 25 13:07:42 2010 +0000 - - HHH-5258 add tests on isLoaded and superclasses and private properties - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19600 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 85e15cfbdf3964643e1e3fa98f636a3e9dc7d02a -Author: Emmanuel Bernard -Date: Tue May 25 13:06:51 2010 +0000 - - Typo in test - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19599 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 0d7932c748b1bdd6991e558a53aa6383176375ec -Author: Steve Ebersole -Date: Fri May 21 21:20:36 2010 +0000 - - HHH-5253 - TableHiLoGenerator does not increment hi-value any more when lo-range es exhausted - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19586 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit ddac59851351235542591b8006c1b1b4575e0f58 -Author: Steve Ebersole -Date: Fri May 21 19:38:04 2010 +0000 - - HHH-3050 - Convert usage of Hibernate's FastHashMap to ConcurrentHashMap (Java 1.5) - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19584 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 96664aeb2f667780de685b5766a0768f3effdc19 -Author: Steve Ebersole -Date: Fri May 21 17:57:21 2010 +0000 - - HHH-5200 - Prepare to use H2 as the default testing datbase - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19583 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 06f13dd4dc08397f53cfe5dc62d976e007519122 -Author: Steve Ebersole -Date: Fri May 21 06:56:48 2010 +0000 - - account for last H2 failure on core. - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19580 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit c0361d566bafb624348cd7448fe03934826ed01b -Author: Steve Ebersole -Date: Fri May 21 04:26:21 2010 +0000 - - account for more failures on h2 (only 1 more!) - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19574 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 78c8c6fb6a5e2f6ac759c3e599c0fed73c0a1aa4 -Author: Steve Ebersole -Date: Thu May 20 21:55:28 2010 +0000 - - HHH-5248 - Introduce CompositeType interface (to replace AbstractComponentType interface) - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19572 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 5aa6ad61ca54fddaf96b01bb5b724ffccba02f6f -Author: Steve Ebersole -Date: Thu May 20 20:37:56 2010 +0000 - - HHH-5245 - Introduce LobHelper - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19571 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit d06e11092dcfc98585f25dbce7395e75b4d0c4e3 -Author: Steve Ebersole -Date: Thu May 20 20:19:34 2010 +0000 - - HHH-5245 - Introduce LobHelper - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19570 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 5c7f4ee712b786e8ec3b484ce8ecc0ef2b80c62b -Author: Steve Ebersole -Date: Thu May 20 05:45:33 2010 +0000 - - HHH-2277 - bidirectional both lazy=false fetch=join lead to infinite loop - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19564 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 460cbf8d9605ae5e135896e9b77a07ce1ce68cfe -Author: Steve Ebersole -Date: Thu May 20 05:37:43 2010 +0000 - - HHH-2277 - bidirectional both lazy=false fetch=join lead to infinite loop - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19563 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit a58e1ef1974691b2ab75f0ad1f27ff78e4411c63 -Author: Emmanuel Bernard -Date: Tue May 18 07:59:51 2010 +0000 - - Minor JavaDoc typo - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19538 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit e1d6d7cb196ca9a84137387f6bf0c2eb49628e6b -Author: Emmanuel Bernard -Date: Tue May 18 07:14:20 2010 +0000 - - HHH-5233 Add @FailureExpected - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19537 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 76059f0215dc2ab69be886934f1ac69aad82c838 -Author: Emmanuel Bernard -Date: Tue May 18 07:12:45 2010 +0000 - - HHH-5233 revert incorrect pom.xml change - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19536 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 58fa9e2e0ff518530b35b08685114d1395db7ae5 -Author: Emmanuel Bernard -Date: Tue May 18 07:05:32 2010 +0000 - - HHH-5233 add test on @FetchProfile and multiple @FetchOverride - Clean some more - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19535 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 3d988c6a6ded8199d9d6fda1ce854ab849fa20df -Author: Steve Ebersole -Date: Mon May 17 15:39:55 2010 +0000 - - HHH-5230 - Regresion! @SequenceGenerator with allocationSize=1 fails Other allocationSizes appear to be decremented by 1 - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19530 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit b0b674d34177f5a5bab150972d01eca53dc096bc -Author: Emmanuel Bernard -Date: Mon May 17 14:29:28 2010 +0000 - - HHH-5149 documentation for versioning - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19529 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 3015c64556229003225c6edebeb2f0db9165556a -Author: Emmanuel Bernard -Date: Mon May 17 14:28:55 2010 +0000 - - HHH-5233 add test on @FetchProfile and multiple @FetchOverride - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19528 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 84f0b00bc6dac379631e91a1a0eab901c0ecaff3 -Author: Gail Badner -Date: Sun May 16 21:33:05 2010 +0000 - - HHH-5231 HHH-5220 : Fixes for DB2 and PostgreSQL unit tests - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19526 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 7690f9a493e65d939027bb9a2237151a8b340e20 -Author: Steve Ebersole -Date: Sat May 15 13:08:24 2010 +0000 - - Fixed problem in hibernate-core test run because of H2 driver not being on classpath - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19522 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 6de4dc800f460741c8496f5b8995f1af1d4d2242 -Author: Strong Liu -Date: Sat May 15 08:37:30 2010 +0000 - - HHH-3220 Patch to prevent org.hibernate.AssertionFailure: possible non-threadsafe access to the session error caused by stateless sessions - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19518 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit dceb92d4a5a5dc0943f249c2d61097905f7318c9 -Author: Steve Ebersole -Date: Wed May 12 20:45:00 2010 +0000 - - HHH-5042 - TableGenerator does not increment hibernate_sequences.next_hi_value anymore after having exhausted the current lo-range - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19488 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 2c2717013b7fbc46a02cf7fd04496b908aca7957 -Author: Steve Ebersole -Date: Wed May 12 19:51:26 2010 +0000 - - HHH-5138 - Redesign types + introduce TypeRegistry & TypeResolver - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19484 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit a9ba811baf2241ac1fba697e9be82a4ef7ae4233 -Author: Steve Ebersole -Date: Wed May 12 19:48:43 2010 +0000 - - HHH-5138 - Redesign types + introduce TypeRegistry & TypeResolver - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19483 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit b0708314a91a200041f4362943d8de1bd47a443d -Author: Steve Ebersole -Date: Wed May 12 18:27:16 2010 +0000 - - HHH-5218 - Provide a new "pooled value" based optimizer which interprets the database value as the low boundary instead of upper boundary - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19481 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 5211f298f85a5d9964c62b925907495b6dfa7d3e -Author: Steve Ebersole -Date: Wed May 12 15:13:47 2010 +0000 - - HHH-5217 - Minimize double sequence value reads in PooledOptimizer - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19478 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 1a722dfd97dc693b557a5b9e61b2b753ee4511e5 -Author: Adam Warski -Date: Wed May 12 06:25:42 2010 +0000 - - Making it clear that a revision entity must be mapped - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19473 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit ad8e4340deea9fa8e6a54b1a66eaf3baac954619 -Author: Gail Badner -Date: Wed May 12 02:27:56 2010 +0000 - - HHH-1574 : AbstractEntityPersister.getNaturalIdentifierSnapshot doesn't work with many-to-one ids (Alex Burgel) - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19472 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit ef24b0f5565473740da7a2e3423ea7c43b198f77 -Author: Steve Ebersole -Date: Tue May 11 19:27:20 2010 +0000 - - HHH-5042 - TableGenerator does not increment hibernate_sequences.next_hi_value anymore after having exhausted the current lo-range - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19470 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit c875076103e91518d803fad1b6560f442ec67ed5 -Author: Steve Ebersole -Date: Tue May 11 15:08:54 2010 +0000 - - HHH-4966 - Entity Manager bug with ParameterExpressionImpl - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19467 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 8e76bf9648aaacd7ba726b4c8cf15c2d0827caf7 -Author: Strong Liu -Date: Tue May 11 01:41:38 2010 +0000 - - HHH-5210 Query Cache effective only after closing the session that created the cache - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19462 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 8749ae600abea48243c9a1ff49527eb09bc4e29a -Author: Gail Badner -Date: Tue May 11 00:49:20 2010 +0000 - - HHH-3799 : Added test for PersistentSet does not honor hashcode/equals contract when loaded eagerly - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19461 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 36a2ef26998ac982f97f818577d6f7ab07be4749 -Author: Gail Badner -Date: Mon May 10 22:18:47 2010 +0000 - - HHH-5078 : JPA criteria query numeric expressions produce wrong result (due to wrong bracketing) - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19458 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit bb8f915859900c8ee11228cfc199dc9cb66f7b3e -Author: Steve Ebersole -Date: Mon May 10 21:48:24 2010 +0000 - - HHH-5200 - Prepare to use H2 as the default testing datbase - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19456 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 4ed976e4ba6f59ea5d08833e33ff39449a323382 -Author: Steve Ebersole -Date: Mon May 10 21:26:04 2010 +0000 - - Added javadocs comments wrt postgresql and BLOB handling - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19455 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 77fba4df7037b0f448a6424aede338c8df7ce1ce -Author: Steve Ebersole -Date: Mon May 10 19:41:53 2010 +0000 - - HHH-5173 - hql - average returns double but looses the decimal part - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19453 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 14bdaec5e75bded557e8410d818a7b77308dd80b -Author: Gail Badner -Date: Mon May 10 18:34:22 2010 +0000 - - HHH-5207 : Unexpected exception occurs during refresh of a detached immutable entity - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19451 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 9d93984ca1248c5f83ba816c035c9d994dd724c4 -Author: Steve Ebersole -Date: Mon May 10 12:29:29 2010 +0000 - - HHH-5006 - hibernate.globally_quoted_identifiers=true and Annotations tests - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19447 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 111125eb6e9094309e8481112c2ba29e06c52ae7 -Author: Strong Liu -Date: Mon May 10 10:34:18 2010 +0000 - - HHH-5208 Oracle 11g R2 RAC - Test SequenceIdentityTest fails because first value of sequence is "2" - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19445 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 19c1d56cca4bc1ba659ac0d8b1fddfee793f5557 -Author: Strong Liu -Date: Mon May 10 09:31:20 2010 +0000 - - HHH-5211 no need to create a schema first when run this test org.hibernate.test.sql.hand.custom.db2.DB2CustomSQLTest - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19441 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 9b9d7998011c0051a3349596bd9da55f1e36227b -Author: Sharath Reddy -Date: Sun May 9 18:28:33 2010 +0000 - - HHH-4647 Problems with @JoinColumn referencedColumnName and quoted column and table names - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19433 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 91cbdb8177f2e0f42f2186ae43015327eb4f823d -Author: Sharath Reddy -Date: Sun May 9 18:19:56 2010 +0000 - - HHH-4647 Problems with @JoinColumn referencedColumnName and quoted column and table names - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19432 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit b4fa90a58b1ceda572d899f4a6a40337ab1024a8 -Author: Steve Ebersole -Date: Sat May 8 21:58:15 2010 +0000 - - HHH-5200 - Prepare to use H2 as the default testing datbase - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19429 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 413666f293c59664880c83487ecd0739a8fd3132 -Author: Steve Ebersole -Date: Sat May 8 03:34:05 2010 +0000 - - HHH-5200 - Prepare to use H2 as the default testing datbase - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19412 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit cb51ef1a64c2a7f601b8a05f7f1718110c110615 -Author: Steve Ebersole -Date: Fri May 7 20:53:34 2010 +0000 - - HHH-5135 - "Ambiguous column" exception thrown with columns having the same name as a function registered with the dialect (e.g. to_date, floor) - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19411 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 8f4401349f909e3f6f4c28ed960041c5f95bda74 -Author: Emmanuel Bernard -Date: Fri May 7 15:36:30 2010 +0000 - - HHH-5149 documentation for versioning - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19407 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 12d44898a5eb254a42ec73024dd2fb0c7be1bcd0 -Author: Hardy Ferentschik -Date: Fri May 7 15:13:09 2010 +0000 - - HHH-5204 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19406 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 1a8a602e3cfef584993e4845a289ccd7c8400176 -Author: Hardy Ferentschik -Date: Fri May 7 13:46:32 2010 +0000 - - HHH-5204 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19405 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 0884b16946e81d33dd015a2957d551c59a9daf9c -Author: Gail Badner -Date: Thu May 6 19:08:18 2010 +0000 - - HHH-5135 : 'Ambiguous column' with columns having the same name as a registered function - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19392 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 60c280441b4e08a4f51c5b9c8f07175c74396c0c -Author: Steve Ebersole -Date: Thu May 6 17:41:24 2010 +0000 - - HHH-5182 - Inject SessionFactory into "non-basic" Types - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19391 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit c8a5adf3278412d9ddac356dcbf45553828074da -Author: Steve Ebersole -Date: Thu May 6 16:23:13 2010 +0000 - - HHH-5138 - Redesign types + introduce TypeRegistry & TypeResolver - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19389 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit b023244c12aa994365434291b1dbcb7a39d4895d -Author: Steve Ebersole -Date: Thu May 6 16:12:24 2010 +0000 - - HHH-5200 - Prepare to use H2 as the default testing datbase - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19388 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 884cbbde0661e330390b76a647ced5bbf530eed7 -Author: Steve Ebersole -Date: Thu May 6 14:53:09 2010 +0000 - - HHH-3377 - Update H2Dialect to use DECIMAL SQL type instead of NUMERIC - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19387 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit b20523cc8a78b678d47e244af337917fbfad4287 -Author: Steve Ebersole -Date: Thu May 6 13:34:06 2010 +0000 - - HHH-5182 - Inject SessionFactory into "non-basic" Types - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19385 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 7c27fc9f2a5d5bafbba535a6fdafdfbde046b453 -Author: Steve Ebersole -Date: Thu May 6 02:36:12 2010 +0000 - - HHH-5182 - Inject SessionFactory into "non-basic" Types - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19376 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 190f2c99d54ad5bcd40dd702e15cc8460c1a94cd -Author: Steve Ebersole -Date: Thu May 6 01:31:34 2010 +0000 - - HHH-5182 - Inject SessionFactory into "non-basic" Types - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19375 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit e1acc33bb6b5899ed771904f97b2694cb9b6d6aa -Author: Steve Ebersole -Date: Thu May 6 01:05:26 2010 +0000 - - HHH-5182 - Inject SessionFactory into "non-basic" Types - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19374 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 3dce2f17de031421ba72e325b1fe2d729484f4b1 -Author: Emmanuel Bernard -Date: Wed May 5 17:51:27 2010 +0000 - - HHH-5149 add @o.h.a.T description in @SecondaryTable - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19372 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 19a1656446019ed97d23f733f38affc1d3af00fb -Author: Adam Warski -Date: Wed May 5 10:06:47 2010 +0000 - - HHH-5191: Applying patch by Hernan Chanfreau - - CollectionMetadataGenerator failed to obtain mappedBy attribute when is defined on superclasses - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19371 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 23db0f4de038392b8d240c8c784b151ceb70895c -Author: Emmanuel Bernard -Date: Tue May 4 16:29:05 2010 +0000 - - HHH-5149 convert inheritance sections - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19362 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 84410df4f5598cf74959153c6b6d94d3b70544b1 -Author: Strong Liu -Date: Tue May 4 12:09:03 2010 +0000 - - update ci management url - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19358 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit bcb48f2d156385976e37cd5c5e7b006eb068e3c8 -Author: Strong Liu -Date: Mon May 3 16:17:08 2010 +0000 - - HHH-5186 update db profiles id and jdbc properties' name to use dballocator - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19356 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit c6c32411865a2fcf1e441d43ce909857f78b6971 -Author: Strong Liu -Date: Mon May 3 15:46:50 2010 +0000 - - HHH-5186 update db profiles id and jdbc properties' name to use dballocator - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19353 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 7bb82f2376177567690d1d239e379151fff22d9c -Author: Strong Liu -Date: Mon May 3 14:33:56 2010 +0000 - - HHH-5186 update db profiles id and jdbc properties' name to use dballocator - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19351 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 67046b19d75315e2ffe421f9534808c690543f1e -Author: Sharath Reddy -Date: Mon May 3 13:47:33 2010 +0000 - - HHH-3694 ResultTransformer not used when scroll() is used on a named SQLQuery - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19350 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit e13821624dffc2497110fddde1180aa53a39dfa8 -Author: Sharath Reddy -Date: Mon May 3 13:45:20 2010 +0000 - - HHH-3694 ResultTransformer not used when scroll() is used on a named SQLQuery - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19349 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit bdc83cb2e611c7954f95532ef10e31133f6ad905 -Author: Steve Ebersole -Date: Mon May 3 00:04:27 2010 +0000 - - HHH-5138 - Redesign types + introduce TypeRegistry & TypeResolver - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19345 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 8bc9bbf098644441bc2771b7b4d3db10fb016543 -Author: Strong Liu -Date: Sun May 2 14:36:40 2010 +0000 - - can't open jira for now, the change of this commit only changes the methond of testRowValueConstructorSyntaxInInList, instead of transaction commit, here i changed it to rollback, since this may cause other test fails (org.hibernate.NonUniqueResultException: query did not return a unique result: 3) - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19342 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit c0cb52711a63913cf4df42523c036821b5cb4798 -Author: Steve Ebersole -Date: Sat May 1 20:43:43 2010 +0000 - - HHH-5064 - OrderBy string getting dumped to console on session factory creation (Shawn Clowater) - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19337 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 5ad3ac1295d58104c69e82dca4d017154a067f99 -Author: Steve Ebersole -Date: Sat May 1 20:32:48 2010 +0000 - - HHH-5138 - Redesign types + introduce TypeRegistry & TypeResolver - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19336 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 421789ddcd906e806bf901fea9d9e713daebd51a -Author: Steve Ebersole -Date: Sat May 1 18:20:26 2010 +0000 - - HHH-5138 - Redesign types + introduce TypeRegistry & TypeResolver - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19335 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 4c764f0294c41df649000c4220bf56ceb077b206 -Author: Emmanuel Bernard -Date: Fri Apr 30 15:53:27 2010 +0000 - - HHH-5149 finish identifier and generator documentation - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19330 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 3fa50710ca4fcbcdfea63f9d658b04d3fbc463b5 -Author: Gail Badner -Date: Thu Apr 29 21:23:51 2010 +0000 - - HHH-5178 : Unit tests in org.hibernate.test.immutable fail on mssql and sybase due to keyword used for table and column name - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19325 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit ec2c07d7963cbd9802513169b9cbd415b9b5aea0 -Author: Strong Liu -Date: Thu Apr 29 02:44:58 2010 +0000 - - correct snapshot group id - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19321 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 57ab192b1b20e8d6670acbc014b95909b45f0f12 -Author: Sharath Reddy -Date: Wed Apr 28 18:01:12 2010 +0000 - - HHH-5171 Allow usage of standalone @JoinFormula annotation - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19320 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 1286804335df5096421d16eb0b5aa77ffe69c192 -Author: Gail Badner -Date: Wed Apr 28 17:54:43 2010 +0000 - - HHH-4957 HHH-3096 : Fix COUNT( DISTINCT ...) for single and multiple arguments - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19319 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 95de10caf073af1912095de28f0b02bdc70f8202 -Author: Emmanuel Bernard -Date: Wed Apr 28 16:25:52 2010 +0000 - - HHH-3005 allow nested in - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19316 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 1c556dc775708706b6ca84251cb170d3c46f729f -Author: Gail Badner -Date: Wed Apr 28 04:32:00 2010 +0000 - - HHH-4991 ; ManyToMany table not joined due to max_fetch_depth parameter, results to SQL exceptions - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19312 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 3c2ecd8afaac4d4c5a8ea210d8eeb0a5cea2b49b -Author: Strong Liu -Date: Tue Apr 27 08:40:55 2010 +0000 - - HHH-4773 @CollectionId does not force the id column to not-null - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19309 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit b912a95d5422d6ce91c8b89aecb6b3923626e9c7 -Author: Sharath Reddy -Date: Tue Apr 27 08:38:27 2010 +0000 - - HHH-5109 @OneToOne - too many joins - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19308 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 96783f2a7aba95dc78d29cdc1d6b5195d9a0f2f4 -Author: Strong Liu -Date: Tue Apr 27 08:26:14 2010 +0000 - - HHH-4773 revert changes - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19305 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 9d1ce4e4864f63e37c74cc35799e1b67806b83ea -Author: Emmanuel Bernard -Date: Mon Apr 26 18:16:39 2010 +0000 - - HHH-5149 start converting the id section with new functional structure - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19296 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit bc1acf702863519d3d8a2c2282b08d2285cb7a3e -Author: Scott Marlow -Date: Mon Apr 26 17:49:26 2010 +0000 - - HHH-5032 upgrade from optimistic to optimistic force does not work - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19295 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 0ff854cabd72f0d38bd3125b9caf555e59569e76 -Author: Emmanuel Bernard -Date: Mon Apr 26 16:21:26 2010 +0000 - - HHH-5162 Deprecate @Entity.mutable in favor of @Immutable - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19294 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit ce82b844dd23a9c166177a73b8561dc1a2a026f5 -Author: Strong Liu -Date: Mon Apr 26 02:03:34 2010 +0000 - - HHH-4773 @CollectionId does not force the id column to not-null - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19291 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 593064b71f01dd51520bd95e5b0bc5d24b31b1ce -Author: Emmanuel Bernard -Date: Fri Apr 23 17:09:47 2010 +0000 - - HHH-5152 @Entity description - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19286 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 7dbbebbce7806c41883d38bd9966dfdcd945aafb -Author: Emmanuel Bernard -Date: Fri Apr 23 17:04:00 2010 +0000 - - Better JavaDoc - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19285 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit bf2dab5479ec1b98ca4a2fd956bdbc65650c1935 -Author: Emmanuel Bernard -Date: Thu Apr 22 17:20:04 2010 +0000 - - HHH-5149 start injecting annotations in mapping section - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19283 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 7d19150a27f624c149024f6577bd6b4ed19ac1af -Author: Strong Liu -Date: Thu Apr 22 04:35:00 2010 +0000 - - HHH-5145 Update pom to use the new distributationManagement information - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19276 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 75781d3d025259a16b33279b5fc16921f5889c14 -Author: Strong Liu -Date: Thu Apr 22 04:32:52 2010 +0000 - - HHH-5144 Dont restrict on jdk5 in hibernate core development - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19275 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 52495816de02f456ef5e1be4d451226509759f29 -Author: Emmanuel Bernard -Date: Wed Apr 21 13:37:39 2010 +0000 - - HHH-4968 Do not activate Bean Validation listeners when only DDL is requested (Vladimir Klyushnikov). - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19267 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit ccadc9a406c702278b87753926c64b3bd5868a3c -Author: Emmanuel Bernard -Date: Wed Apr 21 13:26:17 2010 +0000 - - HHH-4968 do not activate Bean Validation listeners when only DDL is requested. - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19266 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 6cb0bd96adfc4d217459e7a75994c372d638b893 -Author: Steve Ebersole -Date: Wed Apr 21 13:11:29 2010 +0000 - - HHH-5139 - Increase minimum language level from 1.4 to 1.5 - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19265 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 37d40d4aa49e7438c94d0a62033ca90ba3175a2b -Author: Steve Ebersole -Date: Wed Apr 21 01:58:27 2010 +0000 - - [maven-release-plugin] prepare release Branch_3_5 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19256 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 1cffea4092949fb25951bd56f2ca5ae8ae896aad -Author: Steve Ebersole -Date: Wed Apr 21 01:56:46 2010 +0000 - - [maven-release-plugin] prepare branch Branch_3_5 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19254 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit f2bca0eef7230701f4ed86a7c263fccc93159bbe -Author: Strong Liu -Date: Sat Apr 17 16:03:49 2010 +0000 - - HHH-5131 SchemaExport drop fails if constraint names change - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19243 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 422ecc653a7d78ee0464478750a076710b697849 -Author: Emmanuel Bernard -Date: Fri Apr 16 10:11:32 2010 +0000 - - HHH-5125 Raise proper exception when @Entity and @MappedSuperclass are present on the same class - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19241 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 5da56b788181660674439d717db80b0024b73658 -Author: Emmanuel Bernard -Date: Thu Apr 15 09:37:36 2010 +0000 - - HHH-5069 update setup sections to reflect new distribution packages. - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19240 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 4470ebcd4d8eb6eaf0cca49e156343e0b29e3a6d -Author: Steve Ebersole -Date: Wed Apr 14 20:54:44 2010 +0000 - - Updating pom versions to 3.5.2-SNAPSHOT for release tagging - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19238 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 9a5dfa9ff836cc8169ef7c81060b7dac2589e3f9 -Author: Steve Ebersole -Date: Wed Apr 14 20:54:13 2010 +0000 - - Updating pom versions to 3.5.1-Final for release tagging - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19236 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 479f4ee4af86d18b7ff0d3ec1850ceedee31fc68 -Author: Steve Ebersole -Date: Wed Apr 14 20:50:42 2010 +0000 - - prepare 3.5.1 release - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19235 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 1a33e2c780fa1d515d255f62cda6de1b4e5d718b -Author: Steve Ebersole -Date: Wed Apr 14 20:47:48 2010 +0000 - - correction to aggregated javadocs build - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19234 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 3f92dbb9a91eb5aa16f168cf70648b0290fd5397 -Author: Steve Ebersole -Date: Wed Apr 14 18:08:37 2010 +0000 - - HHH-4965 - Implicit parameters abusively use TypeFactory.heuristicType losing UserType and XToOneType info - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19233 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit c47267d3bbb72fcbd476b23fafcbed3dfe19ad9a -Author: Steve Ebersole -Date: Wed Apr 14 16:27:11 2010 +0000 - - HHH-5059 - callouts and programlistings with highlighting - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19232 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 2b4acb916e7f058c47e2828de1c68d4bcfed6aab -Author: Emmanuel Bernard -Date: Wed Apr 14 15:06:26 2010 +0000 - - HHH-5116 Remove copyrighted fonts from annotations - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19231 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 1ea84a198bd1f13d0adff047132118926e9ca8db -Author: Gail Badner -Date: Wed Apr 14 11:59:06 2010 +0000 - - HHH-2470 : added test case for use of session.createSQLQuery causes memory leak - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19229 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit dd05ba2811be90558108b68dfab4d68c73046215 -Author: Gail Badner -Date: Wed Apr 14 11:12:19 2010 +0000 - - HHH-2470 : Use of session.createSQLQuery causes memory leak - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19228 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 5ff99eabbf5bfdeab47c305911a33ebba75b0157 -Author: Gail Badner -Date: Tue Apr 13 18:24:16 2010 +0000 - - HHH-5104 : EntityType.isEqual() tests x equals x; should test x equals y (Thierry-Dimitri Roy) - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19227 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 23dfa3f264ee6160c7044eaa5e8b0b904d28a5e1 -Author: Steve Ebersole -Date: Tue Apr 13 18:16:23 2010 +0000 - - HHH-5083 - Align javadoc styles better with docbook / website - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19226 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 84477a781668e4471ad038ae1e2d574aae6736d0 -Author: Emmanuel Bernard -Date: Tue Apr 13 16:31:21 2010 +0000 - - HHH-4077 add test for naming strategy in hbm files - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19225 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit bd9e6b19693d57df3fee0ba7f05d44ef87c04e54 -Author: Emmanuel Bernard -Date: Tue Apr 13 14:58:16 2010 +0000 - - Clean import - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19221 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 7323ab98767c286bd80b0333210d0ffce3f16aae -Author: Steve Ebersole -Date: Tue Apr 13 14:01:54 2010 +0000 - - HHH-5102 - Instances of a subclass can't be loaded - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19220 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 38be092aae150aae19197c0360e2405cc9fb7770 -Author: Emmanuel Bernard -Date: Tue Apr 13 13:35:38 2010 +0000 - - HHH-5106 add support for SQL Named Typed-Query - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19219 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit d4de388e61d9f2597cf60b666dd17bfe643c5161 -Author: Strong Liu -Date: Tue Apr 13 08:51:33 2010 +0000 - - HHH-5103 Specifying the referencedColumnName in a @JoinColumn in backtics like fails - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19218 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 780666b65aaf0d1b348638160c0f6ccd5e152bde -Author: Gail Badner -Date: Mon Apr 12 18:21:12 2010 +0000 - - HHH-1804 HHH-5096 : FetchingScrollableResultsImpl throws SQLException when empty; last() does not move cursor if it is after last - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19217 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 643ecc8060d317728c10aa241097377d61f70460 -Author: Sanne Grinovero -Date: Fri Apr 9 07:37:38 2010 +0000 - - minor javadoc typos - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19195 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 77618423371ecafd2ec3cfee5ce203af526dd39a -Author: Strong Liu -Date: Fri Apr 9 04:39:44 2010 +0000 - - HHH-5002 testQuery in org.hibernate.test.legacy.FooBarTest errors running with Ingres dialect - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19194 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit a2196cbdc65d31ad7f17293ecd106a2510152add -Author: Strong Liu -Date: Fri Apr 9 03:30:29 2010 +0000 - - HHH-4912 testManyToManyWithFormula induces error with Ingres dialect - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19193 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit d2e8d1429bac39e49bb60ec3f0a2a110705bc6b0 -Author: Gail Badner -Date: Thu Apr 8 00:24:12 2010 +0000 - - HHH-5063 HHH-5082 : Invalid projections when alias is same as property name; QueryException thrown when grouping by component - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19183 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 835ae2c0bfbbf6bdf2c4ea2d9d1b7619d02cb1c4 -Author: Steve Ebersole -Date: Wed Apr 7 22:46:58 2010 +0000 - - HHH-3997 - Build javadocs - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19182 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit d4295cc604555c06ed4f2db8cd846f0e47ec04ec -Author: Adam Warski -Date: Tue Apr 6 20:35:15 2010 +0000 - - HHH-3543: using BeforeTransactionCompletionProcess instead of a transaction synchronization. That way exceptions are not swallowed if one is thrown in the audit synchronization/process, and the tx is rolled back - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19180 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 8403e128f685b79b7f5d5c96ad7c72f0fb9ee152 -Author: Gail Badner -Date: Tue Apr 6 18:17:40 2010 +0000 - - HHH-5076 HHH-4810 : Revert back to DataPoint.hbm.xml version that fixed HHH-4908 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19177 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 6d1e51a26dc337e163e0fe73d262c34a66449b55 -Author: Strong Liu -Date: Mon Apr 5 14:08:35 2010 +0000 - - HHH-5045 org.hibernate.test.hql.HQLTest failure running testConcatenation with Ingres - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19170 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 004c4f240f3ebd178bd5638ec8ed2e5af3a4ef1c -Author: Strong Liu -Date: Mon Apr 5 14:08:04 2010 +0000 - - HHH-5045 org.hibernate.test.hql.HQLTest failure running testConcatenation with Ingres - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19169 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 42cd240d2aa22d3dc7e8257929ecef23a0cae90b -Author: Strong Liu -Date: Mon Apr 5 13:37:52 2010 +0000 - - HHH-5003 IngresDialect requires query substitutions for boolean values - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19168 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 9417775d11654039d925acd74b748be2cfd66093 -Author: Strong Liu -Date: Mon Apr 5 13:29:17 2010 +0000 - - HHH-4976 Ingres 9.3 does not support sub-selects in the select list. - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19167 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 2f12bc10ee6bb01a3fffa5f170fd9b257a027be8 -Author: Strong Liu -Date: Mon Apr 5 13:27:47 2010 +0000 - - HHH-4977 Ingres 9.3 does not support sub-selects in the select list. - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19166 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 7123491afe8b80094abd0f1b8fcf6965f550d48c -Author: Strong Liu -Date: Mon Apr 5 13:24:54 2010 +0000 - - HHH-4961 HHH-4970 HHH-4973 skip some tests that ingres does not support this syntax - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19165 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 6fdc0c0c69941f8f1f020cce087aca021d64a391 -Author: Steve Ebersole -Date: Wed Mar 31 17:39:24 2010 +0000 - - Updating pom versions to 3.5.1-SNAPSHOT for release tagging - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19149 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit adffa641730838d0335a9436f2a9a520a9758184 -Author: Steve Ebersole -Date: Wed Mar 31 17:38:40 2010 +0000 - - Updating pom versions to 3.5.0-Final for release tagging - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19147 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 1bc93364fb09672ec6ae8e7817851f386d7a360c -Author: Steve Ebersole -Date: Wed Mar 31 16:42:52 2010 +0000 - - HHH-5058 - Include hibernate-jpa-2.0-api (JPA 2 API) in release bundle - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19146 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit bd1a05ac935d133e72d374797778017f7a4bbcf9 -Author: misty -Date: Wed Mar 31 00:52:35 2010 +0000 - - Propagaged changes for JIRA HHH-5047 - - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19142 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit bec1835baf0c6e200169fb1598f1b2eaedb407d0 -Author: Steve Ebersole -Date: Tue Mar 30 19:36:43 2010 +0000 - - HHH-4870 - Cannot determine java-type from given member [null] - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19141 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 54d496295e36ddd242029635fe36cb05ff4b73e1 -Author: Strong Liu -Date: Tue Mar 30 13:15:29 2010 +0000 - - HHH-5049 org.hibernate.test.legacy.ParentChildTest error running testLoadAfterNonExists with Ingres - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19140 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 2451e5f31dded24157ca27fe923e582b870725fb -Author: Emmanuel Bernard -Date: Tue Mar 30 10:11:40 2010 +0000 - - Add comment on why some settings use the org.hibernate prefix while others don't - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19139 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 3de7cb68ad61a7761e2a01a809c513504861ffb8 -Author: misty -Date: Tue Mar 30 03:24:37 2010 +0000 - - Fixed some DOS line endings which were breaking the jDocBook build - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19138 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 9f617a1969b9d0b02c41be0058b7c08a1bdfe7ce -Author: Steve Ebersole -Date: Tue Mar 30 01:37:23 2010 +0000 - - HHH-4870 - Cannot determine java-type from given member [null] - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19137 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit fe7d83566cb1428c02e72929c354f168093c2fd1 -Author: Gail Badner -Date: Tue Mar 30 01:05:18 2010 +0000 - - HHH-2088 : TypeMismatchException on object equality expression from one-to-one relationship - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19136 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 26516fb559debe2295382181e391696a111fe1a9 -Author: misty -Date: Tue Mar 30 00:56:45 2010 +0000 - - Taking away test file - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19135 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 4cea1a1460b43ca793e549aaf841f3514960931b -Author: misty -Date: Tue Mar 30 00:56:14 2010 +0000 - - Testing commit access - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19134 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 374d6ff693d821c55f4e67e480348e81c4c6c4af -Author: Strong Liu -Date: Sun Mar 28 15:48:54 2010 +0000 - - HHH-4998 org.hibernate.test.hql.ASTParserLoadingTest failure running testStr with Ingres - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19122 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit b185946c81d6efa0dde340cff8131dcbc8256602 -Author: Gail Badner -Date: Fri Mar 26 22:53:04 2010 +0000 - - DefaultMergeEventListener does not call Interceptor.instantiate() for a new persistent entity (Francesco Degrassi) - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19117 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit d9cbeeaa041e4b8b66ed989a95cec9fb7a0cd060 -Author: Strong Liu -Date: Thu Mar 25 07:46:55 2010 +0000 - - change the encoding to utf-8 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19113 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 3cf67d571423623ee0928f56cbf3f7717cda5b72 -Author: Strong Liu -Date: Thu Mar 25 06:51:01 2010 +0000 - - HHH-4940 added po and pot files and a minor correct - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19112 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 3ad551a88af2b27f88860c9d800a10bff40892fd -Author: Gail Badner -Date: Wed Mar 24 19:18:08 2010 +0000 - - HHH-1088 : Add support for projections using composite keys and components - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19110 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 186e9fc115d20ac2068c4f07aa88f7f245021aee -Author: Strong Liu -Date: Wed Mar 24 18:24:39 2010 +0000 - - HHH-4907 Support for tuple syntax in HQL/Criteria on databases which do not support tuple syntax - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19109 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 039bb48ccf02ffc9e0d983a3f15ef3958f1e7372 -Author: Gail Badner -Date: Wed Mar 24 18:19:00 2010 +0000 - - HHH-4940 : Document immutable/read-only entity and immutable collection functionality - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19108 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 98628c4a0e053b48e53be5da97ad3b40f5c8b359 -Author: Steve Ebersole -Date: Wed Mar 24 17:14:35 2010 +0000 - - HHH-5035 - upgrade to jdocbook 2.2.3 - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19107 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit f9949b02959f21521f4441be0961ca9c2e2e7732 -Author: Steve Ebersole -Date: Wed Mar 24 14:37:56 2010 +0000 - - HHH-5009 - Support NOWAIT for "SELECT ... FOR UPDATE" with JPA interfaces - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19095 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 8bd2ab12ec4708f6f0061d0f1e73d0e4e2d5c37d -Author: Emmanuel Bernard -Date: Wed Mar 24 12:18:25 2010 +0000 - - HHH-4989 Use a JDK 5 concurrent safe statistics impl when required classes are present, fallback to the existing one otherwise (Alex Snaps) - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19094 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 42dbb29eab8000cd020d826bc5ae44617d68e96c -Author: Strong Liu -Date: Tue Mar 23 05:09:30 2010 +0000 - - HHH-2997 LikeExpression case sensitive not working properly - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19083 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit dfc43107399326a3aa27cf17b20b0d7147be198a -Author: Gail Badner -Date: Mon Mar 22 19:23:58 2010 +0000 - - HHH-2350 : tests for 2nd level cache broken for non-inverse bidirectional one-to-many relation - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19080 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit a2c73b365b76c055ce82191cae5e329bb4671510 -Author: Strong Liu -Date: Mon Mar 22 18:13:59 2010 +0000 - - HHH-4732 quote column name as it is a keyword on teradata - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19079 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit cee8ef74cf8b390471ffad8dfaf1c49a66324578 -Author: Strong Liu -Date: Mon Mar 22 18:10:13 2010 +0000 - - HHH-4732 quote column name as it is a keyword on teradata - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19078 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit ae5bec1a28f003325ae64e61ebf177a6191857d0 -Author: Strong Liu -Date: Mon Mar 22 18:07:19 2010 +0000 - - HHH-4732 quote column name as it is a keyword on teradata - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19077 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 6094bd00c4cf9ddba03d8dd82e17ba1d614eaf2e -Author: Strong Liu -Date: Mon Mar 22 18:04:54 2010 +0000 - - HHH-4732 quote column name as it is a keyword on teradata - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19076 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 4404b78be8a930383cebc80e891e41a7933fcee1 -Author: Steve Ebersole -Date: Mon Mar 22 17:58:43 2010 +0000 - - HHH-5008 - Log query lock mode in EntityLoader constructor - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19075 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 0b82ae341554191aea9c8f7b102db18c14e9c804 -Author: Strong Liu -Date: Mon Mar 22 17:57:21 2010 +0000 - - HHH-4732 quote column name as it is a keyword on teradata - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19074 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit c528de5d94541095dd11e4006d8280a5d6588f0a -Author: Strong Liu -Date: Mon Mar 22 17:53:04 2010 +0000 - - HHH-4732 quote column name as it is a keyword on teradata - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19073 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit ea1c02d121c07f9e4ff98a704627a95642c3520f -Author: Strong Liu -Date: Mon Mar 22 17:47:23 2010 +0000 - - HHH-4732 quote column name as it is a keyword on teradata - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19072 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 736749f6ae9923a4747486e3555a1554e4ce0ecd -Author: Strong Liu -Date: Mon Mar 22 17:45:25 2010 +0000 - - HHH-4732 quote column name as it is a keyword on teradata - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19071 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 98c5154189fe4ebc376ae6a96e4b3790f650d34a -Author: Strong Liu -Date: Mon Mar 22 17:44:17 2010 +0000 - - HHH-4732 quote column name as it is a keyword on teradata - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19070 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 851ccb4d931cc466d3adb2ad5613db03aa906811 -Author: Strong Liu -Date: Mon Mar 22 17:42:34 2010 +0000 - - HHH-4732 quote column name as it is a keyword on teradata - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19069 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit d3bc1149c7d5950fa4842ff86e8286e24a9d5894 -Author: Strong Liu -Date: Mon Mar 22 17:37:56 2010 +0000 - - HHH-4732 quote column name as it is a keyword on teradata - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19068 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit f6045bab5d65821ffc123947372f0c1a701a870c -Author: Strong Liu -Date: Mon Mar 22 17:30:50 2010 +0000 - - HHH-4732 quote column name as it is a keyword on teradata - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19067 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 3ff3163d8f6f5df3f1070509b3850adfdab63f6e -Author: Strong Liu -Date: Mon Mar 22 17:29:05 2010 +0000 - - HHH-4732 quote column name as it is a keyword on teradata - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19066 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 861d782725f524733a69d5ad538bdf506caceb48 -Author: Strong Liu -Date: Mon Mar 22 17:16:49 2010 +0000 - - HHH-4732 quote column name as it is a keyword on teradata - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19065 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit a05a99e02ad4dfbf069d02163d3f151f5937e8cf -Author: Strong Liu -Date: Mon Mar 22 17:10:57 2010 +0000 - - HHH-4732 quote column name as it is a keyword on teradata - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19064 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 4376468d63753fa1fa1057eda1ce1f37fd78559d -Author: Strong Liu -Date: Mon Mar 22 17:09:18 2010 +0000 - - HHH-4732 quote column name as it is a keyword on teradata - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19063 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 454343f29a988b7b40f1d2a23d74a75810ff77d2 -Author: Strong Liu -Date: Mon Mar 22 17:05:57 2010 +0000 - - HHH-4732 quote column name as it is a keyword on teradata - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19062 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 96a627078a2e6f70f6c99f056457092ac57e8a89 -Author: Strong Liu -Date: Mon Mar 22 15:59:58 2010 +0000 - - HHH-4732 quote column name as it is a keyword on teradata - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19061 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 00b0459ce5368acf440dea243d0bb191c15adf52 -Author: Emmanuel Bernard -Date: Mon Mar 22 14:40:05 2010 +0000 - - HHH-5026 Ability to customize Scanner strategies - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19060 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit e94b5fc95f9ef17b3614a223c18198753eafad60 -Author: Strong Liu -Date: Mon Mar 22 14:11:37 2010 +0000 - - HHH-4732 revert Person.hbm.xml - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19059 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 59346ebdeb50a4e2c45e7881ee368b06d9d4c41a -Author: Strong Liu -Date: Mon Mar 22 14:06:33 2010 +0000 - - HHH-4732 quote column name as it is a keyword on teradata - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19058 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit dfa62b4ec759321daa51f5ecf983058168d81cf0 -Author: Strong Liu -Date: Mon Mar 22 14:00:34 2010 +0000 - - HHH-4732 quote column name as it is a keyword on teradata - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19057 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 7ed0be30c6e1a089e1424a66d87b827c8060df75 -Author: Strong Liu -Date: Mon Mar 22 13:56:03 2010 +0000 - - HHH-4732 quote column name as it is a keyword on teradata - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19056 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit e7ee04d13b725700ad399bb8095d62f625d00c31 -Author: Strong Liu -Date: Mon Mar 22 13:51:09 2010 +0000 - - HHH-4732 quote column name as it is a keyword on teradata - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19055 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 1830338dd864fb299186271d112393a0106b0d62 -Author: Strong Liu -Date: Mon Mar 22 13:49:42 2010 +0000 - - HHH-4732 quote column name as it is a keyword on teradata - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19054 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 4af9b682da39f57ac7aa705e8e0c441a5b25ccb0 -Author: Strong Liu -Date: Mon Mar 22 13:48:07 2010 +0000 - - HHH-4732 quote column name as it is a keyword on teradata - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19053 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 9b5e472ff4efceab7a84d142b60425710a76ec9b -Author: Strong Liu -Date: Mon Mar 22 13:45:46 2010 +0000 - - HHH-4732 quote column name as it is a keyword on teradata - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19052 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 9c193f1f9c0a68c9e4b1a6004e07ba3cd822c723 -Author: Strong Liu -Date: Mon Mar 22 13:42:47 2010 +0000 - - HHH-4732 quote column name as it is a keyword on teradata - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19051 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit c0c4ed0c6ccfdf4ef6b452e5c69a6439feaaf2d2 -Author: Strong Liu -Date: Mon Mar 22 13:40:56 2010 +0000 - - HHH-4732 quote column name as it is a keyword on teradata - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19050 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit af0e1bd0e6501952933126c6f3b9b2919461ffdd -Author: Strong Liu -Date: Mon Mar 22 13:37:34 2010 +0000 - - HHH-4732 skip TeradataDialect in LongInElementsTest - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19049 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 4bad0304fd36614d14538b4c4fe0c5ccd26d6ac7 -Author: Strong Liu -Date: Mon Mar 22 13:28:59 2010 +0000 - - HHH-4732 quote column name as it is a keyword on teradata - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19048 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit fe922c026ac62c295bfc24b254f8e2f54a61f370 -Author: Strong Liu -Date: Mon Mar 22 13:27:11 2010 +0000 - - HHH-4732 quote column name 'password', as it is a keyword on teradata - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19047 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit d4b4994acceb8bf2c8139c3b07320d07857124c3 -Author: Strong Liu -Date: Mon Mar 22 13:15:14 2010 +0000 - - HHH-4732 quote column name 'timestame', as it is a keyword on teradata - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19046 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit d71efef924dfda0784dd1f4f2f985f42f6dd56c3 -Author: Strong Liu -Date: Mon Mar 22 12:38:35 2010 +0000 - - HHH-2997 LikeExpression case sensitive not working properly - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19042 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 3a4e26bcc0c6b9778929ed5cb5663310a0b417d6 -Author: ldelima -Date: Fri Mar 19 05:49:48 2010 +0000 - - in progress - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19032 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 0de0aeb24bfa5407c44417f36a2f3810108b1f70 -Author: A Garcia -Date: Fri Mar 19 02:58:59 2010 +0000 - - completed jus comitting - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19031 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 776072e2cfe181afe81ef9bedaa93360a3caf638 -Author: A Garcia -Date: Fri Mar 19 02:05:31 2010 +0000 - - completed jus comitting - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19030 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 2796240cf5e9f1c258234b2d203d13c14d18687f -Author: Strong Liu -Date: Thu Mar 18 21:49:48 2010 +0000 - - HHH-2997 LikeExpression case sensitive not working properly - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19026 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 229a57e8f5cd249e7953767cfb9c8b0dd3e2f4e4 -Author: Strong Liu -Date: Thu Mar 18 21:47:54 2010 +0000 - - HHH-2997 LikeExpression case sensitive not working properly - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19025 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 84e07a2b63478e40f75429f4acfddbe171988d87 -Author: Strong Liu -Date: Thu Mar 18 21:11:29 2010 +0000 - - HHH-5022 Small documentation improvements - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19024 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 0e3378180ca056c176854778cef0051a448f5e78 -Author: Strong Liu -Date: Tue Mar 16 05:18:43 2010 +0000 - - HHH-5013 the previous select query should not to hold locks in TypeParameterTest#testSave - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19004 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 7ea9c8fe763665a73ddcdcdae3e944c0d7030212 -Author: xhuang -Date: Tue Mar 16 01:42:26 2010 +0000 - - update - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19003 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 97a9f5cd9b500ae415f80a591359341ed307e2b5 -Author: Strong Liu -Date: Mon Mar 15 14:16:44 2010 +0000 - - HHH-5010 org.hibernate.test.hql.CriteriaHQLAlignmentTest.testCriteriaAggregationReturnType() needs call flush before do the query - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19000 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit e0694c871b9b12b8b9edb1447dbe8264628034a3 -Author: Strong Liu -Date: Mon Mar 15 12:49:58 2010 +0000 - - HHH-4946 org.hibernate.test.legacy.FooBarTests testLimit failure with Ingres - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18999 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit c937d0a393a052157ce9e5a70598ce4e99ed1030 -Author: xhuang -Date: Mon Mar 15 05:29:05 2010 +0000 - - update - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18997 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit f13430e23fe5e4e28da40687513b9ecaf45cca69 -Author: xhuang -Date: Fri Mar 12 00:11:45 2010 +0000 - - update po - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18991 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit ebcbd113a29076f8b205efe0f06d4143dabbec6e -Author: xhuang -Date: Fri Mar 12 00:10:45 2010 +0000 - - update po - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18990 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 144a55038d405e286ef185b39de80bc385503cc3 -Author: xhuang -Date: Fri Mar 12 00:09:51 2010 +0000 - - update po - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18989 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 48479984b7c5e94e43b02a8a8af6348dae65caa6 -Author: xhuang -Date: Fri Mar 12 00:09:03 2010 +0000 - - update po - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18988 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 3fd9a83aa9653a66460e8b2fd3f75cc37317a345 -Author: xhuang -Date: Fri Mar 12 00:08:20 2010 +0000 - - update po - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18987 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 841550dd3c2105afa40993c96d163b0c3fce8a1e -Author: xhuang -Date: Fri Mar 12 00:07:44 2010 +0000 - - update po - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18986 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 93a01fed253c6ed0fd1d5c74381317c61d04b186 -Author: Strong Liu -Date: Wed Mar 10 22:20:03 2010 +0000 - - HHH-5000 correct duplicate words in document - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18981 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit b1c527084e5e6ca16bee6f8b0a02fbfd81bce0af -Author: Steve Ebersole -Date: Wed Mar 10 18:59:19 2010 +0000 - - HHH-4996 - Use monospace fonts in docbook programlistings - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18979 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit bd558abcd34f25be4f5ab0cefd6ce66021b23d44 -Author: Hardy Ferentschik -Date: Wed Mar 10 18:46:23 2010 +0000 - - HHH-4995 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18978 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit c82908d6f8fb708a69332d7892db76fc01f284db -Author: Emmanuel Bernard -Date: Wed Mar 10 13:21:46 2010 +0000 - - HHH-4933 clean the preface of Hibernate Annotations docs - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18958 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit e801874604cc1c17786217218f66cfa8dfd577e8 -Author: Gail Badner -Date: Wed Mar 10 11:03:08 2010 +0000 - - HHH-4993 : Updates to read-only entity associations made while in persistent state are ignored by flush (tests only) - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18957 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 3153fb385d86ecc2b18dabed43e3ebaedaf9734e -Author: Emmanuel Bernard -Date: Wed Mar 10 10:56:16 2010 +0000 - - HHH-4933 finish documentation on JPA 2 and EntityManager, migrate to jHighlight - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18956 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit a284638d0104e8e718c67a2e219ac3504269bac7 -Author: Emmanuel Bernard -Date: Wed Mar 10 10:37:27 2010 +0000 - - HHH-4994 pass the properties variable - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18955 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 9f1444eb15372ea86f1798ef3427a265e63d1117 -Author: Gail Badner -Date: Wed Mar 10 10:25:03 2010 +0000 - - HHH-4993 : Updates to read-only entity associations made while in persistent state are ignored by flush - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18954 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 268e778d5ce6be6f46b45e86926f4df967aeee04 -Author: Gail Badner -Date: Wed Mar 10 09:59:43 2010 +0000 - - HHH-4958 : Immutable entity snapshot is retained after insert - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18953 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 863f37860200098affa05dd49ccee973079deac9 -Author: Emmanuel Bernard -Date: Wed Mar 10 08:42:18 2010 +0000 - - HHH-4933 Move all orm.xml files to orm_2_0.xml except on a few tests for backward compatiblilty - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18951 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 438a975bff603f2fef3c89e21b485413ce80ca8f -Author: Emmanuel Bernard -Date: Wed Mar 10 08:21:46 2010 +0000 - - HHH-4990 Move to commons-annotations 3.2.0.Final - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18949 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit e699570e602199e2f51c6a3a3bfa45e917e447f2 -Author: Strong Liu -Date: Tue Mar 9 21:02:15 2010 +0000 - - HHH-4931 improve Ingres dialect supports - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18948 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 5aa0138ec2b8046e95b6f2c2826bef8dd5f7380c -Author: Emmanuel Bernard -Date: Tue Mar 9 14:50:32 2010 +0000 - - HHH-4933 improve EM doc wrt JPA 2 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18941 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 9be297241de91d3d991cbfeb6a42973b6bb9eb23 -Author: Emmanuel Bernard -Date: Tue Mar 9 14:49:39 2010 +0000 - - HHH-4933 move to jHighlighting - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18940 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 5bd9ffa5114510a1b8ed04dca13ef6acba9b888d -Author: Scott Marlow -Date: Mon Mar 8 21:18:03 2010 +0000 - - HHH-4972 javax.persistence.query.timeout and javax.persistence.lock.timeout can be passed when creating an EMF - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18936 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit afac90b24419685f1305a34433814c68bca0fb3a -Author: Emmanuel Bernard -Date: Mon Mar 8 18:24:20 2010 +0000 - - HHH-4933 use jHighlighter to align with core - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18934 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 37dae12a8b32541dc7fb659383a75f14471faa22 -Author: Hardy Ferentschik -Date: Mon Mar 8 17:56:55 2010 +0000 - - HHH-4933 removed all 'label' attributes in sections. they should not be used and they screw up the toc - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18933 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 83196b1099a057f7414c66ecaa9f71b606758f4e -Author: Hardy Ferentschik -Date: Mon Mar 8 16:40:44 2010 +0000 - - HHH-4933 fixed some minor typos - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18932 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 85b4ac5adb23fe52dfd2aa471ea4995f3cc1208c -Author: Scott Marlow -Date: Fri Mar 5 22:22:05 2010 +0000 - - HHH-4972 javax.persistence.query.timeout and javax.persistence.lock.timeout can be passed when creating an EMF - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18931 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 9329e59e8679746dcdc74a213c8b359237f70ca6 -Author: Hardy Ferentschik -Date: Fri Mar 5 15:23:34 2010 +0000 - - HHH-4812 documentation - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18926 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 153ad753e19b1f71665e6cfcbd903fb1ced889db -Author: Hardy Ferentschik -Date: Thu Mar 4 21:55:10 2010 +0000 - - HHH-4812 - Added @FetchProfile and @FetchProfiles annotations and wired them up. Added also some error handling in the AnnotationBinder. - Refactor the handling of precedence in the AnnotationConfiguration, because I thought I would be reusing it for the fetch profile as well, but in the end decided to jsut implement in a way that xml configured fetch profiles always win over annotation confgured ones. - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18924 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 5b595bcf2614edaa99fe4db660d044e4a80a23db -Author: Emmanuel Bernard -Date: Thu Mar 4 18:15:19 2010 +0000 - - HHH-4933 Work on HEM doc, refreshing it for JPA 2. architecture and configuration refreshed - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18923 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 0065a221a30b2f9e6e2f01888381be87f6c6a476 -Author: Emmanuel Bernard -Date: Wed Mar 3 14:50:25 2010 +0000 - - HHH-4933 Add documentation on caching - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18920 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 6dce44c363f7f8bde6cf4e9a85b007bda5172d4d -Author: Hardy Ferentschik -Date: Tue Mar 2 23:11:41 2010 +0000 - - HHH-4666 - Implement the clarified rules for resource discovery (esp for and co) - Refactored packaged tests while investigating this issue. Made sure packages get created in a subdirectory of target - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18918 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit b763122d4c6284a07de44f43d91073a54cff56e9 -Author: Hardy Ferentschik -Date: Tue Mar 2 23:06:13 2010 +0000 - - HHH-4666 - Implement the clarified rules for resource discovery (esp for and co) - Removed unecessary continue statement while investigating issue - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18917 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 23264b554ccfd6694ab0fd71a52e44c80ce5395c -Author: Hardy Ferentschik -Date: Tue Mar 2 23:05:00 2010 +0000 - - HHH-4666 - Implement the clarified rules for resource discovery (esp for and co) - Removed unused import statement while investigating issue. - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18916 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 6a7727163eaa04b637929f47c23b90dd1bc1641b -Author: Emmanuel Bernard -Date: Tue Mar 2 22:39:12 2010 +0000 - - HHH-4933 deprecate legacy annotations, document @ElementCollection, reorganize collection description, remove legacy annotations documentation when a new one is in place - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18915 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit f32f68476b8c043852ba968b28cac4d0ecdddbb0 -Author: Emmanuel Bernard -Date: Mon Mar 1 13:26:56 2010 +0000 - - HHH-4933 Doc on Map and List support - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18911 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 95ab3e5ecc9ccfcb69951f3fdcdd0935a375dd9c -Author: Emmanuel Bernard -Date: Fri Feb 26 08:27:46 2010 +0000 - - HHH-4933 minor fixes while reading - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18899 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 03649bc406d26eab344d62ce54a8b99df527a71b -Author: Sharath Reddy -Date: Thu Feb 25 13:12:27 2010 +0000 - - HHH-4374 Subselect. Also implemented Synchronize annotation. - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18884 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 97444b2d2dbd2d13cd23ee2375dab11ee34863c3 -Author: Steve Ebersole -Date: Thu Feb 25 03:50:02 2010 +0000 - - Updating pom versions to 3.5.0-SNAPSHOT for release tagging - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18879 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 9bba4e970b06ee0c448d05693cf793fac0ffdb16 -Author: Steve Ebersole -Date: Thu Feb 25 03:49:36 2010 +0000 - - Updating pom versions to 3.5.0-CR-2 for release tagging - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18877 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit be58b6b386c09224fd9666288aa3ecfb287a14cb -Author: Steve Ebersole -Date: Thu Feb 25 03:20:01 2010 +0000 - - HHH-4951 - Correct DTD entities for injecting version and date into docs - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18876 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 09fe22710ef6cf731803c1258d607192ff6fec56 -Author: Steve Ebersole -Date: Wed Feb 24 21:40:58 2010 +0000 - - misc minor doc cleanups - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18875 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 1fa3112156c7f57593568fe982c64e45ffab6d69 -Author: Steve Ebersole -Date: Wed Feb 24 21:26:24 2010 +0000 - - HHH-4949 - Document JPA 2 metamodel - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18874 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 3df8bc57123ccb5199ec1a36ecd361bdc69c460c -Author: Gail Badner -Date: Wed Feb 24 21:20:26 2010 +0000 - - HHH-4809 : Immutable entities added to a session have Status.MANAGED unless loaded by the Session - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18873 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit d26e4f1cad68b8e54b7acece5cb13080884ebbda -Author: Gail Badner -Date: Wed Feb 24 20:21:08 2010 +0000 - - HHH-4948 : Session.flush() does not always cascade save or update to read-only or immutable entities - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18872 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 5e71ea4c5579e91a767623bbdb0589604c1ffc00 -Author: Brian Stansberry -Date: Wed Feb 24 19:11:53 2010 +0000 - - [HHH-3817] Add missing lock release to test - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18871 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 523842514f9bb88d2fe83c45cd1920647708b927 -Author: Hardy Ferentschik -Date: Wed Feb 24 18:45:11 2010 +0000 - - HHH-4606 Functionality was actually already there. Just added a test - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18870 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 7a26f5862cebe4c681e924cc479f1159d2730068 -Author: Hardy Ferentschik -Date: Wed Feb 24 17:11:05 2010 +0000 - - HHH-4605 - Add support for @OneToMany @JoinColumn in XML - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18869 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 5756213195381f456ddc340d8637776485a4d9b6 -Author: Galder Zamarreno -Date: Wed Feb 24 09:22:43 2010 +0000 - - Upgraded to Infinispan 4.0.0.FINAL - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18868 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit ec8aa8bc9331ded6f5cfeb01fe13a66416a984cd -Author: Steve Ebersole -Date: Wed Feb 24 07:31:58 2010 +0000 - - HHH-4936 - Document JPA criteria queries - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18867 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 863f6a8fb7b7779e0038f523742b83cb00af7915 -Author: Gail Badner -Date: Wed Feb 24 00:11:24 2010 +0000 - - HHH-4948 : Session.flush() does not always cascade save or update to read-only or immutable entities - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18866 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 003658834da808b61cce4816e959fab9b640fa23 -Author: Hardy Ferentschik -Date: Tue Feb 23 23:55:06 2010 +0000 - - HHH-4942 Rectified some problem with earlier commit. Some files got deleted which should not have been. And some files were wrongly added - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18865 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit d44d3671345942111cbb4e82d79b74c596add137 -Author: Gail Badner -Date: Tue Feb 23 22:18:43 2010 +0000 - - HHH-4810 : Persistent immutable and read-only entities are updated before being deleted - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18864 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 2b43c74780be22c06ff4eee3883175dd5bc1ebca -Author: Strong Liu -Date: Tue Feb 23 21:45:34 2010 +0000 - - HHH-4825 mapping order impacting behavior leading to bug - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18861 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit cd3db638aa12bd89d1ea3255539e73388dfd01a9 -Author: Emmanuel Bernard -Date: Tue Feb 23 19:12:49 2010 +0000 - - HHH-4933 Write documentation on composite identity, partial generated value and derived identity - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18860 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 170f7b273e69ad0dd30f776accf22f8623f1cd1f -Author: Hardy Ferentschik -Date: Tue Feb 23 14:55:16 2010 +0000 - - HHH-4942 Refactored JarVistitorTest and PackagedEntityManagerTest to use Shrinkwrap to build the packages needed for the tests. This removed the need for some custom antrun plugin stuff. Also created a baseclass for the packaged tests. - - HHH-4845 Refactored PersistTest to extend from the main em base test case. This allows the em test to run in forkMode 'once' - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18859 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit b4e5322cfb32988f0bdf1280c4bd836439a9d48d -Author: Hardy Ferentschik -Date: Tue Feb 23 12:57:17 2010 +0000 - - HHH-4942 Refactored JarVistitorTest and PackagedEntityManagerTest to use Shrinkwrap to build the packages needed for the tests. This removed the need for some custom antrun plugin stuff. Also created a baseclass for the packaged tests. - - HHH-4845 Refactored PersistTest to extend from the main em base test case. This allows the em test to run in forkMode 'once' - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18858 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit ddd1d72e5ab6e9db32e0bfea3362fa8791a4a039 -Author: Galder Zamarreno -Date: Tue Feb 23 12:11:34 2010 +0000 - - [HHH-4944] (putFromLoad calls could store stale data) Fixed. - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18857 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 011ef60c1057a1eee5197b58806d5ef43a5f6b86 -Author: Galder Zamarreno -Date: Tue Feb 23 12:09:45 2010 +0000 - - [HHH-4640] (Add test with JNDI bound JBoss Transactions Transaction Manager) Test was not closing SessionFactory instance. - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18856 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 2b72b0552293d931c7e8d2fb64219201c06eaade -Author: Brian Stansberry -Date: Tue Feb 23 02:11:31 2010 +0000 - - [HHH-3817] Better handle race between putFromLoad and removal - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18855 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit f84f2620130eb68693b28a220d0410fc442cf3d8 -Author: Scott Marlow -Date: Tue Feb 23 01:12:57 2010 +0000 - - HHH-4662 Implement javax.persistence.query.timeout - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18854 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 32e3b9c2c9dcf9f925e8c3d9f39a424eb119944b -Author: Scott Marlow -Date: Tue Feb 23 01:06:16 2010 +0000 - - HHH-4662 Implement javax.persistence.query.timeout - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18853 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 02451f12fbc3957ef3bc09ac0af79ffef1259bfb -Author: Scott Marlow -Date: Mon Feb 22 23:27:16 2010 +0000 - - HHH-4662 Implement javax.persistence.query.timeout - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18852 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit f3aa0c63bbc68dae4631418400bf25b40c63d896 -Author: Hardy Ferentschik -Date: Mon Feb 22 21:17:12 2010 +0000 - - HHH-4676 - * now a transaction is marked for rollback for all RuntimeExceptions not only the CosntraintViolationExcpetion. - * Also updated FlushAndTransactionTest which had invalid assertions. - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18850 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit b15adba4ef4005c345e57ab99ecf5dd117b38240 -Author: Galder Zamarreno -Date: Mon Feb 22 16:43:06 2010 +0000 - - Disable lock striping to avoid potential deadlocks like the ones explained in http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4218955#4218955. It's worth noting that In Infinispan, each entity/collection has its own cache and the update timestamps and query cache are maintained separately, so the chances of this happening are much lower. - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18849 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 89b9b4e79fd6e2e63087c913fac4c985e2c4c79c -Author: Galder Zamarreno -Date: Mon Feb 22 16:37:22 2010 +0000 - - [HHH-4640] (Add test with JNDI bound JBoss Transactions Transaction Manager) Done. - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18848 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit a363947c699ddc35b0bdaa7a4c3202a4ffd4f4a9 -Author: Steve Ebersole -Date: Sun Feb 21 17:36:27 2010 +0000 - - Moved biblio to end; fixed bookinfo - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18847 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 230f173146e86bd179017a247e7394143463dd58 -Author: Strong Liu -Date: Sat Feb 20 06:30:08 2010 +0000 - - correct javadoc typo - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18845 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 9cab0f821fcc77f4b68b5586251e82d0f3d7e918 -Author: Strong Liu -Date: Sat Feb 20 06:17:21 2010 +0000 - - correct typo - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18844 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 27b173b7ec45d45ea7e76edf683679bc1c651f98 -Author: Strong Liu -Date: Sat Feb 20 06:10:58 2010 +0000 - - correct javadoc typo - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18843 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 84d1ac5f7d5e9bb11b8f1d211454ade41d6f91b1 -Author: Steve Ebersole -Date: Fri Feb 19 21:16:50 2010 +0000 - - HHH-4936 - Document JPA criteria queries - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18842 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit de0d4c1cd5c2894be0dd3dcdf0e1cbe25f01e84d -Author: Steve Ebersole -Date: Fri Feb 19 17:08:37 2010 +0000 - - HHH-4936 - Document JPA criteria queries - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18841 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit f6680548b53f0e270127ccf1b654024e0a3a614b -Author: Steve Ebersole -Date: Thu Feb 18 19:19:45 2010 +0000 - - HHH-4934 - Improve logging in MetadataContext and AttributeFactory - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18840 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 894665481c4a1d112b37bf5bf7cb50868cd38bd5 -Author: Steve Ebersole -Date: Thu Feb 18 17:00:47 2010 +0000 - - HHH-4583 - Incorrect handling of empty conjunction and disjunction - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18839 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 6ca968f0e9ba03affa4e845c32f823082970f0ad -Author: Emmanuel Bernard -Date: Thu Feb 18 16:19:05 2010 +0000 - - HHH-4933 fix syntax inconsistencies in XML - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18838 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 61e68a22a31b81894753d9dfbb4e48ae99b1ca14 -Author: Hardy Ferentschik -Date: Thu Feb 18 15:33:57 2010 +0000 - - HHH-4932 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18837 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 994472e77d2580fd466a055d02d351da554f71d7 -Author: Emmanuel Bernard -Date: Thu Feb 18 14:20:36 2010 +0000 - - HHH-4933 update non core annotatios doc - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18833 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 67a32eca9e52b4bfca072f0bf953d4af898ff2c5 -Author: Strong Liu -Date: Thu Feb 18 12:47:31 2010 +0000 - - HHH-4908 Multiple failures reported during ReadOnlyProxyTest with Ingres - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18832 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit b5529c05a56106ddf3d582355a4b07ac3d6510d0 -Author: Emmanuel Bernard -Date: Thu Feb 18 09:59:16 2010 +0000 - - HHH-4930 drop org. prefix on properties. - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18831 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit a3cb88ac68ade9820550d56c377531c4887729fe -Author: Adam Warski -Date: Thu Feb 18 09:21:17 2010 +0000 - - Removing unused field/method - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18829 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 0689459efd51479e3b4a1a19403225681c1b84c5 -Author: Adam Warski -Date: Thu Feb 18 09:19:31 2010 +0000 - - Removing unused field/method - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18828 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 6c44b281b5241153fd5d97071b4d86273fcef5f5 -Author: Adam Warski -Date: Thu Feb 18 09:17:24 2010 +0000 - - HHH-4928: - - using unsupported constructs in ids of non-audited entities doesn't cause an exception - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18827 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 32cd3b435952df7e0da9c03e003fdd31a47f6514 -Author: Steve Ebersole -Date: Thu Feb 18 05:07:20 2010 +0000 - - HHH-4583 - Incorrect handling of empty conjunction and disjunction - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18826 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 5a4e37495e3c12a51659776069a0100d0fb1dc90 -Author: Steve Ebersole -Date: Wed Feb 17 21:07:42 2010 +0000 - - HHH-4583 - Incorrect handling of empty conjunction and disjunction - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18823 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit d7de0dad4e3a76316996487118d1104b3f5c40ff -Author: Steve Ebersole -Date: Wed Feb 17 19:56:41 2010 +0000 - - HHH-4613 - KEY, VALUE and ENTRY should not be strict keywords - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18822 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 9f6e1ada6670b16e73163a75bafb3b8ca102d679 -Author: Steve Ebersole -Date: Wed Feb 17 18:49:38 2010 +0000 - - HHH-4917 - Keyword TYPE not supported - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18821 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 1ec20855eec7b04d8d3e6dbe2640c927e1138a79 -Author: Galder Zamarreno -Date: Wed Feb 17 12:51:06 2010 +0000 - - Update to Infinispan 4.0.0.CR4 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18819 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 8b660e582cb4334b927d6bae223dd065c3808022 -Author: Hardy Ferentschik -Date: Wed Feb 17 12:00:26 2010 +0000 - - HHH-4926 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18817 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 6acf72f54a0c279fab6ea7051ffb10ec871f23fa -Author: Steve Ebersole -Date: Tue Feb 16 21:39:52 2010 +0000 - - HHH-4917 - Keyword TYPE not supported - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18814 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 6a2843f98a7e3c501bd402b3fc26e93bb2788566 -Author: Hardy Ferentschik -Date: Mon Feb 15 14:35:46 2010 +0000 - - Removed core/trunk/documentation/manual/src/main/docbook/de-DE/Author_Group.po - - File conflicted with author_group.po on Mac - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18802 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 494caf6dbdf5caa791e24da23305456bc1ea0ab0 -Author: Strong Liu -Date: Mon Feb 15 13:02:33 2010 +0000 - - correct spell - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18801 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 3fda0927512fe191c98d596bf4c0cda12a5d8797 -Author: Richard Wilding -Date: Mon Feb 15 01:32:56 2010 +0000 - - HHH-4918: updated pom with de-DE translation goal - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18800 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 1677384530b0ecefd1fb0dccdd0269c32ef14727 -Author: Richard Wilding -Date: Mon Feb 15 00:41:59 2010 +0000 - - 'HHH-4918: updated de-DE preface with translated strings; deleted old book master file' - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18799 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 05a0db703e6a15e55b93230327cc6835feced065 -Author: Strong Liu -Date: Sun Feb 14 15:32:04 2010 +0000 - - correct the wrong spell - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18798 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 1ec662e92430ed7bf374e19000e1558ca74c1e8d -Author: Strong Liu -Date: Sun Feb 14 14:16:50 2010 +0000 - - correct the wrong spell - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18797 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 8e2797d7c6c29e45963bd2e40e4124cd17e3c30d -Author: Strong Liu -Date: Sun Feb 14 12:57:30 2010 +0000 - - correct spell - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18796 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit b3dca5d4d655f9efe3a9319a0ed5b15d69a1f8a1 -Author: Emmanuel Bernard -Date: Fri Feb 12 17:22:48 2010 +0000 - - HHH-4911 render referencedColumnName case insensitive - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18794 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 8514f5a15e381d2d0302b84de09157e3ed484044 -Author: Steve Ebersole -Date: Fri Feb 12 15:38:20 2010 +0000 - - removed conflictingly named file - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18793 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit ecf4f4fa66eb5a1909da6093f553a831558da18c -Author: Adam Warski -Date: Fri Feb 12 12:47:15 2010 +0000 - - HHH-4899: - - fixing mutable property types in composite ids - - test - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18791 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit d88f65ff0c6e9de465a6d3dfb868515852e0ba31 -Author: Galder Zamarreno -Date: Fri Feb 12 12:21:43 2010 +0000 - - [HHH-4836] (Infinispan: 2L QueryCache don't considers cached queries which belong to current transaction) Fixed by not suspending transactions on get any more, since no locks are aquired on get. - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18790 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 23ee88a55b2779c8a57559a948d6d0ea2bde75cc -Author: Steve Ebersole -Date: Fri Feb 12 06:22:52 2010 +0000 - - HHH-4905 - Allow consistent handling of numeric primary key values by any integral data type - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18789 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 19de9d4ed92eb2ee5d76eb0e822f577804a9ae1b -Author: Scott Marlow -Date: Thu Feb 11 15:51:25 2010 +0000 - - HHH-4765 Enhance Dialect support for JPA-2 locking. MySQL pessimistic locking and Dialect.getForUpdateString(String aliases, LockOptions lockOptions) - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18782 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit dafa28812a43cc616df20652fd465d975d156b46 -Author: Scott Marlow -Date: Thu Feb 11 14:49:24 2010 +0000 - - only comment change. - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18780 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit bdc3b50493285859bd16c70441ba7e703503968f -Author: Richard Wilding -Date: Thu Feb 11 07:27:00 2010 +0000 - - 'added publican compatibility to envers docs' - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18778 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 19758fe9c29d0b1c0b3f87dea808b8f8b9073124 -Author: Richard Wilding -Date: Thu Feb 11 07:20:33 2010 +0000 - - 'adding translations from Core 3.3.2.GA branch and updated po files for ko-KR' - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18777 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 9400bc277c919409a4666ad4e58b7dac6862af80 -Author: Richard Wilding -Date: Thu Feb 11 07:04:06 2010 +0000 - - 'converted docs for publican compatibility and added translations from Core 3.3.2.GA branch' - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18776 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 7d0258ec5508d29d584c64ba4693b5e097825212 -Author: Steve Ebersole -Date: Wed Feb 10 19:42:49 2010 +0000 - - prepare 3.5.0-CR-1 ++ dev - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18771 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 7a9b5f1781c5f218a8860e72032290f5b67da76b -Author: Steve Ebersole -Date: Wed Feb 10 19:17:55 2010 +0000 - - prep 3.5.0-CR-1 release - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18769 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 1d13a978bb46d99cf47678afd9cd152ad277dbd2 -Author: Steve Ebersole -Date: Wed Feb 10 19:08:50 2010 +0000 - - prep 3.5.0-CR-1 release - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18768 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 341ea5b8f5f84361bdd8baeffdd6ad2e8b65aa51 -Author: Steve Ebersole -Date: Wed Feb 10 17:38:59 2010 +0000 - - HHH-4902 - Handle JPA 2 requirement of setting id attribute to non-null with its equivalent of foreign-generator - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18767 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit d3886e2012826c3a93dc8d77f32ad49558f8f371 -Author: Adam Warski -Date: Wed Feb 10 16:00:29 2010 +0000 - - HHH-4899: - - test - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18765 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 420a0b8e92909a6a820aa2f79afe4ea534d1bdc6 -Author: Adam Warski -Date: Wed Feb 10 15:38:27 2010 +0000 - - HHH-4731: - - a simple API to check if an entity is audited or not - - applying patch by Hernán Chanfreau - thanks! - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18764 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit beebf85e884c8a1cecf3675689b0cc7c2d195403 -Author: Adam Warski -Date: Wed Feb 10 15:30:48 2010 +0000 - - HHH-4792: - - fixing the way properties are checked to be mutable - - applying patch to Slawek Garwol - thanks! - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18763 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 09d051150c3cda25d8f70ad5796e3654fbfbd4a3 -Author: Ståle W. Pedersen -Date: Wed Feb 10 14:35:07 2010 +0000 - - [HHH-4889] - exending the test to try to replicate an error in the specj benchmark - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18762 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 89acfc7692aca95d0012b29a1b315645ee4d8fe2 -Author: Gail Badner -Date: Wed Feb 10 07:05:33 2010 +0000 - - HHH-4898 : Results from read-only Criteria and Query obtained from query cache are not read-only - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18760 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 6abbd54e8ee5f61b1a6ee79dfbeb1d10f0a1e9d0 -Author: Gail Badner -Date: Wed Feb 10 07:03:48 2010 +0000 - - HHH-4896 : Read-only proxy targets initialized from second-level cache are not read-only - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18759 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit b39918f247b632121bdf8aa9cbf357e99d9880d4 -Author: Gail Badner -Date: Wed Feb 10 07:00:59 2010 +0000 - - HHH-4578 : Criteria is missing read-only flag - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18758 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit aa82fd710cf65ff6e9aa564f358ca4384ac08fd2 -Author: Steve Ebersole -Date: Tue Feb 9 21:50:09 2010 +0000 - - HHH-4894 - Process composite-id sub-generators PersistentIdentifierGenerator contract(s) - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18755 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 0255bb79fc76583ac15f1e76d9a52b7fc881baed -Author: Steve Ebersole -Date: Tue Feb 9 21:45:15 2010 +0000 - - HHH-4895 - query against derived id doesn't return expected result - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18754 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit c833f338125fa511a9e31e24356fb1dfc8d3fd66 -Author: Steve Ebersole -Date: Tue Feb 9 19:55:48 2010 +0000 - - removed commented-out code - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18749 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 81fd2088983bfb96f3719d4f0cbbb3e1e416f11e -Author: Steve Ebersole -Date: Tue Feb 9 19:54:39 2010 +0000 - - HHH-4894 - Process composite-id sub-generators PersistentIdentifierGenerator contract(s) - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18748 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit f0cdfa3ac8baa2eb5c0bb431514e8bbec010467c -Author: Scott Marlow -Date: Tue Feb 9 19:22:10 2010 +0000 - - HHH-4895 query against derived id doesn't return expected result - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18747 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit cb63cbb2ab350b133c78b22222797975cb56e2b8 -Author: Hardy Ferentschik -Date: Tue Feb 9 12:03:41 2010 +0000 - - HHH-4892 PackagedEntityManagerTest should not extend from the Hibernate test case. It extends now junit.framework.TestCase directly. - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18741 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 527468a122eebe0199650c9acfd2e2fad594ff06 -Author: Steve Ebersole -Date: Tue Feb 9 03:53:56 2010 +0000 - - HHH-4892 - Simplify testing of persistence packages - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18738 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 8b12e759f0a49b57e647b7b4a317867c3acf7358 -Author: Steve Ebersole -Date: Mon Feb 8 21:28:05 2010 +0000 - - HHH-4704 - Pass session into EntityTuplizer#setIdentifier - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18736 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 839e23458aa0c50e1dc0d8f1a1bed87dbff49f3b -Author: Steve Ebersole -Date: Mon Feb 8 19:27:00 2010 +0000 - - HHH-4704 - Pass session into EntityTuplizer#setIdentifier - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18733 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 7373796908a71ab118ac43c83031ae4b7df396ee -Author: Emmanuel Bernard -Date: Mon Feb 8 19:14:29 2010 +0000 - - HHH-4889 if the @IdClass support the legacy approach ie the reference to the association in the IdClass (as opposed to its pk), treat it the old way - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18732 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 817fe52a55557d0a415114aa7571853f411e80f3 -Author: Ståle W. Pedersen -Date: Mon Feb 8 18:44:26 2010 +0000 - - [HHH-4848] - added an example that derive from entities not defined with component key - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18731 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 3d911bd6587fa4f4f64f8f97c8b4aa97f5a32568 -Author: Emmanuel Bernard -Date: Mon Feb 8 13:22:43 2010 +0000 - - HHH-4887 force PERSIST cascading when @XToOne is used in a @IdClass case. - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18730 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 7cb83cac9514c6e034b1ca20b3ac9f634186d86b -Author: Steve Ebersole -Date: Sun Feb 7 19:27:19 2010 +0000 - - HHH-4664 - Implement EntityManagerFactory#getProperties() - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18712 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 71127daf090ccf5bdb45ed61e72519a835a8a3f7 -Author: Strong Liu -Date: Sat Feb 6 06:33:14 2010 +0000 - - HHH-4886 Merge minor change from IngresDialect.java from 3.3.2 for Ingres 9.2 compatibility - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18709 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 8478d5b44b6c8d72b386d7a1a2841bfe7b37fb08 -Author: Emmanuel Bernard -Date: Fri Feb 5 23:33:28 2010 +0000 - - HHH-4848 finish support for derived identity Yeah! More specifically @IdClass on dependent where the @IdClass points to the associated entity id type - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18708 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit ccad83c774f68120a06d30c24a9ddb8c10fd18b2 -Author: Steve Ebersole -Date: Fri Feb 5 22:02:36 2010 +0000 - - HHH-4884 - Fix binding of @TableGenerator#initialValue into org.hibernate.id.enhanced.TableGenerator - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18707 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 4a72e7096f4cc866f746d93a7a05f51b901d4833 -Author: Steve Ebersole -Date: Fri Feb 5 21:51:24 2010 +0000 - - HHH-4883 - Unable to join across a component - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18706 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit de585cb54a8111f3a8cfc71013a39b1b5e8638b9 -Author: Steve Ebersole -Date: Fri Feb 5 20:33:14 2010 +0000 - - HHH-4877 - "Check Nullability" logging incorrectness in SettingsFactory - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18705 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 5c16c01064f4e2970860c5da47d0f0425aefac02 -Author: Steve Ebersole -Date: Fri Feb 5 18:28:39 2010 +0000 - - HHH-4884 - Fix binding of @TableGenerator#initialValue into org.hibernate.id.enhanced.TableGenerator - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18704 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit edf5e9652d12820aac48600f08434f8774faada0 -Author: Emmanuel Bernard -Date: Fri Feb 5 16:29:21 2010 +0000 - - Revert improper JPA 2 versions bump - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18703 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 5ad11ba2a115562417fcdf8b77cc23235b24a1a8 -Author: Emmanuel Bernard -Date: Fri Feb 5 14:37:34 2010 +0000 - - HHH-4848 Add more of the spec test for derived identity and @IdClass. Missing example 5.a and example 6.a (bug at the moment) - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18702 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit ab4f51dce5aa4e9175cb0d53e56ad0afeb698843 -Author: Emmanuel Bernard -Date: Fri Feb 5 12:35:18 2010 +0000 - - HHH-4848 simplify the non-jpa 2 case a bit further - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18701 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit c18a9306b9f8995331240b66c01fea304e01d06f -Author: Gail Badner -Date: Fri Feb 5 06:25:59 2010 +0000 - - HHH-4880 : EntityManager.refresh does not throw EntityNotFoundException for removed entity - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18700 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 8606c4a097902eac7be49e4eb78b0c559b58613b -Author: Gail Badner -Date: Fri Feb 5 04:00:04 2010 +0000 - - HHH-4841 : Read-only proxies in NonFlushedChanges are not read-only when applied to a new session - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18699 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 53b1890c1b2b43a8dc89f0f09d6d3b6b6f3cbdc1 -Author: Steve Ebersole -Date: Fri Feb 5 02:42:55 2010 +0000 - - HHH-4848 - Derived identities: Derived entities using @IdClass and mapping a @XToOne are not supported - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18698 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 80f250fca501e4d190fd111c98d947367cda0952 -Author: Steve Ebersole -Date: Thu Feb 4 21:05:38 2010 +0000 - - HHH-4704 - Pass session into EntityTuplizer#setIdentifier - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18697 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit b84e1fc5fcec25adba43fac75dad68e388f2e451 -Author: Steve Ebersole -Date: Thu Feb 4 20:07:08 2010 +0000 - - HHH-4848 - Derived identities: Derived entities using @IdClass and mapping a @XToOne are not supported - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18696 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit b3b9482292a5e777369b4766227e354b31b23076 -Author: Steve Ebersole -Date: Thu Feb 4 19:32:54 2010 +0000 - - HHH-4599 - An embeddable class may contain ToOne or ToMany associations - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18695 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 252299cfee96892b71b3bd3e200181089e350e27 -Author: Emmanuel Bernard -Date: Thu Feb 4 17:54:05 2010 +0000 - - HHH-4848 partial implementation of @IdClass support in derivedidentity (example 1 case a of the spec) - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18692 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit cffff168b3857ed7004febe2cab20defc71562be -Author: Strong Liu -Date: Thu Feb 4 10:57:52 2010 +0000 - - HHH-4317 Memory leak in EnumType class - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18689 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 80dbc69529a2f812472198fe03a706e92ad0d403 -Author: Scott Marlow -Date: Thu Feb 4 00:07:31 2010 +0000 - - HHH-4765 Enhance Dialect support for JPA-2 locking. pessimistic no wait/timed locking and additional pessimistic locking tests. Oracle support for pessimistic locking - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18688 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 46bc41c22631b23a44a655ba1c67ea51af034597 -Author: Steve Ebersole -Date: Wed Feb 3 21:47:31 2010 +0000 - - HHH-4879 - Support HQL index-refering functions for many-to-many, indexed collections - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18687 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit c86d471453653c73533e111e01174e90c7ee9a1c -Author: Steve Ebersole -Date: Wed Feb 3 06:58:46 2010 +0000 - - HHH-4861 - Allow lookup by the "simple" pk type of "parent entity" in "derived identities" cases - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18686 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit e2fc86d5d5564202d8111cce87a93ad2bd87b797 -Author: Strong Liu -Date: Wed Feb 3 06:51:48 2010 +0000 - - HHH-4824 localpath appeared in the doc xml - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18685 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit ac1dae6952c0b91fbe8e6bad287fed904e350e10 -Author: Steve Ebersole -Date: Wed Feb 3 05:16:26 2010 +0000 - - HHH-4661 - Properly propagate Query.setLockMode to Hibernate Core - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18684 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 1591e6dc03e29cbfdbd12b2aa14978abc3224fe9 -Author: Steve Ebersole -Date: Tue Feb 2 21:32:53 2010 +0000 - - HHH-4661 - Properly propagate Query.setLockMode to Hibernate Core - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18682 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 889470af88a6745d619d97eb432a3af5098463d8 -Author: Scott Marlow -Date: Tue Feb 2 17:03:05 2010 +0000 - - HHH-4765 Enhance Dialect support for JPA-2 locking - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18681 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit d761d3ef45bcac51f3c8a41c0243f2e25e813d3b -Author: Steve Ebersole -Date: Mon Feb 1 19:49:40 2010 +0000 - - HHH-4661 - Properly propagate Query.setLockMode to Hibernate Core - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18676 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit af7c746a543561b2dcd2d927f0776ff0b0ad7203 -Author: Steve Ebersole -Date: Mon Feb 1 19:42:16 2010 +0000 - - HHH-4661 - Properly propagate Query.setLockMode to Hibernate Core - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18675 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 3456c533b9665a56d04783df2aa72c899f3fab64 -Author: Scott Marlow -Date: Sat Jan 30 17:27:32 2010 +0000 - - HHH-4765 Enhance Dialect support for JPA-2 locking. - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18673 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit fa17de8c92381ad92952a64c9c9d3f7a5a895394 -Author: Steve Ebersole -Date: Fri Jan 29 06:12:23 2010 +0000 - - Reverted to using the file based deployments for releases. the scm:svn approach is garbage - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18670 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 0530b809d878f64c05684bcf7ef3de58a6957b28 -Author: Gail Badner -Date: Fri Jan 29 00:57:52 2010 +0000 - - setting the version number on trunk back to 3.5.0-SNAPSHOT - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18668 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 18ed315b625cc25ad0b24478683497248de57285 -Author: Gail Badner -Date: Fri Jan 29 00:46:30 2010 +0000 - - prep 3.5.0-Beta-4 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18666 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit b52cdc95233306e66a2626a48d0517c53d329887 -Author: Steve Ebersole -Date: Thu Jan 28 22:04:20 2010 +0000 - - HHH-4862 - quoted column/alias names not properly handled in org.hibernate.loader.EntityAliases - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18665 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 4ac6062cf1fd32a462a42816e786a9fa70b27edf -Author: Steve Ebersole -Date: Thu Jan 28 01:31:45 2010 +0000 - - HHH-4862 - column name quoting not properly handled for javax.persistence.ColumnResult - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18662 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 80156b41700ef179057cbf7606b24ab0d3b364cf -Author: Emmanuel Bernard -Date: Thu Jan 28 00:00:50 2010 +0000 - - HHH-4859 fix NPE on true embedded ids (ie no property) when building the metamodel - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18661 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit d586421cfbf52c085768e93944d8ba542eaf9abd -Author: Gail Badner -Date: Wed Jan 27 23:59:29 2010 +0000 - - HHH-4828 : Entities returned by Query...setReadOnly(true)...iterate() should be read-only - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18660 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit c1fb90d5753279a61aafa96d67ff0f0e9f6560d3 -Author: Emmanuel Bernard -Date: Wed Jan 27 23:29:24 2010 +0000 - - HHH-4849 honor default join column names for @MapsId propertie including on ids with multiple columns - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18659 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 1904e02b635aa7aefecebe5d91ee88f72a6d8ac1 -Author: Strong Liu -Date: Wed Jan 27 23:06:38 2010 +0000 - - HHH-3828 Criteria: Restriction whith class does not work - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18658 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit d04362e4646d1ed24b6585c74582b24a6088c447 -Author: Steve Ebersole -Date: Wed Jan 27 19:16:39 2010 +0000 - - HHH-4799 - Create a *unit* test that asserts SerializationHelper's ability to deser a class using an "isolated classloader" (aka a TCCL) - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18657 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 016a02ff506b715e8217b8577594ac62b3f318ce -Author: Emmanuel Bernard -Date: Wed Jan 27 18:58:28 2010 +0000 - - HHH-4858 add implicit PERSIST cascade when @MapsId is present - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18656 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 66072429f41a72629525827e4865cd1453e672ab -Author: Emmanuel Bernard -Date: Wed Jan 27 18:46:51 2010 +0000 - - HHH-4849 honor default join column names for @MapsId properties - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18655 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit fde085a09ab1d27b6f95a7356a8aa64aa8f6327f -Author: Hardy Ferentschik -Date: Wed Jan 27 18:23:11 2010 +0000 - - HHH-4856 updated to 1.0.0-Beta-3 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18654 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 3e766c1397f068f5c45184434f98cfc0e4a0afdc -Author: Emmanuel Bernard -Date: Wed Jan 27 17:22:13 2010 +0000 - - HHH-4855 globally quoting identifiers was incorrectly considered an actual table name - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18653 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 62e4d6e22758036bb82e228d9b26ee819b08e3c9 -Author: Adam Warski -Date: Wed Jan 27 15:50:44 2010 +0000 - - HHH-4792: - - validating fix - removing unused commented out code - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18649 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit ce70a30710620b261a7211de9ba488810a75f215 -Author: Emmanuel Bernard -Date: Wed Jan 27 14:31:57 2010 +0000 - - HHH-4851 Fix incorrect org.hibernate.PropertyValueException due to incorrect metamodel generation - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18645 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 75149489d5efb9c81bf3523a3436e494775812d6 -Author: Scott Marlow -Date: Wed Jan 27 14:00:57 2010 +0000 - - HHH-4853 3.4.4.3 Lock Mode Properties and Uses, Vendor-specific hints must be ignored if they are not understood. - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18644 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit b40cfb58dbe4606609c3fa2b1e5e210466c593df -Author: Gail Badner -Date: Wed Jan 27 09:26:42 2010 +0000 - - HHH-4781 : Read-only entities changed to modifiable on refresh - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18643 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 4ec26fa4cf59dad8bf938f7a6f86aa8dba9eabbb -Author: Steve Ebersole -Date: Wed Jan 27 08:00:27 2010 +0000 - - HHH-4690 - Consider adding a flag for legacy/new generators - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18642 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit a0d8e6a41577f2b17b15e847c41ac6f7e1f9cdb6 -Author: Gail Badner -Date: Wed Jan 27 06:36:55 2010 +0000 - - HHH-2501 HHH-4804 : Add default read-only/modifiable setting for session; fix setting for non-lazy associations loaded from Query - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18641 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 3b536fa6f61273294b46d937fe659f2edddf5b15 -Author: Steve Ebersole -Date: Tue Jan 26 21:49:51 2010 +0000 - - HHH-4552 - Support generated value within composite keys - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18640 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 091c2d22692d885e7a218ee878dd1b3bff3c347a -Author: Steve Ebersole -Date: Tue Jan 26 20:11:51 2010 +0000 - - HHH-4822 - Add @FailureExpected annotation to annotations and entitymananger modules to allow the skipping of tests - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18638 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 6e6263012f093a93b01572ed95fbfd5b1cd54496 -Author: Hardy Ferentschik -Date: Tue Jan 26 19:44:57 2010 +0000 - - HHH-4822 reverted a test which was accidently marked with @FailureExpected - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18637 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 7f8c1896e472e33b72cd0f8db2f94fd3c046cf74 -Author: Steve Ebersole -Date: Tue Jan 26 18:36:59 2010 +0000 - - HHH-4678 - Apply PersistenceUnitInfo#getSharedCacheMode and #getValidationMode - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18636 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 7c72886f6ed4a8d5f38891771cad0125dd7a608d -Author: Emmanuel Bernard -Date: Tue Jan 26 17:15:37 2010 +0000 - - HHH-4529 Add support for id copy when @MapsId is used. - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18633 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit fc20582edef93e63f98d68c4b20a1936dacd615a -Author: Emmanuel Bernard -Date: Tue Jan 26 17:12:42 2010 +0000 - - HHH-4847 inject both object id and the entity itself when asking nested identifier generators - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18632 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 8386be117a2c6c77c2ef982cccd2126574af3374 -Author: Emmanuel Bernard -Date: Tue Jan 26 17:11:04 2010 +0000 - - HHH-4843 guard against null properties - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18631 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 82c56163436e7e370954c8fdb182daa1ce9e1c7f -Author: Scott Marlow -Date: Tue Jan 26 14:51:54 2010 +0000 - - HHH-4846 fix NPE and also address JCTS-946 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18630 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 2adcb4d92673928036aa70c263ce7170ed99e74a -Author: Ståle W. Pedersen -Date: Tue Jan 26 13:39:26 2010 +0000 - - [HHH-4552] generatedvalue for compositekeys are now parsed and added to the id properties - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18629 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 41ad6c01fdc3f9cc81bd9a41bbb8a948514c0f3a -Author: Emmanuel Bernard -Date: Tue Jan 26 13:30:32 2010 +0000 - - HHH-4529 Add support for parent's id as EmbeddedId and derived entity reusing the same PK class than the parent - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18628 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 9f85525e456cbf4c7ca3d175e4c5befef06a1137 -Author: Emmanuel Bernard -Date: Tue Jan 26 13:26:07 2010 +0000 - - HHH-4529 Add support for parent's id as IdClass and derived entity reusing the same PK class than the parent - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18627 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit eef482fb1516ff4b123e2064956f7da33b9f2e66 -Author: Emmanuel Bernard -Date: Tue Jan 26 13:08:02 2010 +0000 - - HHH-4529 add tests for parent class @EmbeddedId and derived class @EmbeddedId - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18626 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 5ee9ba361c96c29b06542720cb8b01e1034d8544 -Author: Emmanuel Bernard -Date: Tue Jan 26 12:57:01 2010 +0000 - - HHH-4529 Add support for parent's id being an IdClass or an EmbeddedId (last case not tested yet). (example e2.b) - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18625 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit c57ab61dcf1c6c546260c45081ab8d76cdd2620b -Author: Steve Ebersole -Date: Mon Jan 25 18:49:02 2010 +0000 - - HHH-4659 - Add support for standard declarative cache (@Cacheable) - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18621 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit f251abe5de2fe682967cfaeacd8e194209c256c2 -Author: Emmanuel Bernard -Date: Mon Jan 25 17:57:07 2010 +0000 - - HHH-4529 add new test - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18620 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit d00f7efb308fab613b4918f9b8831f07602c6bd0 -Author: Emmanuel Bernard -Date: Mon Jan 25 17:19:05 2010 +0000 - - HHH-4529 support for derived entity id as a XToOne pointing to the master entity - HHH-4840 support for Core style embedded id (after all these years :) ) - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18619 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 671d9db8e2150111ec279c7ec35f1eaa82370412 -Author: Galder Zamarreno -Date: Mon Jan 25 16:23:59 2010 +0000 - - Individual regions currently use the same implementation as InfinispanRegionFactory for the next timestamp. Get them to actually call InfinispanRegionFactory to make it easier for users to provide diff implementations if desired. - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18618 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit b34bb068a799c93972ff631f6cfa5b8ac3b5edc4 -Author: Galder Zamarreno -Date: Mon Jan 25 15:47:02 2010 +0000 - - [HHH-4814] (Configure global/cache level JMX statistics from Hibernate configuration file) Added hibernate.cache.infinispan.statistics that enables cache manager and individual cache statistics. - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18617 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit de0545a989064258f26cdc34dc387872ea42c20b -Author: Adam Warski -Date: Mon Jan 25 07:56:21 2010 +0000 - - HHH-4693: - - applying patch, making map proxies serializable - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18616 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 5d8d70036a139f954e7b572a649ab52d4b930692 -Author: Steve Ebersole -Date: Sun Jan 24 17:07:28 2010 +0000 - - HHH-4659 - Add support for standard declarative cache (@Cacheable) - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18614 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 690792493b02d9c1caec0f78c56631e298245b78 -Author: Emmanuel Bernard -Date: Fri Jan 22 19:21:33 2010 +0000 - - HHH-4834 Take into account that collections can be of raw type. - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18609 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 9fc77941346bcce533ef978632fa2af0565ba57b -Author: Steve Ebersole -Date: Fri Jan 22 12:35:15 2010 +0000 - - HHH-4659 - Add support for standard declarative cache (@Cacheable) - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18606 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit d24ed1a1d39c1458d020a27a504a46e76dfe2e26 -Author: Steve Ebersole -Date: Fri Jan 22 07:22:50 2010 +0000 - - HHH-4659 - Add support for standard declarative cache (@Cacheable) - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18605 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 70ddcd81f2182282050953970e04d6a5209fbb25 -Author: Hardy Ferentschik -Date: Fri Jan 22 02:16:10 2010 +0000 - - HHH-4822 Added handling of sessions == null in case openSession is called - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18604 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 9bb0da4e69f50c3f43c0953a054f891cfdb600c9 -Author: Steve Ebersole -Date: Fri Jan 22 01:55:20 2010 +0000 - - HHH-4660 - Support Cache Retrieve Mode and Cache Store Mode Properties - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18603 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 7acb557f5b0b830d93fcd3aeefb31cd1d23b586a -Author: Hardy Ferentschik -Date: Thu Jan 21 20:48:59 2010 +0000 - - HHH-4822 - Moved the test annotations into the testing module in order to be able to reuse them in entitymanager module. - Also create a common base class for ann and em tests. - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18602 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 79b10cc810b2350745dd9c8b655e8cbd6b5f64d9 -Author: Steve Ebersole -Date: Thu Jan 21 19:37:01 2010 +0000 - - HHH-4552 - Support generated value within composite keys - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18601 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 8577a68e69d30d9e671024bf3330616000a3ec54 -Author: Emmanuel Bernard -Date: Thu Jan 21 17:51:09 2010 +0000 - - HHH-4529 clean @Id/@EmbeddedId mapping and merge with the regular basic and component mapping to open possibilities for @Id @ManyToOne support - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18600 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 174a568f8f1ba2475b466e2a7e250e66968c17e7 -Author: Emmanuel Bernard -Date: Thu Jan 21 13:16:05 2010 +0000 - - Minor - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18599 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit dbf1999c26d8f4f17401f0bda87285828cb527fa -Author: Emmanuel Bernard -Date: Thu Jan 21 12:56:06 2010 +0000 - - Move to trace level - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18598 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 57bb8f6b5f30a5c73fa9d70ad240ad666645edb0 -Author: Hardy Ferentschik -Date: Wed Jan 20 22:33:16 2010 +0000 - - HHH-4822 proper placement of the fillStackTrace call - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18597 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 86989c157ee73db8e2e18d05bdb7cfa1a29d6bd7 -Author: Hardy Ferentschik -Date: Wed Jan 20 21:22:09 2010 +0000 - - HHH-4822 - Made sure stacktrace is filled in for InvocationTargetException and IllegalAccessException - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18596 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 373e4f13a8fefd91099a53358361f849e9505703 -Author: Hardy Ferentschik -Date: Wed Jan 20 20:31:29 2010 +0000 - - HHH-4823 Reordered module list in top level pom. Also renamed some of the project names. now all project names start with "Hibernate" ;-) - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18595 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 1a090752a373c5cf31307f446c1ac22d8b2e2d18 -Author: Hardy Ferentschik -Date: Wed Jan 20 20:18:56 2010 +0000 - - HHH-4822 - Added @FailureExpected to annotations module - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18594 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 2f3a967c65c665b4252b3da5b141ed3850c87682 -Author: Steve Ebersole -Date: Wed Jan 20 19:16:38 2010 +0000 - - HHH-4726 - Add support for delete-orphan cascading to - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18593 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 63dcdf06204b210ba642bce7b730547085e28c2a -Author: Emmanuel Bernard -Date: Wed Jan 20 18:48:20 2010 +0000 - - HHH-4529 clean tests - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18592 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit f2e8773d352c563b27303dab04814e637e5d9e8d -Author: Emmanuel Bernard -Date: Wed Jan 20 18:42:49 2010 +0000 - - HHH-4529 add test for one to one and embedded id - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18591 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 01720257b2fb33e5038932b31acbc9407b44f045 -Author: Emmanuel Bernard -Date: Wed Jan 20 18:36:34 2010 +0000 - - HHH-4529 Add support for @EmbeddedId - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18590 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit fd389b913e990ee82c4c03dce7bb7b929a2c7f9c -Author: Emmanuel Bernard -Date: Wed Jan 20 16:51:02 2010 +0000 - - HHH-4529 support @ManyToOne and fix FK error - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18589 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit e655b54eb80efd81f255b35388cb50044c9ab799 -Author: Ståle W. Pedersen -Date: Wed Jan 20 15:35:26 2010 +0000 - - [HHH-4552] - added multiple generated values to the test - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18588 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit cd3c152f443922868bd2f9594f6fcdb842d7be4e -Author: Emmanuel Bernard -Date: Wed Jan 20 11:48:08 2010 +0000 - - HHH-4529 FK constraint is now generated - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18586 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 76f2f88038b1aca996d4dfcb914c7d21e79eb9d1 -Author: Hardy Ferentschik -Date: Tue Jan 19 22:16:05 2010 +0000 - - HHH-4651 - Add support for EntityManager properties - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18585 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 6efce46709488be0d3f3c1e398e865604ed32c40 -Author: Hardy Ferentschik -Date: Tue Jan 19 21:52:23 2010 +0000 - - Removed unused import statements - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18584 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 6588ede3a72fd4a17a54881cc7ef2ce81262a8b2 -Author: Emmanuel Bernard -Date: Tue Jan 19 18:57:19 2010 +0000 - - HHH-4529 Support for basic @MapsId on simple id on both parent and derived (example 4.a). However I am losing the creation of the FK constraint. - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18583 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit aa9dd935557ad9b39280cb7ab0b644c046eb13eb -Author: Steve Ebersole -Date: Tue Jan 19 18:50:29 2010 +0000 - - HHH-4552 - Support generated value within composite keys - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18582 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 63d5a97854246083bcd28c00da45a9b363d276cd -Author: Scott Marlow -Date: Tue Jan 19 15:43:00 2010 +0000 - - HHH-4725 implement orphanRemoval for OneToOne. - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18581 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit e474a00c4a211ce4ea9a0280b64c5b8eba053b1a -Author: Steve Ebersole -Date: Tue Jan 19 03:09:22 2010 +0000 - - HHH-4669 - Implement JDBC driver properties support - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18578 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 6eb54445aa0397aa5a9dafaf879e49934c90562c -Author: Steve Ebersole -Date: Mon Jan 18 22:05:16 2010 +0000 - - HHH-4816 - Cleanup JPA setting name constants - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18577 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit c9b7d112b8cb8116f38ece7635ea591bbd1b18ed -Author: Adam Warski -Date: Mon Jan 18 21:27:25 2010 +0000 - - HHH-4793: enabling test after fixes in core/annotations - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18576 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit edb211e8af670d2095283955c93b9d5d78125d2e -Author: Hardy Ferentschik -Date: Mon Jan 18 19:17:27 2010 +0000 - - HHH-4813 - annotation and entitymanager module should use the maven-injection-plugin to generate version string - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18575 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 55cd2ee2a2c655189641d2c13db5cde96c124b2c -Author: Steve Ebersole -Date: Mon Jan 18 18:27:12 2010 +0000 - - HHH-4726 - Add support for delete-orphan cascading to - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18573 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 6cfc0c043d798dfab559299b4db6c1240f21b1f3 -Author: Steve Ebersole -Date: Mon Jan 18 15:18:16 2010 +0000 - - HHH-4726 - Add support for delete-orphan cascading to - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18571 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit f163e9fd947ab78e2e70bc4c9ed8977205dedf21 -Author: Steve Ebersole -Date: Sat Jan 16 21:04:34 2010 +0000 - - HHH-4726 - Add support for delete-orphan cascading to - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18569 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 29152a8390a14410a8472b9a0d5c1b55540c3f46 -Author: Steve Ebersole -Date: Sat Jan 16 20:27:04 2010 +0000 - - HHH-4726 - Add support for delete-orphan cascading to - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18568 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 7fa50f7a1857e9bb996f41a9c73b0121bc9a765d -Author: Hardy Ferentschik -Date: Fri Jan 15 20:59:56 2010 +0000 - - HHH-4677 - just some import cleanups and addition of source headers. no code changes - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18567 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit ecbe5dd8543f42ac241af0c02b21300ba50ffccd -Author: Emmanuel Bernard -Date: Fri Jan 15 18:47:54 2010 +0000 - - HHH-4805 take better care of generics. - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18566 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 9b38bca8eaeb08f7bd2fc65567b0c0937896a060 -Author: Emmanuel Bernard -Date: Fri Jan 15 12:57:47 2010 +0000 - - HHH-4807 only switch CHECK_NULLABILITY's default if Bean Validation is in the class path - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18563 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit f93b0441b784fc5b0c03a1752c33228bc779ff18 -Author: Emmanuel Bernard -Date: Fri Jan 15 12:53:35 2010 +0000 - - HHH-4806 Wrap all .commit() exceptions in a RollbackException - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18562 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit c8c92639184fbe178ef29caef42896d933890bb0 -Author: Emmanuel Bernard -Date: Fri Jan 15 10:47:18 2010 +0000 - - HHH-4797 Ignore backref properties for JPA 2 model - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18561 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 56f69412604e87e62e82dc280de2022204aea2a2 -Author: Steve Ebersole -Date: Fri Jan 15 05:38:57 2010 +0000 - - HHH-4726 - Add support for delete-orphan cascading to - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18560 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit d23a4a4fd3087852ba987667081c6cf1e2f28472 -Author: Hardy Ferentschik -Date: Thu Jan 14 21:32:33 2010 +0000 - - HHH-4527 added some doc updates - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18559 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit f45fceece01530fb400411aa56a128bed3e2f719 -Author: Hardy Ferentschik -Date: Thu Jan 14 19:30:04 2010 +0000 - - HHH-4789 Made sure that the plugins are configured in the parent pom. Made the em docbook generation work. xml formatting - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18558 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit b150dc76ae443c33f6250b1c086950a2d230bb8c -Author: Scott Marlow -Date: Thu Jan 14 19:10:50 2010 +0000 - - HHH-4725 implement orphanRemoval for OneToOne and HHH-4726 Add support for delete-orphan cascading to one-to-one - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18557 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 8146ab3f9ef3fab3b06b7b2ac0a7afe806af802e -Author: Emmanuel Bernard -Date: Thu Jan 14 15:20:50 2010 +0000 - - Add more test on ConstraintViolationException and transaction behavior - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18556 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit ae3414325716dc7a2e05f0574992621b27185dda -Author: Emmanuel Bernard -Date: Thu Jan 14 10:33:11 2010 +0000 - - Bump version numbers - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18555 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit b520a4a11ecfda1e0364911aa26eb52df1eb446f -Author: Emmanuel Bernard -Date: Thu Jan 14 10:18:00 2010 +0000 - - HHH-4796 fix NPE when an @AssociationOverride joinColumn is set but no @AssociationOverride joinTable is on a given property - Fix minor issues - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18554 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 79bb60ea89c64dfc5434793781504e55ab83b0bf -Author: Hardy Ferentschik -Date: Thu Jan 14 02:01:24 2010 +0000 - - setting the version number on trunk back to 3.5.0-SNAPSHOT - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18552 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 1f8019b3fc5a28563d9dcfcaaba658ced799c2e1 -Author: Hardy Ferentschik -Date: Thu Jan 14 01:34:37 2010 +0000 - - Version upgrade for preperation of 3.5.0-Beta-3 release - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18550 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 2e3fb18af2fe34148384a3426aca5d71b8c2d4a6 -Author: Steve Ebersole -Date: Thu Jan 14 00:07:37 2010 +0000 - - prep 3.5.0-Beta-3 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18549 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 062c5b6ccce18df701d4ffa624b401ebbbf48636 -Author: Steve Ebersole -Date: Thu Jan 14 00:04:32 2010 +0000 - - HHH-4791 - Invalid assumption made in org.hibernate.envers.tools.Tools#getTargetFromProxy - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18548 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 69d7a853f14488eda4f67caf95fdb91da76142e3 -Author: Steve Ebersole -Date: Wed Jan 13 23:59:03 2010 +0000 - - HHH-4790 - Envers test failing, disabling for beta-3 release - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18547 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit b21e94fefd3dc1be8dcae53266396001cb8f1fef -Author: Hardy Ferentschik -Date: Wed Jan 13 21:26:58 2010 +0000 - - HHH-4788 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18546 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit e96bca2fb6ac9576eba505df3b35ee4ccb633509 -Author: Steve Ebersole -Date: Wed Jan 13 20:32:33 2010 +0000 - - HHH-4780 - Allow BigDecimal and BigInteger to be specified as numeric literal types - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18545 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit fca1248487a926236d0ba772315912bfca3ab9e1 -Author: Steve Ebersole -Date: Wed Jan 13 19:45:07 2010 +0000 - - HHH-4786 - SerializableType + custom Serializable class + L2 cache causes problems - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18544 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 9256bc30e5344a19b53082fdc451942d2428449d -Author: Scott Marlow -Date: Wed Jan 13 19:35:54 2010 +0000 - - HHH-4685 Make sure bidirectional @*To* works from an embedded object to another entity - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18543 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit e8df1d1579f23539d922b4d7b5e145036ef67beb -Author: Hardy Ferentschik -Date: Wed Jan 13 18:04:02 2010 +0000 - - HHH-4282 Added the test attched to the jira issue to ensure the problems is really fixed by HHH-4528 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18542 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 8ebda8540a49bfe473e81b13715711b5225a6749 -Author: Steve Ebersole -Date: Wed Jan 13 12:47:55 2010 +0000 - - HHH-4785 - BinaryArithmeticOperation reverses incoming arguments - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18538 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 4d86564d320e45c282b0aa51ef3b7f4bb97b460b -Author: Gail Badner -Date: Wed Jan 13 06:59:54 2010 +0000 - - HHH-3338 : Order of attributes in generated SQL query is dependent on Java version - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18529 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 94415151f7bd68796341d8f0126e2f205fd78071 -Author: Gail Badner -Date: Wed Jan 13 06:02:14 2010 +0000 - - HHH-4737 : Cache the EntityKey in EntityEntry when id is non-null - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18528 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit cc382233c5c8e957d72673459bf5ee619f2c08cb -Author: Gail Badner -Date: Wed Jan 13 01:04:55 2010 +0000 - - Session.setReadOnly(Object, boolean) fails for proxies - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18525 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 8bed8a1c22b7a98937e5d9c7f55ac256ea1c7a07 -Author: Hardy Ferentschik -Date: Tue Jan 12 21:00:11 2010 +0000 - - HHH-4783 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18524 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit d86de21e15ae7c979f19dd62428c0ab6d42336c1 -Author: Scott Marlow -Date: Tue Jan 12 20:19:32 2010 +0000 - - HHH-4679 Make sure @AssociationOverride support the dot notation. - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18523 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit e95ae257d163b9745c8cf931e21a0244a57beb28 -Author: Hardy Ferentschik -Date: Tue Jan 12 20:14:31 2010 +0000 - - HHH-4691 - xml access type support for element collection. As side effect started to suport element-collection in xml. Needs to be completed though. - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18522 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 9d49153a93abd791a490fddb758c4a7e96ffd6f5 -Author: Scott Marlow -Date: Tue Jan 12 19:44:37 2010 +0000 - - HHH-4679 Make sure @AssociationOverride support the dot notation. - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18521 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 87cf4555f6692ef19e14ea21b767a486cf036454 -Author: Scott Marlow -Date: Tue Jan 12 19:40:17 2010 +0000 - - HHH-4679 Make sure @AssociationOverride support the dot notation. Package name change. - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18520 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 4224e74d1a1b435d54aa318256b1d0641d4589f1 -Author: Hardy Ferentschik -Date: Tue Jan 12 18:50:42 2010 +0000 - - HHH-4691 - xml access type support for embedded-id and embedded - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18519 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit b1f925458eeb636897bf8a053712ed25fff39054 -Author: Emmanuel Bernard -Date: Tue Jan 12 18:48:42 2010 +0000 - - HHH-4782 supports @AssociationOverride.joinTable - HHH-4679 add tests for dot notations in @AssocuiationOverride - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18518 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 3f0e54c5d20bf6a8bc83597477371b7fc43ebdb6 -Author: Steve Ebersole -Date: Tue Jan 12 18:37:19 2010 +0000 - - HHH-4674 - JBoss has renamed its JACC artifact - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18517 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit d5f9bd5377b1e11606d03af9ef1136fb11f4babd -Author: Scott Marlow -Date: Tue Jan 12 16:03:48 2010 +0000 - - HHH-4679 Make sure @AssociationOverride support the dot notation - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18515 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 601512370020fb868cf62e897c7b651dbd46ea86 -Author: JongDae Kim -Date: Tue Jan 12 14:38:09 2010 +0000 - - translated! - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18514 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 59ced3a04e1b4437aa8f8e2539423cee2dbc66d9 -Author: JongDae Kim -Date: Tue Jan 12 12:01:32 2010 +0000 - - translated! - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18513 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit a44a126de6e24d4bb47d5464e06ec9869654de55 -Author: JongDae Kim -Date: Tue Jan 12 11:36:49 2010 +0000 - - translated! - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18512 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 863ac2ead63897b5f84a8637cc7b044effe8602e -Author: Gail Badner -Date: Tue Jan 12 08:15:15 2010 +0000 - - HHH-4781 : Added unit test showing a read-only entity that is refreshed is changed to modifiable - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18511 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 45d0e696b43ba95aed2f3f083874ae53521959fc -Author: Scott Marlow -Date: Tue Jan 12 01:16:55 2010 +0000 - - HHH-4598 An embeddable class may contains collection of basic types or embeddable objects - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18510 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit bec0f8046e30a2571b200a08c057b61a9fdf37f2 -Author: Steve Ebersole -Date: Mon Jan 11 23:46:47 2010 +0000 - - HHH-4590 - CASTs from CriteriaBuilder.toXXX methods still need to be fleshed out - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18509 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 9b3c518d5e20c2f30b286d2caa93c6df3b59434a -Author: Steve Ebersole -Date: Mon Jan 11 22:55:36 2010 +0000 - - HHH-4780 - Allow BigDecimal and BigInteger to be specified as numeric literal types - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18508 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 50cbcd3e00e0c895f0531333e7555b6956e4e658 -Author: Hardy Ferentschik -Date: Mon Jan 11 20:27:12 2010 +0000 - - HHH-4691 - xml test files for access configuration via xml - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18507 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 1c25ab12ef97a0360e73ab4082ddb19779ae4a49 -Author: Hardy Ferentschik -Date: Mon Jan 11 20:23:08 2010 +0000 - - HHH-4691 - Added support for access tye configuration via xml - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18506 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit b4caf0b9091dabf85c6ebe22b1a8d3e059d5daae -Author: Strong Liu -Date: Sun Jan 10 15:18:02 2010 +0000 - - HHH-4777 HHH-4532 org.hibernate.ejb.test.PackagedEntityManagerTest.testOverridenPar() hard code hsqldb connection info - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18500 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 784884b9febce5c55669efaa66c42c60c3d3e82d -Author: Strong Liu -Date: Sun Jan 10 15:16:34 2010 +0000 - - HHH-4777 HHH-4532 org.hibernate.ejb.test.PackagedEntityManagerTest.testOverridenPar() hard code hsqldb connection info - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18499 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit b5597882ce4908a8c432769a580ffe6b0367373d -Author: Steve Ebersole -Date: Sat Jan 9 20:26:40 2010 +0000 - - HHH-4776 - Add a NullLiteralExpression for CriteriaBuilder#nullLiteral - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18492 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 49a37c31651e2a2dc2fd97f621e398b19dd56303 -Author: Steve Ebersole -Date: Sat Jan 9 20:17:47 2010 +0000 - - HHH-4743 - Bug in BooleanLiteralNode with CustomType - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18491 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 0f96757d1a2bd6e7da076c72050f9f7376400267 -Author: Steve Ebersole -Date: Sat Jan 9 18:01:20 2010 +0000 - - HHH-4774 - Do not handle literals using parameters in JPA criteria select - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18486 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 6b6cee1b31993c5d07cf74e18fe90718c3821e91 -Author: Steve Ebersole -Date: Sat Jan 9 17:32:34 2010 +0000 - - HHH-4775 - CriteriaBuilder#notEqual being interpreted oppositely - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18484 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 20b78f45a783ca7812de3c5d56e8ef72fd87e232 -Author: Steve Ebersole -Date: Sat Jan 9 17:04:55 2010 +0000 - - HHH-4772 - Empty conjunction/disjunction in criteria does not follow spec rules - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18483 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 5263d4c12abe4fa7fc824c58c99d80e134cd6d9d -Author: Steve Ebersole -Date: Sat Jan 9 16:44:59 2010 +0000 - - HHH-4774 - Do not handle literals using parameters in JPA criteria select - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18482 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit c0636fee4ce5a8a7f5989f0293f41dc5c6cd8f61 -Author: Steve Ebersole -Date: Sat Jan 9 16:24:44 2010 +0000 - - HHH-4768 - Bug in how Criteria Subquery correlations are handled - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18481 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit bc5ea8d259597ac405403e76df3b982a841e1732 -Author: Strong Liu -Date: Fri Jan 8 21:59:05 2010 +0000 - - HHH-4769 update test case - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18467 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 4276ad99f017ea9353f021bef5a25c31b0a9506f -Author: Strong Liu -Date: Fri Jan 8 20:24:18 2010 +0000 - - HHH-4764 org.hibernate.test.pagination.PaginationTest.testLimitOffset() fails on oracle and db2 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18464 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit ee503cfbc62407f1874de1a57aa0d2d9355f8da1 -Author: Strong Liu -Date: Fri Jan 8 18:38:17 2010 +0000 - - HHH-4769 In HQL, function ROUND always returns an Integer, it truncate the decimal part of Double number. - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18457 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit e44b5f197d77e1d1a847cd04eaa0d25254362483 -Author: Emmanuel Bernard -Date: Fri Jan 8 16:58:56 2010 +0000 - - HHH-4771 @ElementCollection fk column should default to entityName_columnNameOfOwningId - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18455 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 1b9394446c52faf3fb82ba18caddc7791f8aac99 -Author: Emmanuel Bernard -Date: Fri Jan 8 10:41:10 2010 +0000 - - HHH-4675 Bean Validation ConstraintViolationException should trigger a tx rollback - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18450 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 72778b1a1b3e8618e3f4273b5664d13add226a70 -Author: Steve Ebersole -Date: Fri Jan 8 06:55:42 2010 +0000 - - HHH-4767 - Bug in how Criteria Subquery selections are handled - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18449 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit bcada0c1c4b7ddc924f5e0a3b9dac5fef6f16be5 -Author: Steve Ebersole -Date: Fri Jan 8 06:10:24 2010 +0000 - - HHH-4766 - Properly support criteria notion of SUM aggregation return types - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18448 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 9d214de88a8aa30ad5e7224afc820385f77a515b -Author: Hardy Ferentschik -Date: Fri Jan 8 03:51:47 2010 +0000 - - HHH-4763 Moved the directory creation into a different target - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18447 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit c8e1fbddcf3585e192d937aec90d7db92d9ada41 -Author: Hardy Ferentschik -Date: Fri Jan 8 03:40:18 2010 +0000 - - HHH-4763 Moved the metamodel task into build.xml and modified the antrun configuration to allow to run 'mvn antrun:run'. Also combined all antrun calls into one plugin configuration - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18446 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 415c9e9ec336dffe3934c87a4cfa2f9c2b80406d -Author: Steve Ebersole -Date: Thu Jan 7 20:49:36 2010 +0000 - - HHH-4758 - Rename org.hibernate.ejb.criteria.AbstractNode#queryBuilder to #criteriaBuilder - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18445 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit ef30ca4408751d1c0ba67e05f96a2e5b1ddd813b -Author: Steve Ebersole -Date: Thu Jan 7 20:41:54 2010 +0000 - - HHH-4724 - query.multiselect() on a CriteriaQuery returns List instead of List - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18444 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 1dfa028169c8f50d4f0ab32dec6c8d3ff1912ab1 -Author: Strong Liu -Date: Thu Jan 7 20:34:59 2010 +0000 - - minor change, correct javadoc spell - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18443 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 84ed210c394f493ba83d47a6a23eb464263ebc61 -Author: Steve Ebersole -Date: Thu Jan 7 17:58:37 2010 +0000 - - HHH-4756 - javax.persistence.criteria.Path#get should result in *delayed* join rendering - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18436 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit afbf1be5b3a90eaafc5690bfa783e5da06df9062 -Author: Emmanuel Bernard -Date: Thu Jan 7 17:45:29 2010 +0000 - - HHH-4686 Implement @MapKeyEnumerated - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18435 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 9ef2317e28887cf48d8fb96775b24ec832386d3f -Author: Scott Marlow -Date: Thu Jan 7 17:41:05 2010 +0000 - - HHH-4689 Make sure @OrderBy supports dotted notation to point to embedded properties - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18434 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit a96f7bf7297fc0f7a7f5544db340d8e110d634b0 -Author: Emmanuel Bernard -Date: Thu Jan 7 17:33:23 2010 +0000 - - HHH-4687 implement @MapKeyTemporal - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18433 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 461e2c10ac7ceb6beca8b9eaaef7fa800c9ef1e4 -Author: Adam Warski -Date: Thu Jan 7 14:43:39 2010 +0000 - - HHH-4063: - - making the tests working also with maven - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18431 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit ae48c83a541df3fcc848fafe3d2bb711b88f06a7 -Author: Adam Warski -Date: Thu Jan 7 14:29:32 2010 +0000 - - HHH-4063: - - removing unnecessary test - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18430 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 23a2e5b3dc7284bbff27156841c8cbfab86d9d23 -Author: Adam Warski -Date: Thu Jan 7 14:13:51 2010 +0000 - - HHH-4063: - - applying patch from Hernán Chanfreau - thanks! - - fixing metadata reading for interfaces - - tests when entities are interfaces - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18429 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 8b061f9933a826ac9d4eadbda47b870052746cf5 -Author: Emmanuel Bernard -Date: Thu Jan 7 13:56:47 2010 +0000 - - HHH-4353 support JPA 2 default column naming for collections of basic types (and still honor the legacy approach) - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18428 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit b24ea518738adbf00e7e7cc7eb5ee2f3491462ac -Author: Scott Marlow -Date: Wed Jan 6 18:49:52 2010 +0000 - - HHH-4688 Make sure @OrderBy works for @ElementCollection. move test case - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18427 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 658df91a5e308fd1d97cec62acf6110143012592 -Author: Emmanuel Bernard -Date: Wed Jan 6 17:28:23 2010 +0000 - - HHH-4283 fix the incorrect test case and add a proper exception when the user error occurs - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18421 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 99e43e9d14845367af4ee58d2563beda0ee45cda -Author: Scott Marlow -Date: Wed Jan 6 17:01:04 2010 +0000 - - HHH-4688 Make sure @OrderBy works for @ElementCollection. added test case - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18420 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 71d9459a20c4f769a205b70537fe416bd992e76e -Author: Scott Marlow -Date: Wed Jan 6 16:59:34 2010 +0000 - - HHH-4688 Make sure @OrderBy works for @ElementCollection. Handle default case - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18419 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit bd6a77a0dc8f3fbd97b4cb5b52d1e11580aabad8 -Author: Hardy Ferentschik -Date: Wed Jan 6 14:37:38 2010 +0000 - - HHH-4527 - added another test to verify that @Access specified on embeddable directly gets picked up. - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18418 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 2dd470af1f453e54643d55b2c81ec5a7324952b1 -Author: Hardy Ferentschik -Date: Tue Jan 5 21:51:35 2010 +0000 - - HHH-4527 - added handling of proper default access propagation for class hierarchies and embedded classes (components) - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18417 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 5509ab643d2e0ea738899d6d089eff425fd4021e -Author: Scott Marlow -Date: Tue Jan 5 18:50:48 2010 +0000 - - HHH-4684 Make sure @Lob works with @ElementCollection - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18416 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 39dd795e4087a7f28d099cfc363421f4e361ca62 -Author: Emmanuel Bernard -Date: Tue Jan 5 18:00:34 2010 +0000 - - HHH-4753 Default table name for @CollectionTable is not inferred correctly according to spec requirement. Legacy names still supported. Fixing NPE in some cases - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18415 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit a3dd6de70f19de06630dada74178d7331d971e17 -Author: Scott Marlow -Date: Tue Jan 5 16:55:15 2010 +0000 - - HHH-4683 Make sure @Enumerated works with @ElementCollection. Added Map test. - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18414 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 76202814a60f3512c790d681eaf345385378d357 -Author: Emmanuel Bernard -Date: Tue Jan 5 16:11:14 2010 +0000 - - HHH-4753 Default table name for @CollectionTable is not inferred correctly according to spec requirement. Legacy names still supported. - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18413 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit dd7b01ccc8a55e761f1edd604ef4c07146626648 -Author: Emmanuel Bernard -Date: Tue Jan 5 10:46:13 2010 +0000 - - HHH-4749 Don't block calls to getListeners on SessionImplementor when using thread scoped sessions - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18408 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit fc66b8a964f2dbdfda18b853e252445aee84f379 -Author: Emmanuel Bernard -Date: Tue Jan 5 09:45:30 2010 +0000 - - Extract Schema helper methods - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18407 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 19f9443b6e3a87a8deb2b2209779d67f98f9f1f7 -Author: Scott Marlow -Date: Tue Jan 5 03:18:23 2010 +0000 - - HHH-4753 Default table name for @CollectionTable is not inferred correctly according to spec requirement - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18406 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 39b098aac34937e7dc35b9ecc5b185ca972e8fca -Author: Scott Marlow -Date: Tue Jan 5 03:16:05 2010 +0000 - - HHH-4753 Default table name for @CollectionTable is not inferred correctly according to spec requirement - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18405 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 0987b4c06ed2a3d202f7f10ac3c8a9e40da8c341 -Author: Steve Ebersole -Date: Mon Jan 4 20:14:42 2010 +0000 - - added '.idea' as svn ignore entry - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18404 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit d12c535f66374c9c144aca3060235ec14a660e86 -Author: Sharath Reddy -Date: Mon Jan 4 20:12:33 2010 +0000 - - HHH-4653 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18403 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit ea67575c9704876d21c708db26ba4c03aa242280 -Author: Steve Ebersole -Date: Mon Jan 4 19:00:01 2010 +0000 - - HHH-4663 - Make sure CriteriaQuery is serializable - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18400 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 43dd13073d76e3ad1388f280aeff6f078f8db79f -Author: Emmanuel Bernard -Date: Mon Jan 4 18:50:45 2010 +0000 - - HHH-4752 support no prefix on @AttributeOverride and @ElementCollection (legacy "element" prefix used if @CollectionOfElements is used) - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18399 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 33b7b6c803f0773b57c12e4d751de04a93e919fb -Author: Steve Ebersole -Date: Mon Jan 4 18:16:42 2010 +0000 - - HHH-4698 - Better handling of JPA criteria expressions - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18398 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit ef1cb9f0661b5c2939a02cfeb8e49b83159e6a15 -Author: Emmanuel Bernard -Date: Mon Jan 4 16:47:08 2010 +0000 - - HHH-4352 support for key. and value. for Map and @AttributeOverride. Managed to keep support for legacy names as well. - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18393 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 41b12a647966cc1aaee54dafbfb74667d06b72b2 -Author: Scott Marlow -Date: Mon Jan 4 16:03:21 2010 +0000 - - HHH-4682 Check that @CollectionTable (or its absence) defaults to the right table/column names - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18392 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 763a3ef84b56839adc12fbd1a90b3e272125c119 -Author: Strong Liu -Date: Thu Dec 31 05:48:24 2009 +0000 - - HHH-2166 - Long 'in' lists in queries results in a Java stack overflow exception. - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18371 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 7fb4558c1d849382d894ceb0f31b8fc9ab05bdad -Author: Strong Liu -Date: Wed Dec 30 09:08:45 2009 +0000 - - HHH-2166 - Long 'in' lists in queries results in a Java stack overflow exception. - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18366 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 95e10ad81d672202240ef09792478a16f1e63779 -Author: Strong Liu -Date: Tue Dec 29 23:21:44 2009 +0000 - - HHH-2166 Long 'in' lists in queries results in a Java stack overflow exception. - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18356 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 01432e3a164453fd5282870722982454717b664c -Author: Strong Liu -Date: Tue Dec 29 20:12:22 2009 +0000 - - HHH-2166 - remove @Override annotations for 1.4 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18350 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 721a90aadce7845483b814932f33e20ddc4cac3d -Author: Strong Liu -Date: Tue Dec 29 19:58:52 2009 +0000 - - HHH-2166 - Long 'in' lists in queries results in a Java stack overflow exception. - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18347 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 8a6c40115eb8932784b56c234d418d46b07ccf06 -Author: Strong Liu -Date: Tue Dec 29 15:56:02 2009 +0000 - - minor change, correct javadoc spell - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18344 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 1d125b21aad1e2c02ef91d6c73dfaac74fd86178 -Author: Strong Liu -Date: Tue Dec 29 08:08:58 2009 +0000 - - minor change, correct javadoc spell - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18341 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 018d3911cd755b613f34acfb51bf3745c0365916 -Author: Strong Liu -Date: Tue Dec 29 08:05:58 2009 +0000 - - HHH-4741 org.hibernate.test.filter.DynamicFilterTest.testSqlSyntaxOfFiltersWithUnions fails on MySQL - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18339 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 30422f93202a6315df916c84f41c81410cf973cb -Author: Strong Liu -Date: Tue Dec 29 06:28:20 2009 +0000 - - HHH-2166 update testcase to skip mssql server and oracle due to HHH-1123 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18335 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 7cc0baf32b7b6d43c1014d2869ffc8d5937e8e64 -Author: Strong Liu -Date: Mon Dec 28 09:18:55 2009 +0000 - - minor change, correct javadoc spell - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18332 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit ec8421b32de6196aceb4bf8e008e7c740debccad -Author: Strong Liu -Date: Thu Dec 24 14:09:27 2009 +0000 - - HHH-2347 HHH-1918 Improvement to DerbyDialect default identy generation mode - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18331 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit fb121412b6ab16d660b68aa1cb9185328394ad62 -Author: Strong Liu -Date: Thu Dec 24 13:26:38 2009 +0000 - - HHH-4574 ConnectionProviderFactory.getConnectionProperties() includes extra properties - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18328 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 55bf2494ea9a9db4597c17f06ed54e074071e97d -Author: Strong Liu -Date: Thu Dec 24 11:55:08 2009 +0000 - - HHH-4531 Derby dialect should not support comments - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18327 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit a7a9f79d1e4722744e87266c4fb5cc185354f2cf -Author: Gail Badner -Date: Thu Dec 24 07:56:51 2009 +0000 - - HHH-4735 : Proxy can be associated with a new session when it is already connected to a different one (minor change for perf) - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18324 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit e264d8e8790ef2bc2b39b0ef7b0b2e57f8890d46 -Author: Gail Badner -Date: Thu Dec 24 03:11:54 2009 +0000 - - HHH-4735 : Proxy can be associated with a new session when it is already connected to a different one (removed cached EntityKey) - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18322 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit c20cfe7e0d37917a72c24d31747d560cb6e64b23 -Author: Gail Badner -Date: Wed Dec 23 18:38:09 2009 +0000 - - HHH-4735 : Proxy can be associated with a new session when it is already connected to a different one - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18320 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 165f2e5f736db18ec5262fad3e2644e460502cdc -Author: Scott Marlow -Date: Tue Dec 22 18:07:38 2009 +0000 - - HHH-4601 implement orphanRemoval for OneToMany. OneToOne is not yet done (see HHH-4725) - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18318 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit a900ee8928111f819b999000d14bc850386b6fee -Author: Steve Ebersole -Date: Tue Dec 22 06:12:34 2009 +0000 - - HHH-4698 - Better handling of JPA criteria expressions - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18312 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 24cbb2df3c73853a10b8f1d7dd0023da82c74363 -Author: Steve Ebersole -Date: Tue Dec 22 04:15:04 2009 +0000 - - HHH-4720 - Improve javax.persistence.metamodel.Attribute support - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18311 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit bc0144f2eb0989b41f0c164e30ca4ef2769eeb49 -Author: Steve Ebersole -Date: Mon Dec 21 23:34:10 2009 +0000 - - HHH-4720 - Improve javax.persistence.metamodel.Attribute support - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18310 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 3fd7b885247287f0ae4c447722c0e3866e2dde82 -Author: Hardy Ferentschik -Date: Mon Dec 21 20:06:42 2009 +0000 - - HHH-4728 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18309 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 95c69f3209426421bb230813f466d19cebe0a297 -Author: Strong Liu -Date: Mon Dec 21 17:05:58 2009 +0000 - - HHH-2166 Long 'in' lists in queries results in a Java stack overflow exception - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18305 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 56d50a15b3510ba377c084f3234b7a9a866d845d -Author: Strong Liu -Date: Mon Dec 21 16:17:24 2009 +0000 - - minor change, correct spell - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18303 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 23c1a476678803f881f2a73d65af0f33c8795511 -Author: Emmanuel Bernard -Date: Mon Dec 21 15:49:55 2009 +0000 - - HHH-4665 add tests for getIdentifier() - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18302 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 54706c4b2013bf4bcf9937674e837cea268d1d1e -Author: Emmanuel Bernard -Date: Mon Dec 21 13:58:50 2009 +0000 - - HHH-4724 add tests on Tuple - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18300 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit d66cfe664ac3e49c9c3d875f60691fcefa6aefbb -Author: Gail Badner -Date: Fri Dec 18 21:42:42 2009 +0000 - - HHH-4642 : added test cases showing unexpected results when an updated entity is changed from read-only to modifiable - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18271 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 3748f29945bce63c003efd82907fd4073a0b08fb -Author: Steve Ebersole -Date: Fri Dec 18 20:04:44 2009 +0000 - - HHH-4719 - Support modulo operator - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18269 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit c1da5f1e3c31e1caf722793b9104c02f91828507 -Author: Steve Ebersole -Date: Fri Dec 18 15:32:39 2009 +0000 - - HHH-4698 - Better handling of JPA criteria expressions - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18268 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit a87e031bd509b09c87d327c270e394dac198b013 -Author: Emmanuel Bernard -Date: Fri Dec 18 10:02:26 2009 +0000 - - HHH-4667 accept orm 2 and orm 1 files. Also improved error reports - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18263 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit cab987320525f378c5070d075de1253851676cea -Author: Gail Badner -Date: Fri Dec 18 03:38:16 2009 +0000 - - HHH-4715 : Unexpected results when an entity that is already modifiable is set to modifiable again - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18261 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 4a9d8dcf0b054d4dc769b463145c1fdecede6e09 -Author: Hardy Ferentschik -Date: Thu Dec 17 21:14:07 2009 +0000 - - HHH-4527 - first cut for supporting JPA2 @Access annotation. Not quite complete and needs some more tests. - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18260 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit fbf7b91d4de3257622c77d52879e0cf51afd934e -Author: Emmanuel Bernard -Date: Thu Dec 17 15:34:04 2009 +0000 - - HHH-4711 HHH-4667 validate persistence.xml and make sure it works for both persistence_1_0.xsd and persistence_2_0.xsd - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18259 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 3bb271ee9c5a1e54f3bada43d19d06e2637cc109 -Author: Emmanuel Bernard -Date: Thu Dec 17 13:29:55 2009 +0000 - - Remove now unneeded flag to avoid getMember population - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18257 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 355e81a7f11cfad11f46408a481c7ed090174080 -Author: Emmanuel Bernard -Date: Thu Dec 17 11:05:13 2009 +0000 - - Remove now unneeded flag to avoid getMember population - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18256 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 446ac0e0df3f91913a7f2a955bbdc02a38ab5b3c -Author: Adam Warski -Date: Thu Dec 17 08:49:02 2009 +0000 - - Updating links in docs - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18255 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit bfa63cca67ac132877c25da85c26f363d0ed959f -Author: Steve Ebersole -Date: Thu Dec 17 05:51:20 2009 +0000 - - HHH-4709 - registered length functions should return Integer - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18254 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit cdfd6d950bb482f4c027f492a47eda24a934d155 -Author: Steve Ebersole -Date: Thu Dec 17 00:21:49 2009 +0000 - - HHH-4708 - Make CompoundSelectionImpl implement ExpressionImplementor - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18253 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit da647e7deb72ade480d557887429d1b90faa8af0 -Author: Steve Ebersole -Date: Wed Dec 16 23:15:01 2009 +0000 - - HHH-4705 - Derby does now in fact support the full ANSI SQL TRIM function - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18252 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit d2f3d18b4a38237b43e5d87edba17e664e28fcd9 -Author: Steve Ebersole -Date: Wed Dec 16 22:18:03 2009 +0000 - - HHH-4705 - Derby does now in fact support the full ANSI SQL TRIM function - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18251 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 384d5859c2083bf075051b44f455e6da09b2dc26 -Author: Steve Ebersole -Date: Wed Dec 16 22:12:45 2009 +0000 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18250 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit b62c0afcadb0ad4151fafc2d2fd21370b4b14821 -Author: Strong Liu -Date: Wed Dec 16 18:31:57 2009 +0000 - - HHH-4614 Instrumented model with abstract MappedSuperclass and field access doesn't work (fix javassist integration issue, not yet cglib) - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18246 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit b50f0660eee09977f41505274fe8e3a99d364694 -Author: Strong Liu -Date: Wed Dec 16 18:28:58 2009 +0000 - - HHH-4457 SchemaUpdate fails on Sybase ASE 15 when a new column is added without a default value - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18245 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 0776dbab9a10bed4b1bc6ef0cb2ac508104f84f9 -Author: Scott Marlow -Date: Wed Dec 16 18:23:31 2009 +0000 - - HHH-4546 JPA-2 locking. LockOptions can include per table alias LockMode - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18243 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 1336b83e03550434a10f726118773e192a05e3a7 -Author: Adam Warski -Date: Wed Dec 16 14:20:52 2009 +0000 - - HHH-4694: - - using the correct entity name in case of inheritance - - test - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18239 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit ab3ee1998a200e9c68a28fdbc8a1140c90b5985d -Author: Adam Warski -Date: Wed Dec 16 13:05:17 2009 +0000 - - HHH-4694: - - updating docs - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18238 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit a90cf3e5eb1552b20bd888fdf0b921cb2fa0a9ff -Author: Adam Warski -Date: Wed Dec 16 11:09:34 2009 +0000 - - HHH-4694: - - support for indexed "fake" bidirectional relations - - adding a field-calculation-phase, after all metadata is read from annotations, but before any audit entities generation is done - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18236 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 5a6686810b7f010fd581154ae2b5fbf685fc26e5 -Author: Steve Ebersole -Date: Tue Dec 15 18:09:53 2009 +0000 - - HHH-4590 - CASTs from CriteriaBuilder.toXXX methods still need to be fleshed out - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18230 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit dfe61a4a5e11d2f4b28135bd6f8a7a355d4c40a6 -Author: Steve Ebersole -Date: Tue Dec 15 17:28:51 2009 +0000 - - HHH-4697 - Add means to get HibernateEntityManagerFactory from HibernateEntityManagerImplementor - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18229 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit d14b2f4404b6c655c6f3f94d970f8a32498949a1 -Author: Emmanuel Bernard -Date: Tue Dec 15 17:23:00 2009 +0000 - - HHH-4696 add persistence_2_0.xml - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18228 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 7daca69d7ed9895e5e15993c149a03ac23def8d1 -Author: Emmanuel Bernard -Date: Tue Dec 15 17:15:33 2009 +0000 - - HHH-4692 add orm_2_0.xml - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18227 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit ad0be2d8220976224a1265b0e0eeab7f27f0a635 -Author: Adam Warski -Date: Tue Dec 15 12:52:20 2009 +0000 - - HHH-4694: - - if a field is non-insertable in a "fake" bidirectional relation, not storing modifications made on the non-insertable side - - also, not generating bidirectional collection changes in such case - - updating test - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18226 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 3740a20550ef643440e47041d1ef254db25db21c -Author: Adam Warski -Date: Tue Dec 15 12:27:01 2009 +0000 - - HHH-4694: - - adding support for multiple "fake" bidirectional relations - - downgrading testng back to 5.8 as using 5.10 was OOMing the tests - - updating h2 dependency to a newer version - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18225 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 31f9f8ffc5b52ececcbe3aeee1af29523f35c547 -Author: Adam Warski -Date: Tue Dec 15 10:50:11 2009 +0000 - - HHH-4694: - - adding support for "fake" bidirectional many-to-one relations using an experimental @AuditMappedBy annotation - - adding a new work unit, extracting common work unit code - - upgrading TestNG to 5.10 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18224 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit fc54029a9f864f5da5a24948dbe37cbb4d739e34 -Author: Steve Ebersole -Date: Sun Dec 13 01:17:08 2009 +0000 - - HHH-4671 - Derby is one of those dialects that should not support "cross join" - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18223 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 22e78ef6bfdc337e0012053f40d376fade5ba3db -Author: Steve Ebersole -Date: Sun Dec 13 01:10:32 2009 +0000 - - HHH-4674 - JBoss has renamed its JACC artifact - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18222 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 8f4e2160494dee1f0a2d8312fda271c3304ac1e9 -Author: Steve Ebersole -Date: Sun Dec 13 00:31:53 2009 +0000 - - HHH-4673 - Upgrade JPA Static Metamodel Generator dependency to 1.0.0.Beta1 - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18221 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit b5fb73c5eeae0cbd0dcf8f1e39ee259b180041f8 -Author: Steve Ebersole -Date: Sat Dec 12 23:56:45 2009 +0000 - - HHH-4672 - Upgrade JPA dependency to hibernate-jpa-2.0-api-1.0.0-CR-1 - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18216 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 025b3cc14180d0459856bc45a6cac7acce3e1265 -Author: Hardy Ferentschik -Date: Fri Dec 11 19:14:01 2009 +0000 - - HHH-4527 - No functional changes yet. Just some cleanup and refactoring (extract method, encapsulate field) - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18211 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit b95147a81e36c9bb174ab82b12ac0492b7e880a3 -Author: Galder Zamarreno -Date: Fri Dec 11 16:44:23 2009 +0000 - - Upgraded to Infinispan 4.0.0.CR3. It no longer depends on a transitive rhq/jopr dependency :) - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18210 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 18bb17061f629819414362b30134c365928d77bc -Author: Scott Marlow -Date: Fri Dec 11 13:23:17 2009 +0000 - - HHH-4546 JPA-2.0 locking. More pessimistic lock exception support and timeout exception support - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18209 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 2fef8a4acc2c2e068dca4ed990ef1debd86a4aa2 -Author: Adam Warski -Date: Fri Dec 11 12:40:05 2009 +0000 - - HHH-4670: - - changing the way work unit collision is resolved: now work units are merged, the result is a work unit (possibly new) - - work units should behave as immutable objects - - test - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18208 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit b402af2eaeef3c505e625639b807b341246b5df7 -Author: Adam Warski -Date: Fri Dec 11 10:37:54 2009 +0000 - - - making the test actually assert that the results are correct - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18207 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 36fddaf4fc892e608fbbc5c3090e0b30e90aa0f9 -Author: Emmanuel Bernard -Date: Fri Dec 11 09:12:10 2009 +0000 - - add test on Bean Validation in HEM - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18206 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit edd5bed0749232be37daff0c5c75d1b41c161af0 -Author: Adam Warski -Date: Fri Dec 11 07:43:34 2009 +0000 - - - Lists also can be the inverse side of bidirectional one-to-many relationships - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18204 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 04fae574ae0f9f171dbae0b077246aafd3ff3dc2 -Author: Adam Warski -Date: Thu Dec 10 20:28:27 2009 +0000 - - HHH-4090: - - adding support for many-to-many relations from an audited, to a non-audited entity - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18201 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit e183c40ee7c692fda5542f1bd8d2b718e5b7b5a8 -Author: Emmanuel Bernard -Date: Thu Dec 10 16:49:46 2009 +0000 - - HHH-4659 HHH-4668 add mapping support for validation-mode and shared-cache-mode - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18200 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 11d10450ce74c4ed0820ee246db27901e1e83bff -Author: Emmanuel Bernard -Date: Thu Dec 10 15:27:00 2009 +0000 - - HHH-4665 PersistenceUnitUtil.getIdentifier() - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18198 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit a0ddead69fceebbae2c79bab147c432d31527485 -Author: Emmanuel Bernard -Date: Thu Dec 10 14:27:30 2009 +0000 - - HHH-4663 Add test showing the serialization failure for CriteriaQuery - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18196 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 3703d4c71cc204a54c4bbdf88df0e92ab23ddeea -Author: Emmanuel Bernard -Date: Thu Dec 10 14:11:33 2009 +0000 - - HHH-4662 do not rollback when the exception occurs - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18195 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit ba3639a25a2e3a59b2252aab1d20b0addb178864 -Author: Emmanuel Bernard -Date: Thu Dec 10 09:32:25 2009 +0000 - - HHH-4657 add support for DETACH - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18191 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 49bc0e7acfe18d32b888c4206a51821a2ce90fd6 -Author: Scott Marlow -Date: Thu Dec 10 00:34:12 2009 +0000 - - comment change - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18190 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit cf0e1c6476b16cc43ed9aa2905288faffa53f515 -Author: Scott Marlow -Date: Thu Dec 10 00:33:22 2009 +0000 - - HHH-4546 JPA-2.0 locking support. Derby read and write pessimistic lock - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18189 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 77e57b6727336b2c0088cedb4b8a9dee825eb590 -Author: Galder Zamarreno -Date: Wed Dec 9 18:21:07 2009 +0000 - - Added JDBC transaction test. - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18185 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 16528acc0b7c15289f0c6479f8b60772560b06d3 -Author: Galder Zamarreno -Date: Wed Dec 9 18:20:38 2009 +0000 - - [HHH-4520] (Infinispan second level cache integration can cache stale collection data) testManyUsers now enabled after ISPN-277 was fixed. - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18184 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 6512e3e7082ab0b501761e22003ae647f583ff31 -Author: Hardy Ferentschik -Date: Tue Dec 8 23:24:39 2009 +0000 - - HHH-4655 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18181 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 02323188c696de6ec9dc72b96ce81cc552a22070 -Author: Steve Ebersole -Date: Tue Dec 8 21:19:42 2009 +0000 - - HHH-4654 - Criteria quries must support referencing parameters by name - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18169 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 1005f19b1a1e8d71b216d353001d73c796d809da -Author: Steve Ebersole -Date: Tue Dec 8 18:56:15 2009 +0000 - - HHH-3860 - Cascading performance problems when session contains many entities - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18168 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 48c2ec7e91eed88bc7f5b786748b24d91b8d7c31 -Author: Emmanuel Bernard -Date: Tue Dec 8 16:32:59 2009 +0000 - - unwrap should raise a PE if the type is not unwrappable by the provider - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18166 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit cab99355a92595f60476c3ee6e63feeeda8d021a -Author: Emmanuel Bernard -Date: Tue Dec 8 16:09:42 2009 +0000 - - remove getSupportedProperties(): it's no longer part of the spec - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18164 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 7af9b42d23c0125dfad27d53263514536f03fc54 -Author: Adam Warski -Date: Tue Dec 8 16:08:13 2009 +0000 - - HHH-4650: - - fix for removing an item from a persistent collection, flushing, and adding the same item again: merging the collection change work units data - - test - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18163 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit c7149b0da42782761c1d4f65c6ec70e3b069f58f -Author: Emmanuel Bernard -Date: Tue Dec 8 16:01:36 2009 +0000 - - Bind Hibernate Core deprecated lock modes for completeness and map UPGRADE_NOWAIT like PESSIMISTIC_WRITE with a timeout of 0 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18162 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit e71c0e4ba4668724a8edf80f29f16e532936d820 -Author: Emmanuel Bernard -Date: Tue Dec 8 15:40:12 2009 +0000 - - add a comment on flush mode - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18161 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 084d84b8f8dcd8e7b74b6ddd3219d1c6ed623bb9 -Author: Emmanuel Bernard -Date: Tue Dec 8 15:39:37 2009 +0000 - - Remove System.err.println oops - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18160 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 8eb02db44ce3c73db76ce2ef3c96e81cfb2e2ac7 -Author: Emmanuel Bernard -Date: Tue Dec 8 14:20:56 2009 +0000 - - HHH-4649 Properly bind Environment#GLOBALLY_QUOTED_IDENTIFIERS to orm.xml - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18159 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 6b9e796074b2d061c805b1cd7815f02c5009c52f -Author: Steve Ebersole -Date: Tue Dec 8 13:14:47 2009 +0000 - - HHH-4553 - Hibernate doesn't support official JPA2 escape char for table name - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18158 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 25343680c90359e73a1ebd271906ef2a344f1c30 -Author: Adam Warski -Date: Mon Dec 7 12:43:06 2009 +0000 - - HHH-4645: - - shortening the names of the default schema/default catalog properties - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18156 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit cd7a5cac7b47592c0dd2eabba0b0a10b41d19c7c -Author: Adam Warski -Date: Mon Dec 7 08:55:15 2009 +0000 - - HHH-4645: - - renaming properties from camel case to use _ to separate words, as is the Hibernate convention - - old property names are still supported - - updating documentation - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18152 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit e9ff8cf3b6b7d10c13ad76de574047935373d38f -Author: Adam Warski -Date: Mon Dec 7 08:36:49 2009 +0000 - - HHH-4644: - - when using join-inheritance, the columns in child entities which map to the revision number use the correct sql-type - - test - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18150 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 9dbb880df6561f779cace9a49c0e59934425695b -Author: Strong Liu -Date: Mon Dec 7 06:58:40 2009 +0000 - - minor change, correct javadocs spell - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18149 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit a2bf14ae7c2ed7b2b0a6eb558dad08bcfc69c489 -Author: Steve Ebersole -Date: Sun Dec 6 22:20:58 2009 +0000 - - HHH-4553 - Hibernate doesn't support official JPA2 escape char for table name - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18148 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit ecb103cf5512cf3f940ca3567d5414bdc0804bdd -Author: Adam Warski -Date: Fri Dec 4 16:30:16 2009 +0000 - - HHH-4641: - - support for @PrimaryKeyJoinColumn on inherited entities - - test - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18136 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit acecf716183d6b52c458619918dd5720aafbdc69 -Author: Adam Warski -Date: Thu Dec 3 14:47:45 2009 +0000 - - HHH-4633: - - enabling and fixing the test for same-table m2m mapppings - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18123 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit de488205588bc30bc5153fd7f6c23cbf7f70e0b7 -Author: Adam Warski -Date: Thu Dec 3 14:39:52 2009 +0000 - - HHH-4633: - - enabling and fixing the test for same-table m2m mapppings - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18122 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit ed2d72e492f0fb88f0dbf86440ec098dd675a1d3 -Author: Adam Warski -Date: Thu Dec 3 10:23:16 2009 +0000 - - HHH-4633: - - supporting where clauses on collections (e.g. @WhereJoinTable) - - test - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18120 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit df2f9a8270ef46998bced351aa0d95a732a77dbd -Author: Galder Zamarreno -Date: Thu Dec 3 09:03:35 2009 +0000 - - [HHH-4575] (When Infinispan is configured for INVALIDATION don't send cluster message on entity insert) Fixed. - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18119 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 6f978e52bb41f553d6eb39450d78e710b543b319 -Author: Adam Warski -Date: Thu Dec 3 09:03:31 2009 +0000 - - HHH-4634: - - adding a register of all audit entity names generated so far - - generating a unique entity name in case of a relation owned by both sides - - fixing the test - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18118 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit c817ba17be26a52fff153391b1d79760d46cddbd -Author: Galder Zamarreno -Date: Thu Dec 3 09:02:31 2009 +0000 - - [HHH-4631] (Infinispan integration module is causing build problems) Build issues sorted. Re-enabling infinispan module. - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18117 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 5233aeb1586c5d565f11b817c68ce7ab57a0508b -Author: Scott Marlow -Date: Wed Dec 2 19:41:21 2009 +0000 - - HHH-4546 add JPA 2.0 locking. First pass of support of code around AbstractEntityPersister.getAppropriateLoader - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18116 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 07ec77023e542292ce02f3791414e048e83f55b8 -Author: Adam Warski -Date: Wed Dec 2 12:09:56 2009 +0000 - - HHH-4634: - - testcase - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18113 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit b46895ff179314eb65049ee8931f9488881f6f0c -Author: Adam Warski -Date: Wed Dec 2 11:38:32 2009 +0000 - - HHH-4633: - - testcase - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18112 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 5916bf0161d9b0d4301635ca7589b19d44b81105 -Author: Steve Ebersole -Date: Tue Dec 1 15:55:26 2009 +0000 - - HHH-4631 - Infinispan integration module is causing build problems - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18111 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 7b6b1568693f533a38b7b8f112684dfc294218d9 -Author: Adam Warski -Date: Tue Dec 1 07:20:17 2009 +0000 - - * Skipping auditing id mapping generation if the id mapping is unsupported (e.g. key-many-to-one) - * Some logging - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18109 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit bf9f27215ac6a6ea74e37d5f7884a8cc7239364c -Author: Steve Ebersole -Date: Tue Dec 1 04:53:49 2009 +0000 - - HHH-4625 - Use of maven-injection-plugin intermittently leads to build failures - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18107 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit fa130963638207ec34a8a15f7e890a95f0f63906 -Author: Steve Ebersole -Date: Tue Dec 1 04:51:57 2009 +0000 - - HHH-4625 - Use of maven-injection-plugin intermittently leads to build failures - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18106 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 2b2df21f2f4d45f8a647ff03893d142c376c12b7 -Author: Steve Ebersole -Date: Mon Nov 30 18:18:44 2009 +0000 - - HHH-4625 : upgrade injection plugin - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18105 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 6458ff4771ab9ed37bddb783148aff82e40cd600 -Author: Emmanuel Bernard -Date: Mon Nov 30 16:50:25 2009 +0000 - - minor doc enhancement - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18103 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 05a02472a9da957fc863303118eeb4b706709bc7 -Author: Galder Zamarreno -Date: Fri Nov 27 16:53:33 2009 +0000 - - [ISPN-277] (LRU data container endlesly looping or exhibiting heavy contention) Update to trunk and check if testManyUsers runs fine now. - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18077 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 393f09eeba623ef9c3e0706137c8e70cc867e087 -Author: Adam Warski -Date: Wed Nov 25 16:32:05 2009 +0000 - - HHH-4611: - - handling the case when the revision number in the revision entity uses a @Column(columnDefinition=): the sql-type is property is then set on the REV property of audit entities - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18068 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 096437dec2b81b2434435c602427d8ed2ffc60e5 -Author: Adam Warski -Date: Wed Nov 25 08:35:22 2009 +0000 - - HHH-4608: - - options to specify default schema/catalog name for audit tables - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18059 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit df17063144239226d0ebb408004c8bad36544a5a -Author: Adam Warski -Date: Wed Nov 25 07:45:45 2009 +0000 - - HHH-4608: - - options to specify default schema/catalog name for audit tables - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18056 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit dfffe73198cc86342c8a14c40ad4ee10cb3354cd -Author: Scott Marlow -Date: Wed Nov 25 00:05:08 2009 +0000 - - HHH-4546 add JPA 2.0 locking. Javadoc change. - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18054 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit ceaea5a2a382e57fdded1ad717510d2e3e5bbf49 -Author: Scott Marlow -Date: Tue Nov 24 23:59:50 2009 +0000 - - HHH-4546 add JPA 2.0 locking. Introduce LockOptions as the wrapper and session.buildLockRequest() (replaces session.lock()). - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18053 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 49f7b49bdc367cc08075f47847179a6071295bb0 -Author: Adam Warski -Date: Tue Nov 24 16:19:58 2009 +0000 - - HHH-4608: - - options to specify default schema/catalog name for audit tables - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18035 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 8855e85040f3dbdbd43a090fe8f0a18a81a4e436 -Author: Adam Warski -Date: Tue Nov 24 15:36:49 2009 +0000 - - HHH-4540: - - updating docs - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18033 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit f39550fff19a72faec27632409b50970d4d9d2da -Author: Adam Warski -Date: Tue Nov 24 15:21:10 2009 +0000 - - HHH-4540: - - applying patch from Nicolas Rougé - - the revision timestamp can now be a j.u.Date or a j.s.Date, and be mapped to a Date in the DB - - test - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18032 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit d32a736d766497e1f2f8212f1edf84b5a92d42b3 -Author: Emmanuel Bernard -Date: Tue Nov 24 09:41:24 2009 +0000 - - Add H2 profile - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18030 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 07c5967f460d77b5a8451996c4f8a76fe223f55f -Author: Emmanuel Bernard -Date: Tue Nov 24 09:39:08 2009 +0000 - - HHH-4604 IllegalArgumentException should be raised when an ordinal parameter is not present in the query - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18029 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 9d5f0d084abbe0a72ecafe6d7cb376bd0b876fdd -Author: Adam Warski -Date: Tue Nov 24 09:19:47 2009 +0000 - - Not swallowing exceptions in some cases when a tx is rolled back by Envers - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18028 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 5b6a8eee07f8d84cb77ef3fdfad03802cad2b002 -Author: Emmanuel Bernard -Date: Mon Nov 23 18:34:56 2009 +0000 - - HHH-3164 HHH-1575 InExpression was populating parameters in the wrong order. - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18027 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 1ca018960ec5a4e20b7aa7dd009ab3f6f0f06ba8 -Author: Emmanuel Bernard -Date: Mon Nov 23 18:08:09 2009 +0000 - - HHH-3164 add test - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18026 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit deabfeb4859065053fa2ebb15368f150f288076b -Author: Adam Warski -Date: Mon Nov 23 15:43:31 2009 +0000 - - An error message (instead of an NPE) when a suprclass of an audited entity is not audited - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18024 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 1a31549ced7bce7d889f185975c65a61482f09b9 -Author: Steve Ebersole -Date: Sat Nov 21 02:57:20 2009 +0000 - - HHH-2584 - PersistentMap.remove() incorrect on uninitialized, non-extra-lazy map - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18020 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 5c30fe64646fa949ad0d952d5ad8a43f99a860f8 -Author: Steve Ebersole -Date: Sat Nov 21 02:01:45 2009 +0000 - - HHH-2576 - Allow native-sql to have placeholders for default schema and catalog - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18018 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 35ca4c35635f26b9a86b260ad974ba7da429950b -Author: Scott Marlow -Date: Fri Nov 20 14:51:13 2009 +0000 - - HHH-4546 add JPA 2.0 locking. Still need more LockRequest support in AbstractEntityPersister.getAppropriateLoader(), may need to refactor. - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18016 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit a8e34f0066126d9f5b504ea4c5dd408e7f98c8d3 -Author: Steve Ebersole -Date: Fri Nov 20 05:20:28 2009 +0000 - - HHH-2308 - Adding predicates to the join condition using Criteria Query - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18012 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit a3d1a3c59f2c7a519622cbe21286b3b39d8a0f3a -Author: Steve Ebersole -Date: Thu Nov 19 01:34:35 2009 +0000 - - HHH-4586 - Jpa2.0 Criteria API lower function missing parameter - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18008 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 7587c09f003f4a1b289187d55dc72f41975ceccc -Author: Steve Ebersole -Date: Wed Nov 18 22:13:03 2009 +0000 - - HHH-4581 - Embedded objects in criteria API does not work - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18007 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 085c6c9e9e78f8c4484778d9fc1c922ed879d08d -Author: Steve Ebersole -Date: Wed Nov 18 21:02:19 2009 +0000 - - HHH-4584 - Query Language needs to support joins on embedded values - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18006 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit abc165eaba9a3de403b09354661afa4cb8b43404 -Author: Galder Zamarreno -Date: Wed Nov 18 16:56:13 2009 +0000 - - [HHH-4520] (Infinispan second level cache integration can cache stale collection data) Ported fix. testManyUsers has been disabled while ISPN-277 gets fixed. Finally, Infinispan version has been upgraded to 4.0.0.CR2. - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18005 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 1658d1f58be54e36706a4d83c637227912b0f87a -Author: Scott Marlow -Date: Wed Nov 18 16:35:28 2009 +0000 - - HHH-4588 workaround for JBSEAM-4474 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18004 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 01a1a251d7d61d657d096445bc0b8e9d8b28cb57 -Author: Gail Badner -Date: Tue Nov 17 23:17:25 2009 +0000 - - HHH-2762 : new unit tests for SessionImplementor.getNonFlushedChanges()/applyNonFlushedChanges() implementation - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17998 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 36100c8c3af6f33987dcbfe7129d84772805e0a3 -Author: Gail Badner -Date: Tue Nov 17 23:12:09 2009 +0000 - - HHH-2762 : Added StatefulPersistenceContext.getProxiesByKey() (needed for testing non-flushed changes) - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17997 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 546b13a7ddc1c401f8cd33953a5387c1f7d550a5 -Author: Hardy Ferentschik -Date: Mon Nov 16 14:52:30 2009 +0000 - - HHH-4529 Added some test entities - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17992 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit e20713b0f2f8050b65a305cd83f219ab903b4100 -Author: Strong Liu -Date: Mon Nov 16 14:05:17 2009 +0000 - - HHH-4576 - Tests in MySQL using different case for objects as defined in configuration - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17989 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit a1d2ece5cfdd7d52ecc4f29ea0e4547c2fdf9d1f -Author: Strong Liu -Date: Mon Nov 16 14:04:16 2009 +0000 - - HHH-4576 - Tests in MySQL using different case for objects as defined in configuration - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17988 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit a99a524b370a397ce10aac3dc5c96dcb02842177 -Author: Steve Ebersole -Date: Sat Nov 14 18:03:16 2009 +0000 - - HHH-4572 - check if the connection supports jdbc4 before looking for the createClob method - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17984 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit a63c8ef82ace0a69cf5e7aff14878c41148c040b -Author: Steve Ebersole -Date: Sat Nov 14 03:45:27 2009 +0000 - - HHH-4572 - check if the connection supports jdbc4 before looking for the createClob method - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17979 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 3ac574d7dacce4f7513cdbfea2d34ade149bcf1c -Author: Steve Ebersole -Date: Fri Nov 13 19:04:09 2009 +0000 - - HHH-2990 - Bad usage of ClassLoader.loadClass() for Java6 in SerializationHelper$CustomObjectInputStream - deserialization bottleneck for arrays - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17978 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 5379d952d476d652525792ddfa3f82aa3e117bb8 -Author: Hardy Ferentschik -Date: Fri Nov 13 18:15:10 2009 +0000 - - HHH-4573 - - ComponentTupilzer - typo in doc - CompositeIdTest, TvMagazinPk - test cleanup - DynamicComponentTupilzer - import cleanup - Ejb3* - Added toString() implementations and changed logging string - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17977 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit ec31e277ecf1b3f22d026db01afb29cb31777e18 -Author: Galder Zamarreno -Date: Fri Nov 13 18:12:53 2009 +0000 - - [HHH-4519] (Hibernate/Infinispan integration doesn't property handle Entity/CollectionRegionAccessStrategy evictAll) Fixed and got provider to work with forthcoming Infinispan 4.0.0.CR2 which has been just tagged but the maven repo has not been updated yet. - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17976 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 8da29593d257435d1c382654470ebde7390145e8 -Author: Scott Marlow -Date: Fri Nov 13 17:40:36 2009 +0000 - - HHH-4572) check if the connection supports jdbc4 before looking for the createClob method - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17975 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 66b84aec0c57fbaea50718321b561a069a7d6585 -Author: Steve Ebersole -Date: Fri Nov 13 16:15:57 2009 +0000 - - HHH-4571 - Infinispan not properly being built into distribution bundle - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17974 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 5a2caea95928df8a84ed6e6153da02659edf1726 -Author: Steve Ebersole -Date: Fri Nov 13 04:26:57 2009 +0000 - - HHH-4569 - Split focus of ConfigurationPerformanceTest - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17968 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit d558dac5dc3d534c49dbb3a2e27bf1236fcd7c68 -Author: Steve Ebersole -Date: Thu Nov 12 19:46:04 2009 +0000 - - HHH-4569 - Split focus of ConfigurationPerformanceTest - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17964 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 655be65063f861428503c58737cf23a4b8f7368d -Author: Scott Marlow -Date: Thu Nov 12 04:20:41 2009 +0000 - - HHH-4546 - add JPA 2.0 locking. - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17962 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 49d529bad878d33c667f8ab8582f02d053885420 -Author: Steve Ebersole -Date: Wed Nov 11 22:20:48 2009 +0000 - - HHH-4567 - EntiytManager's QueryImpl mishandles ordinal position of HQL-style positional parameters - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17961 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 85b3ad297f09462ae3631a5ab5cd6a60c1e5d8b6 -Author: Steve Ebersole -Date: Wed Nov 11 20:27:39 2009 +0000 - - HHH-4065 - Incorrect SQL is used for HQL if the number of values for a filter collection parameter is changed - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17959 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit c97e15d28f01804f0e4986974917b4435fb311e1 -Author: Gail Badner -Date: Wed Nov 11 18:56:29 2009 +0000 - - HHH-2762 : Add AbstractDelegateSessionImplementor.getNonFlushedChanges()/applyNonFlushedChanges() - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17958 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 2db1718bf7de3308c394edf57b647fbbe0c15f4e -Author: Hardy Ferentschik -Date: Wed Nov 11 16:50:34 2009 +0000 - - HHH-4566 Added test scope to the jaxb dependencies - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17957 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 7aa225c0fe39d3178e4e0516b57187da071c7e26 -Author: Juraci Krohling -Date: Wed Nov 11 16:30:22 2009 +0000 - - HHH-4565 HSQLDB shouldn't be a dependency in compile scope - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17956 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 1d3ceafffbbc58a19c5bcc01474f30cd73ec6149 -Author: Steve Ebersole -Date: Wed Nov 11 05:58:42 2009 +0000 - - HHH-4561 - Deprecate openConnection()/closeConnection() methods on Batcher interface - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17955 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit f5384ba355665518876225d9513999fcee140003 -Author: Steve Ebersole -Date: Tue Nov 10 21:27:01 2009 +0000 - - HHH-4548 - Alter poms to not use javax.* artifacts under Sun proprietary license - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17952 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 617975fefb42fe5bd6d3ae7893e96077cb44c84a -Author: Steve Ebersole -Date: Tue Nov 10 21:26:50 2009 +0000 - - HHH-4560 - JDBC4 support inadvertently missed 1.4 compatibility - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17951 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit aa8ad85ce43d4d4c3da2bec885e7deb1c4fc6d3d -Author: Steve Ebersole -Date: Tue Nov 10 20:00:14 2009 +0000 - - HHH-4550 - Document that update-timestamps cache region should not be configured for expiry. - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17950 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 5d3893d290f86946bf4657c9bcc889c6c9495e9c -Author: Gail Badner -Date: Tue Nov 10 08:38:09 2009 +0000 - - HHH-2762 : SessionImplementor.getNonFlushedChanges()/applyNonFlushedChanges() API and initial implementation - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17948 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 13b6de2490e550e9147927a953b9eb2435c941e4 -Author: Gail Badner -Date: Sat Nov 7 00:38:39 2009 +0000 - - HHH-4545 : change CollectionAction.readObject() to private - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17947 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit d82c1e859bec6845bc89726bdb7637bc2844957e -Author: Scott Marlow -Date: Fri Nov 6 13:59:37 2009 +0000 - - HHH-4546 - add JPA 2.0 locking - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17944 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 1bd95b3c1cae7b6c8a6ea9cd67863a17002ae85b -Author: Hardy Ferentschik -Date: Fri Nov 6 13:20:10 2009 +0000 - - updated to the latest HV version - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17943 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit d0bad68a9b35ebcd448f2839b39bebf9f757035b -Author: Steve Ebersole -Date: Fri Nov 6 05:25:38 2009 +0000 - - HHH-4548 - Alter poms to not use javax.* artifacts under Sun proprietary license - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17936 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 007f7817b43a81a4a510bdbef5df3fc9deb0a2df -Author: Steve Ebersole -Date: Thu Nov 5 21:51:19 2009 +0000 - - HHH-4548 - Alter poms to not use javax.* artifacts under Sun proprietary license - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17935 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit bcb9f8a302007b73ba6bfdeb8513dba1e5e9a4c5 -Author: Steve Ebersole -Date: Thu Nov 5 03:17:54 2009 +0000 - - HHH-3529 - ConnectionWrapper is not visible from class loader - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17917 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 61b9b2575cfacebf3945974500e65237d9c17f86 -Author: Steve Ebersole -Date: Wed Nov 4 23:32:27 2009 +0000 - - HHH-4000 - Utlize jhighlight hooks for rendered syntax coloration of XML and Java based programlisting docbook elements - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17916 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 9b8b82b5492a7cf1962b740770efb23953fb4582 -Author: Steve Ebersole -Date: Wed Nov 4 22:28:47 2009 +0000 - - HHH-4006 - Document fetch profiles - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17915 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 07ae68ff984f828b75270906c959ad7a4192c345 -Author: Steve Ebersole -Date: Wed Nov 4 21:21:36 2009 +0000 - - HHH-4545 - Allow o.h.action.Executable to register for either (or both) before or after transaction completion callbacks - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17914 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 9c74610a9d1023193688244d1f3d354fe9eaad9e -Author: Steve Ebersole -Date: Wed Nov 4 21:19:21 2009 +0000 - - HHH-4545 - Allow o.h.action.Executable to register for either (or both) before or after transaction completion callbacks - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17913 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit ecaf3990b81eab91ee1c673fda2a3d47b63f2c87 -Author: Adam Warski -Date: Wed Nov 4 18:40:13 2009 +0000 - - Removing the org.jboss compatibility classes - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17912 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 66610a567cdbaebd875bcb83e073cd73ddfc0ebd -Author: Emmanuel Bernard -Date: Tue Nov 3 17:19:57 2009 +0000 - - HHH-4542 read the collection type from the member rather than the expected Hibernate collection type - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17901 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit ab26c15c32a90c7506df1c515e5044f3e226c16f -Author: Steve Ebersole -Date: Tue Nov 3 05:13:23 2009 +0000 - - Generate and install/deploy source jars - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17898 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit f88c502e95a2f810002d68a775bb08d70b1bd4cd -Author: Steve Ebersole -Date: Tue Nov 3 05:12:40 2009 +0000 - - Bind assembly building to deploy phase - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17897 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit d8f6d41a4b9a51aca605921a2e12bfd86768eda5 -Author: Steve Ebersole -Date: Mon Nov 2 22:09:31 2009 +0000 - - account for inconsistencies in the annotation processoer - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17894 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 5ecfeb5cb8bc127d3ea99118f68c3b47a130bbc2 -Author: Steve Ebersole -Date: Mon Nov 2 18:20:40 2009 +0000 - - prep 3.5.0-Beta-2 by hand because maven rocks - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17892 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit c42e871b9581532feda3e8664376d6ec8d9a5f9c -Author: Steve Ebersole -Date: Mon Nov 2 18:09:43 2009 +0000 - - prep 3.5.0-Beta-2 by hand because maven rocks - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17890 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 9f0cf7f170a05591b5de3a430cab04f4e99fa9e7 -Author: Steve Ebersole -Date: Mon Nov 2 17:15:23 2009 +0000 - - prep 3.5.0-Beta-2 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17889 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit ed2371b802e57e4ef8d7200d9f6eabdaa11a47e2 -Author: Steve Ebersole -Date: Mon Nov 2 16:52:02 2009 +0000 - - remove stray character - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17888 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit d9372cac897a83b32d0fb1d818b2206a1bdaec22 -Author: Steve Ebersole -Date: Mon Nov 2 16:49:28 2009 +0000 - - Remove tutorials from the build for the time being - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17887 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 255b7076b8a34b2b0a50f76bc766e4219843c97a -Author: Steve Ebersole -Date: Mon Nov 2 16:46:17 2009 +0000 - - HHH-4202 - Implement JPA 2.0 metamodel APIs - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17886 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 2dc911855b585017126266afa9371ce52f359852 -Author: Emmanuel Bernard -Date: Fri Oct 30 13:00:07 2009 +0000 - - HHH-4537 Add support for MappedSuperclassType Members in JPA 2 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17883 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit e759809c35175508408d258f086c78516b717d20 -Author: Steve Ebersole -Date: Thu Oct 29 20:44:57 2009 +0000 - - HHH-4532 - Unit Tests in test/idgen/enhanced/forcedtable need update - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17880 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit fb9bdb7f387a4c8e100e2a8109e3c9b8706f4fed -Author: Emmanuel Bernard -Date: Thu Oct 29 18:57:24 2009 +0000 - - HHH-4533 Populate the JPA 2 metamodel with the new mapping.MappedSuperclass metadata - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17879 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit fceda002d0143ee6c747ba84e14bc89ba1407bbb -Author: Hardy Ferentschik -Date: Thu Oct 29 17:22:00 2009 +0000 - - Removed link to issue tracker. Defined in parent - Updated BV version - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17878 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 2a60faba250beb9aa994805672be17a23d24851f -Author: Hardy Ferentschik -Date: Thu Oct 29 13:55:33 2009 +0000 - - HHH-1724 updated test which expected an Integer instead of Long as row count - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17877 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 37dc5e05babb351e22ef25ded1174d5f9d3b15a0 -Author: Adam Warski -Date: Thu Oct 29 07:23:12 2009 +0000 - - Removing disabling of metamodel generation in tests after it's been fixed in EM. - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17875 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit db08dbf46baf7963789f1dd6aa3c9386e6da41b0 -Author: Steve Ebersole -Date: Thu Oct 29 02:07:40 2009 +0000 - - HHH-1724 - Critieria needs to be aligned with new aggreation type rules - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17874 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 1352b5e25f330f2838e27fb8b5ba1c05d4b8c8ab -Author: Emmanuel Bernard -Date: Thu Oct 29 00:36:07 2009 +0000 - - HHH-4533 move metamodel storage to Hibernate Core - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17873 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit f795bd31e4cab92fe93a12b7b79caa6e99e5155e -Author: Emmanuel Bernard -Date: Thu Oct 29 00:13:24 2009 +0000 - - HHH-4533 move metamodel storage to Hibernate Core - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17872 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit c7c6981a558e35f01ff8d27938e98aa83896765c -Author: Emmanuel Bernard -Date: Wed Oct 28 18:14:25 2009 +0000 - - HHH-4533 add representation for @MappedSuperclass in the Hibernate Core metamodel and properly populate this model extension in Hibernate Annotations - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17871 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 5cc638576fb825eb0fd0a6edf4c26211d6175159 -Author: Gail Badner -Date: Wed Oct 28 18:03:10 2009 +0000 - - HHH-4202 : Fix to only build an EntityType for PersistentClasses with a mapped class - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17870 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 6d5de2b0aff210021066945e86030d37f12b0cfd -Author: Steve Ebersole -Date: Wed Oct 28 16:54:00 2009 +0000 - - HHH-1480 - JOIN precendence rules per SQL-99 - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17869 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 260e2f2022a0f114608ff2332c57b0b28a11c6c3 -Author: Steve Ebersole -Date: Wed Oct 28 16:05:29 2009 +0000 - - HHH-1012 - Index not created by SchemaUpdate - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17868 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 9909f9ce722dfca240b49357329e2fd937763128 -Author: Steve Ebersole -Date: Wed Oct 28 15:49:36 2009 +0000 - - HHH-3972 - Adding FETCH FIRST and OFFSET support to DerbyDialect - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17867 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit a1e8d7cb0dcb4bd58fc5d210031bd0fb28196034 -Author: Sharath Reddy -Date: Wed Oct 28 10:57:21 2009 +0000 - - HHH-4332 Filters for MappedSuperClass - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17859 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 356063a33fed1fd588ab8060df275d89567b1f59 -Author: Adam Warski -Date: Tue Oct 27 19:58:19 2009 +0000 - - HHH-4488: - - applying patch (making collection proxy serializable) + test - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17853 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 2f7092c17c31b6cdcf6e683af3b190d1b538b987 -Author: Adam Warski -Date: Tue Oct 27 19:53:14 2009 +0000 - - Diabling generation of the metamodel for tests as the generation breaks them - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17852 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit e229d0171a9696693681fd5bc0fffc148a5aeb9d -Author: Steve Ebersole -Date: Tue Oct 27 18:49:25 2009 +0000 - - HHH-4202 - Implement JPA 2.0 metamodel APIs - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17850 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 2176af11442c702aefa1900cdba4c32e6338b620 -Author: Hardy Ferentschik -Date: Tue Oct 27 15:05:44 2009 +0000 - - HHH-4528 - Applied patch (with minor cleanup) - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17849 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit f8fef6c6c1c67c769f7f4175763311ed34cf8431 -Author: Hardy Ferentschik -Date: Tue Oct 27 09:39:38 2009 +0000 - - HHH-4530 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17847 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit d9c931eb2f5a7bf1283a6e898baca7d92a96cf60 -Author: Hardy Ferentschik -Date: Tue Oct 27 09:36:55 2009 +0000 - - HHH-4530 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17846 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 5c195024b9cbb57aacd14a216e6688bfd6631a91 -Author: Steve Ebersole -Date: Mon Oct 26 18:35:29 2009 +0000 - - HHH-4203 - Implement JPA 2.0 criteria apis (compiling) - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17845 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit d74037756e75b438a69b64210be051a97e5e5d75 -Author: Steve Ebersole -Date: Mon Oct 26 17:04:59 2009 +0000 - - HHH-4202 - Implement JPA 2.0 metamodel APIs - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17843 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 9fb2cb6d159986cb1c665e66a8e651cdb224070a -Author: Steve Ebersole -Date: Mon Oct 26 05:26:51 2009 +0000 - - HHH-4202 - Implement JPA 2.0 metamodel APIs - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17837 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit b687bbeb9b26acffa6aaa5a25ab4554c116f7395 -Author: Steve Ebersole -Date: Mon Oct 26 05:23:40 2009 +0000 - - HHH-4202 - Implement JPA 2.0 metamodel APIs - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17836 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 3a0b72d59fd75ad6cb5886653ff2c095d2428b96 -Author: Steve Ebersole -Date: Sun Oct 25 19:19:48 2009 +0000 - - HHH-4526 - Add better metainf information to the hibernate all jar gennerated for dist - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17835 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 2bd4b91943f51766636a42018c8b8f32f4c217d6 -Author: Steve Ebersole -Date: Sun Oct 25 19:11:38 2009 +0000 - - HHH-4525 - Trunk is not including the newly added modules to the distribution bundle - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17834 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit ae5984141dd92af19228baea20ee4c6486074721 -Author: Steve Ebersole -Date: Sun Oct 25 18:23:36 2009 +0000 - - HHH-4442 : sybase dialects and dialect factory - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17832 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 9a1a95b2a223df58dba0f0607266e532f3abd336 -Author: Steve Ebersole -Date: Sat Oct 24 21:37:27 2009 +0000 - - HHH-4203 - Implement JPA 2.0 criteria apis (compiling) - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17830 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit b61332b10b6e4ccb993bf5d6124aafd8f66ba2e7 -Author: Sharath Reddy -Date: Fri Oct 23 17:07:50 2009 +0000 - - HHH-4288 Filters on collections are ignored - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17829 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 322de42a1f79e495f7e7b35dc7e5aee53ca5fbf5 -Author: Hardy Ferentschik -Date: Fri Oct 23 14:32:18 2009 +0000 - - HHH-4523 - made the bundles use the filtered connection settings - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17827 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 806f3f184c87272adb6ea69aa926c3076f18cd31 -Author: Hardy Ferentschik -Date: Fri Oct 23 13:48:18 2009 +0000 - - HHH-4523 restructured the test resources - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17826 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 61e225e2c5e0d797dda44d3e75876d3e3dca19d2 -Author: Emmanuel Bernard -Date: Fri Oct 23 13:33:58 2009 +0000 - - better log - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17825 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit ecdc192ca45acaace4419e64e136354b6a6a8cfa -Author: Hardy Ferentschik -Date: Fri Oct 23 12:39:54 2009 +0000 - - HHH-4522 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17824 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 30dba20ce4912cef21b3e822a62dd7a025c908dc -Author: Steve Ebersole -Date: Fri Oct 23 05:08:40 2009 +0000 - - HHH-4442 - Change StandardDialectResolver to use SybaseASE15Dialect over deprecated SybaseDialect - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17823 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 9e76e1b184bce54f94f744228b43f97b77312b9b -Author: Steve Ebersole -Date: Thu Oct 22 21:22:46 2009 +0000 - - HHH-4443 : generic handling of any Hibernate type for post-insert generated identifiers - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17822 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit cb34e79283dc7d37e841fd97e04992427fe8b534 -Author: Steve Ebersole -Date: Thu Oct 22 20:02:10 2009 +0000 - - HHH-4440 : column-level read/write fragment support - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17821 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit d14de0122068fde60fb7dbc586cde8cd6d59f8ca -Author: Hardy Ferentschik -Date: Thu Oct 22 16:45:01 2009 +0000 - - HHH-4516 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17820 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 1a4b12967ad71045fbd2709c91182ddb2e49c879 -Author: Hardy Ferentschik -Date: Thu Oct 22 12:04:02 2009 +0000 - - changed the dependecy definitions for the postgres profiles. 'jdbc3' is in the postgres sense no classifier. Or if i is they don't package the driver in the right way for maven - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17819 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 11a87b69656f3993263dcd6e1819ad1e6f147b11 -Author: Hardy Ferentschik -Date: Thu Oct 22 11:10:31 2009 +0000 - - HHH-4513 - Made sure hibernate.validator.apply_to_ddl property is honored - Also changed BeanValidationGroupsTest to work against other databases than HSQLDB - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17818 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 85792a42d21a756e6d81940b69a7db2bc7a67a37 -Author: Sharath Reddy -Date: Thu Oct 22 10:02:12 2009 +0000 - - HHH-4473 Create documentation to explain the usage of the new 'defaultForType' attribute of the TypeDef annotation - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17817 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit d26c00225847f5b4e869146188e3e80914367d7a -Author: Sharath Reddy -Date: Wed Oct 21 17:16:57 2009 +0000 - - HHH-4512 TypeDef annotation should support both 'name' and 'defaultForType' attributes - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17814 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 00fbf234e145313f542bc78e17b17a9891328a43 -Author: Hardy Ferentschik -Date: Tue Oct 20 17:33:40 2009 +0000 - - HHH-4203 - Added the annotation processor to the EM build to generate static entity model classes - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17808 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 52c0d41f83f5dcaaab30186823a7b490d5361244 -Author: Hardy Ferentschik -Date: Tue Oct 20 17:31:02 2009 +0000 - - fixed some typos - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17807 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit a875b19af1343e981b0733fbdb86ac496bdec345 -Author: Juraci Krohling -Date: Tue Oct 20 14:21:52 2009 +0000 - - HHH-4508 - Fixed 'avalable' typo - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17805 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 95d4af906e578b2fb0042f46e95937293eee4119 -Author: Galder Zamarreno -Date: Mon Oct 19 16:48:53 2009 +0000 - - Do not hardcode marshaller and version. Stick to defaults. - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17799 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 71d0acb6b0e3ceb781e122346918db0741c3b967 -Author: Strong Liu -Date: Mon Oct 19 15:44:44 2009 +0000 - - HHH-4503 Sybase - Annotations - unit tests using LOBs fail - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17796 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit dba93d5753a6f8fa67da68124eca7645da2c5781 -Author: Juraci Krohling -Date: Mon Oct 19 14:16:26 2009 +0000 - - HHH-4502 - Moved database profiles to parent/pom.xml and updated to use latest available resources in the lab - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17795 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit bacd947d5f8aecb6ce82f5c030958736840b17d8 -Author: Steve Ebersole -Date: Mon Oct 19 13:53:11 2009 +0000 - - HHH-4501 : use maven wagon-scm provider for release deployment - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17794 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 3f3bb321ca2cccd41681a61f2ec6bf03c0324a9e -Author: Strong Liu -Date: Mon Oct 19 13:15:07 2009 +0000 - - HHH-4500 MSSQL, Oracle - Mapping inconsistency - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17790 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 376ef717e92531cff14054ad4cd284560746f1ad -Author: Steve Ebersole -Date: Fri Oct 16 16:21:02 2009 +0000 - - HHH-4486 : MySQL [DROP TEMPORARY TABLE] support - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17782 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 7eb946fec5869254e324d64fa7de2611afa351ec -Author: Steve Ebersole -Date: Fri Oct 16 15:34:39 2009 +0000 - - HHH-2412 - Support for JDBC4 - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17781 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit b759f3ca1fa25912ee752526bfc12f902587288d -Author: Steve Ebersole -Date: Fri Oct 16 14:22:29 2009 +0000 - - HHH-4499 : JDK 1.6 and modules - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17780 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 95285ad109f4240205147e74802deb25b26a6959 -Author: Hardy Ferentschik -Date: Fri Oct 16 13:22:28 2009 +0000 - - HHH-4498 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17779 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 6613dce0cbfbff53bdaa874ed716a61d0db5b9a9 -Author: Hardy Ferentschik -Date: Fri Oct 16 13:02:53 2009 +0000 - - HHH-4497 - Skipping ManyToOneWithFormulaTest.testManyToOneToPkWithOnlyFormula for now. Added a SkipForDialectAnnotation as counterpart for RequiresDialect - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17778 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 26dce3ac64ce332aa64e8108e4644aa7535db3f1 -Author: Hardy Ferentschik -Date: Fri Oct 16 12:10:32 2009 +0000 - - moved the jdk6 based modules into a profile to be able to skip them. Also removed the /bin part of the javac command - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17774 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit ca85991589fa9d57251835a000689931b631edee -Author: Steve Ebersole -Date: Fri Oct 16 01:02:14 2009 +0000 - - Update jpa-api to 2.0-cr-1 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17773 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 694a694d5d4826b55fdd0aac622bf6ff78bf7fed -Author: Steve Ebersole -Date: Fri Oct 16 00:50:22 2009 +0000 - - HHH-4203 - Implement JPA 2.0 criteria apis (compiling) - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17772 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 7daebe499256b282c550f50663be2fb2a76d2c8c -Author: Steve Ebersole -Date: Thu Oct 15 23:44:41 2009 +0000 - - HHH-2412 - Support for JDBC4 - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17771 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 518cf52dfd92276d377458fe535a8243ab68db27 -Author: Steve Ebersole -Date: Thu Oct 15 23:42:48 2009 +0000 - - HHH-2412 - Support for JDBC4 - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17770 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit cbdce5873a4a4c7e8c57227bb5d6ea4262dfa0ab -Author: Steve Ebersole -Date: Thu Oct 15 19:08:41 2009 +0000 - - expanded svn:ignore list - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17769 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit bbe65a9be45314519b9aa9ca45f291eb51e96531 -Author: Steve Ebersole -Date: Thu Oct 15 18:50:41 2009 +0000 - - Update jpa-api to 2.0-cr-1 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17768 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 36dbd3a06e5867cc830b8537f6e24618a8a47137 -Author: Steve Ebersole -Date: Thu Oct 15 16:26:26 2009 +0000 - - HHH-2412 - Support for JDBC4 - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17767 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit a000137e19dac65ebb45dc95c6b10b63f2178924 -Author: Hardy Ferentschik -Date: Thu Oct 15 15:28:29 2009 +0000 - - removed non UFT-8 characters before the 'All third-party' - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17766 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit d5bd71b60af596999d7584d0b23b7bc9dcf78781 -Author: Galder Zamarreno -Date: Thu Oct 15 14:45:24 2009 +0000 - - Update to Infinispan 4.0.0.BETA2 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17765 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 74e72fb7561a5af46b6920ad6c9da8713f3c3b4d -Author: Strong Liu -Date: Thu Oct 15 03:12:54 2009 +0000 - - JBPAPP-2862 CLONE -Sybase - EntityManager - unit tests using LOBs fail - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17762 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit b810e64514611b214ece82bc514c9430e19aef2c -Author: Gail Badner -Date: Wed Oct 14 22:18:06 2009 +0000 - - HHH-4494 : cglib log warning says BytecodeProvider impl is considered deprecated - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17750 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit b5325a5752ff57fa530bbec69679cd68802cb308 -Author: Strong Liu -Date: Wed Oct 14 05:32:56 2009 +0000 - - HHH-4397 Split test involving database specific features (like sequence / identity) - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17737 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 6ddd9690a59f2d021bd8fb10ac3d644abbea95f5 -Author: Strong Liu -Date: Wed Oct 14 04:18:35 2009 +0000 - - HHH-4397 Split test involving database specific features (like sequence / identity) - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17734 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit bca8c9620465bf63ea2695f83210366d4d1885c6 -Author: Brian Stansberry -Date: Tue Oct 13 17:02:19 2009 +0000 - - [HHH-3817] Remove unneeded get() - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17731 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 50bba159965d436598f7e860961a6f37b46d6809 -Author: Brian Stansberry -Date: Tue Oct 13 16:55:04 2009 +0000 - - [HHH-3817] Remove unneeded get() calls - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17730 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 304af4d4e2e5c65ba11e771c070e97dd529258de -Author: Brian Stansberry -Date: Tue Oct 13 16:35:41 2009 +0000 - - [HHH-3817] Remove unneeded get() - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17728 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 766a044dc3cdeec8d08ab581aeb5920aa57ae95f -Author: Strong Liu -Date: Tue Oct 13 15:57:41 2009 +0000 - - HHH-4397 Split test involving database specific features (like sequence / identity) - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17726 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit f5a280bc5b64910b9760263d3d572396e1c09038 -Author: Brian Stansberry -Date: Tue Oct 13 15:30:21 2009 +0000 - - Reference EAP instead of JEMS - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17723 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit dba4de2d26fd68eda42e02a94b7ecc4e95fca940 -Author: Hardy Ferentschik -Date: Tue Oct 13 09:20:40 2009 +0000 - - HHH-4415 removed the ambigous dialect instance variable in TestCase. Instead use the static method Dialect.getDialect - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17713 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit a8047fe21a897a3713b7643a7aa82deacfb32aaf -Author: Hardy Ferentschik -Date: Mon Oct 12 14:08:37 2009 +0000 - - HHH-4415 - Made sure that the the superclass dialect is checked. - Did not apply provided patch though. - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17692 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit ea91bf00a0e06227dec11768bc4de45f2aebae3d -Author: Strong Liu -Date: Sat Oct 10 16:10:38 2009 +0000 - - HHH-4405 Integrate new long string and binary property types in core with annotations - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17685 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 85212c51c40a90d973bdf48919d7b7a08217d0ca -Author: Emmanuel Bernard -Date: Sat Oct 10 15:44:29 2009 +0000 - - HHH-4105 Fix mispell in SessionFactory#containsFetchProfileDefition - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17684 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 4edcb6290bddee4d0d905db912db27ffc82c72e0 -Author: Emmanuel Bernard -Date: Fri Oct 9 15:58:31 2009 +0000 - - HHH-4382 HHH-4479 support formula as join columns with annotations (needs doc still( (Sharath Reddy) - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17680 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 7ca0f71ee1205b7040745ca94af4ec93e7fb996b -Author: Brian Stansberry -Date: Fri Oct 9 03:56:07 2009 +0000 - - Update for use with JBC 3 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17672 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit c27da172abccf373390f49dd568c58e613c4c87d -Author: Brian Stansberry -Date: Fri Oct 9 02:25:15 2009 +0000 - - Typo - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17663 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit c49ef2e2f243d623e59bcab018e4e9e4306e1cfd -Author: Brian Stansberry -Date: Thu Oct 8 23:23:42 2009 +0000 - - [HHH-4487] Restore versions of the old public API jbc2 package classes - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17662 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 63f4fab3d0b35016a682cd78ffe08d05aefcae22 -Author: Brian Stansberry -Date: Thu Oct 8 22:52:32 2009 +0000 - - [HHH-4487] Restore versions of the old public API jbc2 package classes - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17661 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit ac6a4f652a0e3ce57fb1f794bb027d9400b731bb -Author: Brian Stansberry -Date: Thu Oct 8 22:40:42 2009 +0000 - - [HHH-4485] Replace the JBoss Cache integration configuration properties with "jbc2"-less versions - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17660 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit c32a7a00a5f777e808e82e4505174e950e201c10 -Author: Brian Stansberry -Date: Thu Oct 8 20:59:56 2009 +0000 - - [HHH-4484] When JBoss Cache is configured for INVALIDATION don't send cluster message on entity insert - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17659 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 0ddf421e783404dc04ec5d9b6bffd1bb6f8554ec -Author: Brian Stansberry -Date: Thu Oct 8 19:43:00 2009 +0000 - - Fix code style - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17658 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 2ad3cfb6c0b8db7471b3b4c46d323fbb5d9d5ac4 -Author: Brian Stansberry -Date: Thu Oct 8 17:50:07 2009 +0000 - - [HHH-3817] Further refine, test PutFromLoadValidator - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17657 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit d9adc4bc12bbd1b69756158d74d8d4fbfff152dc -Author: Brian Stansberry -Date: Wed Oct 7 23:30:50 2009 +0000 - - [HHH-3817] Create PutFromLoadValidator class to control whether puts are allowed after removes/evicts - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17643 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit c8873dff760a3e6e3d2f85d3215b2fc529aeb7c8 -Author: Brian Stansberry -Date: Wed Oct 7 20:45:06 2009 +0000 - - [HHH-3849] Disable lock striping in JBoss Cache configs - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17642 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 92843349de28227a3418a16895fdb242a2ddd371 -Author: Brian Stansberry -Date: Tue Oct 6 20:42:51 2009 +0000 - - [HHH-3849] Disable lock striping in JBoss Cache configs - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17637 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 871daa5c91296650ef0fc1ba457995ae8f2f014b -Author: Brian Stansberry -Date: Tue Oct 6 18:38:33 2009 +0000 - - [HHH-4476] Use JBC 3.2.1.GA - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17635 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 9cfcc990f2cf69172e7c32dc62c9a68fd27ee59b -Author: Brian Stansberry -Date: Tue Oct 6 18:17:00 2009 +0000 - - [HHH-4435] newerThan should return false when comparing to self - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17634 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 06491edd23ef08fae6d58c4823221e5b1df2dcd6 -Author: Brian Stansberry -Date: Tue Oct 6 18:15:30 2009 +0000 - - [HHH-4475] Fix resource locations to reflect repackaging - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17633 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit dbcf806b7e0ae9eb5012d03bc510cd94b759e6df -Author: Emmanuel Bernard -Date: Tue Oct 6 09:21:51 2009 +0000 - - HHH-4364 add tests for superclasses - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17629 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 202b5faf7026eac676efeebd5e1dea3f1d7a7fb5 -Author: Emmanuel Bernard -Date: Tue Oct 6 08:18:12 2009 +0000 - - HHH-4232 add missing test - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17628 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 4c62467d4d873e986f905f9bec83fb6f59b165fc -Author: Emmanuel Bernard -Date: Tue Oct 6 08:15:27 2009 +0000 - - HHH-3000 Allow a TypeDef to be associated with a class (Sharath Reddy) - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17627 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit c6a32b933dc42327f8adcd3fdfc057b1e3278289 -Author: Emmanuel Bernard -Date: Tue Oct 6 07:50:35 2009 +0000 - - HHH-3000 Allow a TypeDef to be associated with a class (Sharath Reddy) - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17626 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 460a7ace1c3bd0d66914a0e32764a67bf24210d1 -Author: Sanne Grinovero -Date: Fri Oct 2 20:19:22 2009 +0000 - - HHH-4441 : fixing out-of-specification custom Serialization (see also JBMAR-67) - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17612 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 99dac200f2834ecd5abb0da36272aded158d6558 -Author: Adam Warski -Date: Wed Sep 30 17:16:01 2009 +0000 - - HHH-4449: - - applying patch - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17587 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit c987deb619fccc9521b44d51ab2ce2388d9f0208 -Author: Adam Warski -Date: Wed Sep 30 17:11:04 2009 +0000 - - HHH-4447: - - applying patches - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17586 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 58fdaeb6370505fe3870136cbb6c2173eed46b33 -Author: Adam Warski -Date: Wed Sep 30 16:28:00 2009 +0000 - - HHH-4437: - - applying patches - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17584 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit e1f0574cd148bc58e37dad92b483549410f12a15 -Author: Hardy Ferentschik -Date: Mon Sep 28 11:42:48 2009 +0000 - - HV-232 - Added no-arg constructor to listener. - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17551 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit f108c4af9271e27c3166db87df69949efd9cbf20 -Author: Emmanuel Bernard -Date: Fri Sep 25 11:14:51 2009 +0000 - - HHH-4463 do not alter setMaxResult for native queries in getSingleResult() as the query transformation will likely fail. - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17543 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 8eeaaeb286ef132a8cfd3389f823e5764f994a97 -Author: Emmanuel Bernard -Date: Wed Sep 23 16:25:07 2009 +0000 - - Fix unsafe use and copy data to Set> - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17534 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 8cc9e9d5fd2e13844ed222e144c48f7df4487fa4 -Author: Emmanuel Bernard -Date: Tue Sep 22 17:43:48 2009 +0000 - - HHH-4232 TypeDef support when used on @Embeddable or @MappedSuperClass classes - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17531 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 88caf4d9586e988675254c268f4e145d272a9499 -Author: Emmanuel Bernard -Date: Tue Sep 22 17:19:24 2009 +0000 - - HHH-4364 support @NamedQuery on a @MappedSuperclass (Sharath Reddy) - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17530 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit b8da75793708d786837ddefeec96bd42433ba4b7 -Author: Hardy Ferentschik -Date: Fri Sep 18 09:06:47 2009 +0000 - - JBPAPP-1075 - Removed the @JoinColumn mappings. Thought not wrong per se they cause some wrong table creation scripts. Removing them circumvents this problem without affecting the test. - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17527 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 0a1763a207d2a615c1788dd2307ad1985822d2d8 -Author: Steve Ebersole -Date: Thu Sep 17 21:26:25 2009 +0000 - - HHH-4196 - Implement JPA 2.0 criteria apis (building) - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17526 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 4dc46db78371d5fa145ca32e6110dfa7ac69afec -Author: Hardy Ferentschik -Date: Thu Sep 17 17:36:24 2009 +0000 - - JBPAPP-1075 - Removed unique constraint on order number. - Also removed an empty test method. - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17524 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit d2d356832358b3269de4d407da27d5fb8632616d -Author: Steve Ebersole -Date: Tue Sep 15 12:33:28 2009 +0000 - - HHH-3461 - Enhance DialectFactory to support Sybase Adaptive Server Anywhere - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17514 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 599ffd7992243891cbcef9f32a4d5ba68b4c77ec -Author: Hardy Ferentschik -Date: Tue Sep 8 13:44:27 2009 +0000 - - JBPAPP-1075 - Removed the unique contraint the GROUPS_PERMISSIONS table. - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17492 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 0f807c6029bc6c244f1bc124a45f8aaa80bdb831 -Author: Hardy Ferentschik -Date: Tue Sep 8 13:18:02 2009 +0000 - - Upgraded hibernate-validator dependency 4.0.0.CR1 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17491 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit d8342f4a7a97665aa3d6e9ad79e1326a5e952b29 -Author: Hardy Ferentschik -Date: Tue Sep 8 13:17:06 2009 +0000 - - Fixed some typos and cleaned up the import list - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17490 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 9e7e49d1f13c2979bf9b30917d6e3289c038b5b1 -Author: Galder Zamarreno -Date: Tue Sep 8 09:55:19 2009 +0000 - - [ISPN-6] [HHH-4103] Tidy up commented code. - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17488 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit fc6da13a851b75e7e92dd16f92350d2926e6295c -Author: Galder Zamarreno -Date: Mon Sep 7 17:50:30 2009 +0000 - - [ISPN-6] [HHH-4103] Fixed Infinispan classloader tests that required fixing some issues in the region factory implementation, but also a fix in Infinispan and a fix in JBoss Marshalling. I'll update the pom.xml to a new Infinispan release as soon as we have a new one. I've also added a fndi version of the Infinispan region factory to be used under JBoss AS. Finally, added some extra optional Infinispan configurations to the default file for testing and indication purpouses. - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17487 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 4bd7cb84d7a0fecae60cda091f4dfcf7e41c5078 -Author: Strong Liu -Date: Wed Sep 2 02:30:42 2009 +0000 - - JBPAPP-2716 HHH-4115 : Core - FooBarTest - 'operator does not exist: character varying = integer' - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17463 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 5af53b5d1046a8de50a93836774c344420b011a9 -Author: Strong Liu -Date: Wed Sep 2 02:29:36 2009 +0000 - - JBPAPP-2715 HHH-4114 : Core - ASTParserLoadingTest fails due to missing 'bit_length' function - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17462 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit f5f26545bb16c57fc801dd9b6c150a73948d3a41 -Author: Greg Luck -Date: Mon Aug 31 00:34:25 2009 +0000 - - Upped ehcache dependency to version 1.5 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17449 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit c5da7c30c171a1991742bc7d34e2ab5a1254f9f4 -Author: Steve Ebersole -Date: Wed Aug 26 20:34:58 2009 +0000 - - EJB-461 - Implement JPA 2.0 criteria apis (compiling) - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17426 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 4b6a3903a93c38aa321e7b95f60336d6fd6f683f -Author: Manik Surtani -Date: Tue Aug 25 15:20:45 2009 +0000 - - [ISPN-6] Updated dependency of test suite to Infinispan 4.0.0.BETA1 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17415 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 6cfe3ba633aede0a5c939a2a3c8ab1483732c820 -Author: Galder Zamarreno -Date: Fri Aug 21 08:45:30 2009 +0000 - - [HHH-4103] Added cache infinispan to root modules. - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17387 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 9ccd912bde3ad78abd3ccff88f2fc1c165adca80 -Author: Galder Zamarreno -Date: Fri Aug 21 08:39:33 2009 +0000 - - [HHH-4103] Initial commit. - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17386 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit ce8df153ebbe780445d7f9097d012327f9919693 -Author: Galder Zamarreno -Date: Fri Aug 21 08:34:12 2009 +0000 - - [HHH-4103] Initial cache provider implementation. - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17385 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 5985c879e60777e2a56cffb5d6bfbb218f579d94 -Author: Adam Warski -Date: Fri Aug 21 06:57:04 2009 +0000 - - HHH-4100: fixing the colum number in Envers docbook, uncommenting the Envers docbook module build - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17382 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 85c34f356a96ed128b95ffa3b030607d1f822816 -Author: Steve Ebersole -Date: Wed Aug 19 21:10:09 2009 +0000 - - restting pom versions to SNAPSHOT after manual tagging - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17373 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 122aa3f7e49294dceb5eeb52adcb38310b700bf1 -Author: Steve Ebersole -Date: Wed Aug 19 19:24:23 2009 +0000 - - [maven-release-plugin] prepare branch hibernate-3.5.0.Beta-1 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17371 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit cb337e6f2cd34bba730a2b90347819005c0a942e -Author: Steve Ebersole -Date: Wed Aug 19 19:04:32 2009 +0000 - - [maven-release-plugin] rollback the release of hibernate-3.5.0.Beta-1 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17370 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 677ed6f9c97110e1d2eb61c753a5132c179f2478 -Author: Steve Ebersole -Date: Wed Aug 19 19:00:59 2009 +0000 - - [maven-release-plugin] prepare release hibernate-3.5.0.Beta-1 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17369 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 7378a11576548b8bc3bafeeefa9c9c8c05e450a1 -Author: Steve Ebersole -Date: Wed Aug 19 18:34:19 2009 +0000 - - prep 3.5.0-Beta-1 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17368 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 8e9f38cd199bb01d9822cb5aba93085d93733f6d -Author: Steve Ebersole -Date: Wed Aug 19 18:15:21 2009 +0000 - - HHH-4099 : Doc build error (http://jira.codehaus.org/browse/MNG-1323); - HHH-4100 : Problems with Envers docbook sources - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17367 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 271ecdea6e87c71ce1ad4d3a2f4c2851df067ba2 -Author: Steve Ebersole -Date: Wed Aug 19 18:14:33 2009 +0000 - - HHH-4099 : Doc build error (http://jira.codehaus.org/browse/MNG-1323) - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17366 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 0fd2762c6e69e986e7f61084ba075635b4812c77 -Author: Steve Ebersole -Date: Wed Aug 19 15:05:56 2009 +0000 - - removed unmaintained releasenotes module - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17365 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 33d5534b143456c47218e631500eca23d1a81402 -Author: Steve Ebersole -Date: Wed Aug 19 15:02:46 2009 +0000 - - [maven-release-plugin] rollback the release of hibernate-3.5.0.Beta-1 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17364 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit aaa7a78ab0c617344ac227d441cc87aed64f9526 -Author: Steve Ebersole -Date: Tue Aug 18 17:23:57 2009 +0000 - - try using release plugin 2.0-beta-9 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17354 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit bcecf23302684fbafd169654a22c259f0beabfee -Author: Steve Ebersole -Date: Tue Aug 18 13:48:31 2009 +0000 - - [maven-release-plugin] prepare release hibernate-3.5.0.Beta-1 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17349 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit b9478f20843d3553ee16a750a89dc2a3c381419c -Author: Steve Ebersole -Date: Tue Aug 18 12:28:19 2009 +0000 - - prep 3.5.0-Beta-1 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17348 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 23a6271e534cb6be975831aef4560b99fc5ea359 -Author: Steve Ebersole -Date: Mon Aug 17 22:27:23 2009 +0000 - - fixed type in pom - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17344 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 9254c3e8766cb3127f8ecb6d095ae6ce79005c4e -Author: Steve Ebersole -Date: Mon Aug 17 22:19:04 2009 +0000 - - moved to separately released hibernate-commons-annotations - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17343 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit b94e505fc4ba6e240372c36f3fc006f1fd6aeada -Author: Steve Ebersole -Date: Mon Aug 17 21:50:41 2009 +0000 - - fix typos and PO issues - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17342 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit a29a67a3b8977c8e5a8b23fba1f3142e69607f1a -Author: Steve Ebersole -Date: Mon Aug 17 21:27:47 2009 +0000 - - Sigh maven is again requirng the style be defined in both the plugin dependencies and the project dependencies - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17341 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit bd10b18c44f856a68ad5716b340c3b8b0627fbbd -Author: Steve Ebersole -Date: Mon Aug 17 19:09:17 2009 +0000 - - EJB-447 - Implement JPA 2.0 criteria apis (building) - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17340 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 3e22c213de0b268d85ff8fd6ce32c5f1f269b40d -Author: Steve Ebersole -Date: Mon Aug 17 19:08:40 2009 +0000 - - HHH-3852 & HHH-4092 : ParentChildTest failures - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17339 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 20b8440145c70b4f852c2473d06485853e67c1f0 -Author: Steve Ebersole -Date: Mon Aug 17 17:41:07 2009 +0000 - - HHH-4091 - HQLTest#testDuplicateImplicitJoinInSelect - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17338 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit e47bfa784effa6afc0ee19bce8eee35407a159ce -Author: Steve Ebersole -Date: Mon Aug 17 15:22:39 2009 +0000 - - EJB-456 : JPA metamodel - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17336 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit c49ab737cc41d472fcb135531ff809067010a55b -Author: Gail Badner -Date: Mon Aug 17 10:29:14 2009 +0000 - - HHH-3892 : restore original author - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17332 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 5efada8f33819bef9b43e91d41bee650a13b19d5 -Author: Steve Ebersole -Date: Sun Aug 16 16:44:10 2009 +0000 - - added netbeans config file to ignore list - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17330 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit eb8f85aab9c7c4423d166ed1fb18bffb0ebc57e4 -Author: Steve Ebersole -Date: Sun Aug 16 16:35:27 2009 +0000 - - missed commits for translation PO files - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17329 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit ed8eaa2e2bad78e60ecb364ca06d7a82f171c823 -Author: Steve Ebersole -Date: Sat Aug 15 20:54:30 2009 +0000 - - set jpa-api and hibernate-commons-annotations versions to use - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17328 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit fea4cf1ce02fe72ed4bf69eddbf19edf71bbdb33 -Author: Steve Ebersole -Date: Sat Aug 15 20:51:45 2009 +0000 - - set jpa-api and hibernate-commons-annotations versions to use - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17327 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit f850b561f5f5ebd2853c27cb3a985dc07e306e65 -Author: Steve Ebersole -Date: Sat Aug 15 20:49:52 2009 +0000 - - set jpa-api and hibernate-commons-annotations versions to use - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17326 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 463ff57c615809e3cf2d5d7cef2f8f01a3fedd11 -Author: Steve Ebersole -Date: Sat Aug 15 20:38:36 2009 +0000 - - moved to separately released hibernate-commons-annotations; moved validation versions to dependencyManagement - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17325 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit cda1a1abebc559a1557f29111e9ef2cd8dfb5624 -Author: Steve Ebersole -Date: Sat Aug 15 20:04:28 2009 +0000 - - HHH-4088 - Session.getSession should always return sessions from parent (or root) session - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17319 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit db0c1217636a23666daf5790fbb419db78d4bfd7 -Author: Steve Ebersole -Date: Sat Aug 15 18:11:09 2009 +0000 - - break hibernate-commons-annotations back out into separate project - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17315 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 68eb33b4615e2c55236a5182cfd22450be60a7ab -Author: Steve Ebersole -Date: Sat Aug 15 17:30:55 2009 +0000 - - break hibernate-commons-annotations back out into separate project - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17314 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 30f4cc31f22f3c03e05022eeb5c2fb5bd88f882b -Author: Steve Ebersole -Date: Sat Aug 15 17:28:12 2009 +0000 - - break hibernate-commons-annotations back out into separate project - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17313 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 189314fcac1d6207701d37e4031e03322c36226b -Author: Steve Ebersole -Date: Sat Aug 15 17:27:19 2009 +0000 - - break hibernate-commons-annotations back out into separate project - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17312 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 054b018269e2c2ca4efc1e47395c416e60f49c03 -Author: Steve Ebersole -Date: Sat Aug 15 17:26:18 2009 +0000 - - break hibernate-commons-annotations back out into separate project - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17311 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 59ec451c28bd61dbf0262c54051f74fa29b54f82 -Author: Steve Ebersole -Date: Sat Aug 15 17:25:34 2009 +0000 - - break hibernate-commons-annotations back out into separate project - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17310 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit c317edd28f32ee1db67c8be440f32b8d9054594a -Author: Emmanuel Bernard -Date: Sat Aug 15 16:31:51 2009 +0000 - - Make commons annotation independent from core. - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17308 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 82e5fa8c7803a0592adb385d9093cf57f8678a79 -Author: Emmanuel Bernard -Date: Sat Aug 15 16:24:27 2009 +0000 - - Remove dependency on core - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17307 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 28207a2eb17233ef43adf42b53e0d7327c853b16 -Author: Emmanuel Bernard -Date: Fri Aug 14 18:29:45 2009 +0000 - - Add support for the new JPA 2 API from July 23 2009 (only the top level package. Subpackages have not been updated. Also partially implement PersistenceUnitUtil - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17305 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 5f27074c73e758eb0fbee0a678a2497316ddf8dd -Author: Emmanuel Bernard -Date: Fri Aug 14 17:26:52 2009 +0000 - - Set version number to 3.5.0.Beta1 for log display - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17304 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 442286580ca7902a64e683e1b60e4a11f53c9f66 -Author: Emmanuel Bernard -Date: Fri Aug 14 17:25:13 2009 +0000 - - use BV 1.0.CR4 and HV 4.0.0.Beta3 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17303 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit d6702fae4abb4d5d2d81e1edfa5a50e8c01d218c -Author: Emmanuel Bernard -Date: Thu Aug 13 20:15:08 2009 +0000 - - add property to disable metamodel generation, just in case as it's undertested - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17301 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit c35efa67808ec7d6bbd6010b2df64633dbed0d44 -Author: Steve Ebersole -Date: Thu Aug 13 19:30:57 2009 +0000 - - HHH-4081 - Support for JPA 2.0 "qualified identification variables" (KEY, VALUE and ENTRY) - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17300 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit ad3409e67b8a19a72ae45d05e11d268052f5e673 -Author: Steve Ebersole -Date: Thu Aug 13 19:05:34 2009 +0000 - - copyright notice - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17299 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 45e6b97d203fb0909e725b22e354cf8678d8551e -Author: Steve Ebersole -Date: Thu Aug 13 18:59:30 2009 +0000 - - copyright notice - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17298 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 506614cc1fcada2287d788c80700f825f74e14a1 -Author: Emmanuel Bernard -Date: Wed Aug 12 23:58:14 2009 +0000 - - EJB-456 add more tests on collection of elements Set List Map - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17276 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 93cef4f9f1f2d1cc939810dc81c377a579711080 -Author: Emmanuel Bernard -Date: Wed Aug 12 22:51:01 2009 +0000 - - EJB-456 add more tests - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17275 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit e44e8c6d6ab3b53c30392d0a7542ec2358af005a -Author: Adam Warski -Date: Wed Aug 12 14:49:55 2009 +0000 - - HHH-3957: - - when all properties of an embedded object are null, don't set the embedded object on the entity - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17273 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 6bf5ed730289c3ad14981b97cd8f3f53ff3f0b47 -Author: Emmanuel Bernard -Date: Wed Aug 12 04:22:23 2009 +0000 - - EJB-456 add more test and fix isId false on IdClass attributes - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17272 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit b1d17f31dd4f9b1e1fb7b3b316b37ef83094bbab -Author: Strong Liu -Date: Wed Aug 12 02:27:18 2009 +0000 - - JBPAPP-1547 HHH-3686 : Sybase - QueryCacheTest.testQueryCacheInvalidation fails - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17270 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit c34fac40969970af54e82ff4bcc3012056d4e33f -Author: Steve Ebersole -Date: Tue Aug 11 20:54:53 2009 +0000 - - copyright notice - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17269 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 85c0857b0c53796edc4e83f5526f0321e8aa50a8 -Author: Steve Ebersole -Date: Tue Aug 11 20:50:34 2009 +0000 - - copyright notice - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17268 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit a1b6e3f243e17415e58666d9b0eef20ed8c7e59f -Author: Steve Ebersole -Date: Tue Aug 11 20:30:32 2009 +0000 - - copyright notice - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17267 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit ed6346174d6c416b333882ee3032a4374fc3ec4e -Author: Steve Ebersole -Date: Tue Aug 11 19:16:08 2009 +0000 - - EJB-447 : Implement JPA 2.0 criteria apis - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17264 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 8de99d279d51144664cf74443a565849645eab95 -Author: Steve Ebersole -Date: Tue Aug 11 15:37:23 2009 +0000 - - EJB-447 : Implement JPA 2.0 criteria apis - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17262 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 558fcd635abbaf0930c1692e586bc877f6c4b205 -Author: Emmanuel Bernard -Date: Tue Aug 11 00:53:08 2009 +0000 - - fix NPE when identifier is not a property - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17260 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 0f8a36a2696029ef4c0743b33d61aad998bf182e -Author: Emmanuel Bernard -Date: Tue Aug 11 00:26:13 2009 +0000 - - make Metamodel and its dependencies serializable - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17259 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 9edbb4d2396ea0293c3326ebe5e36818f3cf0289 -Author: Steve Ebersole -Date: Mon Aug 10 22:13:04 2009 +0000 - - EJB-447 : Implement JPA 2.0 criteria apis - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17258 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 6e259aa9184300bc23bf4f6b0b6c198452a1ea3f -Author: Emmanuel Bernard -Date: Mon Aug 10 15:13:12 2009 +0000 - - HHH-4077 improper use of logicalColumnName - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17257 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 174d09e34b139d7fb7b6284d892f34275fa8ccdb -Author: Emmanuel Bernard -Date: Mon Aug 10 03:59:59 2009 +0000 - - EJB-456 start core of tests - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17255 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 0d14085ba68ebf086bbd3fb5915e3dc123732fc8 -Author: Emmanuel Bernard -Date: Sun Aug 9 18:04:35 2009 +0000 - - EJB-456 have the implementation of Metamodel ready minus some concepts left behind. This has NOT been tested to don't be too excited ladies - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17254 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit a83a455fdda5465162ffe29d027788567c269436 -Author: Steve Ebersole -Date: Fri Aug 7 18:38:07 2009 +0000 - - EJB-447 : Implement JPA 2.0 criteria apis (miscellaneous) - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17252 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 3175437151e9c70a96220770f7602dbd8dcde35d -Author: Steve Ebersole -Date: Fri Aug 7 12:12:20 2009 +0000 - - EJB-447 : Implement JPA 2.0 criteria apis (completed function support) - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17251 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit f6665eccba2009884a3a2f2c25aab915f9f6569d -Author: Steve Ebersole -Date: Thu Aug 6 18:39:33 2009 +0000 - - EJB-447 : Implement JPA 2.0 criteria apis (revert to strict method sigs) - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17250 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 5d08386293efa58c8a3eb98148e9d592017515be -Author: Adam Warski -Date: Thu Aug 6 18:21:38 2009 +0000 - - HHH-4010: - - applying patch: allow audited relations to non-audited entities - - doc update - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17248 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 8465009b4bec2ce42c788a5fc2cab65cd349078a -Author: Steve Ebersole -Date: Thu Aug 6 17:55:14 2009 +0000 - - EJB-447 : Implement JPA 2.0 criteria apis (completed aggregation function support) - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17247 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit eb0396b1c69e1cf069093df7774e60c0b609beb6 -Author: Steve Ebersole -Date: Thu Aug 6 14:18:54 2009 +0000 - - EJB-447 : Implement JPA 2.0 criteria apis (support for casts, completed IN-predicate support & parameter creation) - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17243 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit aceeb48968c78827c2bd0adf3dc1a41fc44252bc -Author: Steve Ebersole -Date: Wed Aug 5 19:28:58 2009 +0000 - - EJB-447 : Implement JPA 2.0 criteria apis - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17236 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit bd4c85ce105fe389e2a10be7e7732f52fb81c3aa -Author: Steve Ebersole -Date: Tue Aug 4 19:13:33 2009 +0000 - - EJB-447 : Implement JPA 2.0 criteria apis - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17228 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 152dc5abf9b89d79f8be9cae38d6ad233640ab3f -Author: Steve Ebersole -Date: Tue Aug 4 18:01:45 2009 +0000 - - EJB-447 : Implement JPA 2.0 criteria apis - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17227 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 9fc25c8c8a347a136639ec42f7767bbf83c2f40c -Author: Steve Ebersole -Date: Fri Jul 31 17:53:18 2009 +0000 - - EJB-455 : Implement EntityManager#getEntityManagerFactory; - EJB-447 : Implement JPA 2.0 criteria apis - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17222 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit c05509be7ca140e105c1be9c4823e513c02820a8 -Author: Emmanuel Bernard -Date: Sat Jul 25 05:24:55 2009 +0000 - - EJB-454 implements the default PPR strategy - EJB-453 use resolver held by PPRH - fix issues with Hibernate's isLoaded - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17201 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 49e53e81e115ae8fd3e5b32313611dd9927bdbf2 -Author: Emmanuel Bernard -Date: Thu Jul 23 18:54:27 2009 +0000 - - minor documentation typo - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17198 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit eeb136fa719fe007158d90ba011473ea7d1fa38b -Author: Emmanuel Bernard -Date: Wed Jul 22 20:40:50 2009 +0000 - - ANN-860 implement @OrderColumn - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17192 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit e093ee46c44fc20eeb4421b8b62f79e4e31f18cc -Author: Emmanuel Bernard -Date: Wed Jul 22 00:16:59 2009 +0000 - - ANN-857 implement @MapKeyJoinColumn and @MapKeyJoinColumns + _KEY default column name for key. Also keep legacy support for old naming solution - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17187 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 577024e7aa5e90fc2d82dd153218fb1f339d354c -Author: Steve Ebersole -Date: Tue Jul 21 15:57:57 2009 +0000 - - HHH-4022 : Add an actual API contract for querying/managing cache regions (from app code) - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17186 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 1f98fc9ed6fe5b3fb28d6ed6698dff5c37da4283 -Author: Steve Ebersole -Date: Tue Jul 21 13:54:31 2009 +0000 - - EJB-447 - Implement JPA 2.0 criteria apis - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17183 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit f2ec4c6970b6b03e29757f5f277eddc0db45ff99 -Author: Steve Ebersole -Date: Tue Jul 21 13:46:43 2009 +0000 - - EJB-447 - Implement JPA 2.0 criteria apis - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17182 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit a4e169d05d2ecf3e7b3c60cd50a5783008497045 -Author: Emmanuel Bernard -Date: Tue Jul 21 13:45:51 2009 +0000 - - Make CacheImpl serializable - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17181 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit d669cfb81c09460f0a2689d3fdc0b9bf4525a252 -Author: Steve Ebersole -Date: Tue Jul 21 13:41:01 2009 +0000 - - HHH-3997 - Configure the maven javadoc plugin - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17180 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 20d22941c0e07b37295704d5300a7071e48e640d -Author: Emmanuel Bernard -Date: Tue Jul 21 02:07:50 2009 +0000 - - ANN-856 implement @MapKeyColumn - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17173 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 1cac641632296cf31a21c035575554c1c017a219 -Author: Emmanuel Bernard -Date: Tue Jul 21 01:25:22 2009 +0000 - - ANN-855 implement @MapKeyClass - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17172 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit d9a1022f340856f15e553b8df4e25f5e349453d6 -Author: Emmanuel Bernard -Date: Mon Jul 20 23:24:38 2009 +0000 - - EJB-450 implement @CollectionTable for @ElementCollection - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17171 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit e1032aa5099c01b9442664dfb55ccc2ca15813f9 -Author: Hardy Ferentschik -Date: Sat Jul 18 10:04:51 2009 +0000 - - ANN-851 added the jaxb profile in case of jdk5 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17156 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 54ddb119a41d4d560e700d6ededf6cc47c5acd1a -Author: Steve Ebersole -Date: Tue Jul 14 20:58:00 2009 +0000 - - HHH-4037 - applied changes out to pot/po files - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17091 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit d98f0fe9ff19252f2416b3ae91dad4c4f40bbf11 -Author: Steve Ebersole -Date: Mon Jul 13 23:36:34 2009 +0000 - - HHH-4037 - Fixing build errors in documentation/manual - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17086 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit a41506f4041accb707135bd3e77942ba6fb79c83 -Author: Steve Ebersole -Date: Mon Jul 13 23:33:02 2009 +0000 - - HHH-4034 - Update org.hibernate.action.BulkOperationCleanupAction to use new Region cache APIs - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17084 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit b339e3312143ca946149cfdb75e1df2e95db09a5 -Author: Steve Ebersole -Date: Tue Jul 7 18:39:39 2009 +0000 - - HHH-4022 - Add an actual API contract for querying/managing cache regions (from app code) - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17027 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit cd23a6c3ff2135c104173704a50803764e91e73e -Author: Steve Ebersole -Date: Tue Jul 7 18:33:23 2009 +0000 - - HHH-4029 - Remove cache-jbosscache2 module - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17026 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit d5124a50927415728a4395f25287dfc351c89ccb -Author: Steve Ebersole -Date: Tue Jul 7 18:26:08 2009 +0000 - - HHH-4028 - Move current cache-jbosscache2 module content to cache-jbosscache - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17025 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit e36b0c677effa3b11a4d32fecf142456a7cf7406 -Author: Steve Ebersole -Date: Tue Jul 7 17:39:21 2009 +0000 - - HHH-4028 - Move current cache-jbosscache2 module content to cache-jbosscache - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17024 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 374fed2b843b024386098c94b6e27be92d86265f -Author: Steve Ebersole -Date: Tue Jul 7 17:36:04 2009 +0000 - - HHH-4028 - Move current cache-jbosscache2 module content to cache-jbosscache - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17023 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit c8fdfc937b82389fee563f9333c3aba356cd79a9 -Author: Steve Ebersole -Date: Tue Jul 7 17:03:23 2009 +0000 - - HHH-3585 - Upgrade to JBoss Cache 3 - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17022 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 6e7c0b76544972c79a362c27a73b4eead59ae669 -Author: Steve Ebersole -Date: Tue Jul 7 16:38:30 2009 +0000 - - HHH-4029 - Remove cache-jbosscache2 module - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17020 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit a5983266fe577a19ca89a6ad235cd12ecbd00569 -Author: Steve Ebersole -Date: Tue Jul 7 16:33:04 2009 +0000 - - HHH-4028 - Move current cache-jbosscache2 module content to cache-jbosscache - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17018 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit b6bfb72da67a5814034b5c1f4d3f5ad164f40928 -Author: Steve Ebersole -Date: Tue Jul 7 16:32:02 2009 +0000 - - HHH-4028 - Move current cache-jbosscache2 module content to cache-jbosscache - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17017 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit d928a452976df388b06b76ecfadccf3a50ba787b -Author: Steve Ebersole -Date: Tue Jul 7 16:27:07 2009 +0000 - - HHH-4027 - Remove current cache-jbosscache module content - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17016 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 640d95bbf6c4e89ff7dc777021d800e5f346c4ee -Author: Steve Ebersole -Date: Tue Jul 7 16:26:49 2009 +0000 - - HHH-4027 - Remove current cache-jbosscache module content - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17015 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit db35f584673e84047d69b562967ee709c5aa9e3f -Author: Emmanuel Bernard -Date: Mon Jul 6 17:19:44 2009 +0000 - - EJB-446 implements EMF.getCache() except contains - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17008 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit fa4e5c37b361e82cd0bc4b8acef791b1a6d9a8df -Author: Emmanuel Bernard -Date: Mon Jul 6 16:22:17 2009 +0000 - - Minor fix on detach() - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17006 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 8052ba19d566efa8e6b25b5da50cba743c05211d -Author: Emmanuel Bernard -Date: Mon Jul 6 11:43:52 2009 +0000 - - HHH-4016 SAPDialect should not use oracle style outer joins, ANSI style is prefered by MaxDB - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17003 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 98c171095cb30ac96d50342e59702bedaf90123b -Author: Steve Ebersole -Date: Mon Jul 6 02:59:17 2009 +0000 - - HHH-4003 - many-to-many loaders should use inner joins from the collection table to element table - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16995 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 8165b1d70c8cc8d23ac208bdda0eff21874a7b91 -Author: Adam Warski -Date: Tue Jun 30 15:56:49 2009 +0000 - - HHH-3819: - - adding an option to store the data when an entity is deleted in the revision (instead of having to read the last-but-one revision) - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16981 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 206283ad66712d0173e7c34e3eadbda4a8ea9751 -Author: Adam Warski -Date: Tue Jun 30 15:11:37 2009 +0000 - - Searching for Session recurses when reading delegates of EntityManager - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16980 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 2ce2f49d243ec99a59c791fab99fd4f54c8be9a5 -Author: Adam Warski -Date: Tue Jun 30 15:10:53 2009 +0000 - - - the default revision entity is serializable - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16979 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 760f438029ee37544b4c6e6c4de189ebb1a10272 -Author: Juraci Krohling -Date: Tue Jun 30 09:16:27 2009 +0000 - - ANN-849 - Changed mysql host from dev02.qa.atl.jboss.com to vmg08.mw.lab.eng.bos.redhat.com - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16974 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 233ee8b84e0674e6c141d2cbfa64b6a6cb3ebb6a -Author: Juraci Krohling -Date: Tue Jun 30 09:14:43 2009 +0000 - - EJB-444 - Changed mysql host from dev02.qa.atl.jboss.com to vmg08.mw.lab.eng.bos.redhat.com - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16973 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 83eccd50f9311068bf8184d3a022617ffdf03ace -Author: Juraci Krohling -Date: Tue Jun 30 09:05:28 2009 +0000 - - HHH-3999 - Changed mysql host from dev02.qa.atl.jboss.com to vmg08.mw.lab.eng.bos.redhat.com - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16970 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 86295c36bcf746482acc348a5c4be4392a02ff4b -Author: Steve Ebersole -Date: Tue Jun 30 04:14:35 2009 +0000 - - HHH-3998 - Fix spurious failures in ConfigurationPerformanceTest - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16969 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 7271546f4ee7816c0e830aa5136abe2cfd2de598 -Author: Steve Ebersole -Date: Mon Jun 29 11:51:09 2009 +0000 - - test data cleanup - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16961 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit d30b61a3052c29fc77f6468e12989601c1ae5bb5 -Author: Hardy Ferentschik -Date: Fri Jun 26 08:29:41 2009 +0000 - - fixed the tests after the latest bean validation updates - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16955 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit d83fc6e17b34a94fc5819c98464f0b41a7fbb561 -Author: Hardy Ferentschik -Date: Fri Jun 26 08:14:34 2009 +0000 - - Made annotations compile again after latest changes to Hibernate Validator - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16953 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 3b447b344b3150cf942217a6c71685e322e19d22 -Author: Brian Stansberry -Date: Tue Jun 23 17:44:33 2009 +0000 - - Get rid of redundant JPA annotations - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16909 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 24514aa33c4df76bf6f2753a932fdfa7d4ef58ff -Author: Steve Ebersole -Date: Tue Jun 23 17:44:06 2009 +0000 - - data cleanup - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16907 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 6fa89c0c0cf1713360e27535d3351b9b998f2bd5 -Author: Steve Ebersole -Date: Tue Jun 23 08:29:55 2009 +0000 - - HHH-3982 - Apply build version to org.hibernate.Version - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16897 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 0fff799b2ae6d633a796939b3fea4815be4ce0fe -Author: Steve Ebersole -Date: Tue Jun 23 07:22:55 2009 +0000 - - HHH-3753 - Upgrade to SLF4J version 1.5.8 - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16894 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 9dab26ea58b0bc3edef287d0b15742a61b94f2da -Author: Steve Ebersole -Date: Tue Jun 23 07:22:36 2009 +0000 - - HHH-3753 - Upgrade to SLF4J version 1.5.8 - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16893 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit f70fd82cb6673ede3aa70aeb187e0fb64dd7e5f2 -Author: Steve Ebersole -Date: Tue Jun 23 07:09:35 2009 +0000 - - HHH-3979 - Upgrade to javassist 3.9.0 - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16892 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 1eddb94e9304108ea98bf6c67033eaadf846c5ff -Author: Steve Ebersole -Date: Tue Jun 23 06:16:45 2009 +0000 - - HHH-3981 - Upgrade to jDocBook 2.2.0 - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16889 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 733855552fb3fbd24c2a3ad71b2b03c31f38917f -Author: Steve Ebersole -Date: Tue Jun 23 05:46:17 2009 +0000 - - HHH-3944 - Document known database portability strategies - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16877 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit b72707d9b109417d55528c6b95ddfaa05ae08924 -Author: Steve Ebersole -Date: Tue Jun 23 02:27:23 2009 +0000 - - HHH-3980 - Fix for HHH-2980 introduced bug that allows the same bag collection role to be fetched multiple times - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16874 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 0c15a4d6209f486bfa4efc178ed8b0abf701a302 -Author: Steve Ebersole -Date: Mon Jun 22 21:58:23 2009 +0000 - - HHH-3781 - Echo version information to the console in main() - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16871 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 2b1ef56ae279dadb03aed4bbea0e30c4dfe97dd4 -Author: Steve Ebersole -Date: Mon Jun 22 21:21:25 2009 +0000 - - HHH-3978 - Expose Hibernate version via non-compile-time constant expression - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16868 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 53b2a9f1186804415c5a77b773a7096ed8592cc6 -Author: Emmanuel Bernard -Date: Mon Jun 22 16:51:54 2009 +0000 - - BVAL-143 update to the latest BV API - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16862 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit ceb25bf25ef08b2093b63fab6a1aab1a7785b55b -Author: Gail Badner -Date: Wed Jun 17 22:48:26 2009 +0000 - - HHH-3712 : correct SQLServerDialect to extend AbstractTransactSQLDialect - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16827 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 2c04648372db917cb50813bf329493f48f753f76 -Author: Gail Badner -Date: Wed Jun 17 20:28:59 2009 +0000 - - HHH-3892 : Add support for "text" and "image" Hibernate types for native SQL queries - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16823 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 2d457208c0ab4c69ae66e1c8efa7e6948948e48b -Author: Hardy Ferentschik -Date: Wed Jun 17 09:13:53 2009 +0000 - - Updated the test due to HV-163 fix in Validator - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16815 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 5b5042c85b3033f3a57f00490510c850f9c3939a -Author: Hardy Ferentschik -Date: Wed Jun 17 09:09:25 2009 +0000 - - Updated the imports since the XYZDescitpor classes have moved into the metadata package. - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16814 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit b295044275429109a77609c12570c8bbc3202c18 -Author: Steve Ebersole -Date: Wed Jun 10 20:48:54 2009 +0000 - - fixed issue with xml syntax - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16753 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit f7eedd75771b28bf5b027dc52a2c4158a4262c77 -Author: Steve Ebersole -Date: Wed Jun 10 18:46:15 2009 +0000 - - HHH-3944 - Document known database portability strategies - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16751 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit d3f7642a2552b1878818ee11ed93d55ea6310935 -Author: Steve Ebersole -Date: Wed Jun 10 18:44:15 2009 +0000 - - minor changes; added biblio references for JPwH - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16750 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 94f74b5c22269cac3bffc147990388eeb67627fe -Author: Steve Ebersole -Date: Wed Jun 10 18:33:44 2009 +0000 - - added a definition of UoW - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16744 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 1bfc2dc123eac9d6b02e895e4b9f63c4d24c78f5 -Author: Steve Ebersole -Date: Wed Jun 10 17:17:48 2009 +0000 - - HHH-3953 - Update tutorial chapter - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16741 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 838fcf9bae78beb01c3df559b099ff07563f544d -Author: Steve Ebersole -Date: Mon Jun 8 15:55:03 2009 +0000 - - HHH-2980 - Error "org.hibernate.HibernateException: cannot simultaneously fetch multiple bags" not specific enough - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16717 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit d68a7fe80313981c2b226dfdfc036f596f980f84 -Author: Steve Ebersole -Date: Fri Jun 5 14:04:57 2009 +0000 - - HHH-3880 - org.hibernate.id.enhanced.TableStructure missing "as" keyword in select statment column renames; required for PostgreSQL - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16706 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit e177341bd24e8149a6d5ef89c88f1daf3a8e028c -Author: Juraci Krohling -Date: Fri Jun 5 12:48:36 2009 +0000 - - HHH-3946 - Added missing 'open transactions' and fixed the assertion failure. - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16703 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit d14805e9201200aea133c2d1999070f66e3fa9e0 -Author: Adam Warski -Date: Fri Jun 5 12:25:08 2009 +0000 - - HHH-3939: - - not creating a join table when the association is not audited - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16702 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 4097832958d3b9215614f1533b8b04d14adad337 -Author: Juraci Krohling -Date: Fri Jun 5 12:09:49 2009 +0000 - - HHH-3946 - Added missing 'open transactions' and fixed the assertion failure. - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16701 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit ce9140c808bbe17593317161ce5495bb93b20bc5 -Author: Juraci Krohling -Date: Fri Jun 5 11:57:40 2009 +0000 - - ANN-840 - Reverted, as we don't want to hide the existing bug - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16700 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 87c75ad0365a4df3732548099a4378ff4c92ae7a -Author: Juraci Krohling -Date: Thu Jun 4 18:27:00 2009 +0000 - - ANN-840 - Added explicit not-null in foreign keys, as workaround for JBPAPP-1071 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16698 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 1a3d59029ff62bdbe1bfb907a1377d9f845e9503 -Author: Steve Ebersole -Date: Tue Jun 2 15:40:10 2009 +0000 - - HHH-1930 - QuerySyntaxException "with-clause expressions did not reference from-clause element to which the with-clause was associated" - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16668 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 35a28509f280ba7534d36b055f1c9a2a9e9aa46d -Author: Gail Badner -Date: Tue Jun 2 09:30:14 2009 +0000 - - HHH-3810 : rename CopyCache to EventCache to be more generic - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16665 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 77b959f5cc881946832543d3894a560804d54fca -Author: Steve Ebersole -Date: Mon Jun 1 22:08:28 2009 +0000 - - HHH-3383 - QueryKey is storing references to entities instead of identifiers - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16660 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit baa2efd86320c9a00483f27d7fb8ee76e4722065 -Author: Steve Ebersole -Date: Mon Jun 1 21:50:17 2009 +0000 - - HHH-3532 - schema update task should look for foreign key signature - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16659 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 9c26388abffdef6dca4567c358654fb60742401b -Author: Steve Ebersole -Date: Mon Jun 1 21:12:25 2009 +0000 - - HHH-3383 - QueryKey is storing references to entities instead of identifiers - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16656 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit aa710c666835b791d5a2c660314bc91679f7d9c4 -Author: Steve Ebersole -Date: Mon Jun 1 18:54:44 2009 +0000 - - HHH-3383 - QueryKey is storing references to entities instead of identifiers - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16652 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit f8e2670b6e4a3c83be27ef829bbfef7f4e31b696 -Author: Steve Ebersole -Date: Mon Jun 1 15:38:08 2009 +0000 - - HHH-3401 - H2 Database Dialect Fixes - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16650 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit befed9e125dd9f272f932b5c0c481fe9ec08020c -Author: Steve Ebersole -Date: Mon Jun 1 15:24:20 2009 +0000 - - HHH-3401 - H2 Database Dialect Fixes (formatting) - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16647 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 409f2e8569e580a68d27b07c3dc9dcd349b38742 -Author: Steve Ebersole -Date: Mon Jun 1 15:14:58 2009 +0000 - - HHH-3401 - H2 Database Dialect Fixes - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16643 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit f0eb349e8733cc01c465efc71e639ccd52ded1d0 -Author: Adam Warski -Date: Sun May 31 13:39:00 2009 +0000 - - Fixinga bug with storing null values for fields in a superclass - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16641 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit c44ff38d6db3c359c2942e7c6ef3ae45a5491966 -Author: Adam Warski -Date: Sun May 31 13:00:56 2009 +0000 - - HHH-3847: - - applying a patch to fix the NPE - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16640 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 15cf066f96106f5136572f9efcd14c450eba194d -Author: Emmanuel Bernard -Date: Mon May 25 11:29:22 2009 +0000 - - Typo - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16615 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 8003b501feb04764ff0eedb0852a08173c75b0d9 -Author: Adam Warski -Date: Thu May 21 14:52:22 2009 +0000 - - HHH-3708: - - improving error reporting for relations where only one entity is audited - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16610 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit f20c97f92130790bbe86ba8551caa1c5da5d8132 -Author: Adam Warski -Date: Thu May 21 14:13:32 2009 +0000 - - HHH-3706: - - applying patch from Jesse Jose C (thanks!) to fix generating schema in using the ant task when using annotation configuration - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16609 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 6eb4caf053cfc65a99fd863e2b4d3a4b15b2cd0e -Author: Steve Ebersole -Date: Wed May 20 04:39:00 2009 +0000 - - HHH-3918: Use standard JDK exception nesting - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16604 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 97a0919521ddb492dd5ec496753f07d5de5329a4 -Author: Hardy Ferentschik -Date: Tue May 19 09:55:46 2009 +0000 - - JBPAPP-1998 Added additional try/catch in AbstractEntityManagerImpl.wrapStaleStateException - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16594 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit ea7c157ae7c40d2d4c9e274ce09e564cafa66816 -Author: Gail Badner -Date: Mon May 18 22:38:23 2009 +0000 - - HHH-3510 : Add FailureExpected test for HQL SQLFunction replacement not occur - ing when HQL text has no parenthesis - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16593 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 710d983cd6ece69868caaaa3e06b7058f6bbbea2 -Author: Gail Badner -Date: Thu May 14 20:27:19 2009 +0000 - - HHH-3810 : Transient entities can be inserted twice on merge - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16569 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit b6b1db702e314858190627914c6a92232a8e5095 -Author: Steve Ebersole -Date: Wed May 13 22:43:29 2009 +0000 - - HHH-3912 - Change for HHH-3159 causes InstantiationException - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16563 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 062e0b5ecd82aa89683b12f0a69c0ba875a20393 -Author: Hardy Ferentschik -Date: Tue May 12 13:09:57 2009 +0000 - - ANN-831 - upgraded to the Beta2 version of JPA2 and reverted some code - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16551 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 9d2b288c45025750cfebe401d6d99856630af2f2 -Author: Steve Ebersole -Date: Mon May 11 21:13:36 2009 +0000 - - HHH-3804 - Cleanup usage of deprecated APIs in testsuite (Session#find, etc) - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16536 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 6bde7fd4b1409b98352db198f83f0472d0c9f53f -Author: Steve Ebersole -Date: Mon May 11 21:12:30 2009 +0000 - - HHH-2745 - NullPointerException when eager fetching joined many-to-many with native SQL query - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16535 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 4a7e87b673d7ac1abac2959343315b1fc5705df5 -Author: Hardy Ferentschik -Date: Mon May 11 14:10:17 2009 +0000 - - JBPAPP-1075 Removed @Column( unique = true ) - it is not needed for this test and causes problems with Oracle - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16533 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit e7a7d3d0d866016ff773fcc9db15784e3510ec2d -Author: Hardy Ferentschik -Date: Mon May 11 13:19:42 2009 +0000 - - JBPAPP-1075 removed obsolete @RequiresDialect annotation - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16532 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 5945e5d92be256655fae1c4dfe1a3d73ec94fd5d -Author: Hardy Ferentschik -Date: Mon May 11 13:17:21 2009 +0000 - - removed unnecessary depedencyManagement section and changed the postgresql definition. Using classifier did not work for me (using maven 2.1.0) - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16531 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 48916f02eba4bef1cc2e00f765c05e4f0a6e0c24 -Author: Hardy Ferentschik -Date: Mon May 11 12:28:36 2009 +0000 - - make annotation complie again with java 5 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16530 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 1aed16376390426e67e12a43ed44aa694c987a13 -Author: Paul Ferraro -Date: Fri May 8 01:12:20 2009 +0000 - - Upgraded JBoss Cache to 3.1.0.GA - Enable org.hibernate.test.cache.jbc2.functional.MVCCConcurrentWriteTest.testManyUsers() now that JBCACHE-1494 is fixed - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16525 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 2bcb6626f894c96280d879b0f38d1b31b24416cf -Author: Emmanuel Bernard -Date: Thu May 7 21:35:18 2009 +0000 - - ANN-827 ANN-828 doc for Hibernate Validation - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16524 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 11668ca67c916595d2789787e37b3ed1affc1aa8 -Author: Emmanuel Bernard -Date: Thu May 7 21:34:21 2009 +0000 - - HHH-3906 EJB-436 ANN-830 Move to JPA 2 API as a dependency - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16523 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 2e377bbc0887078819062c7d00f6d13e574043a6 -Author: Emmanuel Bernard -Date: Thu May 7 12:37:21 2009 +0000 - - set latest validator - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16518 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit a7930671d9313dee1d4d5b174953b51f757806f1 -Author: Emmanuel Bernard -Date: Wed May 6 15:52:26 2009 +0000 - - ANN-828 Use Bean Validation for DDL generation - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16516 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit e8dfecb5f76112d5b9ed9173e0fa793486af8b10 -Author: Emmanuel Bernard -Date: Wed May 6 15:20:18 2009 +0000 - - HHH-3898 hibernate.check_nullability (default true) - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16515 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit b5a161382780a2300aa4ef3901b34978963952a5 -Author: Gail Badner -Date: Wed May 6 00:44:48 2009 +0000 - - HHH-3662 : Merging read-only entities causes AssertionError - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16511 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 17e89371b8a794d891c87b60bddd669733001712 -Author: Adam Warski -Date: Sun May 3 13:57:41 2009 +0000 - - Rolling back the TX when an exception occures in a revision listener - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16502 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 5ee21b3aa81158c5904cfbb9a5859bc399912194 -Author: Gail Badner -Date: Fri May 1 23:21:00 2009 +0000 - - HHH-3892 : Improve support for mapping SQL LONGVARCHAR and CLOB to Java String, SQL LONGVARBINARY and BLOB to Java byte[] - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16501 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 5ae4feefb9c6fe5f74c104a4da5648aa8a9914e6 -Author: Juraci Krohling -Date: Fri May 1 11:18:01 2009 +0000 - - HHH-3886 - Updated the credentials for QA Lab - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16498 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit a28280430348aa877c39551d47842a6f5a427fa6 -Author: Juraci Krohling -Date: Fri May 1 09:51:52 2009 +0000 - - HHH-3886 - Fixed credentials for trunk - ANN - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16494 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 856a719b145bed39807a7da7c897acd4566d8137 -Author: Juraci Krohling -Date: Fri May 1 09:51:40 2009 +0000 - - HHH-3886 - Fixed credentials for trunk - EM - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16493 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 8a58b176b9ea4cdefc766ac044c401a97ac54d9d -Author: Adam Warski -Date: Thu Apr 30 08:39:38 2009 +0000 - - HHH-3878: - - fixing reading deleted entities with null-only values, when the field is primitive - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16487 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 5a9becf04abaaf99d069ad736726424c16ca7306 -Author: Adam Warski -Date: Thu Apr 30 07:42:39 2009 +0000 - - HHH-3823: - - updating documentation - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16486 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 04802d5c268fb87a74fa4480ac7ff14ef49baf07 -Author: Adam Warski -Date: Thu Apr 30 07:36:14 2009 +0000 - - HHH-3823: - - adding a method to obtain the current revision entity + test - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16485 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 01a818a0ec6e80fff057dc186f318bbd9a2efbfc -Author: Adam Warski -Date: Thu Apr 30 05:53:15 2009 +0000 - - HHH-3879: - - updating the docs with information on default listeners that should be included so that ejb3 lifecycle callback methods work - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16484 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 1553578808ee052e41595da94952ea63f19af038 -Author: Adam Warski -Date: Thu Apr 30 05:47:36 2009 +0000 - - HHH-3888, ENVERS-70: - - copying the scale, precision and sql-type attributes to the column definition - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16483 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 21aaac2ea4372053f3ad5fa7386979000a4a0636 -Author: Emmanuel Bernard -Date: Wed Apr 29 14:45:14 2009 +0000 - - ANN-827 add initial support for Bean Validation - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16475 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit eb94cfa053b4d4abe1d2056608c562f334fe3d9c -Author: Emmanuel Bernard -Date: Wed Apr 29 12:25:30 2009 +0000 - - ANN-827 add initial support for Bean Validation - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16474 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 5f5a434b34253a3adf8f51a033cb071dadeb38e7 -Author: Juraci Krohling -Date: Wed Apr 29 08:18:36 2009 +0000 - - HHH-3886 - Updated the credentials for QA Lab for trunk - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16472 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 062139460cd20e6c826f13baad8a36767a0c80b7 -Author: Juraci Krohling -Date: Mon Apr 27 12:10:35 2009 +0000 - - EJB-433 - Added a call to getProperties, to make sure that create-drop is set. - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16450 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 29731cbf943ed2b51661d30a249bb8a7e05abbcf -Author: Emmanuel Bernard -Date: Sun Apr 26 03:21:45 2009 +0000 - - fix circular dependency between ReflectHelpers and remove all dependencies. - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16438 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 96e77b4b54caecb72c2ad27493c574f9806803b4 -Author: Emmanuel Bernard -Date: Thu Apr 23 14:51:55 2009 +0000 - - Un deprecate reflect helper in commons-annotations and use it in commons annotations code - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16424 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 339ec18771a2d0ef5c8254e7c98282df689cbcd1 -Author: Hardy Ferentschik -Date: Thu Apr 23 11:53:54 2009 +0000 - - JBPAPP-1679 - Aligned hibernate.properties with hibernate.properties in testsuite module. - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16421 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 6c90c9cf5b59f0c8070d4278093df5b7efa14966 -Author: Emmanuel Bernard -Date: Thu Apr 23 05:56:50 2009 +0000 - - ANN-822 mark unique columns as nullable=false - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16414 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 359f7e88b1dab4626b09957962c78053a347d011 -Author: Juraci Krohling -Date: Wed Apr 22 11:09:22 2009 +0000 - - HHH-3621 - Reverting the log4j.properties and hibernate.properties, which insisted in going with the other changes, in the previous commit. - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16397 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit d5f7c91e8596fbd56b8fa572908d4f2e9a59170c -Author: Juraci Krohling -Date: Wed Apr 22 11:02:22 2009 +0000 - - HHH-3621 - Making the 1_Version.hbm.xml and 2_Version.hbm.xml in schemaupdate consistent. The only difference should be the extra column in 2_Version, to test the update of the schema. - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16396 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit ac0889dbd654ec64f8318c5cc4ea5a21dcb63571 -Author: Adam Warski -Date: Wed Apr 22 08:38:05 2009 +0000 - - HHH-3871: - - not loading proxied objects when not necessary - - test - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16393 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 0f9a6882b954fd6b1a78a457aaf68fda6eb70c10 -Author: Juraci Krohling -Date: Tue Apr 21 14:02:32 2009 +0000 - - JBPAPP-1078 EJB-413 - Removed a dependency on sequences for XMLTests and added a specific package with sequences, to be used only on databases which supports it. For trunk - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16383 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 8b4b88200b09cc5547884b9b51760f5125db3cc2 -Author: Juraci Krohling -Date: Tue Apr 21 13:39:04 2009 +0000 - - EJB-403 - Removed alias from native update statement, as it is not supported in many databases. For trunk - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16380 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 4ff6065093a4ce7adbfa81c0c83d085549d31302 -Author: Juraci Krohling -Date: Tue Apr 21 13:15:48 2009 +0000 - - EJB-418 - Added tearDown method to EJB3TestCase, as the current behaviour was keeping some dirt in the database after the execution of the last test in the EJB3TestCase hierarquy. For trunk - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16377 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 70362709f688e46c10593956f3d0f76c33ce9c79 -Author: Emmanuel Bernard -Date: Sat Apr 18 14:35:58 2009 +0000 - - EJB-428 move scanning facility under the Scanner interface and implement NativeScanner - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16358 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit b26b4dc46c64c19666e20502b3a229bf7413f469 -Author: Gail Badner -Date: Wed Apr 15 19:18:26 2009 +0000 - - ANN-817 - 8-bit characters in string values cause unit test failures - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16347 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit ba4c92747e60109eb37aeb97a4a9901506c4bab9 -Author: Gail Badner -Date: Wed Apr 15 18:40:43 2009 +0000 - - ANN-821 - org.hibernate.test.annotations.manytomany.ManyToManyTest fails on sybase due to index too large - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16344 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit a5168c3d228fb503d58eaf28f2648612586ac030 -Author: Emmanuel Bernard -Date: Tue Apr 14 20:39:12 2009 +0000 - - fix incorrect import - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16336 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit e560aaf2ae2c06da47d70ebdf370d40c1eab89d4 -Author: Gail Badner -Date: Sat Apr 11 04:54:37 2009 +0000 - - ANN-817 : 8-bit characters in string values cause unit test failures - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16305 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit d653efeceb0ab4efc38eb6f09428bd9255fd458c -Author: Gail Badner -Date: Sat Apr 11 04:43:19 2009 +0000 - - ANN-818 - @DiscriminatorFormula for an integer column with default discriminator type causes failure for DB2/Sybase - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16304 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 73e0c3dad23b3e3d5998fb95f9e3009fc5f83986 -Author: Gail Badner -Date: Fri Apr 10 22:37:51 2009 +0000 - - JBPAPP-1124 ANN-779 : Oracle/DB2 - Identifier is too long - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16298 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 7d36b9dfd368b9acb5827495b31725c7cd112360 -Author: Gail Badner -Date: Fri Apr 10 20:07:37 2009 +0000 - - JBPAPP-1073 : Annotations - Oracle - "size" is reserved in Oracle - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16294 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 0dd8cf112fd55bf5d21f6a287dcbb1670bd7bf3c -Author: Gail Badner -Date: Thu Apr 9 22:02:13 2009 +0000 - - ANN-817 : 8-bit characters in string values cause unit test failures - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16288 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit bffe7ec6e910268bcc9d27f6675ad229e7234da8 -Author: Scott Marlow -Date: Thu Apr 2 16:29:06 2009 +0000 - - HHH-3832 Upgrade to cglib-2.2 (asm 3.1) - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16253 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 5cbb8cc77f9cd4765699d0f5d7e9ae74d09ad093 -Author: Juraci Krohling -Date: Tue Mar 31 10:32:53 2009 +0000 - - EJB-420 - Updated entitymanager/pom.xml file to use consistent profile names for the databases in QA Lab. - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16237 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit e1f0013e53f451cae4b531410a28ada84c966a4b -Author: Juraci Krohling -Date: Tue Mar 31 10:18:48 2009 +0000 - - ANN-812 - Updated annotations/pom.xml file to use consistent profile names for the databases in QA Lab. - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16236 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 9d0fb61a45a3af5129c89abb5d56fd97582d9a21 -Author: Juraci Krohling -Date: Tue Mar 31 10:15:56 2009 +0000 - - HHH-3842 - Updated pom.xml files to use consistent profile names for the databases in QA Lab. - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16235 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 38471d1b735969bb3f3da3ae344f52122fb98884 -Author: Emmanuel Bernard -Date: Wed Mar 25 21:07:29 2009 +0000 - - cleaner variable name - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16217 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 1c42279492f6113b2fd8ce3a24cfe27ca22ea1b2 -Author: Emmanuel Bernard -Date: Mon Mar 23 01:53:05 2009 +0000 - - HCANN-5 Introdice the MetadataProvider and MetadataProviderInjector facility - ANN-810 Use the new MetadataProvider facility to implement EJB3 overriding - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16206 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 996f87451b73ce76c9f2b7478f08f3cc69bc5a95 -Author: Adam Warski -Date: Fri Mar 20 14:57:08 2009 +0000 - - Fixed looking for session delegate - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16204 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit fd8f6fbbaaa8f1a658532b9dadf9449587a66319 -Author: Brian Stansberry -Date: Thu Mar 19 19:51:33 2009 +0000 - - [HHH-3817] Don't cache stale data via putFromLoad - [HHH-3818] Handle evictAll "without regard for transactions" - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16190 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit eb60160109a47a2c5f2d0adc0ec720058cb8db59 -Author: Brian Stansberry -Date: Thu Mar 19 19:51:15 2009 +0000 - - [HHH-3817] Don't cache stale data via putFromLoad - [HHH-3818] Handle evictAll "without regard for transactions" - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16189 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 4910a0c3ddc431954a2ca0fdf6ab0e2a92687f59 -Author: Brian Stansberry -Date: Tue Mar 17 19:16:57 2009 +0000 - - Clean up compiler warns - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16173 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit aef5e3f29526c083c6008f043d5469ec78a2387a -Author: Brian Stansberry -Date: Tue Mar 17 19:16:06 2009 +0000 - - Minor javadoc - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16172 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 51692f52bf3db44eff3f7eab196ba41d0b93b72f -Author: Brian Stansberry -Date: Tue Mar 17 19:12:11 2009 +0000 - - Clean up compiler warns - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16171 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 8cc56c0dd3284ae84778a548fa6c462d7b2c2232 -Author: Brian Stansberry -Date: Tue Mar 17 19:07:17 2009 +0000 - - Clean up compiler warns - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16170 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 64d7610e65e5df96a6184649a6910aac2a8d1b70 -Author: Brian Stansberry -Date: Tue Mar 17 19:04:10 2009 +0000 - - Clean up compiler warns - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16169 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 8095d02454aa2eb1291c702ff462ddf4aa872327 -Author: Steve Ebersole -Date: Fri Mar 6 18:42:49 2009 +0000 - - HHH-3214 - Update unit tests and config files to use non-depracated Oracle dialects - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16100 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 81f2726bc287448b49fff08c70a2501c320a81e6 -Author: Brian Stansberry -Date: Fri Mar 6 18:23:24 2009 +0000 - - [HHH-3585] Move to JBoss Cache 3 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16098 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit d55bde6ecc9a96b76da4df1e2fe8c3b02ad0fc3f -Author: Steve Ebersole -Date: Fri Mar 6 04:49:15 2009 +0000 - - HHH-3800 - Allow chopping of class names in various logging scenarios - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16094 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit efe4dc4633878801b7a4e795f7b17c3fe270c99d -Author: Steve Ebersole -Date: Fri Mar 6 03:01:35 2009 +0000 - - added atlassian-ide-plugin.xml to svn:ignore - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16092 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 718fd34f4ba50813df0d3162634fabb7a3c57641 -Author: Steve Ebersole -Date: Thu Mar 5 22:12:56 2009 +0000 - - HHH-3528 - FETCH JOIN query doesn't work in a StatelessSession - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16091 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 04fda3df4fea88e73a9ecd75caf15e5fa2c136ae -Author: Steve Ebersole -Date: Thu Mar 5 21:50:15 2009 +0000 - - HHH-3800 - Allow chopping of class names in various logging scenarios - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16088 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 639d4ddd1df2b0c563f05ce55b8fbb0f0b928f2b -Author: Adam Warski -Date: Thu Mar 5 15:36:46 2009 +0000 - - Documentation updates - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16085 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 7ed4cff37fd180078ae5431775f5b0e5eab341c4 -Author: Steve Ebersole -Date: Wed Mar 4 20:21:58 2009 +0000 - - HHH-3753 - Upgrade to SLF4J version 1.5.6 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16079 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit c520c6861c7e4f3fcbfbafc2b74a0bbd0d9cb16f -Author: Steve Ebersole -Date: Wed Mar 4 20:18:29 2009 +0000 - - cleaned up pom for ehcache integration - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16078 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 54a88367a4554106f91c5f4918601ae83855947b -Author: Steve Ebersole -Date: Wed Mar 4 02:19:29 2009 +0000 - - added .settings for eclipse to svn:ignore lists - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16067 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 26ed30118a475813e40eb52ba0c992806ec5c98d -Author: Steve Ebersole -Date: Tue Mar 3 23:07:49 2009 +0000 - - HHH-3279 : maven plugin - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16065 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 82320872895c0fb2d65e3ae17c1f05f3795a006b -Author: Steve Ebersole -Date: Tue Mar 3 22:57:50 2009 +0000 - - HHH-3279: create series of maven plugins offering functionality of the ant tools - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16064 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit b0f07a6e10b43417b07113346dc9ccaf476c5e6e -Author: Adam Warski -Date: Tue Mar 3 16:10:51 2009 +0000 - - HHH-3794: - - fixing interfaces of components support - - tests for interfaces in components and to-one relations - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16062 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit cd01125e7686faee5eaf8511b87011f47cd435b1 -Author: Adam Warski -Date: Mon Mar 2 16:08:45 2009 +0000 - - * a disabled tests for collecitons of components - * fixing a bug whit auditing collections when the hashcode of the elements in the colleciton changes - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16055 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit dfc657db27d3493e453aebcf1029124d6a1440e0 -Author: Steve Ebersole -Date: Sat Feb 28 04:55:29 2009 +0000 - - change to build with local entitymanager - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16051 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit e34c0d7007df2b9f6d835a627c0b8de85e90bd62 -Author: Steve Ebersole -Date: Sat Feb 28 04:45:24 2009 +0000 - - change versions from 3.4 to 3.5 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16050 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 61a71d0e399df8e00b6086749cf92f2c9d5b554c -Author: Juraci Krohling -Date: Wed Feb 25 12:21:36 2009 +0000 - - HHH-3637 - Reverted eviction of test for Sybase - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16030 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 1eb1957eba4cc04548cb1a4b286bff382cfad4e4 -Author: Gail Badner -Date: Thu Feb 12 05:24:31 2009 +0000 - - HHH-3701 HHH-3640 : Add support for mod, bit_length, and trim to SybaseASE15Dialect - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15960 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 638b43f04bcd82868431b87b3b7b31e5b9b3e802 -Author: Gail Badner -Date: Wed Feb 11 05:34:52 2009 +0000 - - HHH-3712 - Reorganize the Sybase dialect class hierarchy, add SybaseASE15Dialect, and mark SybaseDialect as deprecated - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15934 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit a1263d35b369eb8327ab5adf1217cdafdb779730 -Author: Steve Ebersole -Date: Tue Feb 10 21:44:48 2009 +0000 - - HHH-3760 : document EntityNameResolver - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15932 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 8cc5805eabf67ba6eb0f05dbd58ea9c95e9c0859 -Author: Steve Ebersole -Date: Tue Feb 10 17:28:47 2009 +0000 - - HHH-3275 : custom tuplizers for components in a collection - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15926 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 38e6babc34411818450e3a5407c03219b2996f4d -Author: Adam Warski -Date: Fri Feb 6 23:10:40 2009 +0000 - - HHH-3741: fix and testcase; properly computing the referencing property name in a unidirectional collection - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15912 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit dafb54a60fe06e7876b0d706b495113ad897abe9 -Author: Adam Warski -Date: Thu Feb 5 08:22:40 2009 +0000 - - HHH-3729: applying patch with tests - - Thank you to Erik-Berndt Scheper for providing the patches! - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15899 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 5edebe4256dae79b6066d202b724826336928b38 -Author: Steve Ebersole -Date: Wed Feb 4 23:05:57 2009 +0000 - - HHH-3750 : dialect first-result handling - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15894 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 3daba271a9d2fbe98acf372850ce1549349393e1 -Author: Juraci Krohling -Date: Wed Feb 4 08:42:07 2009 +0000 - - HHH-3640 - Added bit_length and mod to SybaseDialect. - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15884 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit cc78cbf6fee37c766bfb81ae4580695e0cd4efb0 -Author: Gail Badner -Date: Wed Feb 4 04:05:44 2009 +0000 - - HHH-3691 : Sybase does not support Blobs and Clobs; skip unit tests that use Blobs/Clobs - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15883 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 832b6111857e0f450a4eff58da2051f400f4beb6 -Author: Gail Badner -Date: Wed Feb 4 03:56:19 2009 +0000 - - HHH-3685 - Added workaround to unit test for creating Sybase stored procedures in chained transaction mode - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15882 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 4ed21cbce5057cfdaf637bd7e98b3788f87e035d -Author: Steve Ebersole -Date: Tue Feb 3 14:22:51 2009 +0000 - - HHH-3749 : limit FromElement reuse based on alias - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15866 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 687b28fc8d706d15b02b73d7532b2408f3014dcc -Author: Steve Ebersole -Date: Tue Feb 3 01:15:58 2009 +0000 - - HHH-3357 : clear() performance - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15863 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 1e45c666e6a217af46b976c67c7b22d0c8e764e9 -Author: Steve Ebersole -Date: Tue Feb 3 00:47:23 2009 +0000 - - HHH-3701 : trim function emulation for sybase - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15860 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 5e77669afd0bdeb46a40b04da724d08f90c0f5e6 -Author: Adam Warski -Date: Fri Jan 30 13:38:07 2009 +0000 - - HHH-3740: fix with test - - Thanks for the test to Erik-Berndt Scheper - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15836 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 1a1118c0bb16b70e65ec15ca85f6a9e515b2d3e3 -Author: Adam Warski -Date: Fri Jan 30 12:01:00 2009 +0000 - - HHH-3744: applying the patch. - - Thank you to Ben Clark! - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15835 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit e6c93264389bc5545e3b8dec72823e5a496000ca -Author: Adam Warski -Date: Fri Jan 30 10:39:53 2009 +0000 - - HHH-3736: fix and testcase. - - Thank you to Erik-Berndt Scheper for providing the patches! - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15834 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 4bd552cfdb2f224f8b561dd2549653e7aef09fd3 -Author: Steve Ebersole -Date: Thu Jan 29 20:06:25 2009 +0000 - - HHH-3742 : documentation corrections - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15831 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 4167921ea37f7fba4f86b9c6a01143b4a991df16 -Author: Chris Bredesen -Date: Mon Jan 26 20:30:09 2009 +0000 - - HHH-3159 replace 'oracle.jdbc.driver' with 'oracle.jdbc' - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15820 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit a115232c658013d1601afa1af89477627e57e84b -Author: Gail Badner -Date: Fri Jan 23 23:17:08 2009 +0000 - - HHH-3696 : Sybase - unit tests fail when numeric values overflow in precision or scale on insert - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15815 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 45e93dc56219b88e6b7f0a9d3bc569762ceaa42a -Author: Adam Warski -Date: Tue Jan 20 09:00:54 2009 +0000 - - HHH-3563: changing tests to use the same convention - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15803 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit bf8e6fed6ffa5b42afac0ffe9a56530b16c2654f -Author: Adam Warski -Date: Tue Jan 20 08:13:54 2009 +0000 - - HHH-3563: relation support in components - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15802 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 6d56458124cd7cef26a2b41927a11ad19d5400db -Author: Juraci Krohling -Date: Wed Jan 14 14:15:30 2009 +0000 - - ANN-795 - Added DateFormat to compare dates, otherwise, there are problems with Sybase - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15781 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit d6e005a8b752ae70784c107c036954fa5333e067 -Author: Juraci Krohling -Date: Wed Jan 14 13:06:17 2009 +0000 - - EJB-404 JBPAPP-1079 - Fixed the test case for PostgreSQL and DB2 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15778 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit bfcb39ce21d673a509c2ccbee277a76c8c63a464 -Author: Steve Ebersole -Date: Mon Jan 12 15:37:04 2009 +0000 - - HHH-3698 & HHH-3699 : HQL parameter binding issues - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15769 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 52ed39514748def5848f37bc4cb6aaaf1312b851 -Author: Steve Ebersole -Date: Fri Jan 9 05:39:49 2009 +0000 - - HHH-3698 & HHH-3699 : HQL parameter binding issues - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15758 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 54b9e03c22275ca2833a0debde03a0bf6a02c2f1 -Author: Steve Ebersole -Date: Wed Jan 7 20:33:16 2009 +0000 - - HHH-3693 : implicit polymorphism + pagination - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15753 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 50ec688066a43d1bc4446d934c6987042a21a77e -Author: Adam Warski -Date: Wed Dec 31 11:29:37 2008 +0000 - - HHH-3563, HHH-3561: component handling rework - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15744 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 92a4af082be3cb9ca3273b4547c79e08afd9318a -Author: Adam Warski -Date: Mon Dec 29 08:52:31 2008 +0000 - - HHH-3573: fix with tests (a not-insertable column can now be a many-to-one relation) - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15743 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit e1926b4ad9fecf8a4575f8c9445985932bb26da9 -Author: Gail Badner -Date: Sat Dec 27 01:51:28 2008 +0000 - - HHH-3680 - Sybase - composite primary key in unit test exceeds maximum for index causing failure - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15742 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 12aadee67411a797f6dad8164a8d58c7ffb7c0c0 -Author: Gail Badner -Date: Sat Dec 27 01:10:21 2008 +0000 - - HHH-3679 - Sybase conversion of Java byte to tinyint fails with 8-bit values causing unit test failures - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15738 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 7e8b6a75bd698b270f2ca079782b7c917a9ed4db -Author: Gail Badner -Date: Fri Dec 26 23:57:29 2008 +0000 - - HHH-3675 - Limitations on Sybase ResultSet implementation cause unit test failures - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15734 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 1ff65ff30e7b836a6bc4f9ede92a39297fe2bbab -Author: Gail Badner -Date: Fri Dec 26 23:19:25 2008 +0000 - - HHH-3508 - Sybase Dialect - Override supportsCascadeDelete to return "false" - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15730 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 07999ce59c89ceea18979819e4f6625bd5b75fc5 -Author: Gail Badner -Date: Mon Dec 22 23:31:15 2008 +0000 - - HHH-3675 - Limitations on Sybase ResultSet implementation causes unit test failures - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15726 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 76c4685117bfb29cfa8519d1c3d6af2614be2975 -Author: Adam Warski -Date: Mon Dec 22 19:16:28 2008 +0000 - - HHH-3633: classes can be audited also if they don't contain any properties (w/ test) - - Some corrections in the manual - - Performance tests - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15722 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 4e5381eb9fd38675b0f3a462783272b49eec08c6 -Author: Gail Badner -Date: Sat Dec 20 00:37:02 2008 +0000 - - HHH-3672 - Sybase - second(), minute(), hour(), and extract() cause GenericJDBCException - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15721 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit c55e3ac7efc0a3a7c3a392e3df8fdc6593dd9bf0 -Author: Gail Badner -Date: Fri Dec 19 23:08:24 2008 +0000 - - HHH-3668 : Sybase does not support implicit conversion from character types to numeric types causes failing unit tests - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15717 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 8d677f2b92645e7339fca0fdc9929cb06863e820 -Author: Gail Badner -Date: Fri Dec 19 20:56:19 2008 +0000 - - HHH-3670 - Invalid test for str() for SQL Server and Sybase - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15713 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 490acd8a0d603c9e41e52a75c45875d2eacfb746 -Author: Gail Badner -Date: Fri Dec 19 19:05:29 2008 +0000 - - HHH-3508 - SybaseDialect overrides supportsCascadeDelete to return "false"; SQLServerDialect returns "true" - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15709 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit d3b224103d5edde345985963f336fedc93fe929f -Author: Dave Stephan -Date: Tue Dec 16 22:24:53 2008 +0000 - - HHH-3584 - Modified getPropertiesToUpdate to check if version property has been marked as updateable==false before adding. - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15701 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 4fa064b209f8e8338185ea664ef34f6c957bf55e -Author: Juraci Krohling -Date: Mon Dec 15 10:46:00 2008 +0000 - - EJB-404 - Changing the order of the predicates in testIsNull. Now it pleases PostgreSQL as well - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15696 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit a824ec66b55c02cde9f2f12a62199f378905517e -Author: Juraci Krohling -Date: Fri Dec 12 20:48:49 2008 +0000 - - HHH-3640 - Reverting the eviction of SybaseDialect, as we need to fix the SybaseDialect and the test case itself is valid - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15692 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 4d23b828036eadae5627065a961e5fddf8144757 -Author: Juraci Krohling -Date: Fri Dec 12 15:37:44 2008 +0000 - - HHH-3650 - Added fixed 'not null' to the create-table statement - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15690 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit becf5568a44a4bc8f97a72ec684709ff0160f82e -Author: Juraci Krohling -Date: Fri Dec 12 14:35:08 2008 +0000 - - HHH-3652 - Format the timestamps to a common format, to avoid issues with milliseconds - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15687 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit fb2eb9e870ce32160eb65cef25b0979b6aa94919 -Author: Juraci Krohling -Date: Fri Dec 12 13:10:10 2008 +0000 - - EJB-406 - Makes a test to fail if there are unfinished transactions, and closes it to not affect other tests - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15686 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit cc12ed8c5321a884ed90f359473218cba0d8d8ff -Author: Juraci Krohling -Date: Fri Dec 12 12:48:09 2008 +0000 - - HHH-3649 - Added supportsPooledSequences() method, to return true - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15684 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 6483cfb3e5fd95de05098196908912ec10da8cd0 -Author: Juraci Krohling -Date: Thu Dec 11 12:42:46 2008 +0000 - - ANN-790 - Added a missing tx.commit() - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15682 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 2473d0e1842f85ea3a13fca3ef5a8b94119ee68f -Author: Juraci Krohling -Date: Wed Dec 10 16:56:10 2008 +0000 - - HHH-3639 - Column 'role' becomes 'roles_', because 'role' is a reserved keyword in Sybase - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15680 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 65faf0232ab776cfaaa91417eb6b10ac7dfefc01 -Author: Juraci Krohling -Date: Wed Dec 10 16:55:00 2008 +0000 - - HHH-3640 - Evicting some tests for Sybase on ASTParserLoadingTest, due to unsupported functions - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15679 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 7a9b8ba19cbb14fdf71ec72d96ea607ed20d971c -Author: Juraci Krohling -Date: Wed Dec 10 16:23:10 2008 +0000 - - HHH-3637 - makes the test to be evicted if the Dialect is the Sybase one, based on similar eviction code from other tests - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15678 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 8719e10c1c4db6d4bbab289ef07d4be3ce8016f8 -Author: Juraci Krohling -Date: Wed Dec 10 12:05:04 2008 +0000 - - EJB-405 - Changed the column name for properties which are reserved keywords in some databases - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15677 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 468743d2a7e0e38c46b9c132899d6c17c6d8d054 -Author: Juraci Krohling -Date: Wed Dec 10 12:01:47 2008 +0000 - - EJB-407 - Fixing the test cases, to close the EM and/or finish the active transaction - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15676 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit ff1be35e7d6be27766297e5920c24138bcf9be3a -Author: Chris Bredesen -Date: Wed Dec 10 01:47:56 2008 +0000 - - HHH-3636 test case + fix - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15674 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 19e258ce5a9e08ad06f6be2e3dc09ee015a5e031 -Author: Juraci Krohling -Date: Mon Dec 8 14:05:46 2008 +0000 - - HHH-3632 - Changed version of jcl-over-slf4j, to 1.5.2 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15671 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit e2ae25a9a9e312520011165103334a9c1f16281f -Author: Adam Warski -Date: Tue Nov 25 15:25:46 2008 +0000 - - HHH-3623: collectin proxies are serializable - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15615 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 0e8bdf990bd7dd21e2e945cec98bd3cf08fabd63 -Author: Adam Warski -Date: Tue Nov 25 15:23:40 2008 +0000 - - HHH-3623: collectin proxies are serializable - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15614 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 266fbedbd31b19cf7763bf9e7eeabf3252051dcd -Author: Adam Warski -Date: Thu Nov 20 13:09:44 2008 +0000 - - Performance tests - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15601 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 3ad01d08f5e59f9b5e5ca877da963653c0c68de6 -Author: Adam Warski -Date: Wed Nov 19 14:35:40 2008 +0000 - - Removing unused HibernateVersion class, updating demo - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15593 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit a499ae227391a2266636699b2782ad485f8ad320 -Author: Adam Warski -Date: Wed Nov 19 13:49:52 2008 +0000 - - Adding the missing chapter on queries - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15590 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit ef45d0418152f1e364b7d5bb5ef4700301ff4ee3 -Author: Adam Warski -Date: Wed Nov 19 13:10:40 2008 +0000 - - HHH-3611: improved query interface - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15589 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit a91681858e3e03451e3738589d9c3d3cb398c6ef -Author: Adam Warski -Date: Mon Nov 17 07:34:10 2008 +0000 - - HHH-3564: updating the manual - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15572 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit f5253722a4fc8b45b7b86bb886c83bed9886e554 -Author: Adam Warski -Date: Mon Nov 17 07:19:44 2008 +0000 - - HHH-3564: support for joined inheritance with tests - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15571 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 18074af9b4e867b64dbb5bd5febb8e01364c1b61 -Author: Adam Warski -Date: Sat Nov 15 15:23:25 2008 +0000 - - HHH-3564: support for table-per-class inheritance strategy with tests - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15566 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 044efaeeb3e8fcb56e441648d43acd10e17055fb -Author: Adam Warski -Date: Fri Nov 14 15:16:23 2008 +0000 - - HHH-3602: bug fix with test (generating a CollectionChangeWorkUnit for the proper entity in case a relation is owned by a superclass, when inheritance is used) - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15565 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit edf3822cfb7910059b8aed6a63272f310561366f -Author: Adam Warski -Date: Wed Nov 12 12:28:54 2008 +0000 - - HHH-3594: bug fix with test - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15551 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 1013fef216269ba035d7ead646c0026ab49acf59 -Author: Adam Warski -Date: Wed Nov 12 11:03:15 2008 +0000 - - HHH-3598: revision type property can be used as query restriction - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15550 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 6d74f28f9e8bbbb06ce93123e64880f9a10ea8a1 -Author: Steve Ebersole -Date: Mon Nov 10 22:32:17 2008 +0000 - - correct H2 database artifact coord for testsuite profile - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15544 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 3f20292fb5513cade66006ab2378424ee917be95 -Author: Steve Ebersole -Date: Mon Nov 10 18:14:18 2008 +0000 - - HHH-530 : problem with parameter-pulling when row value constructor morphed on dialects not supporting - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15538 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit b4d814bbff56fe9483a351621467f8b73b63ce7e -Author: Adam Warski -Date: Wed Nov 5 09:23:49 2008 +0000 - - HHH-3568: all audit entites are mapped with update="false" - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15519 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 5f0bb2f69195b970767c48184a949ab677fdf596 -Author: Adam Warski -Date: Wed Nov 5 09:17:10 2008 +0000 - - HHH-3570: more renaming - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15518 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 4603c8a4dd267aab345ec915b932f736d404daa7 -Author: Adam Warski -Date: Wed Nov 5 09:13:05 2008 +0000 - - HHH-3570: more renaming - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15517 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit e67a384aad24c9a5d3351fa418adf0d6d33f0e86 -Author: Adam Warski -Date: Wed Nov 5 08:59:14 2008 +0000 - - HHH-3556: minor corrections - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15516 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit e3611638b50a95328e943bc5ff19aec7735b0460 -Author: Adam Warski -Date: Wed Nov 5 08:42:01 2008 +0000 - - HHH-3556: migration docs - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15515 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 843d3c648f0d28ae921d701fd340656c27bb40f3 -Author: Adam Warski -Date: Wed Nov 5 08:41:14 2008 +0000 - - HHH-3570: changing default names - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15514 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 979f19bab8a7319a252cec88b7e4f40c81fdbd79 -Author: Adam Warski -Date: Tue Nov 4 22:18:48 2008 +0000 - - HHH-3570: compatibility classes - detecting @Versioned annotation - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15507 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit ba3aaecbe480a8899a298f068cc9958c34911cd6 -Author: Adam Warski -Date: Tue Nov 4 22:11:07 2008 +0000 - - HHH-3570: more renaming, some compatibility classes - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15506 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 4bad2d2b7e51e3e7e1821354064481e442fe1d6c -Author: Steve Ebersole -Date: Tue Nov 4 21:46:12 2008 +0000 - - HHH-2802 : @OrderBy property - minor - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15505 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 46b1ca8267f67dfd741b83707815e48c93496d31 -Author: Adam Warski -Date: Tue Nov 4 18:11:28 2008 +0000 - - HHH-3556: Envers documentation partially migrated - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15502 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 137585b17f62c1056374d8e6f2ed46d8c365a18a -Author: Adam Warski -Date: Tue Nov 4 17:44:43 2008 +0000 - - HHH-3556: Envers documentation partially migrated - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15501 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 7e04164b240c82d1dc593bc03c99a62fac91aa8e -Author: Adam Warski -Date: Tue Nov 4 17:31:43 2008 +0000 - - HHH-3556: Envers documentation partially migrated - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15500 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit c2e7ba6e86bf439e73972958618a412e8abf2cd4 -Author: Adam Warski -Date: Tue Nov 4 17:31:01 2008 +0000 - - HHH-3556: Envers documentation partially migrated - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15499 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit b9284c5e7c0a5997ffb1136bd7a7585270e6d468 -Author: Adam Warski -Date: Tue Nov 4 17:07:01 2008 +0000 - - HHH-3556: Envers documentation partially migrated - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15498 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 371e532e0e2fb6ce5d4be041aaee01d1d69ddb1b -Author: Adam Warski -Date: Tue Nov 4 17:06:23 2008 +0000 - - HHH-3556: Envers documentation partially migrated - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15497 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 6173d0594bd624bf77cb8097fee84a1cff5370db -Author: Hardy Ferentschik -Date: Mon Nov 3 20:07:15 2008 +0000 - - HHH-3580 added entity manager to module list - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15486 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 0e0717634f091b3be5208d73a46fcba4f2c81bdf -Author: Hardy Ferentschik -Date: Mon Nov 3 15:27:53 2008 +0000 - - HHH-3580 set forkmode to perTest. This was also needed in the old ant structure. Unfortunately, this slows down the build. We need to identify why this is needed. One of the troublemaers is PersistTest. There are also other thest which seem dubious. All test needs a review. - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15485 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 669d21a7bde7b7bbc459326a49458094fe836273 -Author: Hardy Ferentschik -Date: Mon Nov 3 15:09:16 2008 +0000 - - HHH-3580 fixed PackagedEntityManagerTest - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15484 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 30afc77a793a00e76f209cdc17250e29e4517005 -Author: Hardy Ferentschik -Date: Mon Nov 3 14:25:59 2008 +0000 - - HHH-3580 fixed some more tests and enabled svn:keywrds substitution on all java files - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15483 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 08b6d1ea137206207181b04e36356d6145afee34 -Author: Hardy Ferentschik -Date: Mon Nov 3 12:55:04 2008 +0000 - - HHH-3580 removed some more obsolete resources and started to fix the failing tests; later we might move build.xml into the pom - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15482 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit cc03033e59af53aeb49dbba8dd58bdf1fe3a8578 -Author: Adam Warski -Date: Mon Nov 3 11:24:30 2008 +0000 - - HHH-3565: adding support for field and property access types; changed the way properties are read. Now, instead of a sole property name, a special "PropertyData" object is passed around which encapsulates the property name and access type information. - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15481 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 572f4124826ec8ea306857b9ecf47443fa4219c9 -Author: Hardy Ferentschik -Date: Mon Nov 3 10:26:13 2008 +0000 - - HHH-3580 - moved some resources around and deleted obsolete ones - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15480 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit e70e58135eb64958837c323c490723448592cbc5 -Author: Hardy Ferentschik -Date: Mon Nov 3 10:22:12 2008 +0000 - - HHH-3580 - get sources compile and most tests working - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15479 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 407d4f170474f7e884fbfea2aef2fdbc8456a108 -Author: Steve Ebersole -Date: Fri Oct 31 17:29:01 2008 +0000 - - HHH-3580 : import entitymanager into core - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15474 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 75c43d764be0c0b2098fab8e9f0e5c63a20772cf -Author: Steve Ebersole -Date: Fri Oct 31 17:27:49 2008 +0000 - - HHH-3580 : import entitymanager into core - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15473 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 16c85a2c4f5321087da3b2b5bbeb7435431b8f77 -Author: Steve Ebersole -Date: Fri Oct 31 17:22:32 2008 +0000 - - HHH-3580 : import entitymanager into core - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15472 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 3667b6e322e299b1f1fbcb2aa08265b7de9a6956 -Author: Steve Ebersole -Date: Fri Oct 31 17:21:32 2008 +0000 - - HHH-3580 : import entitymanager into core - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15471 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 9efd65f9ded4cf5877783b56fdcbef8bf730664e -Author: Steve Ebersole -Date: Fri Oct 31 17:18:48 2008 +0000 - - HHH-3580 : import entitymanager into core - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15470 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit a133cfb6a83fab957d320d8c6818f894588ae7c3 -Author: Steve Ebersole -Date: Fri Oct 31 17:15:43 2008 +0000 - - HHH-3580 : import entitymanager into core - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15469 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 282a693243aa32ecd00d9efaf77af2a075215095 -Author: Steve Ebersole -Date: Fri Oct 31 17:15:06 2008 +0000 - - HHH-3580 : import entitymanager into core - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15468 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit b7fb3fcdeecd8101dd893eab7ac22ae98ae0ce9c -Author: Steve Ebersole -Date: Fri Oct 31 17:07:47 2008 +0000 - - HHH-3580 : import entitymanager into core - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15467 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit f9913f9e5eb8d0c9875922811fdc2285579ec097 -Author: Adam Warski -Date: Fri Oct 31 12:26:41 2008 +0000 - - Removing the unused logger integration (for Hibernate <3.3) - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15465 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit a94515206db0eee8867d399bee6a87aa9e8cb074 -Author: Adam Warski -Date: Fri Oct 31 12:23:27 2008 +0000 - - Removing unused Hiberntae 3.2.4.SP1 integration facilities (ReflectionManager) - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15464 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit c1312db93432f748ab02382b9e27c8b6a9a67636 -Author: Adam Warski -Date: Fri Oct 31 12:14:46 2008 +0000 - - HHH-3575: fix with test - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15463 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 6a7db82fe04081a7028b97218e67e4b58c150cf3 -Author: Adam Warski -Date: Fri Oct 31 12:00:22 2008 +0000 - - Removing the persister hack, as HHH-3351 has been resolved - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15462 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit fabb73a8d1423d2fc8b7c2631071e9c425150954 -Author: Adam Warski -Date: Fri Oct 31 11:55:23 2008 +0000 - - HHH-3570: renaming versioned to audited - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15461 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 9fc49bf328cebc0a612e0ef5d8425a08d16f1842 -Author: Adam Warski -Date: Fri Oct 31 11:53:38 2008 +0000 - - HHH-3570: renaming versioned to audited - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15460 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 90f70231c682e22693f85977497d2dc429ef29da -Author: Adam Warski -Date: Fri Oct 31 11:42:38 2008 +0000 - - HHH-3570: renaming versioned to audited - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15459 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 644ea8d2f2946c1fdbed2dc3f83cf67e21f54012 -Author: Hardy Ferentschik -Date: Fri Oct 31 10:59:37 2008 +0000 - - removed the obsolete ant stuff - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15458 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 2c63850f1eb403a99a7d1f5d4dc72c87bfba26d8 -Author: Hardy Ferentschik -Date: Fri Oct 31 10:57:35 2008 +0000 - - make the documentation buildable via maven as well. In the long run we will have to combine all the documentation though - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15457 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 7d53ae6ebf268816c4734d3039a4a49e3a69f1cb -Author: Hardy Ferentschik -Date: Fri Oct 31 10:26:47 2008 +0000 - - commented out some tests until HHH-3577 gets fixed - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15456 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit e6ee45c6ce4c6ee1ce8fb0c6b271b499eaba1e69 -Author: Steve Ebersole -Date: Thu Oct 30 16:45:35 2008 +0000 - - HHH-3351 : import envers as core module - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15453 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 20dd9ccc5f7a88b5b99b889e19b84776ffcb000d -Author: Hardy Ferentschik -Date: Thu Oct 30 12:36:16 2008 +0000 - - * Moved orm_1_0.xsd into the src/main/resources so that it properly get copied at build time - * Enabled query cache in hibernate.properties - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15452 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit da8c5a3a19320808fd7422d220e3c19e93184291 -Author: Adam Warski -Date: Thu Oct 30 09:05:38 2008 +0000 - - - Using an in-memory db for testing - - removed dependency on hsqldb - - changed the description - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15451 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit f1c5c8a31a07782bec1763f768eaa648bb5cda8a -Author: Adam Warski -Date: Thu Oct 30 08:24:20 2008 +0000 - - Tests pass, using h2 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15450 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit bfb989a467c0b355324f0c87e77e30de89084c4a -Author: Gail Badner -Date: Wed Oct 29 21:33:52 2008 +0000 - - HHH-2146 : NullpointerException in DefaultDeleteEventListener.deleteTransientEntity - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15445 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 4a058ff6ca02563c72447c113170439d133537ed -Author: Steve Ebersole -Date: Wed Oct 29 16:34:25 2008 +0000 - - HHH-3550 : import annotations into core - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15436 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 8cf6a823974ddfe74548da9913e0df7adf541ee8 -Author: Steve Ebersole -Date: Wed Oct 29 15:51:05 2008 +0000 - - HHH-3550 : import annotations into core - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15435 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit dd35cf7b1461fc883148b148e5c81731d9c08a35 -Author: Steve Ebersole -Date: Wed Oct 29 15:17:39 2008 +0000 - - HHH-3351 : import envers as core module - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15434 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 15ac9155d2798f5d797310a2fb5f67ef0809428e -Author: Steve Ebersole -Date: Wed Oct 29 14:59:03 2008 +0000 - - HHH-3351 : import envers as core module (testng setup) - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15433 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 595bfdb1573adb3aa91752ea4da0778513b83d27 -Author: Adam Warski -Date: Wed Oct 29 13:44:37 2008 +0000 - - Excluding hibernate-validator from EM dependencies - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15432 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit d19e0a4b1e660690b6b3da9f3cd9527b1b9fa112 -Author: Steve Ebersole -Date: Tue Oct 28 21:47:32 2008 +0000 - - HHH-3550 : import annotations into core - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15429 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 513c71de5c5c6fb65bbc2a191ab7a9e565e304d5 -Author: Steve Ebersole -Date: Tue Oct 28 21:41:58 2008 +0000 - - HHH-3550 : import annotations into core - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15428 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit de91525718339f935895199341cff5e30e745041 -Author: Steve Ebersole -Date: Tue Oct 28 19:16:51 2008 +0000 - - HHH-3549 : import commons-annotations into core - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15427 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 5fd839d4ae562f1b8aca715526e62bacb0d460eb -Author: Steve Ebersole -Date: Tue Oct 28 18:59:20 2008 +0000 - - HHH-3550 : import annotations into core - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15426 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit d1ac7790aad549dd5fa6d640aa0f662e4ac99006 -Author: Steve Ebersole -Date: Tue Oct 28 18:58:58 2008 +0000 - - HHH-3550 : import annotations into core - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15425 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 43d2ed5fabb0d488955c479728b9c4043a63dd55 -Author: Steve Ebersole -Date: Tue Oct 28 18:58:50 2008 +0000 - - HHH-3550 : import annotations into core - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15424 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 4838176dc2bc1e631c60034fd8146dd9d68b0385 -Author: Steve Ebersole -Date: Tue Oct 28 18:58:42 2008 +0000 - - HHH-3550 : import annotations into core - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15423 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 112278c914c397b805f94341b83ab504ba4b630f -Author: Steve Ebersole -Date: Tue Oct 28 18:56:26 2008 +0000 - - HHH-3550 : import annotations into core - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15422 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit d79ff9c0114a8a56f34031eb9c222439f34a14db -Author: Steve Ebersole -Date: Tue Oct 28 18:55:51 2008 +0000 - - HHH-3550 : import annotations into core - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15421 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit c7149df157c0a4aacefb373b6097b3d183b3ff16 -Author: Steve Ebersole -Date: Tue Oct 28 18:55:02 2008 +0000 - - HHH-3550 : import annotations into core - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15420 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit d63e1faac507b959d504681aaa1d238fb0abbf9f -Author: Steve Ebersole -Date: Tue Oct 28 18:54:01 2008 +0000 - - HHH-3550 : import annotations into core - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15419 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 9d7a03a5f7f03bc803d897baa590861154b39f5e -Author: Steve Ebersole -Date: Tue Oct 28 18:53:13 2008 +0000 - - HHH-3550 : import annotations into core - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15418 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit c457f2b3258fc48ef4010a9e58cd2fc3baaca6cc -Author: Steve Ebersole -Date: Tue Oct 28 18:52:43 2008 +0000 - - HHH-3550 : import annotations into core - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15417 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit a51b033dbaeec78c00c25649312c4b379c6c69bb -Author: Steve Ebersole -Date: Tue Oct 28 18:43:14 2008 +0000 - - HHH-3549 : import commons-annotations into core - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15416 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 7337743c93574823424ed6c399cfcf6bd75614f8 -Author: Steve Ebersole -Date: Tue Oct 28 18:41:10 2008 +0000 - - HHH-3550 : import annotations into core - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15415 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 53deb4b357384f32819f70c497ef04885171c399 -Author: Steve Ebersole -Date: Tue Oct 28 17:17:35 2008 +0000 - - HHH-3549 : import commons-annotations into core - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15414 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 354714caca580f634f0bddbce49c89c6082e3999 -Author: Steve Ebersole -Date: Tue Oct 28 16:02:28 2008 +0000 - - HHH-3549 : import commons-annotations into core - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15413 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 1afe62250f2b7ca3a08fcd1cc7c63082ee3912c5 -Author: Steve Ebersole -Date: Mon Oct 27 21:28:59 2008 +0000 - - HHH-3351 : dynamic map entity-persister and subclassing - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15409 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 7968a450ae8d5071863836d02f0390ead4fd5929 -Author: Steve Ebersole -Date: Mon Oct 27 19:58:10 2008 +0000 - - HHH-3351 : import envers as core module (legal headers & imports) - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15407 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 78e5d9fd89aa571f8ad5cf5b8a5046b9b74cb09b -Author: Steve Ebersole -Date: Mon Oct 27 18:56:31 2008 +0000 - - HHH-3351 : import envers as core module - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15406 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit e163f8264d41ab028db28af450f3d9bae418f9c0 -Author: Steve Ebersole -Date: Tue Oct 21 19:11:13 2008 +0000 - - HHH-3512 : id generator short-naming - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15367 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit b24a10209ae11b77303009585eed12fc2cbd7f80 -Author: Steve Ebersole -Date: Tue Oct 21 19:10:17 2008 +0000 - - HHH-3512 : id generator short-naming - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15366 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 84c457952072cd3ed95b9752ce468577a2bde535 -Author: Steve Ebersole -Date: Tue Oct 21 18:46:51 2008 +0000 - - HHH-3512 : id generator short-naming - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15365 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 538982e8e6e96c3da87916c7b068a0ce43f9b2ca -Author: Steve Ebersole -Date: Mon Oct 20 17:57:44 2008 +0000 - - HHH-2802 : order-by mapping -> support for property names - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15359 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 13ddb15f29852ceafe13f02c5a5a7f21b8805fe9 -Author: Steve Ebersole -Date: Mon Oct 13 15:29:23 2008 +0000 - - HHH-2933 : DialectResolver - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15343 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 1c27ee9bb51087d6a16bd9e0097386c62ec746db -Author: Steve Ebersole -Date: Mon Oct 13 15:08:15 2008 +0000 - - HHH-3517 : default Tuplizer impls - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15341 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 02ab577b053fe39262cfea78239eef108d1541c5 -Author: Steve Ebersole -Date: Mon Oct 13 14:13:15 2008 +0000 - - HHH-3525 : JDK 1.4 isolation reflection - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15338 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 1d919d9d53056acc8c95e5853c1913f2414f4b00 -Author: Manik Surtani -Date: Mon Oct 13 09:24:31 2008 +0000 - - Upgraded to use a non-deprecated factory constructor - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15334 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 7f58da93511a81026ef734684fb25b5c0fb47196 -Author: Manik Surtani -Date: Mon Oct 13 09:17:58 2008 +0000 - - Upgraded to use a non-deprecated factory constructor - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15333 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 3a083fc12a3fc93b668e9dd3c9ee0b5a53dbd619 -Author: Steve Ebersole -Date: Thu Oct 9 17:50:14 2008 +0000 - - HHH-3343 : PostgresPlusDialect - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15306 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit be0c5273b34174aae44350df4503a69bf28a5932 -Author: Steve Ebersole -Date: Thu Oct 9 17:23:32 2008 +0000 - - HHH-3519 : parameters in select clause - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15305 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 7f93fab8867cd4ccd0ebc25a7274f63fd08faa79 -Author: Steve Ebersole -Date: Wed Oct 8 17:33:27 2008 +0000 - - HHH-3517 : default Tuplizer class setting - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15291 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 54cfb4bb5f03c1bc066327b23ff204bd1109ca90 -Author: Steve Ebersole -Date: Wed Oct 8 13:43:29 2008 +0000 - - HHH-3518 : remove testsuite Suite aggregators - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15284 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 0741fdc495daa8c8f94ad760eb44c3550526a6f3 -Author: Steve Ebersole -Date: Wed Oct 8 11:44:03 2008 +0000 - - javadoc - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15281 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 4c110150e488a865bb26e4fad885ac1181161869 -Author: Steve Ebersole -Date: Wed Oct 8 04:39:11 2008 +0000 - - HHH-3515 : EntityNameResolver defensiveness - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15273 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit ff128ca6f8598c69af53b91bdbcf3f74c7540769 -Author: Steve Ebersole -Date: Wed Oct 8 04:13:07 2008 +0000 - - HHH-530 : followup on parameter handling - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15268 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 959d2814ea350a55152a72ad3849d6da1c37ef36 -Author: Steve Ebersole -Date: Wed Oct 8 03:13:08 2008 +0000 - - HHH-3510 : HQL SQLFunction replacement not occuring when HQL text has no parenthesis (rollback) - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15266 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit c3d4758f1e3c760c4bcd0b1639ec028df16dafd3 -Author: Steve Ebersole -Date: Tue Oct 7 15:54:42 2008 +0000 - - HHH-3515 : EntityNameResolver - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15258 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 86eeb9be34182ed03cf29ea4c912a3e815d05be3 -Author: Steve Ebersole -Date: Fri Oct 3 21:10:16 2008 +0000 - - HHH-1907 : component + EntityMode.DOM4J - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15255 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit e13782cdf849f6cb70bdd1809e1d64b2918748d8 -Author: Steve Ebersole -Date: Fri Oct 3 03:03:21 2008 +0000 - - HHH-3481 : minor bug in previous JTATransactionFactory patch - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15252 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 647d68cc14fa694fbc2c737f1c2d168fca939d0c -Author: Manik Surtani -Date: Thu Oct 2 08:05:49 2008 +0000 - - javax.persistence is a dependency for these tests - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15245 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 47e67869154fd2f47024779743ab05e8272ab949 -Author: Manik Surtani -Date: Thu Oct 2 07:53:37 2008 +0000 - - Updated to 2.2.0.GA - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15244 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit bd3170db4fdad01a8db09729379bbbb624fa13f6 -Author: Steve Ebersole -Date: Wed Oct 1 21:25:02 2008 +0000 - - HHH-3510 : HQL SQLFunction replacement not occuring when HQL text has no parenthesis (rollback) - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15243 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit d4f929aab3498dff8a5a67d0f14d73a3a51ae77a -Author: Steve Ebersole -Date: Wed Oct 1 21:09:20 2008 +0000 - - HHH-3510 : HQL SQLFunction replacement not occuring when HQL text has no parenthesis - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15242 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit cdb1c9dda5bdd0f0aad6aac03952986db82c39d1 -Author: Steve Ebersole -Date: Wed Oct 1 18:10:41 2008 +0000 - - HHH-530 : filters + subqueries; - HHH-3506 : filters + HQL update/delete - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15238 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 3f2a14080a47af7555b11baeb1b3b0e2bfeb2254 -Author: Gail Badner -Date: Mon Sep 29 21:45:42 2008 +0000 - - HHH-3501 : ASTParserLoadingTest testing unsupported queries for DB2 - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15228 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 2a2facaf69fa33257157cce9c1bb4b235016fcc0 -Author: Juraci Krohling -Date: Fri Sep 26 18:37:54 2008 +0000 - - HHH-3498 - Fixed in trunk - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15221 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit c8d4c24d8dd86bda09fe1723e645b4c9109350aa -Author: Gail Badner -Date: Thu Sep 25 22:04:01 2008 +0000 - - HHH-3496 : DB2 hanging on JPALockTest and CMTTest - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15218 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit aa7f7a7822504e36fe9413318cf78230243affca -Author: Steve Ebersole -Date: Wed Sep 17 16:44:23 2008 +0000 - - HHH-3439 : Mappings - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15210 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 3a23f9d1b8ab8c7df552306191a91aa502b3e1e3 -Author: Gail Badner -Date: Tue Sep 16 22:01:19 2008 +0000 - - HHH-3483 : DB2 does not support position queries on TYPE_FORWARD_ONLY ResultSets - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15206 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit b20825d1c98bc39e8902a4a0b2cb275bd917af03 -Author: Steve Ebersole -Date: Tue Sep 16 15:57:19 2008 +0000 - - HHH-3216 : ParameterParser + escaped function call syntax - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15200 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 83908135651927f6865497264c0bb903279fae1e -Author: Steve Ebersole -Date: Fri Sep 12 07:14:40 2008 +0000 - - HHH-3414 : use LoadQueryInfluencers.NONE from StatelessSession - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15194 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 506ec371c32551bc7593c812f6f84be7561fbd11 -Author: Steve Ebersole -Date: Fri Sep 12 07:00:40 2008 +0000 - - HHH-3414 : made LoadQueryInfluencers Serializable - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15193 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 664029469b49f16618e97baaea1186b9f4cfe69f -Author: Steve Ebersole -Date: Fri Sep 12 06:17:00 2008 +0000 - - HHH-2592 : Dialect.forceLimitUsage - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15192 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit f85f5cc0c8ed45f1bc2127c3c6993848c71a454c -Author: Steve Ebersole -Date: Fri Sep 12 04:53:33 2008 +0000 - - HHH-2592 : apply limit even when no limit specified :/ - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15190 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 96dc5e8a261f1eeb365de067c5d24b9e4d87145c -Author: Steve Ebersole -Date: Fri Sep 12 04:39:09 2008 +0000 - - HHH-3450 : SingletonEhCacheProvider - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15188 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 4636bce371816a56aef70dc0db6dea091abfbe30 -Author: Steve Ebersole -Date: Wed Sep 10 18:12:01 2008 +0000 - - account for jcl104-over-slf4j artifact renaming to jcl-over-slf4j - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15181 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit f2937842431c672fc9323b19a98940d7f34daff4 -Author: Steve Ebersole -Date: Wed Sep 10 17:53:46 2008 +0000 - - test suite cleanups - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15178 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit a6ca833e2e72cbef9b5f4b8ea97322e9f98ce59f -Author: Steve Ebersole -Date: Wed Sep 10 17:02:45 2008 +0000 - - HHH-3392 : query cache cluster replication with ResultTransformers - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15174 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 04f2f0480135d04d62eb4fc4b02052e748f349bd -Author: Steve Ebersole -Date: Wed Sep 10 16:24:21 2008 +0000 - - HHH-3474 : slf4j -> 1.5.2 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15171 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 7b3e4824e848f88a04fdf18deec3528cda95dfb0 -Author: Steve Ebersole -Date: Tue Sep 9 21:27:28 2008 +0000 - - HHH-3472 : WebSphere + JTASessionContext - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15168 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit a0c14fe19212533240317d2febb230a12954e453 -Author: Steve Ebersole -Date: Tue Sep 9 18:46:25 2008 +0000 - - HHH-3471 : add NumericBooleanType - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15163 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit c6c0a826a5a62a52671e4d679c2ff72d42fd5eaf -Author: Steve Ebersole -Date: Mon Sep 8 19:43:09 2008 +0000 - - HHH-3424 : concat function on Derby - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15157 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 343e727e4ba11ef0a48d95d0c2c32ac1e630bb45 -Author: Steve Ebersole -Date: Fri Aug 29 18:42:57 2008 +0000 - - HHH-3456 : enhanced.SequenceStyleGenerator extensibility - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15151 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit a8142fdf63594c972256f136b3da389b536c306f -Author: Steve Ebersole -Date: Fri Aug 29 14:49:34 2008 +0000 - - HHH-3454 : allow segment value default to be the entity table name - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15148 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit affc3a60cb9de83399cd1773c40500aa36b7d42b -Author: Steve Ebersole -Date: Fri Aug 29 06:22:52 2008 +0000 - - HHH-2686 : enhanced.TableGenerator - generator table PK; - HHH-3231 : enhanced.TableGenerator - improper SELECT ... FOR UPDATE OF building; - HHH-3249 : enhanced.TableGenerator - extensibility; - HHH-3454 : enhanced.TableGenerator - allow segment value default to be the entity table name - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15145 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 879d8900d9ee46721970dcfd8908d2f63a65fc59 -Author: Anthony Patricio -Date: Fri Aug 22 14:24:25 2008 +0000 - - HBX-757 fix - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15139 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 39123a97fcee25f2856ce9e940149d5d9d9305d2 -Author: Steve Ebersole -Date: Thu Aug 21 12:28:41 2008 +0000 - - HHH-3414 : fetch profiles - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15138 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit a06e9ac1eba3f2254f7036fe65916e4489e9faa4 -Author: Steve Ebersole -Date: Tue Aug 19 21:06:29 2008 +0000 - - fixed validation of failure expected results - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15116 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 891c2d9dfab071542a4602b3e160849b59c40fc0 -Author: Steve Ebersole -Date: Tue Aug 19 14:40:53 2008 +0000 - - HHH-3437 : re-add getSource() on events - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15114 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 11613e206a444f2e1c3d91733655231e82d0d736 -Author: Chris Bredesen -Date: Tue Aug 19 02:51:06 2008 +0000 - - HHH-2694 moved schemaExport.drop() before connectionProvider.close() - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15110 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 603e6d4574927c583fe54b26f2a4855927fe2d42 -Author: Steve Ebersole -Date: Mon Aug 18 19:03:38 2008 +0000 - - fixed validation of failure expected results - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15103 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit c7c8a9bfd4e4a7a028c7cebc140ec2ee2608a2a7 -Author: Steve Ebersole -Date: Mon Aug 18 18:57:39 2008 +0000 - - fixed validation of failure expected results - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15102 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit fbae6db0abaeb6f050ee97ce53d09d74886a7e47 -Author: Steve Ebersole -Date: Fri Aug 15 21:20:15 2008 +0000 - - HHH-3414 : fetch profiles, phase 1 : join fetching - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15091 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 8f3ce7a6e724e82353a29605206cd86dca0e549a -Author: Steve Ebersole -Date: Thu Aug 14 15:58:54 2008 +0000 - - [maven-release-plugin] prepare release Branch_3_3 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15071 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit b0074cda9657b78d2c9df28031529937aad02d16 -Author: Steve Ebersole -Date: Thu Aug 14 15:58:27 2008 +0000 - - [maven-release-plugin] prepare branch Branch_3_3 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15069 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit c5a315f16323172bd73ffd9e7c4540290a3ee0cc -Author: Steve Ebersole -Date: Thu Aug 14 15:57:31 2008 +0000 - - prep for rebranching 3.3 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15068 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 3a37ce40d5e525599a74958a5ab39e027db9a092 -Author: Steve Ebersole -Date: Thu Aug 14 15:35:40 2008 +0000 - - undo fixes for HHH-3080,HHH-3190,HHH-2976,HHH-3397 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15067 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit f47cbced6f1aa2342f5b3ac83fb8c723f5efe86d -Author: Steve Ebersole -Date: Thu Aug 14 15:28:13 2008 +0000 - - undo fixes for HHH-3080,HHH-3190,HHH-2976,HHH-3397 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15066 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 5705431a07051ea30ad55f7399fef17317cdd608 -Author: Steve Ebersole -Date: Thu Aug 14 14:03:09 2008 +0000 - - undo fixes for HHH-3080,HHH-3190,HHH-2976,HHH-3397 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15064 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 841cd58cdf832ceb8f1958d3288828c3ef8af141 -Author: Steve Ebersole -Date: Wed Aug 13 17:25:18 2008 +0000 - - [maven-release-plugin] prepare release Branch_3_3 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15055 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 5b6ac79989cee3d30b59da9ad8264d00046328d8 -Author: Steve Ebersole -Date: Wed Aug 13 17:25:00 2008 +0000 - - [maven-release-plugin] prepare branch Branch_3_3 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15053 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 198fb91b253014190b76e16c7a58d15647f2a5ca -Author: Steve Ebersole -Date: Wed Aug 13 16:17:42 2008 +0000 - - prep 3.3.0.GA release - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15052 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 6474f08ab6aaa3e60d8bd7ed8a03e98b2f1a74f0 -Author: Steve Ebersole -Date: Wed Aug 13 15:41:05 2008 +0000 - - HHH-3430 : package cglib repackaging into distribution - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15051 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 722a9fb5533f30f41598173b9a51ae842599475c -Author: Diego Plentz -Date: Tue Aug 12 17:50:46 2008 +0000 - - [HHH-2926] Pre*Event must inherit AbstractEvent - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15043 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit d5e908eaeb0a045d4ff2277a1e3d64c9c5f5009d -Author: Diego Plentz -Date: Tue Aug 12 17:21:04 2008 +0000 - - [HHH-3247] Provide more information in TypeMismatchException message - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15042 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit d6ea776b8535e6bbac841b64a0e45388122c19c7 -Author: Diego Plentz -Date: Tue Aug 12 17:06:53 2008 +0000 - - [HHH-2976] Documentation of Native SQLQuery contains errors - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15041 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit ab7bc991ff95ca89141b006dd7654ddefc202c13 -Author: Diego Plentz -Date: Tue Aug 12 16:36:23 2008 +0000 - - [HHH-3190] Typo in chapter 7.6 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15040 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 203cd60e2ab6fdc11fab1051b1cb521dfd7e8edb -Author: Diego Plentz -Date: Tue Aug 12 15:56:15 2008 +0000 - - [HHH-3397] Wrong "jsdk.jar" referenced in the tutorial - - Yes, again. - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15039 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit bf2718ec03f1c1ad7ba5a965bd2216da5b35fe80 -Author: Diego Plentz -Date: Tue Aug 12 15:42:10 2008 +0000 - - [HHH-3080] Oject typo - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15038 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 931eeaa96d66c3728ca9b302339da7cfd8e3e844 -Author: Steve Ebersole -Date: Thu Jul 31 20:04:29 2008 +0000 - - [maven-release-plugin] prepare for next development iteration - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15005 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit fdb0bea94a0f076f542257828e2ea823373c85c3 -Author: Steve Ebersole -Date: Thu Jul 31 19:53:55 2008 +0000 - - [maven-release-plugin] prepare release hibernate-3.3.0.CR2 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15003 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 011504c45d1fc8a918be5cdc6602fead6534835b -Author: Steve Ebersole -Date: Thu Jul 31 16:51:47 2008 +0000 - - pt-BR translation giving issues - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15002 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 1f59eeb834ffa83a5e9b0deb2a228de650195deb -Author: Steve Ebersole -Date: Thu Jul 31 15:44:54 2008 +0000 - - prepare 3.3.0.CR2 release - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15001 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 197d3afd3535dd8c5875d7047114b533f91325ab -Author: Steve Ebersole -Date: Thu Jul 31 15:10:19 2008 +0000 - - HHH-2604 : Isolator.JdbcDelegate connection releasing - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14998 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit ec7288458ee76224b7b05f5b61bd1d0993dc85a4 -Author: Steve Ebersole -Date: Thu Jul 31 14:57:47 2008 +0000 - - HHH-3409 : ResultTransformer uniqueing - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14996 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 1851bffce7bf738f09618e7e2c6d9e8d687b8cca -Author: Steve Ebersole -Date: Wed Jul 30 20:55:24 2008 +0000 - - HHH-3409 : ResultTransformer uniqueing - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14995 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 280f722a3269dd8671f0e6b0e8a6ad3858181fbe -Author: Steve Ebersole -Date: Wed Jul 30 17:21:58 2008 +0000 - - doc changes - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14994 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 0d464c2be26dda9d44613dea80f3f32e2e9ef011 -Author: Steve Ebersole -Date: Wed Jul 30 16:46:34 2008 +0000 - - license headers - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14993 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 5c0027d2cbd49b718e2e5f1b4f263ba7db2a6f82 -Author: Steve Ebersole -Date: Tue Jul 29 17:46:35 2008 +0000 - - upgrade jdocbook plugin to version 2.1.2 for jdocbook.lang/jdocbook.format fix - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14988 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 9d3d0d691a0c55700c759d268bdcb3e7c028cc15 -Author: Brian Stansberry -Date: Mon Jul 21 20:08:07 2008 +0000 - - Add a test of Session.refresh(...) functionality. - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14962 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 77f9830c77948e96e57ca26ff42c4a470bfca2ab -Author: Brian Stansberry -Date: Fri Jul 18 22:13:15 2008 +0000 - - [HHH-3390] Use READ_COMMITTED for JBC 2 cache - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14961 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit ad8db397b8cb48926191d8406651e224a8771d71 -Author: Brian Stansberry -Date: Fri Jul 18 20:42:30 2008 +0000 - - [HHH-3390] Fix channel names for new configs - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14960 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 53cf8e8925da6536d4b4649eaa5f1e65db1f8635 -Author: Brian Stansberry -Date: Fri Jul 18 19:39:34 2008 +0000 - - [HHH-3390] Document READ_COMMITTED vs REPEATABLE_READ - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14959 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 27dfaa3fef7ccef725f595b59f26f22bef47d9f4 -Author: Brian Stansberry -Date: Fri Jul 18 19:29:29 2008 +0000 - - Minor grammar - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14958 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 9b76275df56be1c1ec8c23c477a963a244906be4 -Author: Brian Stansberry -Date: Fri Jul 18 17:10:47 2008 +0000 - - [HHH-3390] Use READ_COMMITTED for JBC 2 cache - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14957 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 869e7e797506aac29bf6bb0b8cac522955777682 -Author: Galder Zamarreno -Date: Thu Jul 17 16:57:12 2008 +0000 - - Added sourceDirectory as masterTranslation does not seem to be appended to default source directory any more, which results on failure - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14953 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit edda442f61b80c52af53c11bcac3169994295b53 -Author: Diego Plentz -Date: Wed Jul 16 18:08:17 2008 +0000 - - spaces... - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14939 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 3052c2a74213911ed562074e634415737969af1c -Author: Diego Plentz -Date: Wed Jul 16 18:04:53 2008 +0000 - - [HHH-1697] OracleDialect fails to recognize sequence accessible through syonyms when validating schema - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14938 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 6d1d3809a894441d7e6abcb5c6a9ffe523304c7d -Author: Brian Stansberry -Date: Thu Jul 10 19:36:02 2008 +0000 - - Javadoc - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14918 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit a7c7ba3fc70085375943f9a5d6194d9a5a158cf9 -Author: Steve Ebersole -Date: Wed Jul 9 03:38:55 2008 +0000 - - HHH-3309 : AbstractLazyInitializer + serialization - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14901 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 7eb91afb14aed8528472c7382c3511eb51995532 -Author: Steve Ebersole -Date: Tue Jul 8 15:42:44 2008 +0000 - - code cleanup - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14896 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 89ed8071d41e16bd8312c36fd47483d22e737270 -Author: Steve Ebersole -Date: Tue Jul 8 15:38:44 2008 +0000 - - HHH-3358 : non-JNDI distributed transaction support - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14895 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 6db1fbcec56f04f48bac910bdd4f1430b04b46bb -Author: Chris Bredesen -Date: Mon Jul 7 20:58:15 2008 +0000 - - HHH-3378 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14886 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit ddfed3e9995bbfae5cfd4c56fd9b3403b1a96e2c -Author: Steve Ebersole -Date: Tue Jul 1 21:39:28 2008 +0000 - - HHH-3294 : persistent collection dirtiness on merge - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14839 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit f926cf3c34f024c22db0ccf596b7c110ae1e8d6a -Author: Hardy Ferentschik -Date: Tue Jul 1 15:06:41 2008 +0000 - - Updated the Logging paragraph regrading the switch to slf4j. - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14837 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 4bf13b7e9bb1b1997dcec817f2ea864b16208021 -Author: Steve Ebersole -Date: Thu Jun 19 16:23:58 2008 +0000 - - HHH-3006 : occansional infinite loop on JTA tx-timeout - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14788 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit e3b572f2ee2feabde487859fe05c0a639bbc86b7 -Author: Bawany Satgunanathan -Date: Thu Jun 12 00:16:50 2008 +0000 - - Preparing release notes for Hibernate 3.3.0.CR2 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14763 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit b3ae358a6bc99b7f6c57f862cd78b1b7b07de313 -Author: Brian Stansberry -Date: Mon Jun 9 22:36:38 2008 +0000 - - [HHH-3340] Don't fail if cache TM != discovered TM - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14757 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit eca1c43de63c769c374ae6e362bb34cdcd2eeb38 -Author: Brian Stansberry -Date: Mon Jun 9 22:27:40 2008 +0000 - - [HHH-3340] Don't fail if cache TM != discovered TM - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14756 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit ae0779becdac7a543fcc614d9b849d6a5697ad04 -Author: Bawany Satgunanathan -Date: Wed Jun 4 04:51:36 2008 +0000 - - adding more content for Release notes of 3.3.0.CR2 version - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14734 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 61d86e91c848425160e86b481aff320117e7e3be -Author: Bawany Satgunanathan -Date: Tue Jun 3 23:51:40 2008 +0000 - - adding content for 3.3.0.CR2 release notes - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14733 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit eb2e83348b06b3636b9fde0aac306e24e935c01c -Author: Steve Ebersole -Date: Tue May 27 14:48:51 2008 +0000 - - HHH-1786 : current session cleanup synch hack for WebSphere. - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14691 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 304673d721b12450bfc0e387a3313d7f9b6dfefe -Author: Steve Ebersole -Date: Thu May 22 15:43:24 2008 +0000 - - HHH-2060 : composite-id + generator - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14686 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit acb13ab513ab064edcd210d0d8a3a8fe58bf0991 -Author: Brian Stansberry -Date: Wed May 21 20:35:44 2008 +0000 - - [HHH-2506 ] make javassist the default bytecode provider - [HHH-2875] cglib+asm repackage - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14684 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 6101b4e26e61263327070bdbf7852122d4f3c4e3 -Author: Brian Stansberry -Date: Wed May 21 20:34:54 2008 +0000 - - Don't redundantly call ensureRegionRootExists() - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14683 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 544e93a3054cc47978bfc9a52bc621e2f045f801 -Author: Steve Ebersole -Date: Wed May 21 20:13:20 2008 +0000 - - HHH-2875 : cglib+asm repackage; - HHH-2506 : make javassist the default bytecode provider - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14682 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit d7b7cabf799a64a854510a6a1681a766bc861e46 -Author: Steve Ebersole -Date: Wed May 21 19:53:21 2008 +0000 - - made recomended changes wrt defining plugin versions in pluginManagement - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14681 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit fbc1988fbde65548303ae41df3051a48479b30e7 -Author: Steve Ebersole -Date: Wed May 14 14:48:07 2008 +0000 - - HHH-3283 : protection on vm-based timestamps where dialect does not support params in INSERT ... SELECT - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14662 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 1182ce000eaa54914efac6e7dd0920abd1769581 -Author: Steve Ebersole -Date: Wed May 14 14:08:23 2008 +0000 - - HHH-3282 : DB2Dialect#supportsLobValueChangePropogation == false - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14661 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 84409e9a66b1842c97ecef9b3d5c394c0f9864b4 -Author: Diego Plentz -Date: Sat May 10 22:58:25 2008 +0000 - - [HHH-3272] using of Integer.valueOf(int), which is not available in JDK 1.4 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14657 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 99e7f895f946b4301842fbc4303873d59542a852 -Author: Gail Badner -Date: Fri May 9 23:23:29 2008 +0000 - - HHH-3229 : Cascade merge transient entities regardless of property traversal order - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14656 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 3eaf44c74cb2367d85cd059029e5e56d5169cfb4 -Author: Steve Ebersole -Date: Wed May 7 21:02:35 2008 +0000 - - HHH-3270 : documentation license - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14653 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 2c858bd96410ad6de44752b97588e773fa0601a4 -Author: Steve Ebersole -Date: Wed May 7 20:59:35 2008 +0000 - - HHH-3270 : documentation license - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14652 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 3e1cc5d5ca568cb721013c1efa5df3869104d295 -Author: Steve Ebersole -Date: Wed May 7 19:53:30 2008 +0000 - - HHH-3269 : jDocBook 2.1.1 upgrade - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14651 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit f7925c6c7731b28b07078aaf15b744a8325f97a3 -Author: Steve Ebersole -Date: Wed May 7 18:27:05 2008 +0000 - - HHH-3257 : useRelativeImageUris - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14650 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 4bb621ec8057f4fb7e8b0784f5638f6c3ae13fab -Author: Steve Ebersole -Date: Wed May 7 18:26:17 2008 +0000 - - HHH-3266, HHH-3267, HHH-3268 : missing deps in dist bundle - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14649 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 46af959c3f7fee0fa77e00d87892baa634971969 -Author: Steve Ebersole -Date: Wed May 7 18:11:38 2008 +0000 - - HHH-3261 : fixed wrapping of exception from initialize/destory listeners - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14648 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 9ab915865646fbebffa6533adf22ef333c42154f -Author: Steve Ebersole -Date: Tue May 6 17:25:29 2008 +0000 - - HHH-3265 : lgpl license version 2.1 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14644 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 17f52456c650e79dbb42e39ab7073fcb5d3c4425 -Author: Brian Stansberry -Date: Tue May 6 15:47:22 2008 +0000 - - [HHH-3141] Move to JBoss Cache 2.1.1.GA - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14643 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit fba6c3e6b5cf17e38592ffeffe4c0967a8b0bcf5 -Author: Diego Plentz -Date: Sat May 3 20:11:12 2008 +0000 - - [HHH-2683] "datediff" is declared as NoArgSQLFunction in H2Dialect, but actually accepts 3 arguments - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14641 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 6bc9024e7cc71b24263e21e9fa0e11551a9b52be -Author: Gail Badner -Date: Thu May 1 22:53:44 2008 +0000 - - HHH-2021 : reformat fix for fragile QueryKey.equals() - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14630 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit df9816c57026222d1273d3c4b7bfea3aa4996e23 -Author: Emmanuel Bernard -Date: Thu May 1 20:34:18 2008 +0000 - - HHH-3260 Wrapping listener exceptions into an AssertionFailure is not good. Replacing with HibernateException - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14619 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 957704b242c9ea9a04b2743eb9d1c05aeb86f9f4 -Author: Emmanuel Bernard -Date: Thu May 1 20:24:01 2008 +0000 - - Propagate the nested exception when an EventListener init fails - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14618 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit ae40e5a70f62456ed89b263f9c5cb4542487fc78 -Author: Manik Surtani -Date: Thu May 1 16:18:03 2008 +0000 - - Implement equals to deal with parameters of type other than QueryKey - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14617 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit e41b2aca915252bb1f7cd574263a9aea80e3e07e -Author: Brian Stansberry -Date: Thu May 1 12:55:52 2008 +0000 - - Remove unused class that uses JBC internals - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14616 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit d663228559881a5684186222b60f5e372235eb55 -Author: Gail Badner -Date: Tue Apr 29 23:02:13 2008 +0000 - - added tests for merging initialized and uninitialized managed collections - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14610 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit d7c693a24d6e27f793040b9358d83ff9a5eb315a -Author: Steve Ebersole -Date: Tue Apr 29 02:06:27 2008 +0000 - - svn ignores - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14609 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 67f57daf7583b7f5edff91d975c9dd3702ba1330 -Author: Steve Ebersole -Date: Tue Apr 29 01:53:28 2008 +0000 - - updated copyright headers - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14608 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit eb422793d7cdc325a624a698f637704592c87eb3 -Author: Steve Ebersole -Date: Tue Apr 29 01:35:59 2008 +0000 - - added images resource - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14607 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 830af3b69c09fe0941256cb59644c0d199732f5c -Author: Bawany Satgunanathan -Date: Tue Apr 29 01:35:28 2008 +0000 - - adding files in common_content folder - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14606 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit d57eb645026052f759140c1709dfb589c740f11d -Author: Bawany Satgunanathan -Date: Tue Apr 29 01:34:50 2008 +0000 - - adding files in images folder - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14605 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 9804f715b8118a31fc78fe239ee6de503ded71af -Author: Bawany Satgunanathan -Date: Tue Apr 29 01:34:17 2008 +0000 - - adding css folder - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14604 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 860de06d4f5fb5348bb93de216fa084b530b1879 -Author: Bawany Satgunanathan -Date: Tue Apr 29 01:31:44 2008 +0000 - - adding images to common_content - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14603 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 00baf0f6bd0dd7df1ec872a62f2709faeea52647 -Author: Bawany Satgunanathan -Date: Tue Apr 29 01:02:43 2008 +0000 - - adding comment-content folder - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14602 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 6c6394cf6f6a1ec23f4a5ef2cbc1b63c299ff4bc -Author: Bawany Satgunanathan -Date: Tue Apr 29 01:00:57 2008 +0000 - - adding comment-content and images folder - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14601 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 2d794f1d203661eae48b9f8ec43db1b44b3ded97 -Author: Bawany Satgunanathan -Date: Tue Apr 29 00:59:36 2008 +0000 - - playing with release notes xml files - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14600 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit b47d4bb2756d568ff57ca88db40dd078ae37d6f6 -Author: Steve Ebersole -Date: Mon Apr 28 22:52:08 2008 +0000 - - cleanup - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14599 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit d6b3c9b6c1095cb28d7e370057341fb6f02b0b11 -Author: Steve Ebersole -Date: Mon Apr 28 22:51:08 2008 +0000 - - fixed corrupt translation - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14598 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 8984c4101a9f5265390acdb9e8cf845585057206 -Author: Bawany Satgunanathan -Date: Mon Apr 28 22:20:49 2008 +0000 - - adding a release notes xml files - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14597 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 81bd99f49b988dfd4db0de51ff90328a9fcf2f10 -Author: Bawany Satgunanathan -Date: Mon Apr 28 22:20:04 2008 +0000 - - adding a release notes xml files - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14596 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit f74e010d02c55e8bce8549248b538a3a7a47eba4 -Author: Bawany Satgunanathan -Date: Mon Apr 28 22:06:16 2008 +0000 - - adding release notes xml files - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14595 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit bd22a99f6347a1963c629f28c195c0bf4e3ce23c -Author: Steve Ebersole -Date: Mon Apr 28 21:29:31 2008 +0000 - - added releasenotes module structure; - updated jbosscache2 manual pom to not use SNAPSHOTS - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14594 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 8c44223ce6b3c15d353258dc59677812bc39ac96 -Author: Steve Ebersole -Date: Mon Apr 28 15:58:28 2008 +0000 - - [maven-release-plugin] prepare for next development iteration - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14593 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 10fe30085a3cae3ddaba59313f07dd7f114d93f3 -Author: Steve Ebersole -Date: Mon Apr 28 15:57:47 2008 +0000 - - [maven-release-plugin] prepare release hibernate-3.3.0.CR1 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14591 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 912ab3ca6567f87ddebd0f11380eb6237f4e22ae -Author: Steve Ebersole -Date: Mon Apr 28 15:39:28 2008 +0000 - - move documentation back into a profile, along with distribution - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14590 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit d3deabd3c35e963766ccaef9e5f47beb2f131f92 -Author: Steve Ebersole -Date: Mon Apr 28 14:53:38 2008 +0000 - - [maven-release-plugin] rollback the release of hibernate-3.3.0.CR1 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14588 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 03ddf51ebf0a1bddadec7635711b0195b1c16758 -Author: Diego Plentz -Date: Mon Apr 28 06:10:48 2008 +0000 - - [HHH-3060] Duplicate "FROM" in HQL documentation - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14587 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit c966a688a1cd209918b037925b6b81ce3a0d1d45 -Author: Diego Plentz -Date: Mon Apr 28 06:02:18 2008 +0000 - - [HHH-3071] Hibernate documentation error : session.enabledFilter - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14586 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit dc61408401d9cb32b1cfca5f2f184383cef04a8b -Author: Diego Plentz -Date: Mon Apr 28 05:19:53 2008 +0000 - - [HHH-2930] typos in documentation: datatabase, is send, etc - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14585 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 7b727315c54758d0794b7281243d3233e471168b -Author: Diego Plentz -Date: Mon Apr 28 04:56:51 2008 +0000 - - [HHH-1787] Postgres dialect needs date_trunc - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14584 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit a801ae044839192feaffb06454b63154be395099 -Author: Diego Plentz -Date: Sun Apr 27 19:45:27 2008 +0000 - - [HHH-3254] Postgresql support for PooledSequences - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14583 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit ec3fb6d9576d3948585551aec65377672da5ed79 -Author: Diego Plentz -Date: Sat Apr 26 19:06:18 2008 +0000 - - [HHH-1745] Returning resultset from PostgreSQL stored procedure - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14582 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 9b0d13edd03700e812a2e16145ba2c5192d43a66 -Author: Steve Ebersole -Date: Fri Apr 25 22:00:22 2008 +0000 - - [maven-release-plugin] prepare for next development iteration - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14581 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit bbeb7761352e8f3650517e586199842eb9332ab1 -Author: Steve Ebersole -Date: Fri Apr 25 22:00:09 2008 +0000 - - [maven-release-plugin] prepare release hibernate-3.3.0.CR1 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14579 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 87f1fb0b84c6193982bdde4fc8f3e9734eb38422 -Author: Steve Ebersole -Date: Fri Apr 25 20:15:19 2008 +0000 - - [maven-release-plugin] rollback the release of hibernate-3.3.0.CR1 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14577 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 5258d33e1191ac21ac5b7cb37f2d56ee04cfa22f -Author: Steve Ebersole -Date: Fri Apr 25 11:27:01 2008 +0000 - - [maven-release-plugin] prepare for next development iteration - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14575 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 7f799de992bf8d6afe2927418a164aec42bb3514 -Author: Steve Ebersole -Date: Fri Apr 25 11:26:45 2008 +0000 - - [maven-release-plugin] prepare release hibernate-3.3.0.CR1 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14573 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit c7baa775e9a7e13acd9bdac52d5684fa01bda5d1 -Author: Steve Ebersole -Date: Fri Apr 25 11:19:49 2008 +0000 - - cleanup - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14572 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 9021f0102781e803aa45d329797a490423c008b9 -Author: Steve Ebersole -Date: Fri Apr 25 03:15:18 2008 +0000 - - [maven-release-plugin] rollback the release of hibernate-3.3.0.CR1 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14571 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit cd94788b8430d711d03f20d1b6ea6b6f6653ad46 -Author: Steve Ebersole -Date: Fri Apr 25 02:55:54 2008 +0000 - - [maven-release-plugin] prepare for next development iteration - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14569 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit ed5d59a2063443f1db3d1c2141e57b0603a4dde6 -Author: Steve Ebersole -Date: Fri Apr 25 02:55:38 2008 +0000 - - [maven-release-plugin] prepare release hibernate-3.3.0.CR1 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14567 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 0a195e2638a24c1ba5bc91f70a7f0057e0254d2f -Author: Steve Ebersole -Date: Fri Apr 25 02:47:39 2008 +0000 - - to get a release done, need to make documentation module active - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14566 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 6660597edbdb2cc4754fed06a54697497d104c3b -Author: Steve Ebersole -Date: Thu Apr 24 22:00:43 2008 +0000 - - disable all languages except en-US and fr-FR - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14565 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 94a5cdf3d067abddbab189f0a4e7688f666b7c1e -Author: Steve Ebersole -Date: Thu Apr 24 21:52:22 2008 +0000 - - pin jdocbook plugin at version 2.1.0; - temporarily disable jbosscache manual building (seems the jdocbook plugin may not like empty translations) - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14564 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit a28e463d4c08c63f5f774723e44a20fa6b05ca3d -Author: Steve Ebersole -Date: Thu Apr 24 20:37:31 2008 +0000 - - apparently it is the 201st, sigh - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14563 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 80cca7ce8e08f11d5477a9d816a46577e524d847 -Author: Steve Ebersole -Date: Thu Apr 24 20:25:43 2008 +0000 - - [maven-release-plugin] rollback the release of hibernate-3.3.0.CR1 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14562 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit fa5bd57930e4f763e7f773fcb36499d8f2604aa1 -Author: Steve Ebersole -Date: Thu Apr 24 20:25:16 2008 +0000 - - 200th time is the charm - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14561 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 0dcb3fcc998eba8d5f79ff35f2dc52fbdf688df2 -Author: Steve Ebersole -Date: Thu Apr 24 20:12:59 2008 +0000 - - sigh - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14559 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 8b09bcee1ed16412a998d0f94dc71da3460d968f -Author: Steve Ebersole -Date: Thu Apr 24 20:07:24 2008 +0000 - - [maven-release-plugin] rollback the release of hibernate-3.3.0.CR1 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14558 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit f1d5cc8a09bfd3298c5d59f230488a595bdf0854 -Author: Steve Ebersole -Date: Thu Apr 24 20:01:04 2008 +0000 - - [maven-release-plugin] prepare for next development iteration - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14557 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 1e8dc0fe08b0dff095a83e56f5f34759761ba393 -Author: Steve Ebersole -Date: Thu Apr 24 20:00:44 2008 +0000 - - [maven-release-plugin] prepare release hibernate-3.3.0.CR1 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14555 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit ae187b6e90c5f7419f43f31f8256306259c24a08 -Author: Steve Ebersole -Date: Thu Apr 24 19:54:42 2008 +0000 - - aye aye aye - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14554 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 9609f2bfab5e098a4f4692b2a24bc39ffafedd44 -Author: Steve Ebersole -Date: Thu Apr 24 19:16:30 2008 +0000 - - try this - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14553 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit c7caa01449bd37cbea17350105318e479f63e14b -Author: Steve Ebersole -Date: Thu Apr 24 19:15:26 2008 +0000 - - clarified module name - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14552 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 097d13bdde5e2bbe66d3beb3ddfef4d3d3a553f4 -Author: Steve Ebersole -Date: Thu Apr 24 19:12:44 2008 +0000 - - added svn:ingore definition to new modules/directories - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14551 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 02687499c8a881678170d4ea50d149e54d165f1a -Author: Steve Ebersole -Date: Thu Apr 24 19:05:23 2008 +0000 - - removed translations section - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14550 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 8c10ac7e28947a1d2767528af2de180647db4bf1 -Author: Steve Ebersole -Date: Thu Apr 24 19:03:56 2008 +0000 - - minor fixes + accounted for documentation - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14549 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 67bde11b48fd0bbaaf700fad1375b089bc31b48a -Author: Steve Ebersole -Date: Thu Apr 24 18:22:58 2008 +0000 - - minor fix - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14548 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 3cb9b25aaefa1958daa0f30b0b61031e4567e73b -Author: Steve Ebersole -Date: Thu Apr 24 18:05:57 2008 +0000 - - temporarily comment out translations with PO issues - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14547 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 20fbb9625cee03c557c3440710bf64c41b09a809 -Author: Steve Ebersole -Date: Thu Apr 24 17:11:28 2008 +0000 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14546 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit da89e7bee6ac3cadfef2cc2a676bcb6a0a59a9ef -Author: Steve Ebersole -Date: Thu Apr 24 17:10:56 2008 +0000 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14545 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 520c01e59a0a39b522f65aa38cc200f4fa3e3696 -Author: Steve Ebersole -Date: Tue Apr 22 00:55:03 2008 +0000 - - initial layout mods for distribution module based on hibernate.clone work - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14521 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit e4a4a4a2736d69f42acf5faab59445342a023794 -Author: Steve Ebersole -Date: Tue Apr 22 00:30:37 2008 +0000 - - moved the web tutorial to the new tutorials module - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14520 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 6f51b7813e6ea00b129a2c44925f15093f348f91 -Author: Steve Ebersole -Date: Tue Apr 22 00:20:04 2008 +0000 - - move assembly/site stuff into dedicated 'distribution' module - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14519 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit dfe5a19df4ae54d6ff9360e39f573715dfc6e773 -Author: Steve Ebersole -Date: Tue Apr 22 00:18:48 2008 +0000 - - pull parent pom inline - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14518 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit b5077f92daea90f7b5464ea1975532756b954bea -Author: Steve Ebersole -Date: Tue Apr 22 00:17:42 2008 +0000 - - moving eg to tutorials - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14517 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 481380062f860aceda3158528540568aea4e9673 -Author: Steve Ebersole -Date: Tue Apr 22 00:15:39 2008 +0000 - - layout change to account for working assembly building - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14516 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit f8ef7644c5c467e6248314038e44b9087eda5a91 -Author: Steve Ebersole -Date: Sat Apr 12 04:20:43 2008 +0000 - - [maven-release-plugin] rollback the release of hibernate-3.3.0 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14510 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit bc5772ca06786efb75b9eec3fbecedd2d036894b -Author: Steve Ebersole -Date: Sat Apr 12 04:18:21 2008 +0000 - - that was not good - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14509 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit b3321f76b4d83058552fba84c67042d25f8b97e5 -Author: Steve Ebersole -Date: Sat Apr 12 04:11:21 2008 +0000 - - release driving assembly ??? - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14508 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 97f8575237a55ab5e32f94763ae4a0c476464f7b -Author: Steve Ebersole -Date: Sat Apr 12 04:05:12 2008 +0000 - - update to version 3 of parents - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14507 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 2ce2c04bcec574ca1e31ba16fba30ca33a2a56ae -Author: Brian Stansberry -Date: Fri Apr 11 21:31:27 2008 +0000 - - [HHH-3141] Move to JBC 2.1.1.CR2 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14506 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit f1f11e93a41c6461d3064dfbfaa442014c1bd8b8 -Author: Brian Stansberry -Date: Tue Apr 8 02:35:25 2008 +0000 - - [HHH-3141] Move to JBC 2.1.1.CR1. - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14499 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 8fadc62c644867695e2cd7646ecf4cc84ee105bc -Author: Brian Stansberry -Date: Tue Apr 8 02:33:26 2008 +0000 - - Fix broken functional tests - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14498 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 77cdbee8c3d09cd235855d60ea0c1b3188ee38ac -Author: Brian Stansberry -Date: Thu Apr 3 19:47:49 2008 +0000 - - Show thread names in test logs - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14496 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 87e700939b757a69c7261b0b9f5adbca0a2861fd -Author: Brian Stansberry -Date: Thu Apr 3 19:39:08 2008 +0000 - - [HHH-3141] Move toward JBC 2.1.1 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14495 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 2052b06d535cfaa1a35b6020ccb37fdf85f192cd -Author: Brian Stansberry -Date: Thu Apr 3 19:38:24 2008 +0000 - - Fix classloader isolation tests - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14494 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit b3428358b7a332e55a3394e45d89b91150ccfab0 -Author: Gail Badner -Date: Thu Apr 3 03:49:05 2008 +0000 - - HHH-2801 : changes so tests work on all tested dialects - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14493 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit cb2d5fee72f12d13d6349a943e7b655fd286a865 -Author: Steve Ebersole -Date: Tue Apr 1 15:57:12 2008 +0000 - - [maven-release-plugin] prepare for next development iteration - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14490 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 513c3b57b59686085d0f6d48ab8ec75007d04a6e -Author: Steve Ebersole -Date: Tue Apr 1 15:57:00 2008 +0000 - - [maven-release-plugin] prepare release hibernate-3.3.0.CR1 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14488 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 6711c8f29d122e2e29c4bd418d41267e8f95d762 -Author: Steve Ebersole -Date: Tue Mar 18 14:24:07 2008 +0000 - - [maven-release-plugin] prepare for next development iteration - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14468 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit e889bd0de1c1b1e496baf4c5e00eb3d673945885 -Author: Steve Ebersole -Date: Tue Mar 18 14:23:51 2008 +0000 - - [maven-release-plugin] prepare release hibernate-3.3.0.CR1 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14466 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit c7129349a7360585ad76417e69429a0cb6e428d0 -Author: Steve Ebersole -Date: Tue Mar 18 12:52:19 2008 +0000 - - [maven-release-plugin] rollback the release of hibernate-3.3.0.CR1 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14463 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 50acf6d849ef1275ba986aee87c76f64645e42b2 -Author: Steve Ebersole -Date: Tue Mar 18 07:48:41 2008 +0000 - - [maven-release-plugin] prepare for next development iteration - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14462 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit d69b60de3b5977f795750fcd45cc54bb41a1e909 -Author: Steve Ebersole -Date: Tue Mar 18 07:48:15 2008 +0000 - - [maven-release-plugin] prepare release hibernate-3.3.0.CR1 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14460 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 1df5918f936294d844e67b45db4e06e5ac456c86 -Author: Steve Ebersole -Date: Tue Mar 18 07:40:44 2008 +0000 - - prep 3.3.0.CR1 release - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14459 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 36de6500edfa092d4433430ca3be9529c51a9313 -Author: Steve Ebersole -Date: Tue Mar 18 07:36:01 2008 +0000 - - prep 3.3.0.CR1 release - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14458 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit eca74d2651d3614c72ad674cbc96cc121fce91dd -Author: Steve Ebersole -Date: Tue Mar 18 07:31:53 2008 +0000 - - prep 3.3.0.CR1 release - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14457 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit bd2e1a6a4b8ac8ae75c4fead17fa6d485af52703 -Author: Steve Ebersole -Date: Tue Mar 18 07:26:18 2008 +0000 - - prep 3.3.0.CR1 release - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14456 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit f348dbd6827276395a99d95ba1088531172d9300 -Author: Steve Ebersole -Date: Tue Mar 18 07:25:39 2008 +0000 - - prep 3.3.0.CR1 release - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14455 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 12feff7bbd995e7186542efb0fd8174b4ad299ed -Author: Steve Ebersole -Date: Tue Mar 18 07:24:14 2008 +0000 - - prep 3.3.0.CR1 release - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14454 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit ba2505d0411679fc35bb481f26229ff6a1ed8685 -Author: Steve Ebersole -Date: Tue Mar 18 07:23:06 2008 +0000 - - HHH-2268 : handle bridged return types for getters (ROLLBACK) - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14453 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit adf3311e5809df9d0cf22765ce20716c14b37804 -Author: Steve Ebersole -Date: Tue Mar 18 07:12:54 2008 +0000 - - HHH-2884 : SessionFactory close notifications - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14452 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit e4958dcc316cfbd663e2afe1978546b99a9a5875 -Author: Steve Ebersole -Date: Tue Mar 18 07:02:20 2008 +0000 - - HHH-1786 : more WebSphere JTA garbage; - copyright headers - clean-up - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14451 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 9a024e2cdff221f9f687b0b96813172ec9e05d70 -Author: Steve Ebersole -Date: Tue Mar 18 05:54:15 2008 +0000 - - copyright headers - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14450 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit f2ccf54a4916539adc3af3a01a57de4f3ae56cdb -Author: Steve Ebersole -Date: Tue Mar 18 05:48:53 2008 +0000 - - HHH-1786 : more WebSphere JTA garbage; - copyright headers - clean-up - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14449 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit e01a7bfe54785bb3dc97055e89936cfb2e7558e1 -Author: Steve Ebersole -Date: Mon Mar 17 22:17:35 2008 +0000 - - HHH-2268 : handle bridged return types for getters - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14448 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 0e6db9d066daa9e2e083b5f32c1c099434944d99 -Author: Steve Ebersole -Date: Mon Mar 17 20:19:04 2008 +0000 - - HHH-3140 : region prefix for entity and collection caches - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14443 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 41b893ce0b38a48bb97227d7177956db5dca951c -Author: Steve Ebersole -Date: Fri Mar 14 11:29:04 2008 +0000 - - [maven-release-plugin] rollback the release of hibernate-3.3.0.Alpha1 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14423 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit e984c28916cad044950e2487406d032fdf552fa7 -Author: Steve Ebersole -Date: Tue Mar 11 01:59:25 2008 +0000 - - [maven-release-plugin] prepare for next development iteration - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14421 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 663cdde623ed66d9fb9355ad3cbc19cab102bc9e -Author: Steve Ebersole -Date: Tue Mar 11 01:59:09 2008 +0000 - - [maven-release-plugin] prepare release hibernate-3.3.0.Alpha1 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14419 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 3075e4f15cf78db7d6cafe1c1249d1ba154e4c63 -Author: Steve Ebersole -Date: Mon Mar 10 03:26:11 2008 +0000 - - update antlr-maven-plugin to release version 2.1 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14416 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 4afedc320e6027957bb3520bc1461236c66afdd0 -Author: Steve Ebersole -Date: Mon Mar 10 03:17:31 2008 +0000 - - temporarily disable the documentation module from the release profile - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14415 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 79919d20a4b47d88c433f166d474f06d914e3417 -Author: Chris Bredesen -Date: Thu Mar 6 17:04:50 2008 +0000 - - HHH-3111 fixed TM.getStatus() to delegate to getTransaction().getStatus(), or return STATUS_NO_TRANSACTION - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14395 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit ada655263850025754725036285cbdfcaa1cc97d -Author: Brian Stansberry -Date: Thu Feb 28 19:42:08 2008 +0000 - - Add tests of isolated-classloader environments - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14381 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit ed518d42c035c53c0ce3cc254f680970e72e7a65 -Author: Brian Stansberry -Date: Thu Feb 28 19:41:20 2008 +0000 - - Remove genericized method signature - Make the region prefix easily overridable - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14380 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 610499e094a5913decc4637ada88580c2f0b8d88 -Author: Brian Stansberry -Date: Thu Feb 28 19:40:46 2008 +0000 - - Remove genericized method signature - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14379 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit e387e39e441a9dc8f3084c74ea9e75f122a5a8c6 -Author: Brian Stansberry -Date: Thu Feb 28 17:29:15 2008 +0000 - - Add debug log msg - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14378 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 8e3b6b99747b629021f306f17051e7def6df9ead -Author: Steve Ebersole -Date: Thu Feb 28 01:16:41 2008 +0000 - - HHH-3134 : define documentation module and sub-modules in profile - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14377 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit c07cb17dc71019cf20e0b9a01643daf03b9afaa7 -Author: Brian Stansberry -Date: Wed Feb 27 23:02:46 2008 +0000 - - Minor reorg - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14376 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit dfe3a0680dd285a3ce73002015437352caab5790 -Author: Brian Stansberry -Date: Wed Feb 27 21:27:02 2008 +0000 - - Add comment on reason for "FailureExpected" - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14375 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 3d0c9705b0c8920fa756ac5fb5cf05c29c85f2e7 -Author: Brian Stansberry -Date: Wed Feb 27 21:13:24 2008 +0000 - - If we see a JBC DefaultDataVersion, we are newer - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14374 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 0d6232c0b85b45024e146fb8402684d83fc20aa6 -Author: Brian Stansberry -Date: Wed Feb 27 18:36:51 2008 +0000 - - Use JBC 2.1.0.CR4 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14373 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 9b8bd0c9ff8a99a3dc7fcc2934d656553e34ec03 -Author: Brian Stansberry -Date: Wed Feb 27 18:36:29 2008 +0000 - - Factor out usage of createFailureExpectedTestSuite - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14372 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 7c0305487f542b61dd58cc585747adfa4d905aef -Author: Brian Stansberry -Date: Wed Feb 27 18:06:19 2008 +0000 - - Add utility to create a TestSuite where a subclass' "FailureExpected" version of a base test is included in the suite, while the base test is excluded - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14371 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 0b9123402d590e6516624bc8f72ea3b142dfebee -Author: Brian Stansberry -Date: Wed Feb 27 17:51:32 2008 +0000 - - Add tests of bulk deletes/updates - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14370 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 1ee489d79fd4451ea2b9c9e3a521516343750bdb -Author: Brian Stansberry -Date: Wed Feb 27 17:48:50 2008 +0000 - - Refactor configuration of TransactionFactory - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14369 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 834be2837a81ad9df93906cc8f3f3e0f5de92379 -Author: Brian Stansberry -Date: Wed Feb 27 17:47:36 2008 +0000 - - Redo handling of invalidated region root nodes - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14368 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit a1211b73d2a6daae40179f83df7f623b6aba8798 -Author: Brian Stansberry -Date: Wed Feb 27 15:31:40 2008 +0000 - - Remove deprecated JGroups attributes - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14367 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 7a65933d68352b2a855ebe4b31d292d2019c9c7b -Author: Brian Stansberry -Date: Tue Feb 26 21:54:02 2008 +0000 - - Document JTA requirement - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14366 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit e73589d1bce8e56631e94ac18de46be15d132c48 -Author: Brian Stansberry -Date: Mon Feb 25 23:20:08 2008 +0000 - - Isolate the transaction managers between the primary environment and the second node environment - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14364 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 5414f6bf999deba354118289a709343c2f7a5b8d -Author: Gail Badner -Date: Mon Feb 25 21:06:19 2008 +0000 - - HHH-2616 : added owner ID and name getters to collection events; added partial support for property-refs; added Javadoc - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14363 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 8f458e07e76e846851d68a36c003004efd21d15c -Author: Brian Stansberry -Date: Mon Feb 25 20:15:43 2008 +0000 - - Add initial "clustered integration" test - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14362 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit bae1559748866c228115ded5dcd750f891bef0dc -Author: Brian Stansberry -Date: Mon Feb 25 20:14:52 2008 +0000 - - Refactor how session factory Configuration is built up - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14361 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 65dada846c0d67e4c63f887197e3ef1c86f5ae78 -Author: Brian Stansberry -Date: Mon Feb 25 20:03:07 2008 +0000 - - Fix typo - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14360 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 1cdf1f47ea2aafee99ac52af294df0eed7a90190 -Author: Brian Stansberry -Date: Mon Feb 25 20:02:41 2008 +0000 - - Minor format change - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14359 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 58bebf387493615a8f659eb1de2da3eac2c60678 -Author: Brian Stansberry -Date: Mon Feb 25 20:01:17 2008 +0000 - - Correct collection mapping example - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14358 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 4a30d2b8367e9c517cea5bacffb758a54efd72d2 -Author: Steve Ebersole -Date: Mon Feb 25 18:03:45 2008 +0000 - - HHH-3131 : ActionQueue.hasAfterTransactionActions - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14356 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 9c55f3715c0dc9c4e62142cbe6e56fc7479265cc -Author: Brian Stansberry -Date: Sun Feb 24 16:26:08 2008 +0000 - - Reactivate functional tests - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14355 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 00d1e656c4284b6640b0c47f91a4c89901e1f1f1 -Author: Brian Stansberry -Date: Sat Feb 23 23:53:49 2008 +0000 - - Reduce use of "multiplexer" in names; use JGroups - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14354 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit fb7a74ae636ff7bdd32074e502bd23d9dd581c22 -Author: Brian Stansberry -Date: Sat Feb 23 23:53:05 2008 +0000 - - Use the correct JGroups stacks.xml - Reduce use of "multiplexer" in names; use JGroups - Small Javadoc changes - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14353 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 6796d3f7c3c739f0d80710a1d3d8fe8d59c141f5 -Author: Brian Stansberry -Date: Sat Feb 23 23:52:40 2008 +0000 - - Reduce use of "multiplexer" in names; use JGroups - Small Javadoc changes - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14352 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 15fc10a1e40c2592f73012d4b37cc10d598a0f69 -Author: Brian Stansberry -Date: Sat Feb 23 23:49:26 2008 +0000 - - Use udp in all configs so we by default share a Channel - Use NullEvictionPolicy for timestamps - Tweak the default eviction configs - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14351 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit e42ebe816f67dfa3c424e448bd76b372a3201345 -Author: Brian Stansberry -Date: Sat Feb 23 23:47:41 2008 +0000 - - Ensure that queries are segregated from entities/collections if they use the same region name - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14350 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 4779620061b81741803fbc29a07c4fdd12a56d6f -Author: Brian Stansberry -Date: Sat Feb 23 00:15:59 2008 +0000 - - Minor fixes - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14349 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit c5a858214f731e81269dd68b275b257800827173 -Author: Brian Stansberry -Date: Fri Feb 22 23:26:44 2008 +0000 - - [HHH-2555] Include JBoss Cache 2 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14348 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 17aa2c5e63a49befd8a4a09f5b75f4013a60a102 -Author: Brian Stansberry -Date: Fri Feb 22 23:24:53 2008 +0000 - - [HHH-3127] Create reference guide for the Hibernate/JBC2 integration - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14347 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit b5b36b63c99a667466c6d61599f6aad26cca4364 -Author: Gail Badner -Date: Wed Feb 20 17:58:09 2008 +0000 - - HHH-2801 : added tests for removing and adding equal element to many-to-many with association class - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14346 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit e8710caee834c481800a065e45a8085acc0efda1 -Author: Steve Ebersole -Date: Tue Feb 19 19:16:06 2008 +0000 - - update copyright - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14340 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit f3c0baedbd5a35c6ae91badd171110e2b3831d65 -Author: Steve Ebersole -Date: Tue Feb 19 19:15:44 2008 +0000 - - including suggestion from maven folks about release + assembly using profile - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14339 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit ecf008e13ea962c2657d4a8b52c2a731b7223d7d -Author: Steve Ebersole -Date: Mon Feb 18 19:48:51 2008 +0000 - - adding Hardy's assembly stuff - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14336 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit a9a8353b572b2308005cbc461029fe5b3059620c -Author: Steve Ebersole -Date: Thu Feb 7 02:21:24 2008 +0000 - - HHH-3084 : DialectFactory detection of Ingres metadata information - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14317 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 1e9deb3f04aa7b09afa29a53bfc6d0354408f8d8 -Author: Steve Ebersole -Date: Thu Feb 7 02:08:26 2008 +0000 - - HHH-1956 : Interceptor.afterTransactionCompletion() and JTA - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14314 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 7ee7140744262f43df449c8010ad7b4722a55a4f -Author: Steve Ebersole -Date: Sun Feb 3 05:56:39 2008 +0000 - - HHH-2957 : ActionQueue insertions sorting performance - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14307 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 5fe0a801a0681cc4944187956a67b7b6d8936952 -Author: Gail Badner -Date: Mon Jan 28 22:18:35 2008 +0000 - - HHH-2616 : collection recreate/remove/update events and listeners - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14297 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 2ab3f9e62c4aece7ed02785c9ba623ebd29eda5d -Author: Brian Stansberry -Date: Thu Jan 17 21:04:06 2008 +0000 - - Eliminate "FailureExpected" overrides of fixed tests - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14285 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 10daa60fd51f939d05c60b5a0453e87d63abe702 -Author: Brian Stansberry -Date: Thu Jan 17 21:03:28 2008 +0000 - - Move to JBoss Cache 2.1.0.CR3 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14284 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 2d7b7a38bc7b9187e67366fa7bdd8b0b3a794d47 -Author: Gail Badner -Date: Thu Jan 10 05:55:30 2008 +0000 - - HHH-2645 : Synchronization bottleneck in EntityModeToTuplizerMapping - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14271 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit c053aefa0d081ca627dc401222eeb9615c1805df -Author: Brian Stansberry -Date: Mon Dec 24 16:01:02 2007 +0000 - - Fix the evictRemoveAll tests for the optimistic case - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14265 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 5d96ac4505cefde70808b522d31ca55bf04d7cdf -Author: Brian Stansberry -Date: Mon Dec 24 15:19:46 2007 +0000 - - Add minTimeToLiveSeconds configs - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14264 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 9352a7a7d7f2f59508e31a9ad31af13340624215 -Author: Brian Stansberry -Date: Sun Dec 23 14:59:07 2007 +0000 - - Update handling of deletion of the region root node - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14263 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 8277156f0085ed2415ef86790939a195909302f7 -Author: Brian Stansberry -Date: Sun Dec 23 14:55:36 2007 +0000 - - Convert from JBossCacheFactory prototype to the real JBC CacheManager - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14262 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 772b12b454ed4f20bdddbfc03e7c373e23e07dd0 -Author: Brian Stansberry -Date: Sun Dec 23 14:53:06 2007 +0000 - - Update evict/removeAll tests to reflect JBCACHE-1251 problem - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14261 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit aded18a87054287739b2e5129bb66bffde99a9b6 -Author: Brian Stansberry -Date: Sun Dec 23 14:52:02 2007 +0000 - - Update evict/removeAll tests to reflect JBCACHE-1251 problem - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14260 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit b75ae7dbf56edff944231db036ae3e3963f18102 -Author: Brian Stansberry -Date: Sun Dec 23 14:50:54 2007 +0000 - - Fix putFromLoad tests - Update evict/removeAll tests to reflect JBCACHE-1251 problem - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14259 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 229a2b04cb3a1acdda8d0ee296ef6480423faa39 -Author: Brian Stansberry -Date: Sun Dec 23 14:49:34 2007 +0000 - - Fix putFromLoad tests - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14258 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit a9c0ae5a2b07fdeb7eb1def6b295d65b5d56350e -Author: Brian Stansberry -Date: Sun Dec 23 14:46:37 2007 +0000 - - Remove deprecated GMS.join_retry_timeout - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14257 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit e9d83eeb90e0831774867c686b1c43122e640bb5 -Author: Brian Stansberry -Date: Fri Dec 21 19:52:35 2007 +0000 - - Move to JBC 2.1.0.CR2/JGroups 2.6.1 - Add some properties that testsuite can set for faster test execution - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14256 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 8294650c5910f39522f02e8e4b907394988db24c -Author: Brian Stansberry -Date: Fri Dec 21 19:51:44 2007 +0000 - - Add some properties that testsuite can set for faster test execution - Remove unsupported TCP_NIO configs - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14255 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 5cf738dabbe806eb975e4b1b5ba2b4266175bb7d -Author: Brian Stansberry -Date: Fri Dec 21 19:49:29 2007 +0000 - - Put prototype of a next-gen TimestampsRegion impl under src control - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14254 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 773e1e46f10177b58df66958208b578c29db7e22 -Author: Brian Stansberry -Date: Fri Dec 21 19:48:42 2007 +0000 - - Add workaround to avoid delays from concurrent FLUSH calls in JGroups 2.6.1 - Use different "entity keys" per test to avoid cross-test pollution - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14253 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit ad856661ab75d931b473ce445022b9d72bb26594 -Author: Brian Stansberry -Date: Fri Dec 21 19:47:30 2007 +0000 - - Add workaround to avoid delays from concurrent FLUSH calls in JGroups 2.6.1 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14252 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 856b9dd3b44370230e27fc3eb12aaa4c538c698d -Author: Diego Plentz -Date: Thu Dec 20 03:05:05 2007 +0000 - - [HHH-2948] QueryStatistics.executionMinTime always = 0 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14250 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit efc1a16aded5db4b1f92dc9529705f537b37029d -Author: Steve Ebersole -Date: Thu Dec 13 17:09:58 2007 +0000 - - corrected pom to include hbm.xml resources into the built jar - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14244 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 4deba14a0f47c2e13e3f8cf29d6b1f11a27cfb09 -Author: Steve Ebersole -Date: Wed Dec 12 22:40:03 2007 +0000 - - upgrade the antlr plugin version used 2.0-SNAPSHOT -> 2.1-SNAPSHOT - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14243 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 051c192290d7a6461850e1a97f11673ae256d186 -Author: Steve Ebersole -Date: Fri Dec 7 22:47:01 2007 +0000 - - handle jgroups.bind_addr set from the maven command line - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14237 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit d134ddac312fcb33b6d0e153942e1dfd777ce472 -Author: Steve Ebersole -Date: Fri Dec 7 22:45:41 2007 +0000 - - header - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14236 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit e4d4dfe01af0d30478c108307f30c4741f76eb2d -Author: Steve Ebersole -Date: Fri Dec 7 22:03:18 2007 +0000 - - skip tests by default - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14234 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 38dbf9f630db31ff5320c0fa93867026660959fe -Author: Steve Ebersole -Date: Fri Dec 7 22:02:45 2007 +0000 - - use in-memory hsqldb rather than persistent one - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14233 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 908d29ca7808a7c89739dbd2024a6b20628820b4 -Author: Steve Ebersole -Date: Fri Dec 7 21:47:50 2007 +0000 - - source headers - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14232 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 783cc27c313778ffe185c22acf251e4cdf60a052 -Author: Steve Ebersole -Date: Fri Dec 7 21:40:51 2007 +0000 - - cleanup; source headers - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14231 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit dd9310207bc191a22798f2b348322315a3192788 -Author: Steve Ebersole -Date: Fri Dec 7 20:42:12 2007 +0000 - - HHH-2863 : isolate cache integration testing - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14230 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit bec99b7ec3c1a60c509ee5accf50e6fcc75a0a18 -Author: Steve Ebersole -Date: Fri Dec 7 17:06:43 2007 +0000 - - cleaning up test resources; source headers - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14228 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 0859b5ced3b0615d409d60dfba57de87ce588c46 -Author: Steve Ebersole -Date: Fri Dec 7 17:03:04 2007 +0000 - - cleanup; source header - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14227 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 9b7a8cfa71db925002471307672f2f7de1433a3d -Author: Steve Ebersole -Date: Fri Dec 7 17:01:04 2007 +0000 - - by default, lets be a little less verbose for the tests - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14226 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 24cf5e4a46f3a605381c0557061ff013da4d3a5f -Author: Brian Stansberry -Date: Fri Dec 7 16:34:15 2007 +0000 - - Define our own jgroups stacks - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14225 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 3f18c02c2edbf5b27431e2ff5b92f2147b95db88 -Author: Brian Stansberry -Date: Fri Dec 7 16:33:47 2007 +0000 - - Define our own jgroups stacks - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14224 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 715026089fc324bb872572adf7a75860c409a5e8 -Author: Steve Ebersole -Date: Fri Dec 7 04:53:02 2007 +0000 - - source headers - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14223 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit cffa859c25794ddae1b221220b1fa125a075365c -Author: Steve Ebersole -Date: Fri Dec 7 04:51:26 2007 +0000 - - source headers - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14222 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 990cc65f87a1ca4704fa2244f872f467631bb758 -Author: Steve Ebersole -Date: Fri Dec 7 04:50:57 2007 +0000 - - source headers - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14221 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit af44b09e14332cf0fc4c7edf44890bb73c13b602 -Author: Steve Ebersole -Date: Fri Dec 7 04:49:38 2007 +0000 - - source headers - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14220 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 0b5b5fae1ac6b59e7e39ac353b39d83eef0087ca -Author: Steve Ebersole -Date: Fri Dec 7 04:48:34 2007 +0000 - - source headers - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14219 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 129db3faec403881986f1bd761299e7287725f1d -Author: Steve Ebersole -Date: Fri Dec 7 03:39:22 2007 +0000 - - file contained a bad magic bit at the start of the file, causing validation errors on my box - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14218 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 545296be3f99b614dad85d720578edd253bb672c -Author: Steve Ebersole -Date: Fri Dec 7 03:10:46 2007 +0000 - - source headers - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14217 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit a15cab09116648bafc4cbed6d0356b44385d01b7 -Author: Steve Ebersole -Date: Thu Dec 6 20:28:10 2007 +0000 - - HHH-2863 : isolate cache integration testing - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14216 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit f3add4ddda5e1539b588787e97f1328244094fe8 -Author: Steve Ebersole -Date: Tue Dec 4 17:38:27 2007 +0000 - - HHH-2863 : isolate testing TransactionManager for reuse - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14213 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit b0bd89df76c2cca695a6f47beb9d34dc41effa2c -Author: Steve Ebersole -Date: Tue Dec 4 17:26:17 2007 +0000 - - minor change - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14212 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 069c575e36918d20e07e51d053f553ce418a860e -Author: Gail Badner -Date: Thu Nov 29 01:39:53 2007 +0000 - - HHH-952 : corrected formatting from previous version in trunk - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14210 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit a6729c155b53f158a55afe4836208c38491a99d3 -Author: Brian Stansberry -Date: Wed Nov 28 21:19:33 2007 +0000 - - Add some config tweaks to pom to help people who have trouble with multicast during testsuite runs - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14207 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 6807914f13088dc06f49a6149c2b74bc2d57d624 -Author: Steve Ebersole -Date: Wed Nov 28 17:37:22 2007 +0000 - - update antlr plugin version based on their latest SVN - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14206 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit a9fe7f15a31c0ebbc1fdc22962a0620b81071d3c -Author: Steve Ebersole -Date: Fri Nov 16 20:25:59 2007 +0000 - - HHH-2833 : insert-select query fails with NPE when select includes join - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14200 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 252123d96ee2f35dfe5d0525a144fed8ef4cf34f -Author: Brian Stansberry -Date: Tue Nov 13 20:55:50 2007 +0000 - - Run tests w/ java.net.preferIPv4Stack=true; cluster formation is very slow otherwise on some systems - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14198 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 369ec6da34af810d8d2af9145214b578aa856b01 -Author: Diego Plentz -Date: Tue Nov 6 02:09:45 2007 +0000 - - [HHH-2016] Oracle9Dialect registers last_day() function as "lastday" - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14189 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 40fbb3d31e015b63dcb01eb0d66a6365e9de1e68 -Author: Steve Ebersole -Date: Fri Nov 2 16:18:14 2007 +0000 - - HHH-2928 : synchronize enhanced id gen optimizers - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14183 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit d3ddcc4c55c0243ca37e6b2f93e9ef9ad8750008 -Author: Steve Ebersole -Date: Fri Nov 2 16:11:05 2007 +0000 - - added test for stale merging - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14180 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 0705b2ca788d750a84a20cf8e9114373b3292a13 -Author: Steve Ebersole -Date: Fri Nov 2 14:46:10 2007 +0000 - - HHH-1753 : db2 current_timestamp - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14178 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 9900a73769d77d6a22ca6d418b9363eba45f5aca -Author: Steve Ebersole -Date: Fri Nov 2 14:27:41 2007 +0000 - - corrected DTD incongruities - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14177 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit ae75ae8abf765bb8c835c5f24a4577ed98e4f76e -Author: xhuang -Date: Fri Nov 2 04:31:34 2007 +0000 - - update with split2po - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14176 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 635b7914373551ead8fd0615e5c6b134c7ca7a1e -Author: Steve Ebersole -Date: Fri Nov 2 00:32:44 2007 +0000 - - cleanup - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14175 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 5b3929d916640567b51ee68fd1ca0d801e1c04af -Author: Steve Ebersole -Date: Fri Nov 2 00:32:12 2007 +0000 - - cleanup - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14174 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 418e8468e4e4a4becb56a128c16eea2dd2491bef -Author: Steve Ebersole -Date: Fri Nov 2 00:29:48 2007 +0000 - - cleanup - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14173 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 69df209987c76b15142bff3bf744d07194fb7c3f -Author: Steve Ebersole -Date: Thu Nov 1 20:53:40 2007 +0000 - - cleanup - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14172 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 085bf15f39fba00c6066598bc5700fd162673ed5 -Author: Steve Ebersole -Date: Thu Nov 1 20:52:41 2007 +0000 - - apply i18n/gettext support - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14171 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 1b765ea48d4d9afbead73b9c92913812c05198a5 -Author: Steve Ebersole -Date: Thu Nov 1 20:47:08 2007 +0000 - - content cleanup - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14170 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 27223c6b040d2dc2a952baf19b91b1d9e6694819 -Author: Gail Badner -Date: Wed Oct 31 00:14:49 2007 +0000 - - HHH-2921 : added test cases that execute polymorphic queries when there is a superclass proxy for the resulting entity in the session cache - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14160 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 34c7ec1cd3f75bcaca4df871a5c778f8d6dd2bb0 -Author: Diego Plentz -Date: Sun Oct 28 16:51:03 2007 +0000 - - [HHH-1916] param values in generator element should be trimmed during HbmBinding - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14156 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 587bf728afd204187555c04de89a629ba8c708b7 -Author: xhuang -Date: Sat Oct 27 12:56:49 2007 +0000 - - PO generated via es-ES XML and English XML - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14154 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 9fdf63d3cb3649f448640add5257d1ba1c8543cd -Author: xhuang -Date: Sat Oct 27 12:53:39 2007 +0000 - - Match to latest English XML - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14153 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 9817470c544744826e2879edd3d9380c21743a0f -Author: xhuang -Date: Sat Oct 27 03:44:23 2007 +0000 - - Generated via XML and latest English XML - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14149 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit add1ff0f463e1aeabf5031931a393f7b75e2b8e0 -Author: xhuang -Date: Sat Oct 27 03:41:26 2007 +0000 - - match to latest English XML - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14148 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 1a1fc99092175b4b0a95f7bd1e1d82d1dc965626 -Author: xhuang -Date: Fri Oct 26 07:36:12 2007 +0000 - - Match to latest English XML - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14142 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit f134d4ab5ceaaddd432a61cf6fbfbb4d94d7a9f3 -Author: xhuang -Date: Fri Oct 26 07:34:37 2007 +0000 - - generated via fr-FR XML and English XML - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14141 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 629f86122d21c1c883a0a1f8f3a1f1437202e632 -Author: xhuang -Date: Fri Oct 26 07:31:49 2007 +0000 - - replace with correct lang - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14140 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 37c227e761d4fb530f550ca790a5e44bcd7b3538 -Author: xhuang -Date: Fri Oct 26 07:24:12 2007 +0000 - - Generated via fr-FR XML and English XML - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14139 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 0a97c39acca6d48e9f22866d56c29347b3fc62d1 -Author: xhuang -Date: Fri Oct 26 01:01:14 2007 +0000 - - Generated via merging XML with English XML - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14138 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit a445b5703c05903c8a3773b61be1f6282450e53b -Author: xhuang -Date: Fri Oct 26 00:57:21 2007 +0000 - - Remove characters and match to latest English version - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14137 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit f14b750f88d9d1944f10dbbcc9eb72f21ad7f911 -Author: xhuang -Date: Fri Oct 26 00:48:48 2007 +0000 - - Remove ^M characters, match with latest English XML - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14136 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit c7bc16211802a4b81f6760e4fc8ee7de93a91ecb -Author: xhuang -Date: Fri Oct 26 00:46:38 2007 +0000 - - Convert from pt-BR XML and merge with latest English XML - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14135 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 51efece885dcabc27ac796e365e7809232410e36 -Author: xhuang -Date: Thu Oct 25 07:57:28 2007 +0000 - - merge with latest English XML - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14132 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 85e223b8291c034c8cfdee3729cb4d32dbc5ac66 -Author: xhuang -Date: Thu Oct 25 07:54:59 2007 +0000 - - match to latest English XML - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14131 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit ea2a17260b11ce061bf4e406cd9d98fb31bf8eb9 -Author: Steve Ebersole -Date: Thu Oct 25 06:31:49 2007 +0000 - - correct various docbook markup issues - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14130 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 88dd39a0ac3ee71b218f0aea8aa0f26836388e5e -Author: Steve Ebersole -Date: Mon Oct 22 15:48:10 2007 +0000 - - translation po/gettext conversion - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14128 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit fb398102942251f15a9bb29171f357820bbf28de -Author: Brian Stansberry -Date: Fri Oct 19 22:27:20 2007 +0000 - - Add some timestamp cache validation - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14126 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 9264a3136239fad7a7e4ac9de771764ab1173abf -Author: Brian Stansberry -Date: Fri Oct 19 21:06:44 2007 +0000 - - Test toMap() on an empty region - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14125 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 7ec80867437a0a14f33a210e5f5c57b1b82e40f1 -Author: Brian Stansberry -Date: Fri Oct 19 19:32:36 2007 +0000 - - Add tests of Region.toMap() - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14124 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit c0f3881bae4b42649d3d7d4508c6162b5bdb6ba7 -Author: Brian Stansberry -Date: Fri Oct 19 19:29:57 2007 +0000 - - Get rid of "never" go backwards enforcement, as preinvalidate()/invalidate() sequence is 99.99% likely to go backwards - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14123 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit bd75e6db034a18bb829db943ad90d2f2b2f4b0c1 -Author: Brian Stansberry -Date: Fri Oct 19 19:27:21 2007 +0000 - - Use CacheHelper instead of making direct call - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14122 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 26ad878142d53fe38efb85ba7ef01fe278e256c5 -Author: Brian Stansberry -Date: Fri Oct 19 14:39:47 2007 +0000 - - Add evict/evictAll tests for query and timestamps regions - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14121 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit e665379a86959e56f32671e4e5c4acd5dc2c97ff -Author: Steve Ebersole -Date: Fri Oct 19 05:17:53 2007 +0000 - - prep for gettext conversion - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14120 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 45572536fa0b53e51f136b385ec4b5d27a6245d1 -Author: Steve Ebersole -Date: Fri Oct 19 05:17:33 2007 +0000 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14119 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit c98631e861f63d4d95c1962ca93309ef1b45c62c -Author: Steve Ebersole -Date: Fri Oct 19 05:09:51 2007 +0000 - - prep for gettext conversion - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14118 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 216c85b66cb226d61b3124a6890cfb0b6416dd5b -Author: Steve Ebersole -Date: Fri Oct 19 04:59:43 2007 +0000 - - prep for gettext conversion - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14117 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 2d25cf74bd7d8c28dd9c5fb189580cd1c22de220 -Author: Steve Ebersole -Date: Fri Oct 19 04:53:10 2007 +0000 - - prep for gettext conversion - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14116 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit b42751edb15703075f313e1ae7971318e65ee54c -Author: Steve Ebersole -Date: Fri Oct 19 04:52:33 2007 +0000 - - prep for gettext conversion - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14115 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 426dccd83a3015098fc4147c91caf480ffbb8f91 -Author: Steve Ebersole -Date: Fri Oct 19 04:36:47 2007 +0000 - - prep for gettext conversion - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14114 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 3fbbda75d1a6146c74abdc772a8708a43db28ba7 -Author: Steve Ebersole -Date: Fri Oct 19 04:15:16 2007 +0000 - - prep for gettext conversion - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14113 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 9f527f632da23374c0200054367faf0237125422 -Author: Steve Ebersole -Date: Fri Oct 19 04:07:06 2007 +0000 - - somehow this did not get deleted b4 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14112 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit edf6a29cf393a9993120935d5acb7492014d1754 -Author: Steve Ebersole -Date: Fri Oct 19 04:05:25 2007 +0000 - - minor - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14111 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit dd2c2831082439e4f6cff95671049379b8cb583d -Author: Steve Ebersole -Date: Fri Oct 19 03:50:52 2007 +0000 - - updated encoding to UTF-8 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14110 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 923ac2533f75db9d94fa422f968a3eed3782c746 -Author: Brian Stansberry -Date: Fri Oct 19 03:15:08 2007 +0000 - - Add evict/evictAll tests for query and timestamps regions - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14109 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit c0f701cc08467628011deee5b2a3c3af87675c21 -Author: Brian Stansberry -Date: Fri Oct 19 03:14:33 2007 +0000 - - Clean import - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14108 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit c023c85ea0fe3675ac41dd8e606ce61c32513548 -Author: Brian Stansberry -Date: Fri Oct 19 03:14:08 2007 +0000 - - Add helper method to remove a single node - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14107 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 8663b6564072a315d3a07fb025c06a7df98e7d8d -Author: Brian Stansberry -Date: Fri Oct 19 03:13:41 2007 +0000 - - Evict fixes - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14106 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit c3718d531b68a72899e3948d1e1a127f1221c527 -Author: Brian Stansberry -Date: Fri Oct 19 03:13:13 2007 +0000 - - Evict fixes - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14105 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit a0cdfe599eaadc0fc6bd813af1c19be1df41e3d3 -Author: Gail Badner -Date: Thu Oct 18 22:31:39 2007 +0000 - - HHH-2627 : Generated and lazy properties leak prepared statements - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14103 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 161e5cc19f81558f02dc9c48aa386b5b708a0aa4 -Author: Brian Stansberry -Date: Thu Oct 18 20:08:50 2007 +0000 - - [HHH-2555] Reimplement Hibernate/JBC 2.0 integration - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14101 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit b0beac4acdd85ed7c8b3543fce9f1c5bbf0360e3 -Author: Gail Badner -Date: Thu Oct 18 06:20:04 2007 +0000 - - HHH-1312 : Unclosed ResultSet when using Identity - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14099 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 0a6a16070962b2778e5d4775e1bf67f97341e064 -Author: Steve Ebersole -Date: Wed Oct 17 20:59:18 2007 +0000 - - HHH-2826 : (HQL) is [not] null - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14096 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 2af0d5b70bba7ac1add5474394b69b7d3afa3153 -Author: Steve Ebersole -Date: Wed Oct 17 05:23:28 2007 +0000 - - HHH-2669 : MySQL + LOB sizes - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14093 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit aaaf973515187b719812d99d5a29a259ce777e5a -Author: Steve Ebersole -Date: Wed Oct 17 05:07:24 2007 +0000 - - HHH-2864 : merge non-inverse collection when 'owner' is already proxied - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14091 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 9839957489eeb5c3ed87d912140ab91e868b6cc6 -Author: Steve Ebersole -Date: Wed Oct 17 04:12:49 2007 +0000 - - cleanup - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14088 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 06f3515244221e760cd3651fd91c675ea9f83243 -Author: Steve Ebersole -Date: Tue Oct 16 21:09:37 2007 +0000 - - HHH-2857 : assume schema support in HSQLDialect - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14086 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 12cf197f2feaaacc9c409174eeaedf0cef0942ec -Author: Steve Ebersole -Date: Tue Oct 16 21:04:09 2007 +0000 - - HHH-2892 : natural id caching - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14083 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 8d12b2e61fb025cb21d66f4b71004bb09cab2917 -Author: Steve Ebersole -Date: Tue Oct 9 20:10:34 2007 +0000 - - new docbook layout (prep for translations migration to PO) - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14081 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit a4cce4c205406ef1a5f31ed065d7a965f5793a97 -Author: Steve Ebersole -Date: Tue Oct 9 19:32:35 2007 +0000 - - new docbook layout (prep for translations migration to PO) - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14080 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 2f75f56085c98f72802e84b38c4e319d4dda69a9 -Author: Steve Ebersole -Date: Tue Oct 9 19:14:22 2007 +0000 - - new docbook layout (prep for translations migration to PO) - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14079 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 1c256da929ba23dbee682183fc92b03f85a7c858 -Author: Steve Ebersole -Date: Tue Oct 9 19:05:51 2007 +0000 - - fixed image extensions/types - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14078 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit d7ac8164fe7d0f45ed7aad42e6209b4b1009fee9 -Author: Steve Ebersole -Date: Tue Oct 9 19:04:11 2007 +0000 - - fixed image extensions/types - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14077 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit ed81b2f40bbd7a2027ee973802e116a57c482236 -Author: Steve Ebersole -Date: Tue Oct 9 19:02:00 2007 +0000 - - new docbook layout (prep for translations migration to PO) - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14076 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 1a839084d0ba42c466ec1902cf11daa098417783 -Author: Steve Ebersole -Date: Tue Oct 9 18:45:36 2007 +0000 - - new docbook layout (prep for translations migration to PO) - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14075 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit cd06d79254f4f51bcad00d6f2cdfc71b389335c8 -Author: Steve Ebersole -Date: Tue Oct 9 18:28:36 2007 +0000 - - new docbook layout (prep for translations migration to PO) - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14074 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit d3b88270bfc0cd184ceffcbf26aee352029c6418 -Author: Steve Ebersole -Date: Tue Oct 9 18:14:35 2007 +0000 - - new docbook layout - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14073 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 2cbb58571e6e1cc9fbec57238f62f181a3659478 -Author: Steve Ebersole -Date: Tue Oct 9 15:38:29 2007 +0000 - - moved html css to documentation style stuff - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14071 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 0131a4c31ddfa6d1849d1e1bed1c32783eb54c67 -Author: Steve Ebersole -Date: Tue Oct 9 15:35:40 2007 +0000 - - documentation images : gif -> png - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14070 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit c21fa75f7793b12d59d28ebf4fa2a65a236dfdb3 -Author: Gail Badner -Date: Mon Oct 8 23:05:38 2007 +0000 - - iHHH-2269 : added tests for bidirectional one-to-many associations with both sides cascading; one test fails with TransientObjectException if the inverse collection is marked CascadeType.DELETE_ORPHAN - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14069 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit bbc9029b29cbcbc51362974b2c04faabeecf6734 -Author: Gail Badner -Date: Sat Oct 6 01:52:54 2007 +0000 - - HHH-1593 - StackOverflow when calling configuration.setListener(null) - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14066 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 16c411c1377216e6043da15acd6e27b56253ab98 -Author: Diego Plentz -Date: Fri Oct 5 13:54:14 2007 +0000 - - [HHH-1696] Add outer join support for aliases on DetachedCriteria - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14064 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit ec267130cdb6c424a2b32b29ed9a9178eb2660ba -Author: Diego Plentz -Date: Fri Oct 5 12:55:35 2007 +0000 - - [HHH-2598] Mapping a collection of entities from two different classes with the same collection name results in duplicate backref property exception if collection keys are not null - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14062 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 52574a20fbbb21e0f753a2507a3348be5bedfa74 -Author: Steve Ebersole -Date: Wed Oct 3 06:26:59 2007 +0000 - - HHH-2813 : platform incompat - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14058 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 6d31022c4a57999c9863478ed562c4db1880d029 -Author: Steve Ebersole -Date: Wed Oct 3 06:16:46 2007 +0000 - - HHH-2822 : added functions for SAPDBDialect - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14056 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit c74c196e207516f1c5d8c3deee3628892d1c2e7e -Author: Steve Ebersole -Date: Wed Oct 3 05:44:41 2007 +0000 - - HHH-2861 : validation of delete-orphan for to-one association cascading - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14055 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 5bb94e23629b0b9a2777cfd9ae3f7284cc25a9fd -Author: Steve Ebersole -Date: Wed Oct 3 04:54:42 2007 +0000 - - HHH-2593 : filter conditions using UNION (or MINUS) subqueries - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14052 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 430a94b5ab4c20168b48de6e47c30e7c43cf03c3 -Author: Steve Ebersole -Date: Wed Oct 3 03:50:47 2007 +0000 - - HHH-2159 : NullPointerException in FromElement#findIntendedAliasedFromElementBasedOnCrazyJPARequirements - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14050 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 4a7615fd42fec2685d7b1a6a6c95603c8de3288d -Author: Steve Ebersole -Date: Wed Oct 3 03:09:34 2007 +0000 - - HHH-2070: expanded DB2Dialect auto-discovery support - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14048 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit dc43624359f99c853755110239b5b43ab769b6d9 -Author: Steve Ebersole -Date: Wed Oct 3 02:57:00 2007 +0000 - - HHH-2682 : H2 dialect auto-discovery support - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14047 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit d43a3d7d969ac6caf46615fe14b0209571f4d699 -Author: Steve Ebersole -Date: Wed Oct 3 02:50:59 2007 +0000 - - HHH-2839 : HSQLDB and sequences - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14044 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 75d63553c3eb0dad7a62fe08104ddb1825d17b26 -Author: Steve Ebersole -Date: Wed Oct 3 02:25:50 2007 +0000 - - general code cleanup - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14043 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 9c2eb65d2f8df2bc909364c6a1b693c9d3c60c99 -Author: Steve Ebersole -Date: Wed Oct 3 02:12:41 2007 +0000 - - HHH-2849 : IdentifierGeneratorFactory error logging - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14041 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit e47d267b5224e3d3f85f9ddc23152c2d4a868445 -Author: Diego Plentz -Date: Sat Sep 29 19:38:53 2007 +0000 - - [HHH-2261] Setting hibernate.hbm2ddl.auto=validate causes problems on mySQL with numeric fields - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14037 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 33ad68f239c0d3ac5bb79d8a47f2d3c595e1312f -Author: Diego Plentz -Date: Sat Sep 29 17:20:17 2007 +0000 - - [HHH-2852] Better error messages when schema validation fails - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14035 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit e5e59ed2f2ab840fd0c8ac38891cb3d9cb110465 -Author: Diego Plentz -Date: Fri Sep 28 03:18:02 2007 +0000 - - [HHH-1329] SchemaValidator fail when views are involved - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14031 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 2ead194254e959fb83ed9278357393942253c9ad -Author: Steve Ebersole -Date: Thu Sep 27 16:38:06 2007 +0000 - - HHH-2859 : work api - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14030 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 9d406f51d274ba0d4f201a8bd2711dccba8cb542 -Author: Steve Ebersole -Date: Thu Sep 27 16:37:27 2007 +0000 - - HHH-2859 : work api - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14029 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit ccdfd6c4a38d0f567585d3bb1e3f8841f74ee7e8 -Author: Steve Ebersole -Date: Wed Sep 26 11:33:58 2007 +0000 - - HHH-2863 : fixed for directory layout change ++ - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14028 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 45667c1c79d3c80d481412887e8aade759eb15ee -Author: Chris Bredesen -Date: Thu Sep 20 21:58:27 2007 +0000 - - HHH-2816 avoid re-selecting state for READ_ONLY in checkNaturalId - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14015 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit b8d21487bf7af88a35266055d41f16002f671b7c -Author: Diego Plentz -Date: Sat Sep 8 21:24:22 2007 +0000 - - [HHH-925] DetachedCriteria.createCriteria not working with alias - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14006 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit aa44bda14b9999dcbc714f37c249ec2292edb792 -Author: Steve Ebersole -Date: Sat Sep 1 12:21:57 2007 +0000 - - redid images - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@13988 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 89a8d29baf543e1ca61efb96f18465bfcbda49a7 -Author: Steve Ebersole -Date: Fri Aug 31 20:30:16 2007 +0000 - - HHH-2485 : merge() and collections (test case) - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@13986 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 88d04bbc4c4708d525451557c180cb99d30fbd58 -Author: Steve Ebersole -Date: Fri Aug 31 19:57:06 2007 +0000 - - cleanup - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@13985 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit e95686015d34b45316aa84c76155be7af065d53a -Author: Steve Ebersole -Date: Fri Aug 31 19:55:54 2007 +0000 - - antlr version override for antlr-maven-plugin (broken in maven <= 2.0.7) - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@13984 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 9e08a9b1343886224187398587fd13d12a35cba2 -Author: Gail Badner -Date: Wed Aug 29 23:00:41 2007 +0000 - - HHH-2728 : session.clear() while retrieving objects via an iterator fix that should work for all dialects - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@13962 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 50a010566b439eda41b049e8b7a7cb873847336d -Author: Gail Badner -Date: Wed Aug 29 00:50:12 2007 +0000 - - HHH-2728 : session.clear() while retrieving objects via an iterator - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@13957 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 072b3cf62317940798cefb8f74328a452782ebf0 -Author: Gail Badner -Date: Mon Aug 27 21:48:51 2007 +0000 - - HHH-2563 : Reversed log messages in LoadContexts.locateLoadingCollectionEntry(CollectionKey key) - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@13952 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 6473e4d24ed0eefcb8ae5453ce6c0a37a9b05916 -Author: Steve Ebersole -Date: Fri Aug 24 13:24:03 2007 +0000 - - new test - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@13949 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit d2d2c1c13e8c07ea80de69d353543b631cb6993e -Author: Gail Badner -Date: Sun Aug 19 23:09:11 2007 +0000 - - HHH-2795 : CollectionLoadContext processing for empty collections - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@13937 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 7955c1a75d24fa9d6b5bf95e6634edc64b924122 -Author: Steve Ebersole -Date: Fri Aug 17 18:46:02 2007 +0000 - - skip org.hibernate.test.legacy.MasterDetailTest#testCachedCollectionRefresh when connection is enforcing (at least) serializable isolation - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@13933 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit d06348743f2e7c54e75016fa2d2b5a072ab7c1b8 -Author: Steve Ebersole -Date: Thu Aug 16 22:28:16 2007 +0000 - - jbosscache 2.x work - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@13930 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit c832aebab56b56e4da5f70b02e03de9df6e25f83 -Author: Diego Plentz -Date: Thu Aug 16 12:46:28 2007 +0000 - - [HHH-2156] Section 19.3, "Managing the caches" doesn't document CacheMode.IGNORE - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@13927 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 7694c7f349469a7aa3665fe9e342cf83a853c7a8 -Author: Gail Badner -Date: Wed Aug 15 23:00:16 2007 +0000 - - HHH-2503 : Throws JDBCExceptionHelper.convert() in AbstractEntityPersister.processGeneratedProperties() - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@12950 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 06f0676e20c505f7cee737d6e0b85182999819af -Author: Gail Badner -Date: Wed Aug 15 20:23:35 2007 +0000 - - HHH-2320 : Update detached entity with null joined properties changed to non-null - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@12946 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 68dded3aea860b19a0465638a33dbf84d043a4c7 -Author: Diego Plentz -Date: Wed Aug 15 14:39:43 2007 +0000 - - [HHH-1396] Table.validateColumns fails on valid column - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@12944 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit ee0f78562dfb403c76764cf74025dbcbc840aec8 -Author: Diego Plentz -Date: Wed Aug 15 03:31:18 2007 +0000 - - [HHH-1920] Incorrect documentation regarding XML manipulation in Hibernate reference manual (chapter 18.3) - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@12943 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit bd414941f82dec58b023ef0e5a6096171e67c956 -Author: Diego Plentz -Date: Wed Aug 15 02:51:52 2007 +0000 - - [HHH-2789] Section 19.2 of the documentation does not show OSCache as supporting clusters. It does. - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@12942 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit a3a8486793aefe034f46e1d5fd98bf1bae3c9904 -Author: Steve Ebersole -Date: Wed Aug 15 02:38:39 2007 +0000 - - HHH-2788 : missing type mapping for DATE and TIME on Oracle8iDialect - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@12940 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit fe7d0d712076ba58e59681a6273b26e836d52443 -Author: Diego Plentz -Date: Tue Aug 14 21:17:14 2007 +0000 - - [HHH-2164] Minor bug in section "20.1.1. Customizing the schema" - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@12939 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 014c2664c95d60aeec6f6f66f6e4455dc21e8738 -Author: Diego Plentz -Date: Tue Aug 14 20:07:25 2007 +0000 - - [HHH-2755] Wrong "jsdk.jar" referenced in the tutorial - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@12938 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit ce0cbf1f1874381dcd4f1e76f6d3a9c08855f730 -Author: Gail Badner -Date: Tue Aug 14 19:47:14 2007 +0000 - - HHH-2542 : Merge non-null component in a child persisted with a null component and added test for optional components - - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@12937 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit d40aa403b268cd72867d51e606dbf7cb03fd813f -Author: Diego Plentz -Date: Tue Aug 14 14:27:03 2007 +0000 - - [HHH-2519] Schema dropping not documented with hibernate.hbm2ddl.auto=create - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@12933 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit c3f440cf482062378674008de151ce28dc58836b -Author: Diego Plentz -Date: Tue Aug 14 13:49:08 2007 +0000 - - [HHH-2778] TransactionManagerLookup implementation for Bitronix Transaction Manager - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@12932 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 379fe5f3d4a4214d20b4428f346b7eae1fa52486 -Author: Steve Ebersole -Date: Mon Aug 13 22:38:26 2007 +0000 - - HHH-2749 : direct use of LinkedHashSet/LinkedHashMap - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@12931 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 557a9226985198ad8eb144130dbc7675eabfe25d -Author: Steve Ebersole -Date: Mon Aug 13 22:17:29 2007 +0000 - - oops... removed testng dep, as i was just playing with it locally - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@12930 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit e959b5787db38fa55b9c2e42517b99f04c8f0c3a -Author: Steve Ebersole -Date: Mon Aug 13 22:16:21 2007 +0000 - - added additional test - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@12929 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 81f31939c5f3835f703c74c77b3e9ceac9d43759 -Author: Steve Ebersole -Date: Mon Aug 13 22:15:53 2007 +0000 - - added additional test - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@12928 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit b1fdf815499d871b1954220dbebc61e7a998d23d -Author: Diego Plentz -Date: Mon Aug 13 20:04:26 2007 +0000 - - [HHH-2726] spelling o your CLASSPATH - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@12926 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 31fe1aa5243ffae1d03e0dfb501806a3c30a66e5 -Author: Steve Ebersole -Date: Mon Aug 13 20:04:19 2007 +0000 - - fixed logging dependencies - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@12925 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 51d860c0ad7547081a8e0c5fd33d15f39d66f97c -Author: Steve Ebersole -Date: Fri Aug 3 17:42:55 2007 +0000 - - HHH-2696 : migrate to slf4j - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@12897 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit f82c906ec1e4a0e154c1451fb4ec9065ab0dcca6 -Author: Steve Ebersole -Date: Fri Aug 3 13:11:28 2007 +0000 - - somehow the perf tests got dropped during my moving stuff around - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@12893 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit ae3c25594b172d14c5088a6f138f42ac05ec615e -Author: Steve Ebersole -Date: Fri Aug 3 12:47:14 2007 +0000 - - testsuite now uses maven profiles with properties file interpolation - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@12892 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit f0755725c91b67f6cb86c97c23aa7e0b30d03d8d -Author: Steve Ebersole -Date: Fri Aug 3 04:09:17 2007 +0000 - - HHH-2704 : migrate to maven (testsuite) - HHH-2696 : migrate to slf4j - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@12891 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 6472dac702d32bf97b28ce44514994ca8e34cc0b -Author: Steve Ebersole -Date: Fri Aug 3 03:57:59 2007 +0000 - - HHH-2761 : null and empty string consistency in PropertiesHelper (javadocs) - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@12889 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit e9065e13a08fc37786609556f25890e939cc7be1 -Author: Steve Ebersole -Date: Thu Aug 2 02:45:31 2007 +0000 - - HHH-2761 : null and empty string consistency in PropertiesHelper - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@12878 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit e071f348a9e2fc40f47a87b14f67751f40df25dc -Author: Steve Ebersole -Date: Tue Jul 31 15:24:13 2007 +0000 - - HHH-2758 : IngresDialect certification - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@12862 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit e5f6d52012bf09c3cc0811f48a5acbdff442334c -Author: Steve Ebersole -Date: Tue Jul 31 13:39:23 2007 +0000 - - HHH-2711 : composite-map-key + unidir map can lead to PropertyAccessException - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@12859 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit e239d5a3191eb325b116ef0910a10dc10eab75c7 -Author: Steve Ebersole -Date: Fri Jul 27 03:43:34 2007 +0000 - - commons-collections cleanup - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@12834 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit e162258a7a28cc08675ed3dd2219624519f82d6a -Author: Steve Ebersole -Date: Fri Jul 27 03:34:52 2007 +0000 - - removed unused class - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@12833 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 4499b6ac1410518c6f52461c64f8407463ab7e41 -Author: Steve Ebersole -Date: Fri Jul 27 03:20:24 2007 +0000 - - HHH-2748 : remove SequencedHashMap usage; - HHH-2749 : direct use of LinkedHashSet/LinkedHashMap - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@12832 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 61133f9530d5bc3df5bf49981653eb33110f0a29 -Author: Steve Ebersole -Date: Fri Jul 27 00:36:37 2007 +0000 - - HHH-2747 : JDBC3 getGeneratedKey - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@12831 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit f14257037b6b2585d1c2a7a02612c218600071f2 -Author: Steve Ebersole -Date: Thu Jul 26 20:51:32 2007 +0000 - - use profiles for qa/qe builds - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@12830 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 210f4faa610a06cdeacf33e01530636734500601 -Author: Steve Ebersole -Date: Thu Jul 26 03:53:09 2007 +0000 - - jbosscache 2.x work - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@12823 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 89834a3eacc9b7d67d656bc98cec7997ea1eecac -Author: Steve Ebersole -Date: Tue Jul 24 20:35:47 2007 +0000 - - caching - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@12812 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 667365829a658fddbde1cd8bd493bdf5e87f223c -Author: Steve Ebersole -Date: Tue Jul 24 20:34:07 2007 +0000 - - partial jbosscache2.x support - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@12811 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit b418f061b3d9d8141a9ba8dac2ef5ff34b75a1d2 -Author: Steve Ebersole -Date: Sat Jul 21 08:05:50 2007 +0000 - - basic site design for dist bundles - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@12796 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 00c78a5a5187da7ff131c3ed4c7fe1b40743ff0c -Author: Steve Ebersole -Date: Sat Jul 21 07:17:25 2007 +0000 - - added svn:ignore - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@12795 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit a817fc659b72a1dc132cc096dcdcc933240ca15f -Author: Steve Ebersole -Date: Sat Jul 21 07:15:20 2007 +0000 - - basic site design for dist bundles - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@12794 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit b681b210a0dcabb84d300142f2bc9980fdf61a25 -Author: Steve Ebersole -Date: Sat Jul 21 07:14:55 2007 +0000 - - move assembly to deploy phase - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@12793 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit d4e8c4fa84d16aa3040995c4fbb28b90c79c26d6 -Author: Steve Ebersole -Date: Fri Jul 20 19:22:34 2007 +0000 - - added initial assembly - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@12787 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 22655a4c8674c2b2a9f3e6803a1da3e61b053257 -Author: Steve Ebersole -Date: Fri Jul 20 19:21:41 2007 +0000 - - added initial assembly - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@12786 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 920f7912b40a42acf3fcdcc19a787d923394d691 -Author: Steve Ebersole -Date: Fri Jul 20 19:20:16 2007 +0000 - - added actual way antlr dep should be specified (commented out, since maven currently [thru 2.0.7] has a regression bug which does not allow this to work) - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@12785 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit af48068ded9e314e03b0af8b29d56db0d0e4b4f6 -Author: Diego Plentz -Date: Wed Jul 18 21:11:33 2007 +0000 - - [HHH-2713] duplicated phrase in docs "of the of the" - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@12779 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit b191845c237315668388e2684cec0b157af526b4 -Author: Diego Plentz -Date: Wed Jul 18 21:02:08 2007 +0000 - - [HHH-1682] Improve the description of differences between save() and persist() - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@12778 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 6c50b2bf0e4e77fb2f54134156b93d7918df86e6 -Author: Steve Ebersole -Date: Tue Jul 17 03:34:18 2007 +0000 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@12774 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 79e5b784a18b45402968ec6ffc645dd65bc3ee08 -Author: Steve Ebersole -Date: Tue Jul 17 03:31:57 2007 +0000 - - uploading separated parent poms - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@12773 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit be9c0da948b65a5abe4a73ed614df29482671b4f -Author: Steve Ebersole -Date: Tue Jul 17 03:15:53 2007 +0000 - - splitting code back out into individual modules (found better way to isolate documentation) - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@12772 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit a797998927e2cbba9ec34ca7dc31b42a192fa2f1 -Author: Steve Ebersole -Date: Tue Jul 17 03:15:03 2007 +0000 - - splitting code back out into individual modules (found better way to isolate documentation) - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@12771 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 9fda5ffa294695f1a1a2e349232f64d80ef26250 -Author: Diego Plentz -Date: Mon Jul 16 04:18:27 2007 +0000 - - [HHH-2714] Three typos in code examples - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@12767 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 394abb8fbf63e5a777d3efb3263e791b875e06cb -Author: Diego Plentz -Date: Mon Jul 16 00:36:41 2007 +0000 - - [HHH-1694] Documentation Outdated: "10.4.4. Queries in native SQL" - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@12765 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 0abce7883b16b666313ae2bb268630cf666f1ca6 -Author: Diego Plentz -Date: Fri Jul 13 04:14:38 2007 +0000 - - [HHH-2719] adddress --> address - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@12763 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 24eaebf6aa7a251e3af14994f8a1cba6c264dfd3 -Author: Diego Plentz -Date: Sun Jul 8 10:46:37 2007 +0000 - - [HHH-2566] Remove FlushMode.NEVER - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@12749 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 3ee35773147a64812c6633917bb709e329c592d2 -Author: Diego Plentz -Date: Sun Jul 8 09:24:38 2007 +0000 - - [HHH-2201] session.iterate() does not exist - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@12748 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 73df9715309344092db96717be2e5705098e6722 -Author: Diego Plentz -Date: Sun Jul 8 09:16:48 2007 +0000 - - [HHH-2649] Batcher configuration parameter incorrectly documented - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@12747 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit e3b8f93bb36b7305d40a98a66313763a3e089b28 -Author: Diego Plentz -Date: Sun Jul 8 09:02:58 2007 +0000 - - [HHH-2551] Deprecate org.hibernate.criterion.Expression - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@12746 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit c6a5bd747e0bff950f74179b699d65557fe91495 -Author: Diego Plentz -Date: Sun Jul 8 08:47:10 2007 +0000 - - [HHH-2552] Update javadoc to refer Restriction methods - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@12745 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit a1c40a99a36205d06009114fd57d95a46d48d413 -Author: Diego Plentz -Date: Sun Jul 8 07:53:52 2007 +0000 - - [HHH-2713] duplicated phrase in docs "of the of the" - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@12743 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 1e483343984c478c577f37ab7b338579e3ca48c4 -Author: Diego Plentz -Date: Sun Jul 8 01:20:59 2007 +0000 - - [HHH-2048] Incomplete MappingException at org.hibernate.mapping.SimpleValue - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@12742 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 3b9fc55ee421f1030d23b4eb012745c185b05bc7 -Author: Diego Plentz -Date: Wed Jul 4 06:18:11 2007 +0000 - - [HHH-1561] Missing " in Documentation for H3, Chapter 15.8 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@12727 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 39445e07d3da08cbc0c15f4f8ac0f18d5d4f9013 -Author: Diego Plentz -Date: Wed Jul 4 06:14:36 2007 +0000 - - [HHH-2180] minordocumentation error in hbm xml - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@12726 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit a215a7f18e16969aa82edd601fc7a0a5c06d8764 -Author: Diego Plentz -Date: Wed Jul 4 06:12:25 2007 +0000 - - [HHH-2267] A copy/paste mistake in the documentation for ant task - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@12725 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 76e49f9b09879ce939a921c7c62c20bc833ccb50 -Author: Diego Plentz -Date: Wed Jul 4 06:05:53 2007 +0000 - - [HHH-1116] batch-size typo - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@12724 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 2f236d64168278deb5977114ef425a12ffd96011 -Author: Diego Plentz -Date: Wed Jul 4 06:01:25 2007 +0000 - - [HHH-2487] Typo in "5.1.7. version (optional)" - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@12723 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit e0399c33fab7b9c5d9dab135583ae01a56c372b3 -Author: Diego Plentz -Date: Wed Jul 4 05:59:40 2007 +0000 - - [HHH-2417] Update book on Hibernate reference - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@12722 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit b1493a51ad806251718807571a2e9f9c66c91d7d -Author: Diego Plentz -Date: Wed Jul 4 05:55:02 2007 +0000 - - [HHH-2520] Miscellaneous config doc spelling fixes - - and some others. - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@12721 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit af1f49bdc12c796966c6cb202d4a73fe7763ac30 -Author: Diego Plentz -Date: Wed Jul 4 05:33:48 2007 +0000 - - [HHH-2568] Hibernate javadoc overview refering wrong classes and packages - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@12720 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 751ebd59dc7bada662da061a2845d6fd2d9f45cc -Author: Diego Plentz -Date: Wed Jul 4 05:24:14 2007 +0000 - - [HHH-2334] Documentation error in section 5.1.3 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@12719 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 252ec842ecf39223b1fa13428479399da0165741 -Author: Diego Plentz -Date: Wed Jul 4 05:12:00 2007 +0000 - - [HHH-2418] Refer HSQL DB website in chapter 1.2.3 - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@12718 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 67889ab73cfb679219140aa9d645ea3d79d1f782 -Author: Diego Plentz -Date: Wed Jul 4 05:02:44 2007 +0000 - - [HHH-2550] Update API Class in 10.4.3. Criteria queries - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@12717 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 304fc54e323bc2f9b48a757a710e9ebcdb579fe3 -Author: Diego Plentz -Date: Wed Jul 4 04:58:58 2007 +0000 - - [HHH-2420] Error in 2.5. Contextual Sessions - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@12716 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit bc550eba487e4e8f1045530a9f340d406a9b3859 -Author: Diego Plentz -Date: Wed Jul 4 04:55:21 2007 +0000 - - [HHH-2567] Update reference to use FlushMode.MANUAL - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@12715 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 8cbc99d44bf48229dd59556e1acdceace2cf383b -Author: Steve Ebersole -Date: Fri Jun 29 19:24:33 2007 +0000 - - SVN layout migration for core/trunk - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@11729 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit b217d8f525dace74d06e2b82393d98070a1cc8f4 -Author: Steve Ebersole -Date: Fri Jun 29 19:24:24 2007 +0000 - - SVN layout migration for core/trunk - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@11728 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 0d67fddb5b8bdb9014b4de42c663c4b6c4ebce6f -Author: Steve Ebersole -Date: Fri Jun 29 19:24:18 2007 +0000 - - SVN layout migration for core/trunk - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@11727 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 83baf51c37679f9e1ef59a2ee1633458983537ac -Author: Steve Ebersole -Date: Fri Jun 29 19:24:12 2007 +0000 - - SVN layout migration for core/trunk - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@11726 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit d4b49038c8fbc226230415b7e280039083dd4500 -Author: Steve Ebersole -Date: Fri Jun 29 19:24:05 2007 +0000 - - SVN layout migration for core/trunk - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@11725 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit defd7e7e1c5099757df9bdbd1cad157c822d7733 -Author: Steve Ebersole -Date: Fri Jun 29 19:23:59 2007 +0000 - - SVN layout migration for core/trunk - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@11724 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 6eee4be62526b1433a4407a53a20ba6706778602 -Author: Steve Ebersole -Date: Fri Jun 29 19:23:53 2007 +0000 - - SVN layout migration for core/trunk - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@11723 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit d8d6d82e30960e0c255950eaf875ad48831b12b0 -Author: Steve Ebersole -Date: Fri Jun 29 19:23:45 2007 +0000 - - SVN layout migration for core/trunk - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@11722 1b8cb986-b30d-0410-93ca-fae66ebed9b2 - -commit 41e94b3cf8192f0f3b4d2948f26760ac412745a0 -Author: Steve Ebersole -Date: Fri Jun 29 19:17:02 2007 +0000 - - starting SVN layout migration for core - - git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@11719 1b8cb986-b30d-0410-93ca-fae66ebed9b2