From 120db9f065c12c1545e9bebe65b8f093a8cef7ea Mon Sep 17 00:00:00 2001
From: Allen Gilliland <agilliland@gmail.com>
Date: Mon, 4 Apr 2016 12:17:29 -0700
Subject: [PATCH] if no report timezone is set, use the JVM timezone for our QP
 datetime formatting.

---
 src/metabase/driver/query_processor.clj | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/src/metabase/driver/query_processor.clj b/src/metabase/driver/query_processor.clj
index bac85ad421d..4085ec18c7f 100644
--- a/src/metabase/driver/query_processor.clj
+++ b/src/metabase/driver/query_processor.clj
@@ -148,7 +148,10 @@
   (for [row rows]
     (for [v row]
       (if (u/is-temporal? v)
-        (u/->iso-8601-datetime v report-timezone)
+        ;; NOTE: if we don't have an explicit report-timezone then use the JVM timezone
+        ;;       this ensures alignment between the way dates are processed by JDBC and our returned data
+        ;;       GH issues: #2282, #2035
+        (u/->iso-8601-datetime v (or report-timezone (System/getProperty "user.timezone")))
         v))))
 
 (defn- post-format-rows
-- 
GitLab