Skip to content

Latest commit

 

History

History
21 lines (14 loc) · 883 Bytes

spark-sql-HiveAnalysis.adoc

File metadata and controls

21 lines (14 loc) · 883 Bytes

HiveAnalysis Logical PostHoc Resolution Rule

Technically, HiveAnalysis is a Catalyst rule for transforming logical plans, i.e. Rule[LogicalPlan].

// FIXME Example of HiveAnalysis

Applying HiveAnalysis Rule to Logical Plan (Executing HiveAnalysis) — apply Method

apply(plan: LogicalPlan): LogicalPlan
Note
apply is part of Rule Contract to apply a rule to a logical plan.

apply…​FIXME