Deprecated: The each() function is deprecated. This message will be suppressed on further calls in /home/zhenxiangba/zhenxiangba.com/public_html/phproxy-improved-master/index.php on line 456
datafusion::dfparser::DFASTNode - Rust
[go: Go Back, main page]

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 SQL AST node

DDL for creating an external table in DataFusion

Fields of CreateExternalTable

Table name

Optional schema

File type (Parquet, NDJSON, CSV)

Header row?

Path to file

Trait Implementations

impl Debug for DFASTNode
[src]

Formats the value using the given formatter. Read more

impl Clone for DFASTNode
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for DFASTNode

impl Sync for DFASTNode