You are viewing a plain text version of this content. The canonical link for it is here.
Posted to reviews@spark.apache.org by andrewor14 <gi...@git.apache.org> on 2016/05/27 00:46:48 UTC

[GitHub] spark pull request: [SPARK-15594][SQL] ALTER TABLE SERDEPROPERTIES...

GitHub user andrewor14 opened a pull request:

    https://github.com/apache/spark/pull/13343

    [SPARK-15594][SQL] ALTER TABLE SERDEPROPERTIES does not respect partition spec

    ## What changes were proposed in this pull request?
    
    These commands ignore the partition spec and change the storage properties of the table itself:
    ```
    ALTER TABLE table_name PARTITION (a=1, b=2) SET SERDE 'my_serde'
    ALTER TABLE table_name PARTITION (a=1, b=2) SET SERDEPROPERTIES ('key1'='val1')
    ```
    Now they change the storage properties of the specified partition.
    
    ## How was this patch tested?
    
    DDLSuite
    


You can merge this pull request into a Git repository by running:

    $ git pull https://github.com/andrewor14/spark alter-table-serdeproperties

Alternatively you can review and apply these changes as the patch at:

    https://github.com/apache/spark/pull/13343.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

    This closes #13343
    
----
commit 7a3d4035e1fbb2cd08d199d584d4beb6a3c6bcba
Author: Andrew Or <an...@databricks.com>
Date:   2016-05-27T00:44:20Z

    Implement ALTER TABLE ... PARTITION ... SERDEPROPERTIES

----


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] spark pull request: [SPARK-15594][SQL] ALTER TABLE SERDEPROPERTIES...

Posted by yhuai <gi...@git.apache.org>.
Github user yhuai commented on the pull request:

    https://github.com/apache/spark/pull/13343#issuecomment-222279262
  
    lgtm. Merging to master and branch 2.0.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] spark pull request: [SPARK-15594][SQL] ALTER TABLE SERDEPROPERTIES...

Posted by yhuai <gi...@git.apache.org>.
Github user yhuai commented on a diff in the pull request:

    https://github.com/apache/spark/pull/13343#discussion_r64856240
  
    --- Diff: sql/core/src/test/scala/org/apache/spark/sql/execution/command/DDLSuite.scala ---
    @@ -871,6 +879,58 @@ class DDLSuite extends QueryTest with SharedSQLContext with BeforeAndAfterEach {
         }
       }
     
    +  private def testSetSerdePartition(isDatasourceTable: Boolean): Unit = {
    +    val catalog = spark.sessionState.catalog
    +    val tableIdent = TableIdentifier("tab1", Some("dbx"))
    +    val spec = Map("a" -> "1", "b" -> "2")
    +    createDatabase(catalog, "dbx")
    +    createTable(catalog, tableIdent)
    +    createTablePartition(catalog, spec, tableIdent)
    +    createTablePartition(catalog, Map("a" -> "1", "b" -> "3"), tableIdent)
    +    createTablePartition(catalog, Map("a" -> "2", "b" -> "2"), tableIdent)
    +    createTablePartition(catalog, Map("a" -> "2", "b" -> "3"), tableIdent)
    +    if (isDatasourceTable) {
    +      convertToDatasourceTable(catalog, tableIdent)
    +    }
    +    assert(catalog.getPartition(tableIdent, spec).storage.serde.isEmpty)
    +    assert(catalog.getPartition(tableIdent, spec).storage.serdeProperties.isEmpty)
    +    // set table serde and/or properties (should fail on datasource tables)
    +    if (isDatasourceTable) {
    +      val e1 = intercept[AnalysisException] {
    +        sql("ALTER TABLE dbx.tab1 PARTITION (a=1, b=2) SET SERDE 'whatever'")
    +      }
    +      val e2 = intercept[AnalysisException] {
    +        sql("ALTER TABLE dbx.tab1 PARTITION (a=1, b=2) SET SERDE 'org.apache.madoop' " +
    +          "WITH SERDEPROPERTIES ('k' = 'v', 'kay' = 'vee')")
    +      }
    +      assert(e1.getMessage.contains("datasource"))
    +      assert(e2.getMessage.contains("datasource"))
    +    } else {
    +      sql("ALTER TABLE dbx.tab1 PARTITION (a=1, b=2) SET SERDE 'org.apache.jadoop'")
    +      assert(catalog.getPartition(tableIdent, spec).storage.serde == Some("org.apache.jadoop"))
    +      assert(catalog.getPartition(tableIdent, spec).storage.serdeProperties.isEmpty)
    +      sql("ALTER TABLE dbx.tab1 PARTITION (a=1, b=2) SET SERDE 'org.apache.madoop' " +
    +        "WITH SERDEPROPERTIES ('k' = 'v', 'kay' = 'vee')")
    +      assert(catalog.getPartition(tableIdent, spec).storage.serde == Some("org.apache.madoop"))
    +      assert(catalog.getPartition(tableIdent, spec).storage.serdeProperties ==
    +        Map("k" -> "v", "kay" -> "vee"))
    +    }
    +    // set serde properties only
    +    sql("ALTER TABLE dbx.tab1 PARTITION (a=1, b=2) " +
    +      "SET SERDEPROPERTIES ('k' = 'vvv', 'kay' = 'vee')")
    --- End diff --
    
    For data source tables, seems we do not store any partition specs. I am wondering why metastore does not complain?


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] spark pull request: [SPARK-15594][SQL] ALTER TABLE SERDEPROPERTIES...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the pull request:

    https://github.com/apache/spark/pull/13343#issuecomment-222261345
  
    Test PASSed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/59522/
    Test PASSed.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] spark pull request: [SPARK-15594][SQL] ALTER TABLE SERDEPROPERTIES...

Posted by andrewor14 <gi...@git.apache.org>.
Github user andrewor14 commented on a diff in the pull request:

    https://github.com/apache/spark/pull/13343#discussion_r64858434
  
    --- Diff: sql/core/src/test/scala/org/apache/spark/sql/execution/command/DDLSuite.scala ---
    @@ -871,6 +879,58 @@ class DDLSuite extends QueryTest with SharedSQLContext with BeforeAndAfterEach {
         }
       }
     
    +  private def testSetSerdePartition(isDatasourceTable: Boolean): Unit = {
    +    val catalog = spark.sessionState.catalog
    +    val tableIdent = TableIdentifier("tab1", Some("dbx"))
    +    val spec = Map("a" -> "1", "b" -> "2")
    +    createDatabase(catalog, "dbx")
    +    createTable(catalog, tableIdent)
    +    createTablePartition(catalog, spec, tableIdent)
    +    createTablePartition(catalog, Map("a" -> "1", "b" -> "3"), tableIdent)
    +    createTablePartition(catalog, Map("a" -> "2", "b" -> "2"), tableIdent)
    +    createTablePartition(catalog, Map("a" -> "2", "b" -> "3"), tableIdent)
    +    if (isDatasourceTable) {
    +      convertToDatasourceTable(catalog, tableIdent)
    +    }
    +    assert(catalog.getPartition(tableIdent, spec).storage.serde.isEmpty)
    +    assert(catalog.getPartition(tableIdent, spec).storage.serdeProperties.isEmpty)
    +    // set table serde and/or properties (should fail on datasource tables)
    +    if (isDatasourceTable) {
    +      val e1 = intercept[AnalysisException] {
    +        sql("ALTER TABLE dbx.tab1 PARTITION (a=1, b=2) SET SERDE 'whatever'")
    +      }
    +      val e2 = intercept[AnalysisException] {
    +        sql("ALTER TABLE dbx.tab1 PARTITION (a=1, b=2) SET SERDE 'org.apache.madoop' " +
    +          "WITH SERDEPROPERTIES ('k' = 'v', 'kay' = 'vee')")
    +      }
    +      assert(e1.getMessage.contains("datasource"))
    +      assert(e2.getMessage.contains("datasource"))
    +    } else {
    +      sql("ALTER TABLE dbx.tab1 PARTITION (a=1, b=2) SET SERDE 'org.apache.jadoop'")
    +      assert(catalog.getPartition(tableIdent, spec).storage.serde == Some("org.apache.jadoop"))
    +      assert(catalog.getPartition(tableIdent, spec).storage.serdeProperties.isEmpty)
    +      sql("ALTER TABLE dbx.tab1 PARTITION (a=1, b=2) SET SERDE 'org.apache.madoop' " +
    +        "WITH SERDEPROPERTIES ('k' = 'v', 'kay' = 'vee')")
    +      assert(catalog.getPartition(tableIdent, spec).storage.serde == Some("org.apache.madoop"))
    +      assert(catalog.getPartition(tableIdent, spec).storage.serdeProperties ==
    +        Map("k" -> "v", "kay" -> "vee"))
    +    }
    +    // set serde properties only
    +    sql("ALTER TABLE dbx.tab1 PARTITION (a=1, b=2) " +
    +      "SET SERDEPROPERTIES ('k' = 'vvv', 'kay' = 'vee')")
    --- End diff --
    
    ah I see. We can add 1 more check


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] spark pull request: [SPARK-15594][SQL] ALTER TABLE SERDEPROPERTIES...

Posted by yhuai <gi...@git.apache.org>.
Github user yhuai commented on a diff in the pull request:

    https://github.com/apache/spark/pull/13343#discussion_r64849728
  
    --- Diff: sql/core/src/test/scala/org/apache/spark/sql/execution/command/DDLSuite.scala ---
    @@ -871,6 +879,58 @@ class DDLSuite extends QueryTest with SharedSQLContext with BeforeAndAfterEach {
         }
       }
     
    +  private def testSetSerdePartition(isDatasourceTable: Boolean): Unit = {
    +    val catalog = spark.sessionState.catalog
    +    val tableIdent = TableIdentifier("tab1", Some("dbx"))
    +    val spec = Map("a" -> "1", "b" -> "2")
    +    createDatabase(catalog, "dbx")
    +    createTable(catalog, tableIdent)
    +    createTablePartition(catalog, spec, tableIdent)
    +    createTablePartition(catalog, Map("a" -> "1", "b" -> "3"), tableIdent)
    +    createTablePartition(catalog, Map("a" -> "2", "b" -> "2"), tableIdent)
    +    createTablePartition(catalog, Map("a" -> "2", "b" -> "3"), tableIdent)
    +    if (isDatasourceTable) {
    +      convertToDatasourceTable(catalog, tableIdent)
    +    }
    +    assert(catalog.getPartition(tableIdent, spec).storage.serde.isEmpty)
    +    assert(catalog.getPartition(tableIdent, spec).storage.serdeProperties.isEmpty)
    +    // set table serde and/or properties (should fail on datasource tables)
    +    if (isDatasourceTable) {
    +      val e1 = intercept[AnalysisException] {
    +        sql("ALTER TABLE dbx.tab1 PARTITION (a=1, b=2) SET SERDE 'whatever'")
    +      }
    +      val e2 = intercept[AnalysisException] {
    +        sql("ALTER TABLE dbx.tab1 PARTITION (a=1, b=2) SET SERDE 'org.apache.madoop' " +
    +          "WITH SERDEPROPERTIES ('k' = 'v', 'kay' = 'vee')")
    +      }
    +      assert(e1.getMessage.contains("datasource"))
    +      assert(e2.getMessage.contains("datasource"))
    +    } else {
    +      sql("ALTER TABLE dbx.tab1 PARTITION (a=1, b=2) SET SERDE 'org.apache.jadoop'")
    +      assert(catalog.getPartition(tableIdent, spec).storage.serde == Some("org.apache.jadoop"))
    +      assert(catalog.getPartition(tableIdent, spec).storage.serdeProperties.isEmpty)
    +      sql("ALTER TABLE dbx.tab1 PARTITION (a=1, b=2) SET SERDE 'org.apache.madoop' " +
    +        "WITH SERDEPROPERTIES ('k' = 'v', 'kay' = 'vee')")
    +      assert(catalog.getPartition(tableIdent, spec).storage.serde == Some("org.apache.madoop"))
    +      assert(catalog.getPartition(tableIdent, spec).storage.serdeProperties ==
    +        Map("k" -> "v", "kay" -> "vee"))
    +    }
    +    // set serde properties only
    +    sql("ALTER TABLE dbx.tab1 PARTITION (a=1, b=2) " +
    +      "SET SERDEPROPERTIES ('k' = 'vvv', 'kay' = 'vee')")
    --- End diff --
    
    Do data source tables allow this?


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] spark pull request: [SPARK-15594][SQL] ALTER TABLE SERDEPROPERTIES...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the pull request:

    https://github.com/apache/spark/pull/13343#issuecomment-222033613
  
    **[Test build #59440 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/59440/consoleFull)** for PR 13343 at commit [`7a3d403`](https://github.com/apache/spark/commit/7a3d4035e1fbb2cd08d199d584d4beb6a3c6bcba).


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] spark pull request: [SPARK-15594][SQL] ALTER TABLE SERDEPROPERTIES...

Posted by asfgit <gi...@git.apache.org>.
Github user asfgit closed the pull request at:

    https://github.com/apache/spark/pull/13343


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] spark pull request: [SPARK-15594][SQL] ALTER TABLE SERDEPROPERTIES...

Posted by andrewor14 <gi...@git.apache.org>.
Github user andrewor14 commented on a diff in the pull request:

    https://github.com/apache/spark/pull/13343#discussion_r64855963
  
    --- Diff: sql/core/src/test/scala/org/apache/spark/sql/execution/command/DDLSuite.scala ---
    @@ -871,6 +879,58 @@ class DDLSuite extends QueryTest with SharedSQLContext with BeforeAndAfterEach {
         }
       }
     
    +  private def testSetSerdePartition(isDatasourceTable: Boolean): Unit = {
    +    val catalog = spark.sessionState.catalog
    +    val tableIdent = TableIdentifier("tab1", Some("dbx"))
    +    val spec = Map("a" -> "1", "b" -> "2")
    +    createDatabase(catalog, "dbx")
    +    createTable(catalog, tableIdent)
    +    createTablePartition(catalog, spec, tableIdent)
    +    createTablePartition(catalog, Map("a" -> "1", "b" -> "3"), tableIdent)
    +    createTablePartition(catalog, Map("a" -> "2", "b" -> "2"), tableIdent)
    +    createTablePartition(catalog, Map("a" -> "2", "b" -> "3"), tableIdent)
    +    if (isDatasourceTable) {
    +      convertToDatasourceTable(catalog, tableIdent)
    +    }
    +    assert(catalog.getPartition(tableIdent, spec).storage.serde.isEmpty)
    +    assert(catalog.getPartition(tableIdent, spec).storage.serdeProperties.isEmpty)
    +    // set table serde and/or properties (should fail on datasource tables)
    +    if (isDatasourceTable) {
    +      val e1 = intercept[AnalysisException] {
    +        sql("ALTER TABLE dbx.tab1 PARTITION (a=1, b=2) SET SERDE 'whatever'")
    +      }
    +      val e2 = intercept[AnalysisException] {
    +        sql("ALTER TABLE dbx.tab1 PARTITION (a=1, b=2) SET SERDE 'org.apache.madoop' " +
    +          "WITH SERDEPROPERTIES ('k' = 'v', 'kay' = 'vee')")
    +      }
    +      assert(e1.getMessage.contains("datasource"))
    +      assert(e2.getMessage.contains("datasource"))
    +    } else {
    +      sql("ALTER TABLE dbx.tab1 PARTITION (a=1, b=2) SET SERDE 'org.apache.jadoop'")
    +      assert(catalog.getPartition(tableIdent, spec).storage.serde == Some("org.apache.jadoop"))
    +      assert(catalog.getPartition(tableIdent, spec).storage.serdeProperties.isEmpty)
    +      sql("ALTER TABLE dbx.tab1 PARTITION (a=1, b=2) SET SERDE 'org.apache.madoop' " +
    +        "WITH SERDEPROPERTIES ('k' = 'v', 'kay' = 'vee')")
    +      assert(catalog.getPartition(tableIdent, spec).storage.serde == Some("org.apache.madoop"))
    +      assert(catalog.getPartition(tableIdent, spec).storage.serdeProperties ==
    +        Map("k" -> "v", "kay" -> "vee"))
    +    }
    +    // set serde properties only
    +    sql("ALTER TABLE dbx.tab1 PARTITION (a=1, b=2) " +
    +      "SET SERDEPROPERTIES ('k' = 'vvv', 'kay' = 'vee')")
    --- End diff --
    
    right now they do. Should they not?


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] spark pull request: [SPARK-15594][SQL] ALTER TABLE SERDEPROPERTIES...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the pull request:

    https://github.com/apache/spark/pull/13343#issuecomment-222043558
  
    Merged build finished. Test PASSed.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] spark pull request: [SPARK-15594][SQL] ALTER TABLE SERDEPROPERTIES...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the pull request:

    https://github.com/apache/spark/pull/13343#issuecomment-222043560
  
    Test PASSed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/59440/
    Test PASSed.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] spark pull request: [SPARK-15594][SQL] ALTER TABLE SERDEPROPERTIES...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the pull request:

    https://github.com/apache/spark/pull/13343#issuecomment-222043434
  
    **[Test build #59440 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/59440/consoleFull)** for PR 13343 at commit [`7a3d403`](https://github.com/apache/spark/commit/7a3d4035e1fbb2cd08d199d584d4beb6a3c6bcba).
     * This patch passes all tests.
     * This patch merges cleanly.
     * This patch adds no public classes.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] spark pull request: [SPARK-15594][SQL] ALTER TABLE SERDEPROPERTIES...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the pull request:

    https://github.com/apache/spark/pull/13343#issuecomment-222246494
  
    **[Test build #59522 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/59522/consoleFull)** for PR 13343 at commit [`a6ece7f`](https://github.com/apache/spark/commit/a6ece7fd8181cab5fbf24b4b809fad39e6199609).


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] spark pull request: [SPARK-15594][SQL] ALTER TABLE SERDEPROPERTIES...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the pull request:

    https://github.com/apache/spark/pull/13343#issuecomment-222261164
  
    **[Test build #59522 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/59522/consoleFull)** for PR 13343 at commit [`a6ece7f`](https://github.com/apache/spark/commit/a6ece7fd8181cab5fbf24b4b809fad39e6199609).
     * This patch passes all tests.
     * This patch merges cleanly.
     * This patch adds no public classes.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] spark pull request: [SPARK-15594][SQL] ALTER TABLE SERDEPROPERTIES...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the pull request:

    https://github.com/apache/spark/pull/13343#issuecomment-222261344
  
    Merged build finished. Test PASSed.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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