[−][src]Enum datafusion::logicalplan::LogicalPlan
The LogicalPlan represents different types of relations (such as Projection, Selection, etc) and can be created by the SQL query planner and the DataFrame API.
Variants
A Projection (essentially a SELECT with an expression list)
Fields of Projection
A Selection (essentially a WHERE clause with a predicate expression)
Fields of Selection
Represents a list of aggregate expressions with optional grouping expressions
Fields of Aggregate
Represents a list of sort expressions to be applied to a relation
Fields of Sort
A table scan against a table that has been registered on a context
Fields of TableScan
A table scan against a vector of record batches
Fields of InMemoryScan
A table scan against a Parquet data source
Fields of ParquetScan
A table scan against a CSV data source
Fields of CsvScan
path: String
The path to the files
schema: Box<Schema>
The underlying table schema
has_header: bool
Whether the CSV file(s) have a header containing column names
delimiter: Option<u8>
An optional column delimiter. Defaults to b','
projection: Option<Vec<usize>>
Optional column indices to use as a projection
projected_schema: Box<Schema>
The projected schema
An empty relation with an empty schema
Represents the maximum number of records to return
Fields of Limit
Represents a create external table expression.
Fields of CreateExternalTable
Implementations
impl LogicalPlan
[src]
Trait Implementations
impl Clone for LogicalPlan
[src]
fn clone(&self) -> LogicalPlan
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Debug for LogicalPlan
[src]
Auto Trait Implementations
impl !RefUnwindSafe for LogicalPlan
impl Send for LogicalPlan
impl Sync for LogicalPlan
impl Unpin for LogicalPlan
impl !UnwindSafe for LogicalPlan
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
V: MultiLane<T>,