UnresolvedRelation Leaf Logical Operator for Table Reference
UnresolvedRelation
is a leaf logical operator to represent a table reference in a logical query plan that has yet to be resolved (i.e. looked up in a catalog).
Note
|
If after Analyzer has finished analyzing a logical query plan the plan has still a
|
UnresolvedRelation
is created when:
-
SparkSession
is requested to create a DataFrame from a table -
DataFrameWriter
is requested to insert a DataFrame into a table -
INSERT INTO (TABLE)
orINSERT OVERWRITE TABLE
SQL commands are executed -
CreateHiveTableAsSelectCommand
command is executed
Tip
|
Use
|
Note
|
UnresolvedRelation is resolved to…FIXME
|