hailin0 commented on code in PR #5992:
URL: https://github.com/apache/seatunnel/pull/5992#discussion_r1599843983


##########
seatunnel-formats/seatunnel-format-avro/src/main/java/org/apache/seatunnel/format/avro/AvroDeserializationSchema.java:
##########
@@ -27,24 +29,33 @@
 import org.apache.avro.io.DecoderFactory;
 
 import java.io.IOException;
+import java.util.Optional;
 
 public class AvroDeserializationSchema implements 
DeserializationSchema<SeaTunnelRow> {
 
     private static final long serialVersionUID = -7907358485475741366L;
 
     private final SeaTunnelRowType rowType;
     private final AvroToRowConverter converter;
+    private final CatalogTable catalogTable;
 
-    public AvroDeserializationSchema(SeaTunnelRowType rowType) {
+    public AvroDeserializationSchema(SeaTunnelRowType rowType, CatalogTable 
catalogTable) {

Review Comment:
   ```suggestion
       public AvroDeserializationSchema(CatalogTable catalogTable) {
   ```



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