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


##########
streams/src/main/java/org/apache/kafka/streams/kstream/internals/KStreamAggProcessorSupplier.java:
##########
@@ -16,12 +16,17 @@
  */
 package org.apache.kafka.streams.kstream.internals;
 
+import org.apache.kafka.common.utils.Bytes;
 import org.apache.kafka.streams.processor.api.ProcessorSupplier;
 
 public interface KStreamAggProcessorSupplier<KIn, VIn, KAgg, VAgg> extends 
ProcessorSupplier<KIn, VIn, KAgg, Change<VAgg>> {
 
     KTableValueGetterSupplier<KAgg, VAgg> view();
 
+    default KTableValueGetterSupplier<Bytes, byte[]> rawView() {

Review Comment:
   This has only a default to make the code compile -- we should remove a 
default to force all classes to provide a proper implementation -- seems no 
test fails, what means we actually have tests to add for case that should fail 
with NPE now.



-- 
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