You are viewing a plain text version of this content. The canonical link for it is here.
Posted to reviews@spark.apache.org by adrian-wang <gi...@git.apache.org> on 2015/02/12 05:43:59 UTC

[GitHub] spark pull request: [SPARK-5755] [SQL] remove unnecessary Add

GitHub user adrian-wang opened a pull request:

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

    [SPARK-5755] [SQL] remove unnecessary Add

    explain extended select +key from src;
    before:
    == Parsed Logical Plan ==
    'Project [(0 + 'key) AS _c0#8]
     'UnresolvedRelation [src], None
    
    == Analyzed Logical Plan ==
    Project [(0 + key#10) AS _c0#8]
     MetastoreRelation test, src, None
    
    == Optimized Logical Plan ==
    Project [(0 + key#10) AS _c0#8]
     MetastoreRelation test, src, None
    
    == Physical Plan ==
    Project [(0 + key#10) AS _c0#8]
     HiveTableScan [key#10], (MetastoreRelation test, src, None), None
    
    
    after this patch:
    == Parsed Logical Plan ==
    'Project ['key]
     'UnresolvedRelation [src], None
    
    == Analyzed Logical Plan ==
    Project [key#10]
     MetastoreRelation test, src, None
    
    == Optimized Logical Plan ==
    Project [key#10]
     MetastoreRelation test, src, None
    
    == Physical Plan ==
    HiveTableScan [key#10], (MetastoreRelation test, src, None), None

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

    $ git pull https://github.com/adrian-wang/spark positive

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

    https://github.com/apache/spark/pull/4551.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 #4551
    
----
commit 0821ae49413c80c7808caa5d48a12df8729d2e43
Author: Daoyuan Wang <da...@intel.com>
Date:   2015-02-12T04:39:13Z

    remove unnecessary Add

----


---
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-5755] [SQL] remove unnecessary Add

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

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


---
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-5755] [SQL] remove unnecessary Add

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

    https://github.com/apache/spark/pull/4551#issuecomment-74017185
  
      [Test build #27322 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/27322/consoleFull) for   PR 4551 at commit [`0821ae4`](https://github.com/apache/spark/commit/0821ae49413c80c7808caa5d48a12df8729d2e43).
     * This patch merges cleanly.


---
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-5755] [SQL] remove unnecessary Add

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

    https://github.com/apache/spark/pull/4551#issuecomment-74022508
  
    Test PASSed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/27322/
    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-5755] [SQL] remove unnecessary Add

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

    https://github.com/apache/spark/pull/4551#issuecomment-74022499
  
      [Test build #27322 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/27322/consoleFull) for   PR 4551 at commit [`0821ae4`](https://github.com/apache/spark/commit/0821ae49413c80c7808caa5d48a12df8729d2e43).
     * This patch **passes all tests**.
     * This patch merges cleanly.
     * This patch adds the following public classes _(experimental)_:
      * `trait DataFrame extends RDDApi[Row] with Serializable `



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