File tree 1 file changed +6
-0
lines changed
src/main/java/org/springframework/data/couchbase/repository/query
1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change 21
21
import org .springframework .data .couchbase .core .convert .CouchbaseConverter ;
22
22
import org .springframework .data .couchbase .core .query .N1QLExpression ;
23
23
import org .springframework .data .domain .Pageable ;
24
+ import org .springframework .data .domain .ScrollPosition ;
24
25
import org .springframework .data .domain .Sort ;
25
26
import org .springframework .data .repository .query .ParameterAccessor ;
26
27
import org .springframework .data .repository .query .parser .PartTree ;
@@ -50,6 +51,11 @@ public CountParameterAccessor(ParameterAccessor delegate) {
50
51
this .delegate = delegate ;
51
52
}
52
53
54
+ @ Override
55
+ public ScrollPosition getScrollPosition () {
56
+ return delegate .getScrollPosition ();
57
+ }
58
+
53
59
public Pageable getPageable () {
54
60
return delegate .getPageable ().isPaged () ? new CountPageable (delegate .getPageable ()) : Pageable .unpaged ();
55
61
}
You can’t perform that action at this time.
0 commit comments