Skip to content

Latest commit

 

History

History
17 lines (9 loc) · 620 Bytes

spark-sql-query-plan.adoc

File metadata and controls

17 lines (9 loc) · 620 Bytes

Query Plan

Caution
FIXME

QueryPlan abstract class has a output (that is a sequence of Attribute instances). You can also ask for schema.

Note
QueryPlan is a super type of SparkPlan and LogicalPlan abstract classes.

schema

You can find out about the schema of a QueryPlan using schema that builds StructType from the output attributes.

Output Attributes

Attribute

Caution
FIXME