opwvhk commented on code in PR #1776:
URL: https://github.com/apache/avro/pull/1776#discussion_r927516201
##########
lang/java/avro/src/test/java/org/apache/avro/io/LegacyBinaryEncoder.java:
##########
@@ -178,6 +178,11 @@ public void writeIndex(int unionIndex) throws IOException {
encodeLong(unionIndex, out);
}
+ @Override
+ public void writeExtends(int extendsIndex) throws IOException {
+ encodeLong(extendsIndex, out);
Review Comment:
Should the extends clause be supported by the legacy encoder at all?
Or should it throw?
--
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]