[][src]Struct datafusion::logicalplan::LogicalPlanBuilder

pub struct LogicalPlanBuilder { /* fields omitted */ }

Builder for logical plans

Implementations

impl LogicalPlanBuilder[src]

pub fn from(plan: &LogicalPlan) -> Self[src]

Create a builder from an existing plan

pub fn empty() -> Self[src]

Create an empty relation

pub fn scan_csv(
    path: &str,
    options: CsvReadOptions,
    projection: Option<Vec<usize>>
) -> Result<Self>
[src]

Scan a CSV data source

pub fn scan_parquet(path: &str, projection: Option<Vec<usize>>) -> Result<Self>[src]

Scan a Parquet data source

pub fn scan(
    schema_name: &str,
    table_name: &str,
    table_schema: &Schema,
    projection: Option<Vec<usize>>
) -> Result<Self>
[src]

Scan a data source

pub fn project(&self, expr: Vec<Expr>) -> Result<Self>[src]

Apply a projection

pub fn filter(&self, expr: Expr) -> Result<Self>[src]

Apply a filter

pub fn limit(&self, n: usize) -> Result<Self>[src]

Apply a limit

pub fn sort(&self, expr: Vec<Expr>) -> Result<Self>[src]

Apply a sort

pub fn aggregate(
    &self,
    group_expr: Vec<Expr>,
    aggr_expr: Vec<Expr>
) -> Result<Self>
[src]

Apply an aggregate

pub fn build(&self) -> Result<LogicalPlan>[src]

Build the plan

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoRequest<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> WithSubscriber for T[src]