mjsax commented on code in PR #14570:
URL: https://github.com/apache/kafka/pull/14570#discussion_r1373981478


##########
streams/src/main/java/org/apache/kafka/streams/state/internals/WrappedStateStore.java:
##########
@@ -34,6 +34,9 @@
 public abstract class WrappedStateStore<S extends StateStore, K, V> implements 
StateStore, CachedStateStore<K, V> {
 
     public static boolean isTimestamped(final StateStore stateStore) {
+        if (stateStore instanceof 
KeyValueToTimestampedKeyValueByteStoreAdapter) {

Review Comment:
   We should not add this case, but rather let 
`KeyValueToTimestampedKeyValueByteStoreAdapter` implement the marker interface 
`TimestampedBytesStore` such that the existing condition returns `true` for 
this 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

Reply via email to