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

    https://github.com/apache/spark/pull/15717#discussion_r91672523
  
    --- Diff: 
sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/catalog/ExternalCatalog.scala
 ---
    @@ -217,6 +218,29 @@ abstract class ExternalCatalog {
           predicates: Seq[Expression]): Seq[CatalogTablePartition]
     
       // 
--------------------------------------------------------------------------
    +  // Columns
    +  // 
--------------------------------------------------------------------------
    +
    +  /**
    +   * Alter one or more column(s)'s comment.
    +   *
    +   * Note: If the underlying implementation does not support altering a 
certain field,
    +   * this becomes a no-op.
    +   * @param db database name
    +   * @param table table name
    +   * @param columnComments map from column names to comments
    +   */
    +  def alterColumnComments(db: String, table: String, columnComments: 
Map[String, String]): Unit
    +
    +  /**
    +   * List the metadata of all columns that are defined in the specified 
table schema, assuming it
    +   * exists.
    +   * @param db database name
    +   * @param table table name
    +   */
    +  def listColumns(db: String, table: String): Seq[StructField]
    --- End diff --
    
    does it worth to add a new API in `ExternalCatalog`?


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

Reply via email to