SWJTU-ZhangLei commented on code in PR #36349:
URL: https://github.com/apache/doris/pull/36349#discussion_r1642073731


##########
fe/fe-core/src/main/java/org/apache/doris/catalog/BrokerTable.java:
##########
@@ -209,24 +214,7 @@ public TTableDescriptor toThrift() {
         return tTableDescriptor;
     }
 
-    @Override
-    public void write(DataOutput out) throws IOException {
-        super.write(out);
-
-        Text.writeString(out, brokerName);
-        out.writeInt(paths.size());
-        for (String path : paths) {
-            Text.writeString(out, path);
-        }
-        Text.writeString(out, columnSeparator);
-        Text.writeString(out, lineDelimiter);
-        out.writeInt(brokerProperties.size());
-        for (Map.Entry<String, String> prop : brokerProperties.entrySet()) {
-            Text.writeString(out, prop.getKey());
-            Text.writeString(out, prop.getValue());
-        }
-    }
-
+    @Deprecated
     public void readFields(DataInput in) throws IOException {

Review Comment:
   brokerTable and other external table need modify readField?
   



-- 
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: commits-unsubscr...@doris.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org

Reply via email to