Re: Follow up on H2

2025-05-11 Thread James Daugherty
We publish the tck for others to implement. By default test sources aren’t published, and gradle’s junit runner is designed so that it won’t run tests in a jar. Take a look at the tck config gradle to see how it injects the tests. On Sun, May 11, 2025 at 8:14 PM Walter Duque de Estrada wrote:

[DRAFT] Apache Groovy Board Report May 2025 (reporting on Feb/Mar/Apr)

2025-05-11 Thread Paul King
Hi Groovy (including Geb) & Grails folks, Any updates/comments before I submit our latest board report? (Due in two days.) Thanks, Paul. ===>8== ## Description: Apache Groovy is responsible for the evolution and maintenance of the Groovy programming language and related

Grails Hibernate 6 Branch

2025-05-11 Thread James Daugherty
Hi Everyone, As discussed, I looked at merging the hibernate 6 repository into grails-core. The merged branch is located here: https://github.com/apache/grails-core/tree/merge-hibernate6 A couple notes about this branch: 1. The hibernate6 repo only had material changes to core & docs. I've only

Re: Grails Hibernate 6 Branch

2025-05-11 Thread Walter Duque de Estrada
Agreed on working from this branch. Thanks for all the work Walter > On May 11, 2025, at 4:36 PM, James Daugherty > wrote: > > Hi Everyone, > > As discussed, I looked at merging the hibernate 6 repository into > grails-core. The merged branch is located here: > https://github.com/apache/grai

H2 error

2025-05-11 Thread Walter Duque de Estrada
Team: The following error is related to using H2 for testing org.hibernate.tool.schema.spi.CommandAcceptanceException: Error executing DDL "create table common_types (b tinyint not null, bd numeric(19,2) not null, bi numeric(19,0) not null, bool boolean not null, cur varchar(3) not null, d flo

Re: H2 error

2025-05-11 Thread James Daugherty
One benefit of H2 is that it is very good at impersonating multiple databases. We haven’t seen these errors previously. What test is this occurring in? I assume by reals you mean a Double is being used? Why is a numeric not being used? On Sun, May 11, 2025 at 8:02 PM Walter Duque de Estrada

Follow up on H2

2025-05-11 Thread Walter Duque de Estrada
The grails-datapping-tck has its tests in the main branch. Is there a reason for this vs having them in their own test directory? Walter