Enum datafusion::dfparser::DFASTNode [−][src]
pub enum DFASTNode { ANSI(ASTNode), CreateExternalTable { name: String, columns: Vec<SQLColumnDef>, file_type: FileType, header_row: bool, location: String, }, }
Variants
ANSI(ASTNode)
ANSI SQL AST node
CreateExternalTable
DDL for creating an external table in DataFusion
Fields of CreateExternalTable
name: String | Table name |
columns: Vec<SQLColumnDef> | Optional schema |
file_type: FileType | File type (Parquet, NDJSON, CSV) |
header_row: bool | Header row? |
location: String | Path to file |
Trait Implementations
impl Debug for DFASTNode
[src]
impl Debug for DFASTNode
fn fmt(&self, f: &mut Formatter) -> Result
[src]
fn fmt(&self, f: &mut Formatter) -> Result
Formats the value using the given formatter. Read more
impl Clone for DFASTNode
[src]
impl Clone for DFASTNode