Github user ericl commented on a diff in the pull request:
https://github.com/apache/spark/pull/15797#discussion_r86872012
--- Diff:
sql/hive/src/main/scala/org/apache/spark/sql/hive/HiveExternalCatalog.scala ---
@@ -810,13 +840,37 @@ private[spark] class HiveExternalCatalog(conf:
SparkConf, hadoopConf: Configurat
newSpecs: Seq[TablePartitionSpec]): Unit = withClient {
client.renamePartitions(
db, table, specs.map(lowerCasePartitionSpec),
newSpecs.map(lowerCasePartitionSpec))
+
+ val tableMeta = getTable(db, table)
+ val partitionColumnNames = tableMeta.partitionColumnNames
+ // Hive metastore is not case preserving and keeps partition columns
with lower cased names.
+ // When Hive rename partition for managed tables, it will update the
partition location with
+ // a default value generate by the new spec and lower cased partition
column names. This is
+ // unexpected and we need to call `alterPartitions` to fix the
partition location.
+ val hasUpperCasePartitionColumn = partitionColumnNames.exists(col =>
col.toLowerCase != col)
+ if (tableMeta.tableType == MANAGED && hasUpperCasePartitionColumn) {
+ val tableLocation = tableMeta.storage.locationUri.get
+ val newParts = newSpecs.map { spec =>
+ val partition = client.getPartition(db, table,
lowerCasePartitionSpec(spec))
+ val partitionPath = new Path(
+ tableLocation,
+ partitionColumnNames.map(col => col + "=" +
spec(col)).mkString("/"))
--- End diff --
What if it had a custom location?
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]