This is an automated email from the ASF dual-hosted git repository.
maximebeauchemin pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-superset.git
The following commit(s) were added to refs/heads/master by this push:
new e112659 Remove redundant UTC casts (#6786)
e112659 is described below
commit e112659173e2910fe9050ced8bfcfa596688df31
Author: Ville Brofeldt <[email protected]>
AuthorDate: Sat Feb 23 20:33:21 2019 +0200
Remove redundant UTC casts (#6786)
---
superset/db_engine_specs.py | 16 ++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)
diff --git a/superset/db_engine_specs.py b/superset/db_engine_specs.py
index ad92fa9..6412d10 100644
--- a/superset/db_engine_specs.py
+++ b/superset/db_engine_specs.py
@@ -478,14 +478,14 @@ class PostgresBaseEngineSpec(BaseEngineSpec):
time_grain_functions = {
None: '{col}',
- 'PT1S': "DATE_TRUNC('second', {col}) AT TIME ZONE 'UTC'",
- 'PT1M': "DATE_TRUNC('minute', {col}) AT TIME ZONE 'UTC'",
- 'PT1H': "DATE_TRUNC('hour', {col}) AT TIME ZONE 'UTC'",
- 'P1D': "DATE_TRUNC('day', {col}) AT TIME ZONE 'UTC'",
- 'P1W': "DATE_TRUNC('week', {col}) AT TIME ZONE 'UTC'",
- 'P1M': "DATE_TRUNC('month', {col}) AT TIME ZONE 'UTC'",
- 'P0.25Y': "DATE_TRUNC('quarter', {col}) AT TIME ZONE 'UTC'",
- 'P1Y': "DATE_TRUNC('year', {col}) AT TIME ZONE 'UTC'",
+ 'PT1S': "DATE_TRUNC('second', {col})",
+ 'PT1M': "DATE_TRUNC('minute', {col})",
+ 'PT1H': "DATE_TRUNC('hour', {col})",
+ 'P1D': "DATE_TRUNC('day', {col})",
+ 'P1W': "DATE_TRUNC('week', {col})",
+ 'P1M': "DATE_TRUNC('month', {col})",
+ 'P0.25Y': "DATE_TRUNC('quarter', {col})",
+ 'P1Y': "DATE_TRUNC('year', {col})",
}
@classmethod