pub trait PhysicalPlanWrapper:
Send
+ Sync
+ 'static {
// Required method
fn wrap(
&self,
origin: Arc<dyn ExecutionPlan>,
ctx: QueryContextRef,
) -> Arc<dyn ExecutionPlan>;
}
Expand description
wrap physical plan with additional layer e.g: metrics retrieving layer upon physical plan