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

zyk 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 15a3202baa [IOTDB-3938]Fix measurements check of batch insertion 
(#7022)
15a3202baa is described below

commit 15a3202baadc981da4ece0c18699d2bb2067f30f
Author: Marcos_Zyk <[email protected]>
AuthorDate: Wed Aug 17 08:04:11 2022 +0800

    [IOTDB-3938]Fix measurements check of batch insertion (#7022)
    
    [IOTDB-3938]Fix measurements check of batch insertion #7022
---
 .../src/main/java/org/apache/iotdb/commons/utils/PathUtils.java         | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/node-commons/src/main/java/org/apache/iotdb/commons/utils/PathUtils.java 
b/node-commons/src/main/java/org/apache/iotdb/commons/utils/PathUtils.java
index 474010392c..ccdf8921ca 100644
--- a/node-commons/src/main/java/org/apache/iotdb/commons/utils/PathUtils.java
+++ b/node-commons/src/main/java/org/apache/iotdb/commons/utils/PathUtils.java
@@ -65,7 +65,7 @@ public class PathUtils {
       return;
     }
     for (List<String> measurements : measurementLists) {
-      isLegalMeasurements(measurements);
+      isLegalSingleMeasurements(measurements);
     }
   }
 

Reply via email to