From reviews-return-1154671-archive-asf-public=cust-asf.ponee.io@spark.apache.org Wed Aug 19 03:22:12 2020 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mailroute1-lw-us.apache.org (mailroute1-lw-us.apache.org [207.244.88.153]) by mx-eu-01.ponee.io (Postfix) with ESMTPS id 7CEE7180652 for ; Wed, 19 Aug 2020 05:22:12 +0200 (CEST) Received: from mail.apache.org (localhost [127.0.0.1]) by mailroute1-lw-us.apache.org (ASF Mail Server at mailroute1-lw-us.apache.org) with SMTP id B0422124714 for ; Wed, 19 Aug 2020 03:22:11 +0000 (UTC) Received: (qmail 9365 invoked by uid 500); 19 Aug 2020 03:22:11 -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 9341 invoked by uid 99); 19 Aug 2020 03:22:11 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 19 Aug 2020 03:22:11 +0000 From: =?utf-8?q?GitBox?= To: reviews@spark.apache.org Subject: =?utf-8?q?=5BGitHub=5D_=5Bspark=5D_cloud-fan_commented_on_a_change_in_pull_r?= =?utf-8?q?equest_=2329469=3A_=5BSPARK-28863=5D=5BSQL=5D_Introduce_AlreadyPl?= =?utf-8?q?anned_to_prevent_reanalysis_of_V1FallbackWriters?= Message-ID: <159780733140.32230.5963169814472153907.asfpy@gitbox.apache.org> Date: Wed, 19 Aug 2020 03:22:11 -0000 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit In-Reply-To: References: cloud-fan commented on a change in pull request #29469: URL: https://github.com/apache/spark/pull/29469#discussion_r472636665 ########## File path: sql/core/src/main/scala/org/apache/spark/sql/execution/AlreadyPlanned.scala ########## @@ -0,0 +1,51 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.spark.sql.execution + +import org.apache.spark.sql.{DataFrame, Dataset, Row, SparkSession} +import org.apache.spark.sql.catalyst.encoders.RowEncoder +import org.apache.spark.sql.catalyst.expressions.Attribute +import org.apache.spark.sql.catalyst.plans.logical.{LeafNode, LogicalPlan} + +/** + * A special node that allows skipping query planning all the way to physical execution. This node + * can be used when a query was planned to the physical level, but we had to go back to logical plan + * land for some reason (e.g. V1 DataSource write execution). This will allow the metrics, and the + * query plan to properly appear as part of the query execution. + */ +case class AlreadyPlanned(physicalPlan: SparkPlan) extends LeafNode { + override val output: Seq[Attribute] = physicalPlan.output + override lazy val resolved: Boolean = false Review comment: This is put in `AlreadyPlannedExecution.analyzed`. It's weird if this is unresolved. ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: users@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org For additional commands, e-mail: reviews-help@spark.apache.org