stevenzwu commented on code in PR #14381:
URL: https://github.com/apache/iceberg/pull/14381#discussion_r2446296037
##########
flink/v2.1/flink/src/test/java/org/apache/iceberg/flink/sink/shuffle/Fixtures.java:
##########
@@ -44,7 +43,7 @@ private Fixtures() {}
Types.NestedField.optional(1, "id", Types.StringType.get()),
Types.NestedField.optional(2, "number", Types.IntegerType.get()));
public static final RowType ROW_TYPE = RowType.of(new VarCharType(), new
IntType());
- public static final TypeSerializer<RowData> ROW_SERIALIZER = new
RowDataSerializer(ROW_TYPE);
+ public static final RowDataSerializer ROW_SERIALIZER = new
RowDataSerializer(ROW_TYPE);
Review Comment:
store it in the more specific type to use the
`RowDataSerializer.toBinaryRow` method in test
--
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]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]