HiveMetastoreCatalog — Legacy SessionCatalog for Converting Hive Metastore Relations to Data Source Relations¶
HiveMetastoreCatalog is a session-scoped catalog of relational entities that knows how to <
HiveMetastoreCatalog is used by HiveSessionCatalog for RelationConversions logical evaluation rule.
HiveMetastoreCatalog is <HiveSessionStateBuilder is requested for a HiveSessionStateBuilder.md#catalog[SessionCatalog] (and creates a HiveSessionCatalog).

Creating Instance¶
HiveMetastoreCatalog takes the following to be created:
- [[sparkSession]] SparkSession
Converting HiveTableRelation to LogicalRelation¶
convert(
relation: HiveTableRelation): LogicalRelation
convert...FIXME
convert is used when:
- RelationConversions logical rule is executed (for a
InsertIntoStatementover a HiveTableRelation or a HiveTableRelation) OptimizedCreateHiveTableAsSelectCommandlogical command is executed
convertToLogicalRelation¶
convertToLogicalRelation(
relation: HiveTableRelation,
options: Map[String, String],
fileFormatClass: Class[_ <: FileFormat],
fileType: String): LogicalRelation
convertToLogicalRelation branches based on whether the input HiveTableRelation.md[HiveTableRelation] is <
[[convertToLogicalRelation-partitioned]] When the HiveTableRelation is HiveTableRelation.md#isPartitioned[partitioned], convertToLogicalRelation uses spark.sql.hive.manageFilesourcePartitions configuration property to compute the root paths. With the property enabled, the root path is simply the table location (aka locationUri). Otherwise, the root paths are the locationUri of the partitions (using the shared ExternalCatalog).
convertToLogicalRelation creates a new ../LogicalRelation.md[LogicalRelation] with a HadoopFsRelation (with no bucketing specification among things) unless a LogicalRelation for the table is already in a <
[[convertToLogicalRelation-not-partitioned]] When the HiveTableRelation is not partitioned, convertToLogicalRelation...FIXME
In the end, convertToLogicalRelation replaces exprIds in the ../LogicalRelation.md#output[table relation output (schema)].
NOTE: convertToLogicalRelation is used when RelationConversions.md[RelationConversions] logical evaluation rule is executed (with Hive tables in parquet as well as native and hive ORC storage formats).
inferIfNeeded¶
inferIfNeeded(
relation: HiveTableRelation,
options: Map[String, String],
fileFormat: FileFormat,
fileIndexOpt: Option[FileIndex] = None): CatalogTable
inferIfNeeded...FIXME
=== [[getCached]] getCached Internal Method
[source, scala]¶
getCached( tableIdentifier: QualifiedTableName, pathsInMetastore: Seq[Path], schemaInMetastore: StructType, expectedFileFormat: Class[_ <: FileFormat], partitionSchema: Option[StructType]): Option[LogicalRelation]
getCached...FIXME
NOTE: getCached is used when HiveMetastoreCatalog is requested to <
=== [[internal-properties]] Internal Properties
[cols="30m,70",options="header",width="100%"] |=== | Name | Description
| catalogProxy a| [[catalogProxy]] SessionCatalog (of the <
Used when HiveMetastoreCatalog is requested to <
|===