Skip to content

Latest commit

 

History

History
18 lines (11 loc) · 1.07 KB

spark-sql-ReuseSubquery.adoc

File metadata and controls

18 lines (11 loc) · 1.07 KB

ReuseSubquery Physical Query Plan Optimization

ReuseSubquery is a physical query optimization (aka physical query preparation rule or simply preparation rule) that QueryExecution uses to optimize the physical plan of a structured query by FIXME.

Technically, ReuseSubquery is just a Catalyst rule for transforming physical query plans, i.e. Rule[SparkPlan].

ReuseSubquery is part of preparations batch of physical query plan rules and is executed when QueryExecution is requested for the optimized physical query plan (i.e. in executedPlan phase of a query execution).

apply Method

apply(plan: SparkPlan): SparkPlan
Note
apply is part of Rule Contract to apply a rule to a physical plan.

apply…​FIXME