SteveYurongSu commented on code in PR #9245:
URL: https://github.com/apache/iotdb/pull/9245#discussion_r1130646200


##########
server/src/main/java/org/apache/iotdb/db/mpp/plan/statement/sys/sync/CreatePipeStatement.java:
##########
@@ -98,28 +98,48 @@ public static CreatePipeStatement parseString(String 
parsedString) throws IOExce
     }
     CreatePipeStatement statement = new 
CreatePipeStatement(StatementType.CREATE_PIPE);
     statement.setPipeName(split[0]);
-    statement.setPipeSinkName(split[1]);
-    statement.setStartTime(Long.parseLong(split[2]));
-    int size = (Integer.parseInt(split[3]) << 1);
-    if (split.length != (size + 4)) {
+    int collectorSize = (Integer.parseInt(split[1]) << 1);

Review Comment:
   This method has no referrence, can we remove it?



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