cgivre commented on code in PR #2633: URL: https://github.com/apache/drill/pull/2633#discussion_r957380889
########## 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: Oops... Fixed. -- 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: dev-unsubscr...@drill.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org