Return-Path: X-Original-To: apmail-spark-reviews-archive@minotaur.apache.org Delivered-To: apmail-spark-reviews-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id B5F2011B2C for ; Mon, 9 Jun 2014 05:23:31 +0000 (UTC) Received: (qmail 52585 invoked by uid 500); 9 Jun 2014 05:23:31 -0000 Delivered-To: apmail-spark-reviews-archive@spark.apache.org Received: (qmail 52563 invoked by uid 500); 9 Jun 2014 05:23:31 -0000 Mailing-List: contact reviews-help@spark.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: reviews@spark.apache.org Delivered-To: mailing list reviews@spark.apache.org Received: (qmail 52553 invoked by uid 99); 9 Jun 2014 05:23:31 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 09 Jun 2014 05:23:31 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 5C35F8B2565; Mon, 9 Jun 2014 05:23:31 +0000 (UTC) From: chenghao-intel To: reviews@spark.apache.org Reply-To: reviews@spark.apache.org Message-ID: Subject: [GitHub] spark pull request: [SPARK-2076][SQL] Pushdown the join filter & p... Content-Type: text/plain Date: Mon, 9 Jun 2014 05:23:31 +0000 (UTC) GitHub user chenghao-intel opened a pull request: https://github.com/apache/spark/pull/1015 [SPARK-2076][SQL] Pushdown the join filter & predication for outer join As the rule described in https://cwiki.apache.org/confluence/display/Hive/OuterJoinBehavior, we can optimize the SQL Join by pushing down the Join predicate and Where predicate. You can merge this pull request into a Git repository by running: $ git pull https://github.com/chenghao-intel/spark join_predicate_push_down Alternatively you can review and apply these changes as the patch at: https://github.com/apache/spark/pull/1015.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 #1015 ---- commit dd9e22ba32b885683edf21ce98cfaaa9d36033ff Author: Cheng Hao Date: 2014-06-09T05:09:10Z Pushdown the join filter & predicate for outer join ---- --- 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. ---