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 C2E7A200D57 for ; Mon, 27 Nov 2017 07:13:39 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id C1616160C00; Mon, 27 Nov 2017 06:13:39 +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 0B138160BFF for ; Mon, 27 Nov 2017 07:13:38 +0100 (CET) Received: (qmail 20022 invoked by uid 500); 27 Nov 2017 06:13:37 -0000 Mailing-List: contact issues-help@carbondata.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@carbondata.apache.org Delivered-To: mailing list issues@carbondata.apache.org Received: (qmail 20013 invoked by uid 99); 27 Nov 2017 06:13:37 -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; Mon, 27 Nov 2017 06:13:37 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 8C610DF9C5; Mon, 27 Nov 2017 06:13:37 +0000 (UTC) From: sounakr To: issues@carbondata.apache.org Reply-To: issues@carbondata.apache.org References: In-Reply-To: Subject: [GitHub] carbondata pull request #1469: [CARBONDATA-1552][Spark-2.2 Integration] Spar... Content-Type: text/plain Message-Id: <20171127061337.8C610DF9C5@git1-us-west.apache.org> Date: Mon, 27 Nov 2017 06:13:37 +0000 (UTC) archived-at: Mon, 27 Nov 2017 06:13:40 -0000 Github user sounakr commented on a diff in the pull request: https://github.com/apache/carbondata/pull/1469#discussion_r153112830 --- Diff: integration/spark-common/src/main/scala/org/apache/spark/sql/optimizer/CarbonDecoderOptimizerHelper.scala --- @@ -84,7 +87,16 @@ class CarbonDecoderProcessor { } nodeList.add(ArrayCarbonNode(nodeListSeq)) case e: UnaryNode => process(e.child, nodeList) - case i: InsertIntoTable => process(i.child, nodeList) + case i: InsertIntoTable => + var sparkVersion21: Boolean = false --- End diff -- Done ---