You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spark.apache.org by yh...@apache.org on 2016/08/01 01:21:10 UTC

spark git commit: [SPARK-16805][SQL] Log timezone when query result does not match

Repository: spark
Updated Branches:
  refs/heads/master 301fb0d72 -> 579fbcf3b


[SPARK-16805][SQL] Log timezone when query result does not match

## What changes were proposed in this pull request?
It is useful to log the timezone when query result does not match, especially on build machines that have different timezone from AMPLab Jenkins.

## How was this patch tested?
This is a test-only change.

Author: Reynold Xin <rx...@databricks.com>

Closes #14413 from rxin/SPARK-16805.


Project: http://git-wip-us.apache.org/repos/asf/spark/repo
Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/579fbcf3
Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/579fbcf3
Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/579fbcf3

Branch: refs/heads/master
Commit: 579fbcf3bd9717003025caecc0c0b85bcff7ac7f
Parents: 301fb0d
Author: Reynold Xin <rx...@databricks.com>
Authored: Sun Jul 31 18:21:06 2016 -0700
Committer: Yin Huai <yh...@databricks.com>
Committed: Sun Jul 31 18:21:06 2016 -0700

----------------------------------------------------------------------
 sql/core/src/test/scala/org/apache/spark/sql/QueryTest.scala | 3 +++
 1 file changed, 3 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/spark/blob/579fbcf3/sql/core/src/test/scala/org/apache/spark/sql/QueryTest.scala
----------------------------------------------------------------------
diff --git a/sql/core/src/test/scala/org/apache/spark/sql/QueryTest.scala b/sql/core/src/test/scala/org/apache/spark/sql/QueryTest.scala
index a9d0fcf..3437586 100644
--- a/sql/core/src/test/scala/org/apache/spark/sql/QueryTest.scala
+++ b/sql/core/src/test/scala/org/apache/spark/sql/QueryTest.scala
@@ -401,6 +401,9 @@ object QueryTest {
     sameRows(expectedAnswer, sparkAnswer, isSorted).map { results =>
         s"""
         |Results do not match for query:
+        |Timezone: ${TimeZone.getDefault}
+        |Timezone Env: ${sys.env("TZ")}
+        |
         |${df.queryExecution}
         |== Results ==
         |$results


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@spark.apache.org
For additional commands, e-mail: commits-help@spark.apache.org