Otávio Santana
Otávio Santana
## Specification PR template When creating a specification project release review, create PRs with the content defined as follows. Include the following in the PR: - [X] A directory in...
When executing a query with a syntax issue, the error message provided does not clearly indicate where the problem lies. Instead, it returns a generic message that can be misleading...
It is unclear whether the `LIKE` operator is supported in the Oracle NoSQL Database. I attempted to execute a query that appeared to follow the correct syntax but encountered an...
Introduce a redesigned engine for handling method introspection and metadata in Jakarta Data repositories to support modern runtime and build-time scenarios better. The current reflection-based engine processes repository methods at...
Eclipse JNoSQL should support the `special_expression` rule defined in the [Jakarta Query grammar](https://github.com/jakartaee/query/blob/main/spec/src/antlr/JQL-core.g4), which includes special constants such as: - `LOCAL DATE` - `LOCAL TIME` - `LOCAL DATETIME` - `TRUE`...
Jakarta Query defines the following grammar rule for aggregate expressions: ```ebnf aggregate_expression : 'COUNT' '(' 'THIS' ')'; ``` This allows for string-based queries such as: ```sql SELECT COUNT(THIS) FROM Word...