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 580D9200D41 for ; Wed, 22 Nov 2017 19:25:28 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 565E8160BFD; Wed, 22 Nov 2017 18:25:28 +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 94B08160BEC for ; Wed, 22 Nov 2017 19:25:27 +0100 (CET) Received: (qmail 66059 invoked by uid 500); 22 Nov 2017 18:25: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 66048 invoked by uid 99); 22 Nov 2017 18:25: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; Wed, 22 Nov 2017 18:25:26 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 730BCDFCF5; Wed, 22 Nov 2017 18:25:26 +0000 (UTC) From: gatorsmile To: reviews@spark.apache.org Reply-To: reviews@spark.apache.org References: In-Reply-To: Subject: [GitHub] spark pull request #19607: [SPARK-22395][SQL][PYTHON] Fix the behavior of ti... Content-Type: text/plain Message-Id: <20171122182526.730BCDFCF5@git1-us-west.apache.org> Date: Wed, 22 Nov 2017 18:25:26 +0000 (UTC) archived-at: Wed, 22 Nov 2017 18:25:28 -0000 Github user gatorsmile commented on a diff in the pull request: https://github.com/apache/spark/pull/19607#discussion_r152645369 --- Diff: sql/catalyst/src/main/scala/org/apache/spark/sql/internal/SQLConf.scala --- @@ -997,6 +997,14 @@ object SQLConf { .intConf .createWithDefault(10000) + val PANDAS_RESPECT_SESSION_LOCAL_TIMEZONE = + buildConf("spark.sql.execution.pandas.respectSessionTimeZone") + .internal() + .doc("When true, make Pandas DataFrame with timestamp type respecting session local " + + "timezone when converting to/from Pandas DataFrame.") --- End diff -- Emphasize the conf will be deprecated? > When true, make Pandas DataFrame with timestamp type respecting session local timezone when converting to/from Pandas DataFrame. This configuration will be deprecated in the future releases. --- --------------------------------------------------------------------- To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org For additional commands, e-mail: reviews-help@spark.apache.org