mjsax commented on code in PR #13564: URL: https://github.com/apache/kafka/pull/13564#discussion_r1166126656
########## streams/src/main/java/org/apache/kafka/streams/kstream/internals/Change.java: ########## @@ -22,10 +22,16 @@ public final T newValue; public final T oldValue; + public final boolean isLatest; public Change(final T newValue, final T oldValue) { + this(newValue, oldValue, true); Review Comment: I think it's fine -- 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