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

jiangtian 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 465170bac57 Adjust error message (#17084)
465170bac57 is described below

commit 465170bac578eb9d2d80fe015d53788f9fab4db5
Author: libo <[email protected]>
AuthorDate: Tue Jan 27 16:19:44 2026 +0800

    Adjust error message (#17084)
    
    * Fix the problem that "StateMachineProceduree not set next state, but 
return HAS_MORE_STATE".
    
    * Adjust error message.
---
 .../procedure/impl/schema/AlterTimeSeriesDataTypeProcedure.java    | 7 ++-----
 1 file changed, 2 insertions(+), 5 deletions(-)

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 05daf8c900d..2bbfde0e142 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
@@ -235,11 +235,8 @@ public class AlterTimeSeriesDataTypeProcedure
                 new ProcedureException(
                     new MetadataException(
                         String.format(
-                            "Alter timeseries %s data type from %s to %s in 
schema regions failed. Failures: %s",
-                            measurementPath.getFullPath(),
-                            measurementPath.getSeriesType(),
-                            dataType,
-                            printFailureMap()))));
+                            "Alter timeseries %s data type to %s in schema 
regions failed. Failures: %s",
+                            measurementPath.getFullPath(), dataType, 
printFailureMap()))));
             interruptTask();
           }
         };

Reply via email to