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

haonan 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 7a462720ea8 Fix typos: 'occured' in log, 'seperated' in comments 
(#17488)
7a462720ea8 is described below

commit 7a462720ea853d5d67ab8e957003f9396d61b5b0
Author: Mukunda Rao Katta <[email protected]>
AuthorDate: Thu Apr 16 03:19:05 2026 -0700

    Fix typos: 'occured' in log, 'seperated' in comments (#17488)
    
    Co-authored-by: MukundaKatta <[email protected]>
---
 .../java/org/apache/iotdb/confignode/procedure/ProcedureExecutor.java | 2 +-
 .../db/queryengine/plan/planner/distribution/SourceRewriter.java      | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git 
a/iotdb-core/confignode/src/main/java/org/apache/iotdb/confignode/procedure/ProcedureExecutor.java
 
b/iotdb-core/confignode/src/main/java/org/apache/iotdb/confignode/procedure/ProcedureExecutor.java
index efd37778efa..cd1660862c7 100644
--- 
a/iotdb-core/confignode/src/main/java/org/apache/iotdb/confignode/procedure/ProcedureExecutor.java
+++ 
b/iotdb-core/confignode/src/main/java/org/apache/iotdb/confignode/procedure/ProcedureExecutor.java
@@ -666,7 +666,7 @@ public class ProcedureExecutor<Env> {
     } catch (IOException e) {
       LOG.error("Roll back failed for {}", procedure, e);
     } catch (InterruptedException e) {
-      LOG.warn("Interrupted exception occured for {}", procedure, e);
+      LOG.warn("Interrupted exception occurred for {}", procedure, e);
     } catch (Throwable t) {
       LOG.error("CODE-BUG: runtime exception for {}", procedure, t);
     }
diff --git 
a/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/queryengine/plan/planner/distribution/SourceRewriter.java
 
b/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/queryengine/plan/planner/distribution/SourceRewriter.java
index 4e69469a497..9e1d402da5d 100644
--- 
a/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/queryengine/plan/planner/distribution/SourceRewriter.java
+++ 
b/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/queryengine/plan/planner/distribution/SourceRewriter.java
@@ -1376,7 +1376,7 @@ public class SourceRewriter extends 
BaseSourceRewriter<DistributionPlanContext>
     Map<String, Map<Integer, List<TRegionReplicaSet>>> cachedRegionReplicas = 
new HashMap<>();
     for (PlanNode child : node.getChildren()) {
       if (child instanceof SeriesSourceNode) {
-        // If the child is SeriesScanNode, we need to check whether this node 
should be seperated
+        // If the child is SeriesScanNode, we need to check whether this node 
should be separated
         // into several splits.
         SeriesSourceNode sourceNode = (SeriesSourceNode) child;
         List<TRegionReplicaSet> dataDistribution =
@@ -1389,7 +1389,7 @@ public class SourceRewriter extends 
BaseSourceRewriter<DistributionPlanContext>
           // If there is some series which is distributed in multi DataRegions
           context.setOneSeriesInMultiRegion(true);
         }
-        // If the size of dataDistribution is N, this SeriesScanNode should be 
seperated into N
+        // If the size of dataDistribution is N, this SeriesScanNode should be 
separated into N
         // SeriesScanNode.
         for (TRegionReplicaSet dataRegion : dataDistribution) {
           SeriesSourceNode split =

Reply via email to