This is an automated email from the ASF dual-hosted git repository.

yongzao pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/iotdb.git


The following commit(s) were added to refs/heads/master by this push:
     new f4e8521f021 Fix the problem that "StateMachineProceduree not set next 
state, but return HAS_MORE_STATE". (#17058)
f4e8521f021 is described below

commit f4e8521f0217a0dbc443ef3f9708c28c2b7bc8fd
Author: libo <[email protected]>
AuthorDate: Thu Jan 22 09:35:21 2026 +0800

    Fix the problem that "StateMachineProceduree not set next state, but return 
HAS_MORE_STATE". (#17058)
---
 .../procedure/impl/schema/AlterTimeSeriesDataTypeProcedure.java         | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/iotdb-core/confignode/src/main/java/org/apache/iotdb/confignode/procedure/impl/schema/AlterTimeSeriesDataTypeProcedure.java
 
b/iotdb-core/confignode/src/main/java/org/apache/iotdb/confignode/procedure/impl/schema/AlterTimeSeriesDataTypeProcedure.java
index ccd83014f64..ad1d04ca6ee 100644
--- 
a/iotdb-core/confignode/src/main/java/org/apache/iotdb/confignode/procedure/impl/schema/AlterTimeSeriesDataTypeProcedure.java
+++ 
b/iotdb-core/confignode/src/main/java/org/apache/iotdb/confignode/procedure/impl/schema/AlterTimeSeriesDataTypeProcedure.java
@@ -124,7 +124,7 @@ public class AlterTimeSeriesDataTypeProcedure
               this::setFailure,
               true);
           collectPayload4Pipe(env);
-          break;
+          return Flow.NO_MORE_STATE;
         default:
           setFailure(
               new ProcedureException(

Reply via email to