(
&self,
_logical_file_schema: SchemaRef,
physical_file_schema: SchemaRef,
)
| 149 | |
| 150 | impl PhysicalExprAdapterFactory for TestPhysicalExprAdapterFactory { |
| 151 | fn create( |
| 152 | &self, |
| 153 | _logical_file_schema: SchemaRef, |
| 154 | physical_file_schema: SchemaRef, |
| 155 | ) -> Result<Arc<dyn PhysicalExprAdapter>> { |
| 156 | Ok(Arc::new(TestPhysicalExprAdapter { |
| 157 | physical_file_schema, |
| 158 | })) |
| 159 | } |
| 160 | } |
| 161 | |
| 162 | #[derive(Debug)] |
no test coverage detected