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
Projection
Fields of Projection
expr: Vec<Rex> | |
input: Box<Rel> | |
schema: TupleType |
Selection
Fields of Selection
expr: Rex | |
input: Box<Rel> | |
schema: TupleType |
TableScan
Fields of TableScan
schema_name: String | |
table_name: String | |
schema: TupleType |
CsvFile
Fields of CsvFile
filename: String | |
schema: TupleType |
EmptyRelation