vvcephei commented on a change in pull request #11406: URL: https://github.com/apache/kafka/pull/11406#discussion_r731306180
########## File path: streams/src/main/java/org/apache/kafka/streams/state/internals/InMemoryKeyValueStore.java ########## @@ -72,6 +74,11 @@ public boolean isOpen() { return open; } + @Override + public <R> QueryResult<R> query(final Query<R> query, final Map<String, Map<Integer, Long>> offsetBound) { + return StoreQueryUtils.requireKVQuery(query, this); Review comment: Oooh, good catch :) -- 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