jnturton commented on code in PR #2633:
URL: https://github.com/apache/drill/pull/2633#discussion_r957255881
##########
contrib/storage-http/src/main/java/org/apache/drill/exec/store/http/HttpPaginatorConfig.java:
##########
@@ -137,21 +162,28 @@ public String toString() {
.field("pageSize", pageSize)
.field("maxRecords", maxRecords)
.field("method", method)
+ .field("indexParam", indexParam)
+ .field("hasMoreParam", hasMoreParam)
+ .field("nextPageParam", nextPageParam)
.toString();
}
public enum PaginatorMethod {
OFFSET,
- PAGE
+ PAGE,
+ INDEX
}
- private HttpPaginatorConfig(HttpPaginatorConfig.HttpPaginatorBuilder
builder) {
+ /*private HttpPaginatorConfig(HttpPaginatorConfig.HttpPaginatorConfigBuilder
builder) {
Review Comment:
Is this commented out code meant to be included?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]