jt2594838 commented on code in PR #17079:
URL: https://github.com/apache/iotdb/pull/17079#discussion_r2937754983


##########
iotdb-core/confignode/src/main/java/org/apache/iotdb/confignode/consensus/request/write/table/RenameTableColumnPlan.java:
##########
@@ -19,58 +19,61 @@
 
 package org.apache.iotdb.confignode.consensus.request.write.table;
 
+import org.apache.iotdb.commons.utils.IOUtils;
 import org.apache.iotdb.confignode.consensus.request.ConfigPhysicalPlanType;
 
-import org.apache.tsfile.utils.ReadWriteIOUtils;
-
 import java.io.DataOutputStream;
 import java.io.IOException;
 import java.nio.ByteBuffer;
+import java.util.List;
 
 public class RenameTableColumnPlan extends AbstractTablePlan {
 
-  private String oldName;
-  private String newName;
+  private List<String> oldNames;
+  private List<String> newNames;

Review Comment:
   Added compatibility



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