I’m doing a simple select query using Micronaut Data v4.4.0 like so:
myRepository.findAll(specification, Pageable.from(0, 10));
My repo is:
@JdbcRepository(dialect = Dialect.ANSI)
public interface RequestRepository extends CrudRepository<Request, String>
{
Page<Request> findAll(PredicateSpecification<Request> specification, Pageable page);
}
I out a breakpoint, and I can see that though the `size` is `10`, the size of `content` is still `1` instead of `10`
I tried the same with a PageableRepository
as well but the result is the same.
Am I doing something wrong? Or is this a Micronaut bug?