pub enum LogicalPlan {
Show 16 variants Selection { input: Box<LogicalPlan>, predicate: Expr, }, Cache { input: Box<LogicalPlan>, id: usize, count: usize, }, Scan { paths: Arc<[PathBuf]>, file_info: FileInfo, predicate: Option<Expr>, file_options: FileScanOptions, scan_type: FileScan, }, DataFrameScan { df: Arc<DataFrame>, schema: Arc<Schema>, output_schema: Option<Arc<Schema>>, projection: Option<Arc<Vec<String>>>, selection: Option<Expr>, }, Projection { expr: Vec<Expr>, input: Box<LogicalPlan>, schema: Arc<Schema>, options: ProjectionOptions, }, Aggregate { input: Box<LogicalPlan>, keys: Arc<Vec<Expr>>, aggs: Vec<Expr>, schema: Arc<Schema>, apply: Option<Arc<dyn DataFrameUdf>>, maintain_order: bool, options: Arc<GroupbyOptions>, }, Join { input_left: Box<LogicalPlan>, input_right: Box<LogicalPlan>, schema: Arc<Schema>, left_on: Vec<Expr>, right_on: Vec<Expr>, options: Arc<JoinOptions>, }, HStack { input: Box<LogicalPlan>, exprs: Vec<Expr>, schema: Arc<Schema>, options: ProjectionOptions, }, Distinct { input: Box<LogicalPlan>, options: DistinctOptions, }, Sort { input: Box<LogicalPlan>, by_column: Vec<Expr>, args: SortArguments, }, Slice { input: Box<LogicalPlan>, offset: i64, len: u64, }, MapFunction { input: Box<LogicalPlan>, function: FunctionNode, }, Union { inputs: Vec<LogicalPlan>, options: UnionOptions, }, Error { input: Box<LogicalPlan>, err: ErrorStateSync, }, ExtContext { input: Box<LogicalPlan>, contexts: Vec<LogicalPlan>, schema: Arc<Schema>, }, Sink { input: Box<LogicalPlan>, payload: SinkType, },
}

Variants§

§

Selection

Fields

§predicate: Expr

Filter on a boolean mask

§

Cache

Fields

§count: usize

Cache the input at this point in the LP

§

Scan

Fields

§paths: Arc<[PathBuf]>
§file_info: FileInfo
§predicate: Option<Expr>
§file_options: FileScanOptions
§scan_type: FileScan
§

DataFrameScan

Fields

§schema: Arc<Schema>
§output_schema: Option<Arc<Schema>>
§projection: Option<Arc<Vec<String>>>
§selection: Option<Expr>

In memory DataFrame

§

Projection

Fields

§expr: Vec<Expr>
§schema: Arc<Schema>

Column selection

§

Aggregate

Fields

§keys: Arc<Vec<Expr>>
§aggs: Vec<Expr>
§schema: Arc<Schema>
§maintain_order: bool

Groupby aggregation

§

Join

Fields

§input_left: Box<LogicalPlan>
§input_right: Box<LogicalPlan>
§schema: Arc<Schema>
§left_on: Vec<Expr>
§right_on: Vec<Expr>
§options: Arc<JoinOptions>

Join operation

§

HStack

Fields

§exprs: Vec<Expr>
§schema: Arc<Schema>

Adding columns to the table without a Join

§

Distinct

Fields

Remove duplicates from the table

§

Sort

Fields

§by_column: Vec<Expr>

Sort the table

§

Slice

Fields

§offset: i64
§len: u64

Slice the table

§

MapFunction

Fields

§function: FunctionNode

A (User Defined) Function

§

Union

Fields

§

Error

Catches errors and throws them later

§

ExtContext

Fields

§contexts: Vec<LogicalPlan>
§schema: Arc<Schema>

This allows expressions to access other tables

§

Sink

Fields

§payload: SinkType

Implementations§

source§

impl LogicalPlan

source

pub fn dot( &self, acc_str: &mut String, id: (usize, usize), prev_node: DotNode<'_>, id_map: &mut HashMap<String, String, RandomState> ) -> Result<(), Error>

Arguments

id - (branch, id) Used to make sure that the dot boxes are distinct. branch is an id per join/union branch id is incremented by the depth traversal of the tree.

source§

impl LogicalPlan

source

pub fn schema(&self) -> Result<Cow<'_, Arc<Schema>>, PolarsError>

source§

impl LogicalPlan

source

pub fn describe(&self) -> String

source

pub fn to_alp( self ) -> Result<(Node, Arena<ALogicalPlan>, Arena<AExpr>), PolarsError>

Trait Implementations§

source§

impl Clone for LogicalPlan

source§

fn clone(&self) -> LogicalPlan

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for LogicalPlan

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Default for LogicalPlan

source§

fn default() -> LogicalPlan

Returns the “default value” for a type. Read more
source§

impl<'de> Deserialize<'de> for LogicalPlan

source§

fn deserialize<__D>( __deserializer: __D ) -> Result<LogicalPlan, <__D as Deserializer<'de>>::Error>where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl From<LogicalPlan> for LazyFrame

source§

fn from(plan: LogicalPlan) -> Self

Converts to this type from the input type.
source§

impl Serialize for LogicalPlan

source§

fn serialize<__S>( &self, __serializer: __S ) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where __S: Serializer,

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> DynClone for Twhere T: Clone,

source§

fn __clone_box(&self, _: Private) -> *mut ()

source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

§

impl<T> Pointable for T

§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

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

§

fn vzip(self) -> V

source§

impl<T> DeserializeOwned for Twhere T: for<'de> Deserialize<'de>,