Enum datafusion::rel::Rel
[−]
[src]
pub enum Rel { Projection { expr: Vec<Expr>, input: Box<Rel>, schema: Schema, }, Selection { expr: Expr, input: Box<Rel>, schema: Schema, }, TableScan { schema_name: String, table_name: String, schema: Schema, }, CsvFile { filename: String, schema: Schema, }, EmptyRelation, }
Relations
Variants
Projection
Fields of Projection
expr: Vec<Expr> | |
input: Box<Rel> | |
schema: Schema |
Selection
Fields of Selection
expr: Expr | |
input: Box<Rel> | |
schema: Schema |
TableScan
Fields of TableScan
schema_name: String | |
table_name: String | |
schema: Schema |
CsvFile
Fields of CsvFile
filename: String | |
schema: Schema |
EmptyRelation