pub trait PhysicalExprAdapterFactory:
Send
+ Sync
+ Debug {
// Required method
fn create(
&self,
logical_file_schema: Arc<Schema>,
physical_file_schema: Arc<Schema>,
) -> Arc<dyn PhysicalExprAdapter>;
}