Skip to content

UnaryExecNode Physical Operators

UnaryExecNode is an extension of the SparkPlan abstraction for unary physical operators that have a single child physical operator only.

Contract

Child Physical Operator

child: SparkPlan

The one and only child physical operator

Used when:

  • UnaryExecNode is requested for the children
  • others

Implementations