Moritz Becker
Moritz Becker
### Description JSON_GET currently only supports literal json path elements. There are many use cases that require accessing JSON documents with parameterized paths. Therefore we should extend the capability of...
The current implementation of `KeysetAwarePageImpl#nextPageable` is: ```java @Override public KeysetPageable nextPageable() { return (KeysetPageable) super.nextPageable(); } ``` This assumes that `super.nextPageable()` always returns a `KeysetPageable`, which is not true. If...
### Description If we have a paginated query that uses `DISTINCT`, we fail with: **Cannot paginate a DISTINCT query** The check for this is: ```java if (selectManager.isDistinct()) { throw new...
### Checklist - [X] The issue can be reproduced in the [auth0-angular sample app](https://github.com/auth0-samples/auth0-angular-samples/tree/master/Sample-01) (or N/A). - [X] I have looked into the [Readme](https://github.com/auth0/auth0-angular#readme), [Examples](https://github.com/auth0/auth0-angular/blob/main/EXAMPLES.md), and [FAQ](https://github.com/auth0/auth0-angular/blob/main/FAQ.md) and have not...
PagedList.getTotalSize does not return -1 if the count query is disabled as stated in the Javadoc. Blaze-Persistence version: 1.6.17
When using `CriteriaBuilder.fetch()` with nested paths the join fetches are not present in the object query with pagination. As a workaround, the subpaths have to be passed to `fetch()` individually,...
Consider adding the following method to EntityViewAwareRepository. ```java Page findAll(Specification specification, Pageable pageable, boolean includeTotalCount, String... fetch); ``` Potential implementation: ```java @Override public Page findAll(Specification specification, Pageable pageable, boolean includeTotalCount,...