Skip to content

Commit ad4317a

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 11be12c commit ad4317a

File tree

3 files changed

+11
-7
lines changed

3 files changed

+11
-7
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

-1
Original file line numberDiff line numberDiff line change
@@ -735,7 +735,6 @@ protected TypedQuery<T> getQuery(@Nullable Specification<T> spec, Pageable pagea
735735
*/
736736
protected <S extends T> TypedQuery<S> getQuery(@Nullable Specification<S> spec, Class<S> domainClass,
737737
Pageable pageable) {
738-
739738
return getQuery(spec, domainClass, pageable.getSort());
740739
}
741740

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)