Jibing-Li commented on code in PR #18342:
URL: https://github.com/apache/doris/pull/18342#discussion_r1161672774


##########
fe/fe-core/src/main/java/org/apache/doris/planner/external/ExternalScanNode.java:
##########
@@ -21,9 +21,12 @@
 import org.apache.doris.planner.PlanNodeId;
 import org.apache.doris.planner.ScanNode;
 import org.apache.doris.statistics.StatisticalType;
-import org.apache.doris.thrift.TPlanNode;
 import org.apache.doris.thrift.TScanRangeLocations;
 
+import com.google.common.collect.Lists;

Review Comment:
   I didn't see a problem here and Check style didn't report any problem.



##########
fe/fe-core/src/main/java/org/apache/doris/planner/external/ExternalScanNode.java:
##########
@@ -33,10 +36,20 @@
  * For example:
  * hive, iceberg, hudi, es, odbc
  */
-public class ExternalScanNode extends ScanNode {
+public abstract class ExternalScanNode extends ScanNode {
+    private static final Logger LOG = 
LogManager.getLogger(ExternalScanNode.class);
 
     // set to false means this scan node does not need to check column priv.
-    private boolean needCheckColumnPriv;
+    protected boolean needCheckColumnPriv;
+
+    // For explain
+    protected long inputSplitsNum = 0;

Review Comment:
   I Will fix this in next pr



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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

Reply via email to