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 A9E86200B7F for ; Sun, 11 Sep 2016 19:58:55 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id A86A9160AD4; Sun, 11 Sep 2016 17:58:55 +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 E3ABE160AB6 for ; Sun, 11 Sep 2016 19:58:54 +0200 (CEST) Received: (qmail 55433 invoked by uid 500); 11 Sep 2016 17:58:54 -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 55420 invoked by uid 99); 11 Sep 2016 17:58:53 -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; Sun, 11 Sep 2016 17:58:53 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 7D015DFD9F; Sun, 11 Sep 2016 17:58:53 +0000 (UTC) From: gatorsmile To: reviews@spark.apache.org Reply-To: reviews@spark.apache.org References: In-Reply-To: Subject: [GitHub] spark pull request #15048: [SPARK-17409] [SQL] Do Not Optimize Query in CTAS... Content-Type: text/plain Message-Id: <20160911175853.7D015DFD9F@git1-us-west.apache.org> Date: Sun, 11 Sep 2016 17:58:53 +0000 (UTC) archived-at: Sun, 11 Sep 2016 17:58:55 -0000 Github user gatorsmile commented on a diff in the pull request: https://github.com/apache/spark/pull/15048#discussion_r78299463 --- Diff: sql/core/src/main/scala/org/apache/spark/sql/execution/datasources/ddl.scala --- @@ -37,7 +38,9 @@ case class CreateTable(tableDesc: CatalogTable, mode: SaveMode, query: Option[Lo override def output: Seq[Attribute] = Seq.empty[Attribute] - override def children: Seq[LogicalPlan] = query.toSeq + override def children: Seq[LogicalPlan] = Seq.empty[LogicalPlan] --- End diff -- Yeah. : ) --- 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