Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gtiwari333/hibernate-groovy-tuple-constructor-must-have-at-least-one-element
https://github.com/gtiwari333/hibernate-groovy-tuple-constructor-must-have-at-least-one-element
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/gtiwari333/hibernate-groovy-tuple-constructor-must-have-at-least-one-element
- Owner: gtiwari333
- Created: 2024-02-23T02:30:05.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-02-23T13:45:44.000Z (10 months ago)
- Last Synced: 2024-10-13T02:18:53.760Z (3 months ago)
- Language: Groovy
- Size: 63.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
### Repo for Bug https://hibernate.atlassian.net/browse/HHH-17771
CriteriaBuilder.tuple(Path ) is calling wrong method from SqmCriteriaNodeBuilder
For Groovy -> its calling org.hibernate.query.sqm.internal.SqmCriteriaNodeBuilder.tuple(org.hibernate.query.sqm.SqmExpressible, org.hibernate.query.sqm.tree.expression.SqmExpression>...)
For Java -> its calling org.hibernate.query.sqm.internal.SqmCriteriaNodeBuilder.tuple(jakarta.persistence.criteria.Selection>[])
### How to Reproduce:
- Run the GroovySBApp
- Run http://localhost:8081/groovy to see the error from Groovy code
- Run http://localhost:8081/java to see no error generated from Java code