eric-maynard commented on code in PR #1555: URL: https://github.com/apache/polaris/pull/1555#discussion_r2105647267
########## polaris-core/src/main/java/org/apache/polaris/core/persistence/BasePersistence.java: ########## @@ -413,4 +415,7 @@ boolean hasChildren( default BasePersistence detach() { return this; } + + /** Construct a {@link PageToken} from a {@link PageRequest} */ + PageToken buildPageToken(PageRequest pageRequest); Review Comment: Since all 3 subtypes use it, I think it should be there? It also makes it explicit that when implementing a new `BasePersistence`, you should implement this method. -- 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: issues-unsubscr...@polaris.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org