pub trait PhysicalExprAdapterFactory:
Send
+ Sync
+ Debug {
// Required method
fn create(
&self,
logical_file_schema: SchemaRef,
physical_file_schema: SchemaRef,
) -> Arc<dyn PhysicalExprAdapter>;
}Expand description
Creates instances of PhysicalExprAdapter for given logical and physical schemas.
See DefaultPhysicalExprAdapterFactory for the default implementation.