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 349D9200D34 for ; Fri, 3 Nov 2017 14:01:30 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 331F9160BFB; Fri, 3 Nov 2017 13:01:30 +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 6F3E5160BE9 for ; Fri, 3 Nov 2017 14:01:29 +0100 (CET) Received: (qmail 19575 invoked by uid 500); 3 Nov 2017 13:01:26 -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 19455 invoked by uid 99); 3 Nov 2017 13:01:26 -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; Fri, 03 Nov 2017 13:01:26 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 21529DFB6F; Fri, 3 Nov 2017 13:01:26 +0000 (UTC) From: jinxing64 To: reviews@spark.apache.org Reply-To: reviews@spark.apache.org References: In-Reply-To: Subject: [GitHub] spark pull request #19652: [SPARK-22435][SQL] Support processing array and m... Content-Type: text/plain Message-Id: <20171103130126.21529DFB6F@git1-us-west.apache.org> Date: Fri, 3 Nov 2017 13:01:26 +0000 (UTC) archived-at: Fri, 03 Nov 2017 13:01:30 -0000 Github user jinxing64 commented on a diff in the pull request: https://github.com/apache/spark/pull/19652#discussion_r148775355 --- Diff: sql/hive/src/main/scala/org/apache/spark/sql/hive/execution/ScriptTransformationExec.scala --- @@ -267,6 +268,33 @@ private class ScriptTransformationWriterThread( /** Contains the exception thrown while writing the parent iterator to the external process. */ def exception: Option[Throwable] = Option(_exception) + private def buildJSONString(sb: StringBuilder, obj: Any): Unit = { --- End diff -- TODO: build json string for more types --- --------------------------------------------------------------------- To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org For additional commands, e-mail: reviews-help@spark.apache.org