Deprecated: The each() function is deprecated. This message will be suppressed on further calls in /home/zhenxiangba/zhenxiangba.com/public_html/phproxy-improved-master/index.php on line 456
datafusion::physical_plan::hash_join::HashJoinExec - Rust
[go: Go Back, main page]

[][src]Struct datafusion::physical_plan::hash_join::HashJoinExec

pub struct HashJoinExec { /* fields omitted */ }

join execution plan executes partitions in parallel and combines them into a set of partitions.

Implementations

impl HashJoinExec[src]

pub fn try_new(
    left: Arc<dyn ExecutionPlan>,
    right: Arc<dyn ExecutionPlan>,
    on: &JoinOn,
    join_type: &JoinType
) -> Result<Self>
[src]

Tries to create a new HashJoinExec.

Error

This function errors when it is not possible to join the left and right sides on keys on.

pub fn left(&self) -> &Arc<dyn ExecutionPlan>[src]

left (build) side which gets hashed

pub fn right(&self) -> &Arc<dyn ExecutionPlan>[src]

right (probe) side which are filtered by the hash table

pub fn on(&self) -> &[(String, String)][src]

Set of common columns used to join on

pub fn join_type(&self) -> &JoinType[src]

How the join is performed

Trait Implementations

impl Debug for HashJoinExec[src]

impl ExecutionPlan for HashJoinExec[src]

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, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T> Same<T> for T

type Output = T

Should always be Self

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>,