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::rel::Rel - Rust
[go: Go Back, main page]

Enum datafusion::rel::Rel [] [src]

pub enum Rel {
    Projection {
        expr: Vec<Rex>,
        input: Box<Rel>,
        schema: TupleType,
    },
    Selection {
        expr: Rex,
        input: Box<Rel>,
        schema: TupleType,
    },
    TableScan {
        schema_name: String,
        table_name: String,
        schema: TupleType,
    },
    CsvFile {
        filename: String,
        schema: TupleType,
    },
    EmptyRelation,
}

Relations

Variants

Fields of Projection

Fields of Selection

Fields of TableScan

Fields of CsvFile

Methods

impl Rel
[src]

[src]

Trait Implementations

impl Debug for Rel
[src]

[src]

Formats the value using the given formatter.

impl Clone for Rel
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more