vpapavas commented on a change in pull request #11682: URL: https://github.com/apache/kafka/pull/11682#discussion_r787752628
########## File path: streams/src/main/java/org/apache/kafka/streams/processor/StateStore.java ########## @@ -148,8 +150,12 @@ default void init(final StateStoreContext context, final StateStore root) { default <R> QueryResult<R> query( Query<R> query, PositionBound positionBound, - boolean collectExecutionInfo) { + QueryConfig config) { // If a store doesn't implement a query handler, then all queries are unknown. return QueryResult.forUnknownQueryType(query, this); } + + default Position getPosition() { + return Position.emptyPosition(); + } Review comment: I thought I already did that? Can you give me an example of state store that I am missing? I thought that all state stores that need to handle the position were already covered by our previous PRs -- 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