Sxnan commented on code in PR #23521:
URL: https://github.com/apache/flink/pull/23521#discussion_r1384473467
##########
flink-streaming-java/src/main/java/org/apache/flink/streaming/runtime/streamrecord/StreamElementSerializer.java:
##########
@@ -146,6 +147,8 @@ public void copy(DataInputView source, DataOutputView
target) throws IOException
target.writeLong(source.readLong());
target.writeLong(source.readLong());
target.writeInt(source.readInt());
+ } else if (tag == TAG_RECORD_ATTRIBUTES) {
+ target.writeBoolean(source.readBoolean());
Review Comment:
`InternalRecordAttributes` should only be used internally in an operator
chain. It is not expected to be serialized and deserialized.
--
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]