You are viewing a plain text version of this content. The canonical link for it is here.
Posted to reviews@spark.apache.org by xdcjie <gi...@git.apache.org> on 2018/05/29 06:00:41 UTC

[GitHub] spark pull request #21447: [SPARK-24339][SQL]Add project for transform/map/r...

GitHub user xdcjie opened a pull request:

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

    [SPARK-24339][SQL]Add project for transform/map/reduce sql to prune column

    ## What changes were proposed in this pull request?
    
    Transform query do not have Project Node, so that it will scan all the data of table. query like:
    
    `select transform(a, b) using 'func' from e`
    
    In this PR, I propose to add Project Node for transform query, so that it can scan less data by prune columns.
    
    ## How was this patch tested?
    
    Modify existing test ("transform query spec")


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

    $ git pull https://github.com/xdcjie/spark branch-2.2

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

    https://github.com/apache/spark/pull/21447.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 #21447
    
----
commit 11c5c5797e0fe6879e3434d7b1fae2687bcacd1e
Author: xdcjie <xd...@...>
Date:   2018-05-29T04:57:19Z

    Add project for tranform/map/reduce sql to prune column

----


---

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


[GitHub] spark issue #21447: [SPARK-24339][SQL]Add project for transform/map/reduce s...

Posted by HyukjinKwon <gi...@git.apache.org>.
Github user HyukjinKwon commented on the issue:

    https://github.com/apache/spark/pull/21447
  
    Wait, why is it against branch-2.2 not master?


---

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


[GitHub] spark issue #21447: [SPARK-24339][SQL]Add project for transform/map/reduce s...

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

    https://github.com/apache/spark/pull/21447
  
    **[Test build #93103 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/93103/testReport)** for PR 21447 at commit [`12b688d`](https://github.com/apache/spark/commit/12b688df78a249e619eb119de1a3c55346d3d336).
     * This patch **fails Spark unit tests**.
     * This patch merges cleanly.
     * This patch adds no public classes.


---

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


[GitHub] spark issue #21447: [SPARK-24339][SQL]Add project for transform/map/reduce s...

Posted by gatorsmile <gi...@git.apache.org>.
Github user gatorsmile commented on the issue:

    https://github.com/apache/spark/pull/21447
  
    Sorry, the fix does not look good to me. We should let the optimizer add the project automatically. 


---

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


[GitHub] spark issue #21447: [SPARK-24339][SQL]Add project for transform/map/reduce s...

Posted by xuanyuanking <gi...@git.apache.org>.
Github user xuanyuanking commented on the issue:

    https://github.com/apache/spark/pull/21447
  
    I want to give a follow up PR and cc @gatorsmile @maropu for a review.


---

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


[GitHub] spark issue #21447: [SPARK-24339][SQL]Add project for transform/map/reduce s...

Posted by maropu <gi...@git.apache.org>.
Github user maropu commented on the issue:

    https://github.com/apache/spark/pull/21447
  
    Could you add explain result differences with/without this pr in the description?


---

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


[GitHub] spark pull request #21447: [SPARK-24339][SQL]Add project for transform/map/r...

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

    https://github.com/apache/spark/pull/21447#discussion_r191324411
  
    --- Diff: sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/parser/AstBuilder.scala ---
    @@ -338,6 +338,17 @@ class AstBuilder(conf: SQLConf) extends SqlBaseBaseVisitor[AnyRef] with Logging
             // Add where.
             val withFilter = relation.optionalMap(where)(filter)
     
    +        // Add project.
    +        val namedExpressions = expressions.map {
    +          case e: NamedExpression => e
    +          case e: Expression => UnresolvedAlias(e)
    --- End diff --
    
    just a style issue.


---

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


[GitHub] spark issue #21447: [SPARK-24339][SQL]Add project for transform/map/reduce s...

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

    https://github.com/apache/spark/pull/21447
  
    **[Test build #93103 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/93103/testReport)** for PR 21447 at commit [`12b688d`](https://github.com/apache/spark/commit/12b688df78a249e619eb119de1a3c55346d3d336).


---

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


[GitHub] spark issue #21447: [SPARK-24339][SQL]Add project for transform/map/reduce s...

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

    https://github.com/apache/spark/pull/21447
  
    Can one of the admins verify this patch?


---

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


[GitHub] spark issue #21447: [SPARK-24339][SQL]Add project for transform/map/reduce s...

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

    https://github.com/apache/spark/pull/21447
  
    Merged build finished. Test FAILed.


---

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


[GitHub] spark issue #21447: [SPARK-24339][SQL]Add project for transform/map/reduce s...

Posted by maropu <gi...@git.apache.org>.
Github user maropu commented on the issue:

    https://github.com/apache/spark/pull/21447
  
    @gatorsmile Can you trigger this?


---

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


[GitHub] spark issue #21447: [SPARK-24339][SQL]Add project for transform/map/reduce s...

Posted by HyukjinKwon <gi...@git.apache.org>.
Github user HyukjinKwon commented on the issue:

    https://github.com/apache/spark/pull/21447
  
    @xdcjie, mind closing this one?


---

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


[GitHub] spark issue #21447: [SPARK-24339][SQL]Add project for transform/map/reduce s...

Posted by gatorsmile <gi...@git.apache.org>.
Github user gatorsmile commented on the issue:

    https://github.com/apache/spark/pull/21447
  
    @maropu Do you want to take this over and add such a project in `ColumnPruning`?  


---

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


[GitHub] spark issue #21447: [SPARK-24339][SQL]Add project for transform/map/reduce s...

Posted by xdcjie <gi...@git.apache.org>.
Github user xdcjie commented on the issue:

    https://github.com/apache/spark/pull/21447
  
    @maropu @gatorsmile Do you have any comment/suggestion for this PR? Thanks.


---

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


[GitHub] spark issue #21447: [SPARK-24339][SQL]Add project for transform/map/reduce s...

Posted by xdcjie <gi...@git.apache.org>.
Github user xdcjie commented on the issue:

    https://github.com/apache/spark/pull/21447
  
    retest this please


---

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


[GitHub] spark issue #21447: [SPARK-24339][SQL]Add project for transform/map/reduce s...

Posted by xdcjie <gi...@git.apache.org>.
Github user xdcjie commented on the issue:

    https://github.com/apache/spark/pull/21447
  
    Ok!


---

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


[GitHub] spark pull request #21447: [SPARK-24339][SQL]Add project for transform/map/r...

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

    https://github.com/apache/spark/pull/21447#discussion_r191330544
  
    --- Diff: sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/parser/AstBuilder.scala ---
    @@ -338,6 +338,17 @@ class AstBuilder(conf: SQLConf) extends SqlBaseBaseVisitor[AnyRef] with Logging
             // Add where.
             val withFilter = relation.optionalMap(where)(filter)
     
    +        // Add project.
    +        val namedExpressions = expressions.map {
    +          case e: NamedExpression => e
    +          case e: Expression => UnresolvedAlias(e)
    --- End diff --
    
    The style is updated, review this, please.


---

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


[GitHub] spark issue #21447: [SPARK-24339][SQL]Add project for transform/map/reduce s...

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

    https://github.com/apache/spark/pull/21447
  
    **[Test build #92842 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/92842/testReport)** for PR 21447 at commit [`3997ceb`](https://github.com/apache/spark/commit/3997cebc06dad513fe58f472022026c00da5f38f).


---

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


[GitHub] spark pull request #21447: [SPARK-24339][SQL]Add project for transform/map/r...

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

    https://github.com/apache/spark/pull/21447#discussion_r192068576
  
    --- Diff: sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/parser/AstBuilder.scala ---
    @@ -338,6 +338,17 @@ class AstBuilder(conf: SQLConf) extends SqlBaseBaseVisitor[AnyRef] with Logging
             // Add where.
             val withFilter = relation.optionalMap(where)(filter)
     
    +        // Add project.
    +        val namedExpressions = expressions.map {
    +          case e: NamedExpression => e
    +          case e: Expression => UnresolvedAlias(e)
    --- End diff --
    
    I tried, "case e: _ => UnresolveAlias(e)" will occur "unbound wildcard type" complie error. I will revert to "case e: Expression => UnresolvedAlias(e)".


---

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


[GitHub] spark issue #21447: [SPARK-24339][SQL]Add project for transform/map/reduce s...

Posted by xdcjie <gi...@git.apache.org>.
Github user xdcjie commented on the issue:

    https://github.com/apache/spark/pull/21447
  
    @HyukjinKwon Our project is based on the branch-2.2, we will merge the patch to local branch manually if it is against master. we prefer following community to local branch.
    
     If you don't like this approach, I will close the PR and make a new PR to against master.


---

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


[GitHub] spark issue #21447: [SPARK-24339][SQL]Add project for transform/map/reduce s...

Posted by HyukjinKwon <gi...@git.apache.org>.
Github user HyukjinKwon commented on the issue:

    https://github.com/apache/spark/pull/21447
  
    Yea, usually we do it for master first and then backport it to other branches to reduce the diff and master has the fix. I would appreciate it if you go in this way.


---

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


[GitHub] spark issue #21447: [SPARK-24339][SQL]Add project for transform/map/reduce s...

Posted by HyukjinKwon <gi...@git.apache.org>.
Github user HyukjinKwon commented on the issue:

    https://github.com/apache/spark/pull/21447
  
    ok to test


---

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


[GitHub] spark pull request #21447: [SPARK-24339][SQL]Add project for transform/map/r...

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

    https://github.com/apache/spark/pull/21447#discussion_r191321436
  
    --- Diff: sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/parser/AstBuilder.scala ---
    @@ -338,6 +338,17 @@ class AstBuilder(conf: SQLConf) extends SqlBaseBaseVisitor[AnyRef] with Logging
             // Add where.
             val withFilter = relation.optionalMap(where)(filter)
     
    +        // Add project.
    +        val namedExpressions = expressions.map {
    +          case e: NamedExpression => e
    +          case e: Expression => UnresolvedAlias(e)
    --- End diff --
    
    the type of expressions is Expression, so i think
    case e: _ => UnresolvedAlias(e) and case e: Expression => UnresolvedAlias(e) is equivalent.
    Did have other reasons to change this?


---

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


[GitHub] spark issue #21447: [SPARK-24339][SQL]Add project for transform/map/reduce s...

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

    https://github.com/apache/spark/pull/21447
  
    Merged build finished. Test FAILed.


---

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


[GitHub] spark issue #21447: [SPARK-24339][SQL]Add project for transform/map/reduce s...

Posted by xdcjie <gi...@git.apache.org>.
Github user xdcjie commented on the issue:

    https://github.com/apache/spark/pull/21447
  
    jenkins, test this, please


---

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


[GitHub] spark issue #21447: [SPARK-24339][SQL]Add project for transform/map/reduce s...

Posted by xdcjie <gi...@git.apache.org>.
Github user xdcjie commented on the issue:

    https://github.com/apache/spark/pull/21447
  
    @maropu @gatorsmile Can you help me review this pr ?  Thanks。 #


---

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


[GitHub] spark issue #21447: [SPARK-24339][SQL]Add project for transform/map/reduce s...

Posted by xdcjie <gi...@git.apache.org>.
Github user xdcjie commented on the issue:

    https://github.com/apache/spark/pull/21447
  
    retest this please


---

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


[GitHub] spark issue #21447: [SPARK-24339][SQL]Add project for transform/map/reduce s...

Posted by xdcjie <gi...@git.apache.org>.
Github user xdcjie commented on the issue:

    https://github.com/apache/spark/pull/21447
  
    @maropu  I updated the commet. In summary, with this pr can reduce the time of scan and assemble data. In our scenario, the relation(table) have 700 columns.


---

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


[GitHub] spark pull request #21447: [SPARK-24339][SQL]Add project for transform/map/r...

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

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


---

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


[GitHub] spark issue #21447: [SPARK-24339][SQL]Add project for transform/map/reduce s...

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

    https://github.com/apache/spark/pull/21447
  
    Merged build finished. Test FAILed.


---

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


[GitHub] spark pull request #21447: [SPARK-24339][SQL]Add project for transform/map/r...

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

    https://github.com/apache/spark/pull/21447#discussion_r191312085
  
    --- Diff: sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/parser/AstBuilder.scala ---
    @@ -338,6 +338,17 @@ class AstBuilder(conf: SQLConf) extends SqlBaseBaseVisitor[AnyRef] with Logging
             // Add where.
             val withFilter = relation.optionalMap(where)(filter)
     
    +        // Add project.
    +        val namedExpressions = expressions.map {
    +          case e: NamedExpression => e
    +          case e: Expression => UnresolvedAlias(e)
    --- End diff --
    
    nit: `case e: _ => UnresolvedAlias(e)`


---

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


[GitHub] spark issue #21447: [SPARK-24339][SQL]Add project for transform/map/reduce s...

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

    https://github.com/apache/spark/pull/21447
  
    Can one of the admins verify this patch?


---

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


[GitHub] spark issue #21447: [SPARK-24339][SQL]Add project for transform/map/reduce s...

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

    https://github.com/apache/spark/pull/21447
  
    **[Test build #92916 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/92916/testReport)** for PR 21447 at commit [`958888b`](https://github.com/apache/spark/commit/958888bfc98cfca971876040194a926651c17a7c).


---

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


[GitHub] spark issue #21447: [SPARK-24339][SQL]Add project for transform/map/reduce s...

Posted by xdcjie <gi...@git.apache.org>.
Github user xdcjie commented on the issue:

    https://github.com/apache/spark/pull/21447
  
    retest this please


---

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


[GitHub] spark issue #21447: [SPARK-24339][SQL]Add project for transform/map/reduce s...

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

    https://github.com/apache/spark/pull/21447
  
    Test FAILed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/93103/
    Test FAILed.


---

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


[GitHub] spark issue #21447: [SPARK-24339][SQL]Add project for transform/map/reduce s...

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

    https://github.com/apache/spark/pull/21447
  
    **[Test build #92842 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/92842/testReport)** for PR 21447 at commit [`3997ceb`](https://github.com/apache/spark/commit/3997cebc06dad513fe58f472022026c00da5f38f).
     * This patch **fails Scala style tests**.
     * This patch merges cleanly.
     * This patch adds no public classes.


---

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


[GitHub] spark issue #21447: [SPARK-24339][SQL]Add project for transform/map/reduce s...

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

    https://github.com/apache/spark/pull/21447
  
    Can one of the admins verify this patch?


---

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


[GitHub] spark issue #21447: [SPARK-24339][SQL]Add project for transform/map/reduce s...

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

    https://github.com/apache/spark/pull/21447
  
    Test FAILed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/92842/
    Test FAILed.


---

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


[GitHub] spark issue #21447: [SPARK-24339][SQL]Add project for transform/map/reduce s...

Posted by maropu <gi...@git.apache.org>.
Github user maropu commented on the issue:

    https://github.com/apache/spark/pull/21447
  
    kindly pining @gatorsmile @HyukjinKwon @ueshin 


---

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


[GitHub] spark issue #21447: [SPARK-24339][SQL]Add project for transform/map/reduce s...

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

    https://github.com/apache/spark/pull/21447
  
    Test FAILed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/92916/
    Test FAILed.


---

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