Interface LazyJoinOptions

options for lazy join operations

See

LazyDataFrame.join

interface LazyJoinOptions {
    allowParallel?: boolean;
    forceParallel?: boolean;
    how?: JoinType;
    leftOn?: string | string[];
    on?: string | string[];
    rightOn?: string | string[];
    suffix?: string;
}

Hierarchy (view full)

Properties

allowParallel?: boolean
forceParallel?: boolean
how?: JoinType

join type

leftOn?: string | string[]

left join column

on?: string | string[]

left and right join column

rightOn?: string | string[]

right join column

suffix?: string