Chuckame commented on code in PR #16218:
URL: https://github.com/apache/kafka/pull/16218#discussion_r1694797315


##########
streams/src/main/java/org/apache/kafka/streams/kstream/internals/foreignkeyjoin/CombinedKeySchema.java:
##########
@@ -94,7 +94,7 @@ public CombinedKey<KO, K> fromBytes(final Bytes data) {
         return new CombinedKey<>(foreignKey, primaryKey);
     }
 
-    Bytes prefixBytes(final KO key) {
+    public Bytes prefixBytes(final KO key) {

Review Comment:
   ```suggestion
       Bytes prefixBytes(final KO key) {
   ```



##########
streams/src/main/java/org/apache/kafka/streams/kstream/internals/foreignkeyjoin/CombinedKeySchema.java:
##########
@@ -60,7 +60,7 @@ public void init(final ProcessorContext<?, ?> context) {
         foreignKeyDeserializer = foreignKeyDeserializer == null ? 
(Deserializer<KO>) context.keySerde().deserializer() : foreignKeyDeserializer;
     }
 
-    Bytes toBytes(final KO foreignKey, final K primaryKey) {
+    public Bytes toBytes(final KO foreignKey, final K primaryKey) {

Review Comment:
   ```suggestion
       Bytes toBytes(final KO foreignKey, final K primaryKey) {
   ```



-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to