pub trait PhysicalExprAdapterFactory: Send + Sync + Debug { // Required method fn create( &self, logical_file_schema: SchemaRef, physical_file_schema: SchemaRef, ) -> Arc<dyn PhysicalExprAdapter>; }
Create a new instance of the physical expression adapter.