HiveTableScans Execution Planning Strategy
HiveTableScans
is an execution planning strategy (of Hive-specific SparkPlanner) that resolves HiveTableRelation.
Applying HiveTableScans Strategy to Logical Plan (Executing HiveTableScans) — apply
Method
1 2 3 4 5 |
apply(plan: LogicalPlan): Seq[SparkPlan] |
Note
|
apply is part of GenericStrategy Contract to generate a collection of SparkPlans for a given logical plan.
|
apply
…FIXME