Skip to content

Commit 412e5ee

Browse files
committed
Consider sort order for unpaged Pageable in Querydsl.
We now apply sorting using Querydsl for Pageable that is sorted but not paged. Closes #3761
1 parent 0037b81 commit 412e5ee

File tree

3 files changed

+11
-8
lines changed

3 files changed

+11
-8
lines changed

spring-data-jpa/src/main/java/org/springframework/data/jpa/repository/support/Querydsl.java

+4-5
Original file line numberDiff line numberDiff line change
@@ -108,12 +108,11 @@ public <T> JPQLQuery<T> applyPagination(Pageable pageable, JPQLQuery<T> query) {
108108
Assert.notNull(pageable, "Pageable must not be null");
109109
Assert.notNull(query, "JPQLQuery must not be null");
110110

111-
if (pageable.isUnpaged()) {
112-
return query;
113-
}
111+
if (pageable.isPaged()) {
114112

115-
query.offset(pageable.getOffset());
116-
query.limit(pageable.getPageSize());
113+
query.offset(pageable.getOffset());
114+
query.limit(pageable.getPageSize());
115+
}
117116

118117
return applySorting(pageable.getSort(), query);
119118
}

spring-data-jpa/src/main/java/org/springframework/data/jpa/repository/support/SimpleJpaRepository.java

-2
Original file line numberDiff line numberDiff line change
@@ -723,7 +723,6 @@ protected <S extends T> Page<S> readPage(TypedQuery<S> query, final Class<S> dom
723723
* @param pageable must not be {@literal null}.
724724
*/
725725
protected TypedQuery<T> getQuery(@Nullable Specification<T> spec, Pageable pageable) {
726-
727726
return getQuery(spec, getDomainClass(), pageable.getSort());
728727
}
729728

@@ -736,7 +735,6 @@ protected TypedQuery<T> getQuery(@Nullable Specification<T> spec, Pageable pagea
736735
*/
737736
protected <S extends T> TypedQuery<S> getQuery(@Nullable Specification<S> spec, Class<S> domainClass,
738737
Pageable pageable) {
739-
740738
return getQuery(spec, domainClass, pageable.getSort());
741739
}
742740

spring-data-jpa/src/test/java/org/springframework/data/jpa/repository/support/QuerydslJpaPredicateExecutorUnitTests.java

+7-1
Original file line numberDiff line numberDiff line change
@@ -282,9 +282,15 @@ void shouldSupportFindAllWithPredicateAndSort() {
282282
assertThat(users).contains(carter, dave, oliver);
283283
}
284284

285-
@Test // DATAJPA-585
285+
@Test // DATAJPA-585, 3761
286286
void worksWithUnpagedPageable() {
287+
287288
assertThat(predicateExecutor.findAll(user.dateOfBirth.isNull(), Pageable.unpaged()).getContent()).hasSize(3);
289+
290+
Page<User> users = predicateExecutor.findAll(user.dateOfBirth.isNull(),
291+
Pageable.unpaged(Sort.by(Direction.ASC, "firstname")));
292+
293+
assertThat(users).containsExactly(carter, dave, oliver);
288294
}
289295

290296
@Test // DATAJPA-912

0 commit comments

Comments
 (0)