vpapavas commented on a change in pull request #11557: URL: https://github.com/apache/kafka/pull/11557#discussion_r760254988
########## File path: streams/src/main/java/org/apache/kafka/streams/state/internals/TimestampedKeyValueStoreBuilder.java ########## @@ -184,6 +187,20 @@ public boolean isOpen() { return wrapped.isOpen(); } + @Override + public <R> QueryResult<R> query(final Query<R> query, + final PositionBound positionBound, + final boolean collectExecutionInfo) { + + final long start = collectExecutionInfo ? System.nanoTime() : -1L; + final QueryResult<R> result = wrapped.query(query, positionBound, collectExecutionInfo); Review comment: Not related to this PR but why is this not a WrappedStore since it is wrapping another store? -- 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