From 5b3b2a6faf9a8e5afbb262b36fdbef93475ddcb8 Mon Sep 17 00:00:00 2001 From: shuiyisong Date: Wed, 14 Jun 2023 17:22:28 +0800 Subject: [PATCH] chore: remove unused code --- src/common/query/src/physical_plan.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/common/query/src/physical_plan.rs b/src/common/query/src/physical_plan.rs index 05faf00d5d..fd767a121e 100644 --- a/src/common/query/src/physical_plan.rs +++ b/src/common/query/src/physical_plan.rs @@ -203,10 +203,6 @@ impl DfPhysicalPlan for DfPhysicalPlanAdapter { Ok(Box::pin(DfRecordBatchStreamAdapter::new(stream))) } - fn metrics(&self) -> Option { - self.0.metrics() - } - fn statistics(&self) -> Statistics { Statistics::default() }