-
Notifications
You must be signed in to change notification settings - Fork 691
Closed
Labels
type: bugA general bugA general bug
Milestone
Description
This fragment
spring-data-commons/src/main/java/org/springframework/data/repository/query/ResultProcessor.java
Lines 146 to 148 in ee004b0
if (source instanceof Slice && method.isPageQuery() || method.isSliceQuery()) { | |
return (T) ((Slice<?>) source).map(converter::convert); | |
} |
assumes that if the method is a slice method, the non converted result is already a slice, which does fail if it is a plain collection.
Metadata
Metadata
Assignees
Labels
type: bugA general bugA general bug