Skip to content

Commit 66c9da0

Browse files
committed
documentation
Signed-off-by: Artemiy Chereshnevvv <chereshnevvv4real@gmail.com>
1 parent a69b430 commit 66c9da0

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

spring-data-jdbc/src/main/java/org/springframework/data/jdbc/repository/query/PartTreeJdbcQuery.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -260,6 +260,11 @@ private JdbcQueryExecution<?> getJdbcQueryExecution(@Nullable ResultSetExtractor
260260
}
261261
}
262262

263+
/**
264+
* {@link JdbcQueryExecution} returning a {@link org.springframework.data.domain.Window}
265+
*
266+
* @param <T>
267+
*/
263268
static class ScrollQueryExecution<T> implements JdbcQueryExecution<Window<T>> {
264269
private final JdbcQueryExecution<? extends Collection<T>> delegate;
265270
private final @Nullable ScrollPosition position;

spring-data-jdbc/src/test/java/org/springframework/data/jdbc/repository/query/PartTreeJdbcQueryUnitTests.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@
6161
* @author Jens Schauder
6262
* @author Myeonghyeon Lee
6363
* @author Diego Krupitza
64+
* @author Artemiy Degtyarev
6465
*/
6566
@ExtendWith(MockitoExtension.class)
6667
public class PartTreeJdbcQueryUnitTests {

0 commit comments

Comments
 (0)