JoinPlan
Defined in: plan/logical-plan.ts:263
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:267
joinType
Section titled “joinType”joinType: | "inner" | "full_outer" | "left_outer" | "right_outer" | "left_semi" | "left_anti" | "cross";Defined in: plan/logical-plan.ts:268
left: LogicalPlan;Defined in: plan/logical-plan.ts:265
right: LogicalPlan;Defined in: plan/logical-plan.ts:266
type: "join";Defined in: plan/logical-plan.ts:264