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

Method build

datafusion/core/tests/physical_optimizer/pushdown_utils.rs:265–276  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

263 }
264
265 pub fn build(self) -> Arc<dyn ExecutionPlan> {
266 let source = Arc::new(TestSource::new(
267 Arc::clone(&self.schema),
268 self.support,
269 self.batches,
270 ));
271 let base_config =
272 FileScanConfigBuilder::new(ObjectStoreUrl::parse("test://").unwrap(), source)
273 .with_file(PartitionedFile::new("test.parquet", 123))
274 .build();
275 DataSourceExec::from_data_source(base_config)
276 }
277}
278
279/// Index into the data that has been returned so far

Callers 15

custom_source_dataframeFunction · 0.45
count_exprFunction · 0.45
csv_exec_sortedFunction · 0.45
csv_exec_with_sortFunction · 0.45
csv_exec_multiple_sortedFunction · 0.45
parquet_execFunction · 0.45
parquet_exec_with_sortFunction · 0.45
parquet_exec_with_statsFunction · 0.45

Calls 2

newFunction · 0.85
with_fileMethod · 0.45

Tested by

no test coverage detected