You are viewing a plain text version of this content. The canonical link for it is here.
Posted to reviews@spark.apache.org by GitBox <gi...@apache.org> on 2020/03/14 02:21:43 UTC

[GitHub] [spark] nchammas opened a new pull request #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

nchammas opened a new pull request #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908
 
 
   ### What changes were proposed in this pull request?
   
   This PR enhances `Catalog.createTable()` to allow users to set the table's description. This corresponds to the following SQL syntax:
   
   ```sql
   CREATE TABLE ...
   COMMENT 'this is a fancy table';
   ```
   
   ### Why are the changes needed?
   
   This brings the Scala/Python catalog APIs a bit closer to what's already possible via SQL.
   
   ### Does this PR introduce any user-facing change?
   
   Yes, it adds a new parameter to `Catalog.createTable()`.
   
   ### How was this patch tested?
   
   Existing unit tests:
   
   ```sh
   ./python/run-tests \
     --python-executables python3.7 \
     --testnames 'pyspark.sql.tests.test_catalog,pyspark.sql.tests.test_context'
   ```
   
   ```
   $ ./buid/sbt
   testOnly org.apache.spark.sql.internal.CatalogSuite org.apache.spark.sql.CachedTableSuite org.apache.spark.sql.hive.MetastoreDataSourcesSuite org.apache.spark.sql.hive.execution.HiveDDLSuite
   ```

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-599056841
 
 
   Merged build finished. Test PASSed.

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


With regards,
Apache Git Services

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


[GitHub] [spark] SparkQA removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
SparkQA removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-599013754
 
 
   **[Test build #119783 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/119783/testReport)** for PR 27908 at commit [`35d15e2`](https://github.com/apache/spark/commit/35d15e2c67175b3e3396e4cdb8dbcb06a85be772).

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


With regards,
Apache Git Services

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


[GitHub] [spark] SparkQA commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
SparkQA commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-599170047
 
 
   **[Test build #119811 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/119811/testReport)** for PR 27908 at commit [`2896345`](https://github.com/apache/spark/commit/289634519f9ea565d1ddf5004148b0bb78650284).

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


With regards,
Apache Git Services

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


[GitHub] [spark] nchammas commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
nchammas commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-599177560
 
 
   Retest this please.

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


With regards,
Apache Git Services

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


[GitHub] [spark] HyukjinKwon commented on a change in pull request #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
HyukjinKwon commented on a change in pull request #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#discussion_r402932825
 
 

 ##########
 File path: python/pyspark/sql/catalog.py
 ##########
 @@ -159,7 +159,8 @@ def createExternalTable(self, tableName, path=None, source=None, schema=None, **
         return self.createTable(tableName, path, source, schema, **options)
 
     @since(2.2)
-    def createTable(self, tableName, path=None, source=None, schema=None, **options):
+    def createTable(
+            self, tableName, path=None, source=None, schema=None, description=None, **options):
         """Creates a table based on the dataset in a data source.
 
 Review comment:
   Preferably I would add `.. versionchanged:: 3.1`.

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-608987064
 
 
   Test FAILed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/120794/
   Test FAILed.

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-599021055
 
 
   Merged build finished. Test FAILed.

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


With regards,
Apache Git Services

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


[GitHub] [spark] SparkQA removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
SparkQA removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-599012765
 
 
   **[Test build #119781 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/119781/testReport)** for PR 27908 at commit [`ce19139`](https://github.com/apache/spark/commit/ce19139fccb24f41beda1a26147729f3555bb957).

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-605301128
 
 
   Test PASSed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/120499/
   Test PASSed.

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


With regards,
Apache Git Services

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


[GitHub] [spark] SparkQA commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
SparkQA commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-608986890
 
 
   **[Test build #120794 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/120794/testReport)** for PR 27908 at commit [`8c90a93`](https://github.com/apache/spark/commit/8c90a9319ebfb7235da514fede96dc74ae2906c2).
    * This patch **fails due to an unknown error code, -9**.
    * This patch merges cleanly.
    * This patch adds no public classes.

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


With regards,
Apache Git Services

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


[GitHub] [spark] nchammas commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
nchammas commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-614749783
 
 
   Checking in again here.

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


With regards,
Apache Git Services

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


[GitHub] [spark] SparkQA removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
SparkQA removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-608962185
 
 
   **[Test build #120794 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/120794/testReport)** for PR 27908 at commit [`8c90a93`](https://github.com/apache/spark/commit/8c90a9319ebfb7235da514fede96dc74ae2906c2).

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-608724117
 
 
   Merged build finished. Test PASSed.

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-605301119
 
 
   Merged build finished. Test PASSed.

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-608987059
 
 
   Merged build finished. Test FAILed.

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-599002135
 
 
   Merged build finished. Test FAILed.

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-599012836
 
 
   Test PASSed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder-K8s/24511/
   Test PASSed.

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-609110973
 
 
   Merged build finished. Test PASSed.

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


With regards,
Apache Git Services

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


[GitHub] [spark] HyukjinKwon commented on a change in pull request #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
HyukjinKwon commented on a change in pull request #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#discussion_r402932547
 
 

 ##########
 File path: sql/core/src/main/scala/org/apache/spark/sql/catalog/Catalog.scala
 ##########
 @@ -342,6 +342,39 @@ abstract class Catalog {
     createTable(tableName, source, schema, options)
   }
 
+  /**
+   * Creates a table based on the dataset in a data source and a set of options.
+   * Then, returns the corresponding DataFrame.
+   *
+   * @param tableName is either a qualified or unqualified name that designates a table.
+   *                  If no database identifier is provided, it refers to a table in
+   *                  the current database.
+   * @since 2.2.0
+   */
+  def createTable(
+      tableName: String,
+      source: String,
+      options: java.util.Map[String, String],
+      description: String): DataFrame = {
+    createTable(tableName, source, options.asScala.toMap, description)
+  }
+
+  /**
+   * (Scala-specific)
+   * Creates a table based on the dataset in a data source and a set of options.
+   * Then, returns the corresponding DataFrame.
+   *
+   * @param tableName is either a qualified or unqualified name that designates a table.
+   *                  If no database identifier is provided, it refers to a table in
+   *                  the current database.
+   * @since 2.2.0
 
 Review comment:
   I guess the version has to be changed to `@since 3.1.0`

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-599012315
 
 
   Test PASSed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder-K8s/24510/
   Test PASSed.

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-599012367
 
 
   Merged build finished. Test FAILed.

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


With regards,
Apache Git Services

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


[GitHub] [spark] SparkQA commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
SparkQA commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-605077604
 
 
   **[Test build #120499 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/120499/testReport)** for PR 27908 at commit [`e67a2c1`](https://github.com/apache/spark/commit/e67a2c129839042b18b3ec80acac8eaf6038596d).

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-605301119
 
 
   Merged build finished. Test PASSed.

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


With regards,
Apache Git Services

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


[GitHub] [spark] SparkQA commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
SparkQA commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-599012765
 
 
   **[Test build #119781 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/119781/testReport)** for PR 27908 at commit [`ce19139`](https://github.com/apache/spark/commit/ce19139fccb24f41beda1a26147729f3555bb957).

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


With regards,
Apache Git Services

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


[GitHub] [spark] rberenguel commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
rberenguel commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-608775975
 
 
   > Thanks for taking a look, @HyukjinKwon and @rberenguel.
   > 
   > > The changes look reasonable to me, it doesn't seem to add anything public (except on the Python side, where that should be fine)
   > 
   > There are new public Scala APIs to allow use of the new `description` parameter, no?
   
   Sorry, I checked the wrong view (mobile Github still leaves a bit to be desired). I think this is not a problem, because it's not modifying any existing public API, just adding to it. Updating the version tags for the API was needed indeed, 👍 

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


With regards,
Apache Git Services

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


[GitHub] [spark] nchammas commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
nchammas commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-605144279
 
 
   @HyukjinKwon - I noticed you added yourself as a watcher on SPARK-31000, so perhaps you'd be interested in this PR. It's my [first time](https://github.com/apache/spark/pull/27908#issuecomment-599020089) changing something on the Scala side of things.
   
   Am I approaching this the right way?

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-599170131
 
 
   Merged build finished. Test PASSed.

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-599170133
 
 
   Test PASSed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder-K8s/24541/
   Test PASSed.

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


With regards,
Apache Git Services

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


[GitHub] [spark] SparkQA commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
SparkQA commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-615460465
 
 
   **[Test build #121420 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/121420/testReport)** for PR 27908 at commit [`4c88e1e`](https://github.com/apache/spark/commit/4c88e1e518f429874913ade00d558e7a40256c15).
    * This patch passes all tests.
    * This patch merges cleanly.
    * This patch adds the following public classes _(experimental)_:
     * `public class JavaANOVATestExample `
     * `public class JavaUserDefinedScalar `
     * `public class SparkAvroKeyOutputFormat extends AvroKeyOutputFormat<GenericRecord> `
     * `  static class SparkRecordWriterFactory extends RecordWriterFactory<GenericRecord> `
     * `  class FMClassifierWrapperWriter(instance: FMClassifierWrapper) extends MLWriter `
     * `  class FMClassifierWrapperReader extends MLReader[FMClassifierWrapper] `
     * `  class FMRegressorWrapperWriter(instance: FMRegressorWrapper) extends MLWriter `
     * `  class FMRegressorWrapperReader extends MLReader[FMRegressorWrapper] `
     * `  class LinearRegressionWrapperWriter(instance: LinearRegressionWrapper) extends MLWriter `
     * `  class LinearRegressionWrapperReader extends MLReader[LinearRegressionWrapper] `
     * `case class LengthOfJsonArray(child: Expression) extends UnaryExpression`
     * `case class JsonObjectKeys(child: Expression) extends UnaryExpression with CodegenFallback`
     * `case class ShowViews(`
     * `   *   case class Book(title: String, words: String)`
     * `case class ShowViewsCommand(`
     * `  class JDBCConfiguration(`

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


With regards,
Apache Git Services

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


[GitHub] [spark] SparkQA removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
SparkQA removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-599170047
 
 
   **[Test build #119811 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/119811/testReport)** for PR 27908 at commit [`2896345`](https://github.com/apache/spark/commit/289634519f9ea565d1ddf5004148b0bb78650284).

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-599001327
 
 
   Merged build finished. Test PASSed.

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-599198581
 
 
   Test PASSed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/119816/
   Test PASSed.

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-599014440
 
 
   Test FAILed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/119783/
   Test FAILed.

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


With regards,
Apache Git Services

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


[GitHub] [spark] SparkQA commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
SparkQA commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-599177764
 
 
   **[Test build #119816 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/119816/testReport)** for PR 27908 at commit [`2896345`](https://github.com/apache/spark/commit/289634519f9ea565d1ddf5004148b0bb78650284).

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-609360286
 
 
   Test PASSed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/120823/
   Test PASSed.

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-599177861
 
 
   Merged build finished. Test PASSed.

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-599001330
 
 
   Test PASSed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder-K8s/24508/
   Test PASSed.

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-599198573
 
 
   Merged build finished. Test PASSed.

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


With regards,
Apache Git Services

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


[GitHub] [spark] SparkQA removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
SparkQA removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-599029994
 
 
   **[Test build #119796 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/119796/testReport)** for PR 27908 at commit [`a0ad064`](https://github.com/apache/spark/commit/a0ad064aff1b0406fb5fd1dab8cb5b1c2b4140c2).

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-599012367
 
 
   Merged build finished. Test FAILed.

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


With regards,
Apache Git Services

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


[GitHub] [spark] SparkQA commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
SparkQA commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-599021022
 
 
   **[Test build #119785 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/119785/testReport)** for PR 27908 at commit [`a0ad064`](https://github.com/apache/spark/commit/a0ad064aff1b0406fb5fd1dab8cb5b1c2b4140c2).
    * This patch **fails due to an unknown error code, -9**.
    * This patch merges cleanly.
    * This patch adds no public classes.

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


With regards,
Apache Git Services

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


[GitHub] [spark] SparkQA removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
SparkQA removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-599012225
 
 
   **[Test build #119780 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/119780/testReport)** for PR 27908 at commit [`13ab35f`](https://github.com/apache/spark/commit/13ab35f7b5502648dbef51ce2cf68a3fb9b1cab1).

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-608961536
 
 
   Merged build finished. Test PASSed.

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-605078321
 
 
   Merged build finished. Test PASSed.

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-609360284
 
 
   Merged build finished. Test PASSed.

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-609360286
 
 
   Test PASSed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/120823/
   Test PASSed.

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


With regards,
Apache Git Services

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


[GitHub] [spark] HyukjinKwon commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
HyukjinKwon commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-608377026
 
 
   What's your thought @hvanhovell and @cloud-fan? Git blame says you guys touched the codes most recently.

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-608987064
 
 
   Test FAILed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/120794/
   Test FAILed.

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-599177861
 
 
   Merged build finished. Test PASSed.

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-605078321
 
 
   Merged build finished. Test PASSed.

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-599017439
 
 
   Test PASSed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder-K8s/24515/
   Test PASSed.

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


With regards,
Apache Git Services

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


[GitHub] [spark] SparkQA removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
SparkQA removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-598999001
 
 
   **[Test build #119777 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/119777/testReport)** for PR 27908 at commit [`7097b7f`](https://github.com/apache/spark/commit/7097b7f8d66a0ac91eb0efbdc78ba33afa613157).

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-599017436
 
 
   Merged build finished. Test PASSed.

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


With regards,
Apache Git Services

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


[GitHub] [spark] SparkQA commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
SparkQA commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-599012225
 
 
   **[Test build #119780 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/119780/testReport)** for PR 27908 at commit [`13ab35f`](https://github.com/apache/spark/commit/13ab35f7b5502648dbef51ce2cf68a3fb9b1cab1).

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-599175915
 
 
   Merged build finished. Test FAILed.

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-608987059
 
 
   Merged build finished. Test FAILed.

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


With regards,
Apache Git Services

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


[GitHub] [spark] SparkQA commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
SparkQA commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-599012361
 
 
   **[Test build #119780 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/119780/testReport)** for PR 27908 at commit [`13ab35f`](https://github.com/apache/spark/commit/13ab35f7b5502648dbef51ce2cf68a3fb9b1cab1).
    * This patch **fails Python style tests**.
    * This patch merges cleanly.
    * This patch adds no public classes.

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-599029454
 
 
   Test PASSed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder-K8s/24526/
   Test PASSed.

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


With regards,
Apache Git Services

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


[GitHub] [spark] SparkQA removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
SparkQA removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-605077604
 
 
   **[Test build #120499 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/120499/testReport)** for PR 27908 at commit [`e67a2c1`](https://github.com/apache/spark/commit/e67a2c129839042b18b3ec80acac8eaf6038596d).

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


With regards,
Apache Git Services

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


[GitHub] [spark] SparkQA commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
SparkQA commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-599012889
 
 
   **[Test build #119781 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/119781/testReport)** for PR 27908 at commit [`ce19139`](https://github.com/apache/spark/commit/ce19139fccb24f41beda1a26147729f3555bb957).
    * This patch **fails Python style tests**.
    * This patch merges cleanly.
    * This patch adds no public classes.

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


With regards,
Apache Git Services

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


[GitHub] [spark] SparkQA removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
SparkQA removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-615335936
 
 
   **[Test build #121420 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/121420/testReport)** for PR 27908 at commit [`4c88e1e`](https://github.com/apache/spark/commit/4c88e1e518f429874913ade00d558e7a40256c15).

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


With regards,
Apache Git Services

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


[GitHub] [spark] SparkQA commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
SparkQA commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-599001214
 
 
   **[Test build #119778 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/119778/testReport)** for PR 27908 at commit [`c2bc5a2`](https://github.com/apache/spark/commit/c2bc5a2d1e5eda67046e00a387bcb7bdd3ba9c36).

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-599012893
 
 
   Test FAILed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/119781/
   Test FAILed.

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-599021056
 
 
   Test FAILed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/119785/
   Test FAILed.

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-599013848
 
 
   Test PASSed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder-K8s/24513/
   Test PASSed.

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-599012315
 
 
   Test PASSed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder-K8s/24510/
   Test PASSed.

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


With regards,
Apache Git Services

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


[GitHub] [spark] rberenguel commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
rberenguel commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-608471505
 
 
   The changes look reasonable to me, it doesn't seem to add anything public (except on the Python side, where that _should_ be fine) and the tests are there (also, I'd use this 😄 )

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-609110979
 
 
   Test PASSed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder-K8s/25522/
   Test PASSed.

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-599056843
 
 
   Test PASSed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/119796/
   Test PASSed.

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-599029451
 
 
   Merged build finished. Test PASSed.

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


With regards,
Apache Git Services

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


[GitHub] [spark] SparkQA commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
SparkQA commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-609110876
 
 
   **[Test build #120823 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/120823/testReport)** for PR 27908 at commit [`8c90a93`](https://github.com/apache/spark/commit/8c90a9319ebfb7235da514fede96dc74ae2906c2).

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-599012834
 
 
   Merged build finished. Test PASSed.

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-608961538
 
 
   Test PASSed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder-K8s/25492/
   Test PASSed.

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-599012892
 
 
   Merged build finished. Test FAILed.

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-615461294
 
 
   Merged build finished. Test PASSed.

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


With regards,
Apache Git Services

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


[GitHub] [spark] nchammas commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
nchammas commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-599029268
 
 
   Jenkins, my man, retest this please.

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-608724148
 
 
   Test PASSed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder-K8s/25490/
   Test PASSed.

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


With regards,
Apache Git Services

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


[GitHub] [spark] nchammas commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
nchammas commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-608741593
 
 
   Thanks for taking a look, @HyukjinKwon and @rberenguel.
   
   > The changes look reasonable to me, it doesn't seem to add anything public (except on the Python side, where that should be fine)
   
   There are new public Scala APIs to allow use of the new `description` parameter, no?

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-615336438
 
 
   Merged build finished. Test PASSed.

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-599012892
 
 
   Merged build finished. Test FAILed.

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-599170133
 
 
   Test PASSed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder-K8s/24541/
   Test PASSed.

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


With regards,
Apache Git Services

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


[GitHub] [spark] SparkQA commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
SparkQA commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-608721994
 
 
   **[Test build #120791 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/120791/testReport)** for PR 27908 at commit [`336db51`](https://github.com/apache/spark/commit/336db517d566ffd2537bd2edde004a1cc3778c71).

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-608961738
 
 
   Test PASSed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/120791/
   Test PASSed.

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-599056841
 
 
   Merged build finished. Test PASSed.

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


With regards,
Apache Git Services

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


[GitHub] [spark] SparkQA commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
SparkQA commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-608961521
 
 
   **[Test build #120791 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/120791/testReport)** for PR 27908 at commit [`336db51`](https://github.com/apache/spark/commit/336db517d566ffd2537bd2edde004a1cc3778c71).
    * This patch passes all tests.
    * This patch merges cleanly.
    * This patch adds no public classes.

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-599014437
 
 
   Merged build finished. Test FAILed.

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


With regards,
Apache Git Services

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


[GitHub] [spark] nchammas commented on a change in pull request #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
nchammas commented on a change in pull request #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#discussion_r392548582
 
 

 ##########
 File path: sql/core/src/test/scala/org/apache/spark/sql/CachedTableSuite.scala
 ##########
 @@ -1026,10 +1026,10 @@ class CachedTableSuite extends QueryTest with SQLTestUtils
         withTable(s"$db.cachedTable") {
           // Create table 'cachedTable' in temp db for testing purpose.
           spark.catalog.createTable(
-            s"$db.cachedTable",
-            "PARQUET",
-            StructType(Array(StructField("key", StringType))),
-            Map("LOCATION" -> path.toURI.toString))
+            tableName = s"$db.cachedTable",
+            source = "PARQUET",
+            schema = StructType(Array(StructField("key", StringType))),
+            options = Map("LOCATION" -> path.toURI.toString))
 
 
 Review comment:
   I had to make these changes so that the correct method would be invoked. I'm not fluent in Scala, but at least in Python I'd consider this style to also be better form since explicitly naming the parameters eliminates ambiguity.
   
   Would this be considered an API breaking change, though? Since folks who are using the method with unnamed parameters will have trouble once `description` gets added in.
   
   If so, would the solution be to move `description` to the end of the parameter list?

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


With regards,
Apache Git Services

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


[GitHub] [spark] SparkQA removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
SparkQA removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-599017304
 
 
   **[Test build #119785 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/119785/testReport)** for PR 27908 at commit [`a0ad064`](https://github.com/apache/spark/commit/a0ad064aff1b0406fb5fd1dab8cb5b1c2b4140c2).

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


With regards,
Apache Git Services

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


[GitHub] [spark] SparkQA commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
SparkQA commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-599029994
 
 
   **[Test build #119796 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/119796/testReport)** for PR 27908 at commit [`a0ad064`](https://github.com/apache/spark/commit/a0ad064aff1b0406fb5fd1dab8cb5b1c2b4140c2).

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-599198573
 
 
   Merged build finished. Test PASSed.

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


With regards,
Apache Git Services

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


[GitHub] [spark] nchammas commented on a change in pull request #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
nchammas commented on a change in pull request #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#discussion_r392551698
 
 

 ##########
 File path: sql/core/src/test/scala/org/apache/spark/sql/CachedTableSuite.scala
 ##########
 @@ -1026,10 +1026,10 @@ class CachedTableSuite extends QueryTest with SQLTestUtils
         withTable(s"$db.cachedTable") {
           // Create table 'cachedTable' in temp db for testing purpose.
           spark.catalog.createTable(
-            s"$db.cachedTable",
-            "PARQUET",
-            StructType(Array(StructField("key", StringType))),
-            Map("LOCATION" -> path.toURI.toString))
+            tableName = s"$db.cachedTable",
+            source = "PARQUET",
+            schema = StructType(Array(StructField("key", StringType))),
+            options = Map("LOCATION" -> path.toURI.toString))
 
 
 Review comment:
   > This patch fails MiMa tests.
   
   I guess that's a yes, this breaks binary compatibility. Let me try moving the parameter around.

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-605078336
 
 
   Test PASSed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder-K8s/25205/
   Test PASSed.

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-608961737
 
 
   Merged build finished. Test PASSed.

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-599198581
 
 
   Test PASSed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/119816/
   Test PASSed.

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-599170131
 
 
   Merged build finished. Test PASSed.

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-599002135
 
 
   Merged build finished. Test FAILed.

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-599012310
 
 
   Merged build finished. Test PASSed.

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


With regards,
Apache Git Services

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


[GitHub] [spark] SparkQA removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
SparkQA removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-599177764
 
 
   **[Test build #119816 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/119816/testReport)** for PR 27908 at commit [`2896345`](https://github.com/apache/spark/commit/289634519f9ea565d1ddf5004148b0bb78650284).

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


With regards,
Apache Git Services

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


[GitHub] [spark] nchammas commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
nchammas commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-599020089
 
 
   OK, I think I've addressed the binary compatibility issues, but as a Scala n00b I'm a little surprised at the size of the diff required to add a single parameter.
   
   Is there a better way to do what I'm trying to do?

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-599013846
 
 
   Merged build finished. Test PASSed.

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-599017436
 
 
   Merged build finished. Test PASSed.

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-615336438
 
 
   Merged build finished. Test PASSed.

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-599012370
 
 
   Test FAILed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/119780/
   Test FAILed.

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


With regards,
Apache Git Services

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


[GitHub] [spark] SparkQA commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
SparkQA commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-615335936
 
 
   **[Test build #121420 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/121420/testReport)** for PR 27908 at commit [`4c88e1e`](https://github.com/apache/spark/commit/4c88e1e518f429874913ade00d558e7a40256c15).

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-608961737
 
 
   Merged build finished. Test PASSed.

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-599001330
 
 
   Test PASSed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder-K8s/24508/
   Test PASSed.

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-608724117
 
 
   Merged build finished. Test PASSed.

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-598999138
 
 
   Test PASSed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder-K8s/24507/
   Test PASSed.

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-599175915
 
 
   Merged build finished. Test FAILed.

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-599177863
 
 
   Test PASSed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder-K8s/24546/
   Test PASSed.

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-605301128
 
 
   Test PASSed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/120499/
   Test PASSed.

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-599175917
 
 
   Test FAILed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/119811/
   Test FAILed.

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-599021056
 
 
   Test FAILed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/119785/
   Test FAILed.

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-608961538
 
 
   Test PASSed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder-K8s/25492/
   Test PASSed.

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-599013846
 
 
   Merged build finished. Test PASSed.

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


With regards,
Apache Git Services

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


[GitHub] [spark] SparkQA commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
SparkQA commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-598999274
 
 
   **[Test build #119777 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/119777/testReport)** for PR 27908 at commit [`7097b7f`](https://github.com/apache/spark/commit/7097b7f8d66a0ac91eb0efbdc78ba33afa613157).
    * This patch **fails Python style tests**.
    * This patch merges cleanly.
    * This patch adds no public classes.

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


With regards,
Apache Git Services

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


[GitHub] [spark] SparkQA commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
SparkQA commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-605300432
 
 
   **[Test build #120499 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/120499/testReport)** for PR 27908 at commit [`e67a2c1`](https://github.com/apache/spark/commit/e67a2c129839042b18b3ec80acac8eaf6038596d).
    * This patch passes all tests.
    * This patch merges cleanly.
    * This patch adds no public classes.

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


With regards,
Apache Git Services

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


[GitHub] [spark] SparkQA removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
SparkQA removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-599001214
 
 
   **[Test build #119778 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/119778/testReport)** for PR 27908 at commit [`c2bc5a2`](https://github.com/apache/spark/commit/c2bc5a2d1e5eda67046e00a387bcb7bdd3ba9c36).

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


With regards,
Apache Git Services

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


[GitHub] [spark] SparkQA commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
SparkQA commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-599017304
 
 
   **[Test build #119785 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/119785/testReport)** for PR 27908 at commit [`a0ad064`](https://github.com/apache/spark/commit/a0ad064aff1b0406fb5fd1dab8cb5b1c2b4140c2).

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-608961738
 
 
   Test PASSed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/120791/
   Test PASSed.

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


With regards,
Apache Git Services

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


[GitHub] [spark] nchammas commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
nchammas commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-609110472
 
 
   Jenkins, retest this please.

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-609110973
 
 
   Merged build finished. Test PASSed.

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


With regards,
Apache Git Services

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


[GitHub] [spark] SparkQA commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
SparkQA commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-598999001
 
 
   **[Test build #119777 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/119777/testReport)** for PR 27908 at commit [`7097b7f`](https://github.com/apache/spark/commit/7097b7f8d66a0ac91eb0efbdc78ba33afa613157).

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-615461301
 
 
   Test PASSed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/121420/
   Test PASSed.

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-608961536
 
 
   Merged build finished. Test PASSed.

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


With regards,
Apache Git Services

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


[GitHub] [spark] SparkQA removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
SparkQA removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-608721994
 
 
   **[Test build #120791 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/120791/testReport)** for PR 27908 at commit [`336db51`](https://github.com/apache/spark/commit/336db517d566ffd2537bd2edde004a1cc3778c71).

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


With regards,
Apache Git Services

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


[GitHub] [spark] nchammas commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
nchammas commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-611578243
 
 
   Is this good to go?

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-615336452
 
 
   Test PASSed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder-K8s/26104/
   Test PASSed.

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


With regards,
Apache Git Services

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


[GitHub] [spark] SparkQA commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
SparkQA commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-608962185
 
 
   **[Test build #120794 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/120794/testReport)** for PR 27908 at commit [`8c90a93`](https://github.com/apache/spark/commit/8c90a9319ebfb7235da514fede96dc74ae2906c2).

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-609360284
 
 
   Merged build finished. Test PASSed.

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-599002136
 
 
   Test FAILed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/119778/
   Test FAILed.

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-599056843
 
 
   Test PASSed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/119796/
   Test PASSed.

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-605078336
 
 
   Test PASSed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder-K8s/25205/
   Test PASSed.

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-598999138
 
 
   Test PASSed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder-K8s/24507/
   Test PASSed.

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-599175917
 
 
   Test FAILed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/119811/
   Test FAILed.

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


With regards,
Apache Git Services

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


[GitHub] [spark] SparkQA commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
SparkQA commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-609360150
 
 
   **[Test build #120823 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/120823/testReport)** for PR 27908 at commit [`8c90a93`](https://github.com/apache/spark/commit/8c90a9319ebfb7235da514fede96dc74ae2906c2).
    * This patch passes all tests.
    * This patch merges cleanly.
    * This patch adds no public classes.

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-598999275
 
 
   Merged build finished. Test FAILed.

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


With regards,
Apache Git Services

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


[GitHub] [spark] SparkQA commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
SparkQA commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-599175883
 
 
   **[Test build #119811 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/119811/testReport)** for PR 27908 at commit [`2896345`](https://github.com/apache/spark/commit/289634519f9ea565d1ddf5004148b0bb78650284).
    * This patch **fails due to an unknown error code, -9**.
    * This patch merges cleanly.
    * This patch adds no public classes.

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-599002136
 
 
   Test FAILed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/119778/
   Test FAILed.

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-598999276
 
 
   Test FAILed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/119777/
   Test FAILed.

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-599012370
 
 
   Test FAILed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/119780/
   Test FAILed.

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-608724148
 
 
   Test PASSed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder-K8s/25490/
   Test PASSed.

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-599012893
 
 
   Test FAILed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/119781/
   Test FAILed.

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


With regards,
Apache Git Services

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


[GitHub] [spark] SparkQA commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
SparkQA commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-599014431
 
 
   **[Test build #119783 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/119783/testReport)** for PR 27908 at commit [`35d15e2`](https://github.com/apache/spark/commit/35d15e2c67175b3e3396e4cdb8dbcb06a85be772).
    * This patch **fails MiMa tests**.
    * This patch merges cleanly.
    * This patch adds no public classes.

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


With regards,
Apache Git Services

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


[GitHub] [spark] SparkQA removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
SparkQA removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-609110876
 
 
   **[Test build #120823 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/120823/testReport)** for PR 27908 at commit [`8c90a93`](https://github.com/apache/spark/commit/8c90a9319ebfb7235da514fede96dc74ae2906c2).

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-599014440
 
 
   Test FAILed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/119783/
   Test FAILed.

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-598999275
 
 
   Merged build finished. Test FAILed.

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-615461294
 
 
   Merged build finished. Test PASSed.

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


With regards,
Apache Git Services

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


[GitHub] [spark] SparkQA commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
SparkQA commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-599198396
 
 
   **[Test build #119816 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/119816/testReport)** for PR 27908 at commit [`2896345`](https://github.com/apache/spark/commit/289634519f9ea565d1ddf5004148b0bb78650284).
    * This patch passes all tests.
    * This patch merges cleanly.
    * This patch adds no public classes.

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-599012310
 
 
   Merged build finished. Test PASSed.

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-609110979
 
 
   Test PASSed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder-K8s/25522/
   Test PASSed.

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-599021055
 
 
   Merged build finished. Test FAILed.

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-599001327
 
 
   Merged build finished. Test PASSed.

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-599029451
 
 
   Merged build finished. Test PASSed.

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-599012834
 
 
   Merged build finished. Test PASSed.

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


With regards,
Apache Git Services

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


[GitHub] [spark] SparkQA commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
SparkQA commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-599002128
 
 
   **[Test build #119778 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/119778/testReport)** for PR 27908 at commit [`c2bc5a2`](https://github.com/apache/spark/commit/c2bc5a2d1e5eda67046e00a387bcb7bdd3ba9c36).
    * This patch **fails MiMa tests**.
    * This patch merges cleanly.
    * This patch adds no public classes.

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-599029454
 
 
   Test PASSed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder-K8s/24526/
   Test PASSed.

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-599177863
 
 
   Test PASSed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder-K8s/24546/
   Test PASSed.

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-598999276
 
 
   Test FAILed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/119777/
   Test FAILed.

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


With regards,
Apache Git Services

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


[GitHub] [spark] SparkQA commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
SparkQA commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-599056600
 
 
   **[Test build #119796 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/119796/testReport)** for PR 27908 at commit [`a0ad064`](https://github.com/apache/spark/commit/a0ad064aff1b0406fb5fd1dab8cb5b1c2b4140c2).
    * This patch passes all tests.
    * This patch merges cleanly.
    * This patch adds no public classes.

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-599013848
 
 
   Test PASSed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder-K8s/24513/
   Test PASSed.

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-599014437
 
 
   Merged build finished. Test FAILed.

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-599012836
 
 
   Test PASSed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder-K8s/24511/
   Test PASSed.

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


With regards,
Apache Git Services

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


[GitHub] [spark] SparkQA commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
SparkQA commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-599013754
 
 
   **[Test build #119783 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/119783/testReport)** for PR 27908 at commit [`35d15e2`](https://github.com/apache/spark/commit/35d15e2c67175b3e3396e4cdb8dbcb06a85be772).

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-598999137
 
 
   Merged build finished. Test PASSed.

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-598999137
 
 
   Merged build finished. Test PASSed.

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-615336452
 
 
   Test PASSed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder-K8s/26104/
   Test PASSed.

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-599017439
 
 
   Test PASSed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder-K8s/24515/
   Test PASSed.

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()
URL: https://github.com/apache/spark/pull/27908#issuecomment-615461301
 
 
   Test PASSed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/121420/
   Test PASSed.

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


With regards,
Apache Git Services

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