-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Create a JPQL parser #2814
Labels
Milestone
Comments
gregturn
added
type: enhancement
A general enhancement
in: query-parser
Everything related to parsing JPQL or SQL
labels
Feb 22, 2023
gregturn
added a commit
that referenced
this issue
Feb 24, 2023
Introduce a grammar that supports JPQL as defined by JPA 3.1 and allow us to leverage it for query handling. Related: #2814.
gregturn
added a commit
that referenced
this issue
Mar 1, 2023
Introduce grammars that support both JPQL (JPA 3.1) as well as HQL (Hibernate 6.1) and allow us to leverage it for query handling. Related: #2814.
gregturn
added a commit
that referenced
this issue
Mar 2, 2023
Introduce grammars that support both JPQL (JPA 3.1) as well as HQL (Hibernate 6.1) and allow us to leverage it for query handling. Related: #2814.
gregturn
added a commit
that referenced
this issue
Mar 2, 2023
Introduce grammars that support both JPQL (JPA 3.1) as well as HQL (Hibernate 6.1) and allow us to leverage it for query handling. Related: #2814.
gregturn
added a commit
that referenced
this issue
Mar 2, 2023
Introduce grammars that support both JPQL (JPA 3.1) as well as HQL (Hibernate 6.1) and allow us to leverage it for query handling. Related: #2814.
gregturn
added a commit
that referenced
this issue
Mar 2, 2023
Introduce grammars that support both JPQL (JPA 3.1) as well as HQL (Hibernate 6.1) and allow us to leverage it for query handling. Related: #2814.
gregturn
added a commit
that referenced
this issue
Mar 3, 2023
Introduce grammars that support both JPQL (JPA 3.1) as well as HQL (Hibernate 6.1) and allow us to leverage it for query handling. Related: #2814.
gregturn
added a commit
that referenced
this issue
Mar 3, 2023
Introduce grammars that support both JPQL (JPA 3.1) as well as HQL (Hibernate 6.1) and allow us to leverage it for query handling. Related: #2814.
gregturn
added a commit
that referenced
this issue
Mar 6, 2023
Introduce grammars that support both JPQL (JPA 3.1) as well as HQL (Hibernate 6.1) and allow us to leverage it for query handling. Related: #2814.
gregturn
added a commit
that referenced
this issue
Mar 6, 2023
Introduce grammars that support both JPQL (JPA 3.1) as well as HQL (Hibernate 6.1) and allow us to leverage it for query handling. Related: #2814.
gregturn
added a commit
that referenced
this issue
Mar 6, 2023
Introduce grammars that support both JPQL (JPA 3.1) as well as HQL (Hibernate 6.1) and allow us to leverage it for query handling. Related: #2814.
gregturn
added a commit
that referenced
this issue
Mar 6, 2023
Introduce grammars that support both JPQL (JPA 3.1) as well as HQL (Hibernate 6.1) and allow us to leverage it for query handling. Related: #2814.
gregturn
added a commit
that referenced
this issue
Mar 6, 2023
Introduce grammars that support both JPQL (JPA 3.1) as well as HQL (Hibernate 6.1) and allow us to leverage it for query handling. Related: #2814.
gregturn
added a commit
that referenced
this issue
Mar 6, 2023
Introduce grammars that support both JPQL (JPA 3.1) as well as HQL (Hibernate 6.1) and allow us to leverage it for query handling. Related: #2814.
gregturn
added a commit
that referenced
this issue
Mar 7, 2023
Introduce grammars that support both JPQL (JPA 3.1) as well as HQL (Hibernate 6.1) and allow us to leverage it for query handling. Related: #2814.
gregturn
added a commit
that referenced
this issue
Mar 7, 2023
Introduce grammars that support both JPQL (JPA 3.1) as well as HQL (Hibernate 6.1) and allow us to leverage it for query handling. Related: #2814.
gregturn
added a commit
that referenced
this issue
Mar 8, 2023
Introduce grammars that support both JPQL (JPA 3.1) as well as HQL (Hibernate 6.1) and allow us to leverage it for query handling. Related: #2814.
gregturn
added a commit
that referenced
this issue
Mar 14, 2023
Introduce grammars that support both JPQL (JPA 3.1) as well as HQL (Hibernate 6.1) and allow us to leverage it for query handling. Related: #2814.
klajdipaja
pushed a commit
to klajdipaja/spring-data-jpa
that referenced
this issue
Mar 24, 2023
Introduce grammars that support both JPQL (JPA 3.1) as well as HQL (Hibernate 6.1) and allow us to leverage it for query handling. Related: spring-projects#2814.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
Managing custom queries inside @query annotations has become unmanageable through
QueryUtils
. Simply put, a collection of regular expressions does not suffice. So we instead need to craft a JPQL-compliant parser that allows us to:At first, it should be based upon JPA 3.1, the standard Spring Data JPA 3.1 is aligned with. If there is an agreed-upon reason to implement backwards compatibility with older versions of JPA, we can evaluate that.
The text was updated successfully, but these errors were encountered: