Packages

package logical

Type Members

  1. case class CommandResult(output: Seq[Attribute], commandLogicalPlan: LogicalPlan, commandPhysicalPlan: SparkPlan, rows: Seq[InternalRow]) extends LogicalPlan with LeafNode with Product with Serializable

    Logical plan node for holding data from a command.

    Logical plan node for holding data from a command.

    commandLogicalPlan and commandPhysicalPlan are just used to display the plan tree for EXPLAIN. rows may not be serializable and ideally we should not send rows to the executors. Thus marking them as transient.

Ungrouped