Caideyipi commented on code in PR #12149:
URL: https://github.com/apache/iotdb/pull/12149#discussion_r1521318542


##########
iotdb-core/confignode/src/main/java/org/apache/iotdb/confignode/consensus/request/ConfigPhysicalPlan.java:
##########
@@ -431,6 +437,23 @@ public static ConfigPhysicalPlan create(ByteBuffer buffer) 
throws IOException {
         case PipeEnriched:
           plan = new PipeEnrichedPlan();
           break;
+        case CreateTopic:
+          plan = new CreateTopicPlan();
+          break;
+        case DropTopic:
+          plan = new DropTopicPlan();
+          break;
+        case ShowTopic:
+          plan = new ShowTopicPlan();
+          break;
+        case AlterTopic:
+          plan = new AlterTopicPlan();
+          break;
+        case AlterConsumerGroup:
+          plan = new AlterConsumerGroupPlan();
+          break;
+        case ShowSubscription:
+          plan = new ShowSubscriptionPlan();

Review Comment:
   ...



-- 
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: reviews-unsubscr...@iotdb.apache.org

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

Reply via email to