Github user yhuai commented on a diff in the pull request:

    https://github.com/apache/spark/pull/14155#discussion_r74665106
  
    --- Diff: 
sql/hive/src/main/scala/org/apache/spark/sql/hive/HiveExternalCatalog.scala ---
    @@ -81,6 +86,19 @@ private[spark] class HiveExternalCatalog(client: 
HiveClient, hadoopConf: Configu
         withClient { getTable(db, table) }
       }
     
    +  /**
    +   * If the given table properties contains datasource properties, throw 
an exception.
    +   */
    +  private def verifyTableProperties(table: CatalogTable): Unit = {
    +    val datasourceKeys = (table.properties.keys ++ 
table.storage.properties.keys)
    +      .filter(_.startsWith(DATASOURCE_PREFIX))
    +    if (datasourceKeys.nonEmpty) {
    +      throw new AnalysisException(s"Cannot persistent 
${table.qualifiedName} into hive metastore " +
    +        s"as table/storage property keys may not start with 
'$DATASOURCE_PREFIX': " +
    +        datasourceKeys.mkString("[", ", ", "]"))
    +    }
    +  }
    --- End diff --
    
    nvm. This is for writing.


---
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 infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org

Reply via email to