chore: impl metrics method on df execution plan adapter

This commit is contained in:
shuiyisong
2023-06-19 17:59:57 +08:00
parent 5b3b2a6faf
commit fd37d4630c

View File

@@ -203,6 +203,10 @@ impl DfPhysicalPlan for DfPhysicalPlanAdapter {
Ok(Box::pin(DfRecordBatchStreamAdapter::new(stream)))
}
fn metrics(&self) -> Option<MetricsSet> {
self.0.metrics()
}
fn statistics(&self) -> Statistics {
Statistics::default()
}