Struct datafusion::sql::parser::CreateExternalTable [−][src]
pub struct CreateExternalTable {
pub name: String,
pub columns: Vec<ColumnDef>,
pub file_type: FileType,
pub has_header: bool,
pub location: String,
}
Expand description
DataFusion extension DDL for CREATE EXTERNAL TABLE
Fields
name: String
Table name
columns: Vec<ColumnDef>
Optional schema
file_type: FileType
File type (Parquet, NDJSON, CSV)
has_header: bool
CSV Header row?
location: String
Path to file
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for CreateExternalTable
impl Send for CreateExternalTable
impl Sync for CreateExternalTable
impl Unpin for CreateExternalTable
impl UnwindSafe for CreateExternalTable
Blanket Implementations
Mutably borrows from an owned value. Read more