ResolveHiveSerdeTable Logical Resolution Rule
ResolveHiveSerdeTable
is a logical resolution rule (i.e. Rule[LogicalPlan]
) that the Hive-specific logical query plan analyzer uses to resolve the metadata of a hive table for CreateTable logical operators.
ResolveHiveSerdeTable
is part of additional rules in Resolution fixed-point batch of rules.
1 2 3 4 5 |
// FIXME Example of ResolveHiveSerdeTable |
Applying ResolveHiveSerdeTable Rule to Logical Plan — apply
Method
1 2 3 4 5 |
apply(plan: LogicalPlan): LogicalPlan |
Note
|
apply is part of Rule Contract to apply a rule to a logical plan.
|
apply
…FIXME