Opened 10 years ago

Closed 4 years ago

#23524 closed New feature (fixed)

Allow to set TIME_ZONE option on databases that support time zones.

Reported by: Mactory Owned by: Aymeric Augustin
Component: Database layer (models, ORM) Version: dev
Severity: Normal Keywords:
Cc: Triage Stage: Ready for checkin
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

When using a cursor created by django.db.connection.cursor() to execute a database function on a postgresql database, the timezone of the database connection is always set to UTC instead of using the specified TIME_ZONE.
This behavior brakes postgres' date_trunc function, since it will truncate the hour to be 0 at UTC creating an offset from midnight at the local timestamp.

Example:
settings.py

TIME_ZONE = 'Europe/Berlin' # Offset +2
USE_TZ = TRUE

using date_trunc in a djago python shell:

./manage.py shell
>>> from django.db import connection
>>> cursor = connection.cursor()
>>> cursor.execute("select date_trunc('month', TIMESTAMP WITH TIME ZONE '2014-09-14 04:10:00+02');")
>>> unicode(cursor.fetchone()[0])
u'2014-09-01 00:00:00+00:00'

using date_tunc directly in psql:

psql db
db=#select date_trunc('month', TIMESTAMP WITH TIME ZONE '2014-09-14 04:10:00+02');
       date_trunc       
------------------------
 2014-09-01 00:00:00+02
(1 row)

For executing custom functions for which no return value is needed, the following workaround does work:

>>> cursor.execute("SET TIMEZONE to %s;select date_trunc('month', TIMESTAMP WITH TIME ZONE '2014-09-14 04:10:00+02');SET TIMEZONE to 'UTC';", (settings.TIME_ZONE,))

Change History (9)

comment:1 by Aymeric Augustin, 9 years ago

Resolution: invalid
Status: newclosed

This is by design and it's documented. See also the discussions on django-developers leading to the implementation of time zone support in Django 1.4.

You may use connection.ops.datetime_trunc_sql (a private API), or look at what it returns and reimplement it by yourself.

comment:2 by Mariusz Felisiak, 5 years ago

Component: contrib.postgresDatabase layer (models, ORM)
Resolution: invalid
Status: closednew
Summary: Django postgres connection's timezone is always set to UTC. Breaks date_trunc functionAllow to set TIME_ZONE option on databases that support time zones.
Triage Stage: UnreviewedAccepted
Type: BugNew feature
Version: 1.6master

Re-opened due to the comment.

comment:3 by Mariusz Felisiak, 5 years ago

Has patch: set
Owner: set to Aymeric Augustin
Status: newassigned

comment:4 by Aymeric Augustin, 5 years ago

The patch is ready for review.

comment:5 by Aymeric Augustin, 5 years ago

Patch needs improvement: set

See comments on PR.

comment:6 by Aymeric Augustin, 4 years ago

Patch needs improvement: unset

PR updated.

comment:7 by Carlton Gibson, 4 years ago

Triage Stage: AcceptedReady for checkin

comment:8 by Mariusz Felisiak <felisiak.mariusz@…>, 4 years ago

In ad88524:

Refs #23524 -- Unified BaseDatabaseWrapper.timezone.

There was a special case in this property to return None when the
database backend supports time zone. However, only the PostgreSQL
backend supports time zones and it never uses this property.

comment:9 by Mariusz Felisiak <felisiak.mariusz@…>, 4 years ago

Resolution: fixed
Status: assignedclosed

In c06492dd:

Fixed #23524 -- Allowed DATABASESTIME_ZONE option on PostgreSQL.

Note: See TracTickets for help on using tickets.
Back to Top