JoinPlan
Defined in: plan/logical-plan.ts:273
Join two DataFrames.
- Spark Connect: Relation.Join { left, right, join_condition, join_type }
- Catalyst: Join(left, right, joinType, condition, hint)
Properties
Section titled “Properties”condition?
Section titled “condition?”optional condition?: Expression;Defined in: plan/logical-plan.ts:277
joinType
Section titled “joinType”joinType: | "inner" | "full_outer" | "left_outer" | "right_outer" | "left_semi" | "left_anti" | "cross";Defined in: plan/logical-plan.ts:278
left: LogicalPlan;Defined in: plan/logical-plan.ts:275
right: LogicalPlan;Defined in: plan/logical-plan.ts:276
type: "join";Defined in: plan/logical-plan.ts:274