patrickstuedi commented on a change in pull request #11581: URL: https://github.com/apache/kafka/pull/11581#discussion_r766603920
########## File path: streams/src/main/java/org/apache/kafka/streams/state/internals/StoreQueryUtils.java ########## @@ -62,4 +71,32 @@ public static void updatePosition( position.withComponent(meta.topic(), meta.partition(), meta.offset()); } } + + public static boolean isPermitted( + final Position position, + final PositionBound positionBound, + final int partition + ) { + if (positionBound.isUnbounded()) { Review comment: Sounds good, thanks for thinking about it. -- 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: jira-unsubscr...@kafka.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org