You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by ha...@apache.org on 2023/03/21 10:43:49 UTC

[iotdb] branch master updated: Fix compilation (#9401)

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 19f46a8f2e Fix compilation (#9401)
19f46a8f2e is described below

commit 19f46a8f2ea529c6988f3c7315c247259d427b4e
Author: ZhangHongYin <46...@users.noreply.github.com>
AuthorDate: Tue Mar 21 18:43:43 2023 +0800

    Fix compilation (#9401)
---
 .../java/org/apache/iotdb/db/mpp/plan/parser/StatementGenerator.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/server/src/main/java/org/apache/iotdb/db/mpp/plan/parser/StatementGenerator.java b/server/src/main/java/org/apache/iotdb/db/mpp/plan/parser/StatementGenerator.java
index 630d882f22..0b5510777e 100644
--- a/server/src/main/java/org/apache/iotdb/db/mpp/plan/parser/StatementGenerator.java
+++ b/server/src/main/java/org/apache/iotdb/db/mpp/plan/parser/StatementGenerator.java
@@ -710,7 +710,7 @@ public class StatementGenerator {
       devicePathList.add(new PartialPath(pathString));
     }
     BatchActivateTemplateStatement statement = new BatchActivateTemplateStatement(devicePathList);
-    PerformanceOverviewMetricsManager.recordParseCost(System.nanoTime() - startTime);
+    PERFORMANCE_OVERVIEW_METRICS.recordParseCost(System.nanoTime() - startTime);
     return statement;
   }