This is an automated email from the ASF dual-hosted git repository. borinquenkid pushed a commit to branch 8.0.x-hibernate7 in repository https://gitbox.apache.org/repos/asf/grails-core.git
commit dc6a6d467e8a0bb81bcc7e8ad9aefe4850e6fcd1 Author: Walter B Duque de Estrada <[email protected]> AuthorDate: Wed Jan 14 10:37:28 2026 -0600 update progress --- grails-data-hibernate7/core/HIBERNATE7-TESTS.csv | 3 +-- ...bernate6GroovyProxySpec.groovy => Hibernate7GroovyProxySpec.groovy} | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/grails-data-hibernate7/core/HIBERNATE7-TESTS.csv b/grails-data-hibernate7/core/HIBERNATE7-TESTS.csv index 5378a36049..668deee725 100644 --- a/grails-data-hibernate7/core/HIBERNATE7-TESTS.csv +++ b/grails-data-hibernate7/core/HIBERNATE7-TESTS.csv @@ -1,6 +1,5 @@ Test File , Status , Notes - `src/test/groovy/grails/gorm/specs/proxy/Hibernate6GroovyProxySpec.groovy` , FAILED , Hibernate 7 change: location.isInitialized() method missing. - `src/test/groovy/grails/gorm/specs/hasmany/TwoUnidirectionalHasManySpec.groovy` , FAILED , SQL Syntax error: Qualified column names in DDL. + `src/test/groovy/grails/gorm/specs/hasmany/TwoUnidirectionalHasManySpec.groovy` , FAILED , SQL Syntax error: Qualified column names in DDL. `src/test/groovy/grails/gorm/specs/CompositeIdWithManyToOneAndSequenceSpec.groovy` , FAILED , NPE in Hibernate 7 SequenceStyleGenerator. `src/test/groovy/grails/gorm/specs/SubqueryAliasSpec.groovy` , SKIPPED , `src/test/groovy/grails/gorm/specs/multitenancy/MultiTenancyBidirectionalManyToManySpec.groovy` , FAILED , Found two representations of same collection. diff --git a/grails-data-hibernate7/core/src/test/groovy/grails/gorm/specs/proxy/Hibernate6GroovyProxySpec.groovy b/grails-data-hibernate7/core/src/test/groovy/grails/gorm/specs/proxy/Hibernate7GroovyProxySpec.groovy similarity index 94% rename from grails-data-hibernate7/core/src/test/groovy/grails/gorm/specs/proxy/Hibernate6GroovyProxySpec.groovy rename to grails-data-hibernate7/core/src/test/groovy/grails/gorm/specs/proxy/Hibernate7GroovyProxySpec.groovy index c184cdac2c..59c59c1145 100644 --- a/grails-data-hibernate7/core/src/test/groovy/grails/gorm/specs/proxy/Hibernate6GroovyProxySpec.groovy +++ b/grails-data-hibernate7/core/src/test/groovy/grails/gorm/specs/proxy/Hibernate7GroovyProxySpec.groovy @@ -8,7 +8,7 @@ import org.grails.datastore.gorm.proxy.GroovyProxyFactory /** * @author graemerocher */ -class Hibernate6GroovyProxySpec extends GrailsDataTckSpec<GrailsDataHibernate7TckManager> { +class Hibernate7GroovyProxySpec extends GrailsDataTckSpec<GrailsDataHibernate7TckManager> { void setupSpec() { manager.addAllDomainClasses([Location])
