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

Method build

datafusion/expr/src/logical_plan/ddl.rs:372–389  ·  view source on GitHub ↗

Build the [`CreateExternalTable`]

(self)

Source from the content-addressed store, hash-verified

370
371 /// Build the [`CreateExternalTable`]
372 pub fn build(self) -> CreateExternalTable {
373 CreateExternalTable {
374 schema: self.schema,
375 name: self.name,
376 location: self.location,
377 file_type: self.file_type,
378 table_partition_cols: self.table_partition_cols,
379 if_not_exists: self.if_not_exists,
380 or_replace: self.or_replace,
381 temporary: self.temporary,
382 definition: self.definition,
383 order_exprs: self.order_exprs,
384 unbounded: self.unbounded,
385 options: self.options,
386 constraints: self.constraints,
387 column_defaults: self.column_defaults,
388 }
389 }
390}
391
392// Hashing refers to a subset of fields considered in PartialEq.

Calls

no outgoing calls