You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@doris.apache.org by mo...@apache.org on 2022/06/20 14:39:38 UTC

[doris] branch master updated: [fix](compile) Fix compile error in external file scan node (#10274)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new dd39287a0a [fix](compile) Fix compile error in external file scan node (#10274)
dd39287a0a is described below

commit dd39287a0a883c9b4eaad3c9605e3f8081504467
Author: huangzhaowei <hu...@bytedance.com>
AuthorDate: Mon Jun 20 22:39:32 2022 +0800

    [fix](compile) Fix compile error in external file scan node (#10274)
---
 .../java/org/apache/doris/planner/external/ExternalFileScanNode.java   | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/fe/fe-core/src/main/java/org/apache/doris/planner/external/ExternalFileScanNode.java b/fe/fe-core/src/main/java/org/apache/doris/planner/external/ExternalFileScanNode.java
index 8be039b30f..0c6e66e2d2 100644
--- a/fe/fe-core/src/main/java/org/apache/doris/planner/external/ExternalFileScanNode.java
+++ b/fe/fe-core/src/main/java/org/apache/doris/planner/external/ExternalFileScanNode.java
@@ -39,6 +39,7 @@ import org.apache.doris.mysql.privilege.UserProperty;
 import org.apache.doris.planner.PlanNodeId;
 import org.apache.doris.qe.ConnectContext;
 import org.apache.doris.resource.Tag;
+import org.apache.doris.statistics.StatisticalType;
 import org.apache.doris.system.Backend;
 import org.apache.doris.system.BeSelectionPolicy;
 import org.apache.doris.thrift.TBrokerRangeDesc;
@@ -157,7 +158,7 @@ public class ExternalFileScanNode extends ExternalScanNode {
             PlanNodeId id,
             TupleDescriptor desc,
             String planNodeName) throws MetaNotFoundException {
-        super(id, desc, planNodeName, NodeType.BROKER_SCAN_NODE);
+        super(id, desc, planNodeName, StatisticalType.BROKER_SCAN_NODE);
 
         this.hmsTable = (HMSExternalTable) desc.getTable();
 


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org