This is an automated email from the ASF dual-hosted git repository. chenyz pushed a commit to branch fix_udf_restart in repository https://gitbox.apache.org/repos/asf/iotdb.git
commit 0a66fdd41c2f65b42c21e64ffeafcbdb11e47ed7 Author: Chen YZ <[email protected]> AuthorDate: Fri Dec 13 12:02:38 2024 +0800 fix --- .../apache/iotdb/confignode/consensus/request/ConfigPhysicalPlan.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/iotdb-core/confignode/src/main/java/org/apache/iotdb/confignode/consensus/request/ConfigPhysicalPlan.java b/iotdb-core/confignode/src/main/java/org/apache/iotdb/confignode/consensus/request/ConfigPhysicalPlan.java index 411a5b92072..cc1aaee0555 100644 --- a/iotdb-core/confignode/src/main/java/org/apache/iotdb/confignode/consensus/request/ConfigPhysicalPlan.java +++ b/iotdb-core/confignode/src/main/java/org/apache/iotdb/confignode/consensus/request/ConfigPhysicalPlan.java @@ -50,6 +50,7 @@ import org.apache.iotdb.confignode.consensus.request.write.datanode.UpdateDataNo import org.apache.iotdb.confignode.consensus.request.write.function.CreateFunctionPlan; import org.apache.iotdb.confignode.consensus.request.write.function.DropTableModelFunctionPlan; import org.apache.iotdb.confignode.consensus.request.write.function.DropTreeModelFunctionPlan; +import org.apache.iotdb.confignode.consensus.request.write.function.UpdateFunctionPlan; import org.apache.iotdb.confignode.consensus.request.write.model.CreateModelPlan; import org.apache.iotdb.confignode.consensus.request.write.model.DropModelInNodePlan; import org.apache.iotdb.confignode.consensus.request.write.model.DropModelPlan; @@ -295,6 +296,9 @@ public abstract class ConfigPhysicalPlan implements IConsensusRequest { case CreateFunction: plan = new CreateFunctionPlan(); break; + case UpdateFunction: + plan = new UpdateFunctionPlan(); + break; case DropTreeModelFunction: plan = new DropTreeModelFunctionPlan(); break;
