Skip to main content

JoinBuilder

Struct JoinBuilder 

Source
pub struct JoinBuilder { /* private fields */ }
Available on crate feature lazy only.

Implementations§

Source§

impl JoinBuilder

Source

pub fn new(lf: LazyFrame) -> JoinBuilder

Create the JoinBuilder with the provided LazyFrame as the left table.

Source

pub fn with(self, other: LazyFrame) -> JoinBuilder

The right table in the join.

Source

pub fn how(self, how: JoinType) -> JoinBuilder

Select the join type.

Source

pub fn validate(self, validation: JoinValidation) -> JoinBuilder

Source

pub fn on<E>(self, on: E) -> JoinBuilder
where E: AsRef<[Expr]>,

The expressions you want to join both tables on.

The passed expressions must be valid in both LazyFrames in the join. Selectors expand independently against each input schema. The results are paired in order and both sides must produce the same nonzero number of keys.

Source

pub fn left_on<E>(self, on: E) -> JoinBuilder
where E: AsRef<[Expr]>,

The expressions you want to join the left table on.

The passed expressions and selectors must be valid in the left table. The total expanded key count must be nonzero and match the right side.

Source

pub fn right_on<E>(self, on: E) -> JoinBuilder
where E: AsRef<[Expr]>,

The expressions you want to join the right table on.

The passed expressions and selectors must be valid in the right table. The total expanded key count must be nonzero and match the left side.

Source

pub fn allow_parallel(self, allow: bool) -> JoinBuilder

Allow parallel table evaluation.

Source

pub fn force_parallel(self, force: bool) -> JoinBuilder

Force parallel table evaluation.

Source

pub fn join_nulls(self, nulls_equal: bool) -> JoinBuilder

Join on null values. By default null values will never produce matches.

Source

pub fn suffix<S>(self, suffix: S) -> JoinBuilder
where S: Into<PlSmallStr>,

Suffix to add duplicate column names in join. Defaults to "_right" if this method is never called.

Source

pub fn coalesce(self, coalesce: JoinCoalesce) -> JoinBuilder

Whether to coalesce join columns.

Source

pub fn maintain_order(self, maintain_order: MaintainOrderJoin) -> JoinBuilder

Whether to preserve the row order.

Source

pub fn build_side(self, build_side: Option<JoinBuildSide>) -> JoinBuilder

Whether to prefer a specific build side.

Source

pub fn finish(self) -> Result<LazyFrame, PolarsError>

Finish builder

Source

pub fn join_where(self, predicates: Vec<Expr>) -> LazyFrame

Auto Trait Implementations§

Blanket Implementations§

Source§

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

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

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

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

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

Source§

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

Mutably borrows from an owned value. Read more
§

impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
where ST: ?Sized, DT: ?Sized,

§

impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
where ST: ?Sized, DT: ?Sized,

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where 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.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
§

impl<T> PlanCallbackArgs for T

§

impl<T> PlanCallbackOut for T

§

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
§

impl<T> PolicyExt for T
where T: ?Sized,

§

fn and<P, B, E>(self, other: P) -> And<T, P>
where T: Sized + Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns [Action::Follow] only if self and other return Action::Follow. Read more
§

fn or<P, B, E>(self, other: P) -> Or<T, P>
where T: Sized + Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns [Action::Follow] if either self or other returns Action::Follow. Read more
§

impl<T> Read<Exclusive, BecauseExclusive> for T
where T: ?Sized,

Source§

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

Source§

type Error = !

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 T
where U: TryFrom<T>,

Source§

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<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more