beliefer opened a new pull request #23574: [SPARK-26643][SQL] Fix incorrect 
analysis exception about set table properties.
URL: https://github.com/apache/spark/pull/23574
 
 
   ## What changes were proposed in this pull request?
   
   The function of the method named verifyTableProperties is 
   `  /**
      * If the given table properties contains datasource properties, throw an 
exception. We will do
      * this check when create or alter a table, i.e. when we try to write 
table metadata to Hive
      * metastore.
      */`
   So I change the exception from 
   `      throw new AnalysisException(s"Cannot persistent 
${table.qualifiedName} into hive metastore " +
           s"as table property keys may not start with '$SPARK_SQL_PREFIX': " +
           invalidKeys.mkString("[", ", ", "]"))`
   to 
   `      throw new AnalysisException(s"Cannot persistent 
${table.qualifiedName} into hive metastore " +
           s"as table property keys may start with '$SPARK_SQL_PREFIX': " +
           invalidKeys.mkString("[", ", ", "]"))`
   
   ## How was this patch tested?
   
   Please review http://spark.apache.org/contributing.html before opening a 
pull request.
   

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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

Reply via email to