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

    https://github.com/apache/spark/pull/12872#discussion_r61987175
  
    --- Diff: 
sql/core/src/main/scala/org/apache/spark/sql/execution/command/views.scala ---
    @@ -71,29 +87,59 @@ case class CreateViewCommand(
         require(tableDesc.schema == Nil || tableDesc.schema.length == 
analyzedPlan.output.length)
         val sessionState = sparkSession.sessionState
     
    -    if (sessionState.catalog.tableExists(tableIdentifier)) {
    -      if (allowExisting) {
    -        // Handles `CREATE VIEW IF NOT EXISTS v0 AS SELECT ...`. Does 
nothing when the target view
    -        // already exists.
    -      } else if (replace) {
    -        // Handles `CREATE OR REPLACE VIEW v0 AS SELECT ...`
    -        sessionState.catalog.alterTable(prepareTable(sparkSession, 
analyzedPlan))
    +    if (isTemporary) {
    +      createTemporaryView(tableDesc.identifier, sparkSession, analyzedPlan)
    +    } else {
    +      // Adds default database for permanent table if it doesn't exist, so 
that tableExists()
    +      // only check permanent tables.
    +      val database = tableDesc.identifier.database.getOrElse(
    +        sessionState.catalog.getCurrentDatabase)
    +      val tableIdentifier = tableDesc.identifier.copy(database = 
Option(database))
    +
    +      if (sessionState.catalog.tableExists(tableIdentifier)) {
    +        if (allowExisting) {
    +          // Handles `CREATE VIEW IF NOT EXISTS v0 AS SELECT ...`. Does 
nothing when the target view
    +          // already exists.
    +        } else if (replace) {
    +          // Handles `CREATE OR REPLACE VIEW v0 AS SELECT ...`
    +          sessionState.catalog.alterTable(prepareTable(sparkSession, 
analyzedPlan))
    +        } else {
    +          // Handles `CREATE VIEW v0 AS SELECT ...`. Throws exception when 
the target view already
    +          // exists.
    +          throw new AnalysisException(s"View $tableIdentifier already 
exists. " +
    --- End diff --
    
    Nit: Wrapping this line using the following style:
    
    ```scala
    throw new AnalysisException(
      s"View ...")
    ```


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