[−][src]Struct datafusion::logicalplan::LogicalPlanBuilder
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]
path: &str,
options: CsvReadOptions,
projection: Option<Vec<usize>>
) -> Result<Self>
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]
schema_name: &str,
table_name: &str,
table_schema: &Schema,
projection: Option<Vec<usize>>
) -> Result<Self>
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]
&self,
group_expr: Vec<Expr>,
aggr_expr: Vec<Expr>
) -> Result<Self>
Apply an aggregate
pub fn build(&self) -> Result<LogicalPlan>
[src]
Build the plan
Auto Trait Implementations
impl !RefUnwindSafe for LogicalPlanBuilder
impl Send for LogicalPlanBuilder
impl Sync for LogicalPlanBuilder
impl Unpin for LogicalPlanBuilder
impl !UnwindSafe for LogicalPlanBuilder
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> Instrument for T
[src]
fn instrument(self, span: Span) -> Instrumented<Self>
[src]
fn in_current_span(self) -> Instrumented<Self>
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> IntoRequest<T> for T
[src]
fn into_request(self) -> Request<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>,
fn vzip(self) -> V
impl<T> WithSubscriber for T
[src]
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
[src]
S: Into<Dispatch>,