package logical
Type Members
-
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.
commandLogicalPlanandcommandPhysicalPlanare just used to display the plan tree for EXPLAIN.rowsmay not be serializable and ideally we should not sendrowsto the executors. Thus marking them as transient.