(
&self,
_order: &[PhysicalSortExpr],
_eq_properties: &EquivalenceProperties,
)
| 272 | note = "Renamed to try_pushdown_sort. This method was never limited to reversing output. It will be removed in 59.0.0 or later." |
| 273 | )] |
| 274 | fn try_reverse_output( |
| 275 | &self, |
| 276 | _order: &[PhysicalSortExpr], |
| 277 | _eq_properties: &EquivalenceProperties, |
| 278 | ) -> Result<SortOrderPushdownResult<Arc<dyn FileSource>>> { |
| 279 | Ok(SortOrderPushdownResult::Unsupported) |
| 280 | } |
| 281 | |
| 282 | /// Reorder files in the shared work queue to optimize query performance. |
| 283 | /// |
no outgoing calls
no test coverage detected