MCPcopy Create free account
hub / github.com/apache/datafusion / with_preserve_order

Method with_preserve_order

datafusion/datasource/src/source.rs:512–522  ·  view source on GitHub ↗
(
        &self,
        preserve_order: bool,
    )

Source from the content-addressed store, hash-verified

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,

Callers

nothing calls this directly

Calls 4

newFunction · 0.85
with_data_sourceMethod · 0.80
mapMethod · 0.45
cloneMethod · 0.45

Tested by

no test coverage detected