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

Method schema

datafusion/core/src/datasource/file_format/options.rs:192–195  ·  view source on GitHub ↗

Specify schema to use for CSV read

(mut self, schema: &'a Schema)

Source from the content-addressed store, hash-verified

190
191 /// Specify schema to use for CSV read
192 pub fn schema(mut self, schema: &'a Schema) -> Self {
193 self.schema = Some(schema);
194 self
195 }
196
197 /// Specify table_partition_cols for partition pruning
198 pub fn table_partition_cols(

Calls

no outgoing calls