Skip to content

Commit d08b69d

Browse files
authored
Fix double-sorting usung limit of FetchableFluentQueryBySpecification.
Closes #3600 Original pull request: #3601
1 parent b00220b commit d08b69d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ public FetchableFluentQuery<R> limit(int limit) {
9898

9999
Assert.isTrue(limit >= 0, "Limit must not be negative");
100100

101-
return new FetchableFluentQueryBySpecification<>(spec, entityType, resultType, this.sort.and(sort), limit,
101+
return new FetchableFluentQueryBySpecification<>(spec, entityType, resultType, sort, limit,
102102
properties, finder, scroll, countOperation, existsOperation, entityManager, projectionFactory);
103103
}
104104

0 commit comments

Comments
 (0)