Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 0F2F5200B3E for ; Wed, 7 Sep 2016 15:25:26 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 0DE43160AC1; Wed, 7 Sep 2016 13:25:26 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 55E73160AA3 for ; Wed, 7 Sep 2016 15:25:25 +0200 (CEST) Received: (qmail 96364 invoked by uid 500); 7 Sep 2016 13:25:24 -0000 Mailing-List: contact reviews-help@spark.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Delivered-To: mailing list reviews@spark.apache.org Received: (qmail 96353 invoked by uid 99); 7 Sep 2016 13:25:24 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 07 Sep 2016 13:25:24 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 2EDCBDFF58; Wed, 7 Sep 2016 13:25:24 +0000 (UTC) From: cloud-fan To: reviews@spark.apache.org Reply-To: reviews@spark.apache.org References: In-Reply-To: Subject: [GitHub] spark pull request #14719: [SPARK-17154][SQL] Wrong result can be returned o... Content-Type: text/plain Message-Id: <20160907132524.2EDCBDFF58@git1-us-west.apache.org> Date: Wed, 7 Sep 2016 13:25:24 +0000 (UTC) archived-at: Wed, 07 Sep 2016 13:25:26 -0000 Github user cloud-fan commented on a diff in the pull request: https://github.com/apache/spark/pull/14719#discussion_r77820548 --- Diff: sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/analysis/Analyzer.scala --- @@ -524,11 +524,16 @@ class Analyzer( val newRight = right transformUp { case r if r == oldRelation => newRelation } transformUp { - case other => other transformExpressions { - case a: Attribute => - attributeRewrites.get(a).getOrElse(a).withQualifier(a.qualifier) - } + case other => + val transformed = other transformExpressions { + case a: Attribute => + attributeRewrites.get(a).getOrElse(a).withQualifier(a.qualifier) + } + + transformed.setPlanId(other.planId) + transformed } + newRight.setPlanId(right.planId) --- End diff -- I don't quite understand this. If it's a self-join, and `left` and `right` is same plan(same plan id), then after `dedupRight`, `left` and `right` is not same plan but still have same plan id right? How do we resolve `UnresolvedAttribute` with plan id? I think it's still ambiguous. --- 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