(
&self,
preserve_order: bool,
)
| 510 | } |
| 511 | |
| 512 | fn with_preserve_order( |
| 513 | &self, |
| 514 | preserve_order: bool, |
| 515 | ) -> Option<Arc<dyn ExecutionPlan>> { |
| 516 | self.data_source |
| 517 | .with_preserve_order(preserve_order) |
| 518 | .map(|new_data_source| { |
| 519 | Arc::new(self.clone().with_data_source(new_data_source)) |
| 520 | as Arc<dyn ExecutionPlan> |
| 521 | }) |
| 522 | } |
| 523 | |
| 524 | fn with_new_state( |
| 525 | &self, |
nothing calls this directly
no test coverage detected