Github user cloud-fan commented on a diff in the pull request:

    https://github.com/apache/spark/pull/14155#discussion_r75254588
  
    --- Diff: 
sql/hive/src/main/scala/org/apache/spark/sql/hive/HiveExternalCatalog.scala ---
    @@ -144,16 +161,147 @@ private[spark] class HiveExternalCatalog(client: 
HiveClient, hadoopConf: Configu
         assert(tableDefinition.identifier.database.isDefined)
         val db = tableDefinition.identifier.database.get
         requireDbExists(db)
    +    verifyTableProperties(tableDefinition)
    +
    +    if (tableDefinition.provider == Some("hive") || 
tableDefinition.tableType == VIEW) {
    +      client.createTable(tableDefinition, ignoreIfExists)
    +    } else {
    +      val tableProperties = tableMetadataToProperties(tableDefinition)
    +
    +      def newSparkSQLSpecificMetastoreTable(): CatalogTable = {
    +        tableDefinition.copy(
    +          schema = new StructType,
    +          partitionColumnNames = Nil,
    +          bucketSpec = None,
    +          properties = tableDefinition.properties ++ tableProperties)
    +      }
    +
    +      def newHiveCompatibleMetastoreTable(serde: HiveSerDe, path: String): 
CatalogTable = {
    +        tableDefinition.copy(
    +          storage = tableDefinition.storage.copy(
    +            locationUri = Some(new Path(path).toUri.toString),
    +            inputFormat = serde.inputFormat,
    +            outputFormat = serde.outputFormat,
    +            serde = serde.serde
    +          ),
    +          properties = tableDefinition.properties ++ tableProperties)
    +      }
    +
    +      val qualifiedTableName = tableDefinition.identifier.quotedString
    +      val maybeSerde = 
HiveSerDe.sourceToSerDe(tableDefinition.provider.get)
    +      val maybePath = new 
CaseInsensitiveMap(tableDefinition.storage.properties).get("path")
    +      val skipHiveMetadata = tableDefinition.storage.properties
    +        .getOrElse("skipHiveMetadata", "false").toBoolean
    +
    +      val (hiveCompatibleTable, logMessage) = (maybeSerde, maybePath) 
match {
    --- End diff --
    
    > Then, we used the generated BaseRelation to find whether this is a 
hiveCompatibleTable. If this is not a HadoopFsRelation, hiveCompatibleTable 
will be None.
    
    No, previously we use the `maybeSerde` and `BaseRelation` to decide, so the 
`HadoopFsRelation` check is already done in `maybeSerde`.


---
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