<feed xmlns='http://www.w3.org/2005/Atom'>
<title>django.git/django/db/backends/postgresql_psycopg2/base.py, branch 1.4.14</title>
<subtitle>django
</subtitle>
<id>http://cgit.adnoto.dev/django.git/atom?h=1.4.14</id>
<link rel='self' href='http://cgit.adnoto.dev/django.git/atom?h=1.4.14'/>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/'/>
<updated>2012-03-13T23:29:15Z</updated>
<entry>
<title>Fixed #17882 (again) -- Updated the database connections' time zone when time-zone-related settings are changed in tests.</title>
<updated>2012-03-13T23:29:15Z</updated>
<author>
<name>Aymeric Augustin</name>
<email>aymeric.augustin@m4x.org</email>
</author>
<published>2012-03-13T23:29:15Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=3ef55dfaa03b3f5be3ee3632dfc59b8f752d2dec'/>
<id>urn:sha1:3ef55dfaa03b3f5be3ee3632dfc59b8f752d2dec</id>
<content type='text'>
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17709 bcc190cf-cafb-0310-a4f2-bffc1f526a37
</content>
</entry>
<entry>
<title>Added support for modifying the effect of ``DISTINCT`` clauses so they</title>
<updated>2011-12-22T20:42:40Z</updated>
<author>
<name>Ramiro Morales</name>
<email>cramm0@gmail.com</email>
</author>
<published>2011-12-22T20:42:40Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=287565779d3ae4d3229ecbb2ff356c79b920e7d0'/>
<id>urn:sha1:287565779d3ae4d3229ecbb2ff356c79b920e7d0</id>
<content type='text'>
only consider some fields (PostgreSQL only).

For this, the ``distinct()`` QuerySet method now accepts an optional
list of model fields names and generates ``DISTINCT ON`` clauses on
these cases. Thanks Jeffrey Gelens and Anssi Kääriäinen for their work.

Fixes #6422.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@17244 bcc190cf-cafb-0310-a4f2-bffc1f526a37
</content>
</entry>
<entry>
<title>Ensured that thread-shareability gets validated when closing a PostgreSQL or SQLite connection. Refs #17258.</title>
<updated>2011-12-16T17:02:41Z</updated>
<author>
<name>Julien Phalip</name>
<email>jphalip@gmail.com</email>
</author>
<published>2011-12-16T17:02:41Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=a1d2f1f7b76d434072c35b55678ce8a3bbfb4649'/>
<id>urn:sha1:a1d2f1f7b76d434072c35b55678ce8a3bbfb4649</id>
<content type='text'>
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17206 bcc190cf-cafb-0310-a4f2-bffc1f526a37
</content>
</entry>
<entry>
<title>Fixed #17266 -- Skipped the "SET TIME ZONE" query for PostgreSQL when it isn't necessary.</title>
<updated>2011-12-11T08:19:04Z</updated>
<author>
<name>Aymeric Augustin</name>
<email>aymeric.augustin@m4x.org</email>
</author>
<published>2011-12-11T08:19:04Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=219b41cc155a216fc912cd37f215fb44acee317b'/>
<id>urn:sha1:219b41cc155a216fc912cd37f215fb44acee317b</id>
<content type='text'>
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17194 bcc190cf-cafb-0310-a4f2-bffc1f526a37
</content>
</entry>
<entry>
<title>Fixed #17062 -- Ensured that the effect of SET TIME ZONE isn't lost when the first transation is rolled back under PostgreSQL. Thanks Anssi for the patch.</title>
<updated>2011-11-20T16:12:33Z</updated>
<author>
<name>Aymeric Augustin</name>
<email>aymeric.augustin@m4x.org</email>
</author>
<published>2011-11-20T16:12:33Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=74b836abf541bb83047c5f07fbb6f49783d46475'/>
<id>urn:sha1:74b836abf541bb83047c5f07fbb6f49783d46475</id>
<content type='text'>
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17128 bcc190cf-cafb-0310-a4f2-bffc1f526a37
</content>
</entry>
<entry>
<title>Used symbolic constants for psycopg2 isolation levels.</title>
<updated>2011-11-19T14:18:44Z</updated>
<author>
<name>Aymeric Augustin</name>
<email>aymeric.augustin@m4x.org</email>
</author>
<published>2011-11-19T14:18:44Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=549c495875d279c17fbd418238a305bcc51cdad6'/>
<id>urn:sha1:549c495875d279c17fbd418238a305bcc51cdad6</id>
<content type='text'>
Django used the value 1 = ISOLATION_LEVEL_READ_UNCOMMITTED in some places, but
PostgreSQL doesn't provide "read uncommited", it uses "read committed" instead:
http://www.postgresql.org/docs/9.1/static/transaction-iso.html. For clarity,
this commit uses ISOLATION_LEVEL_READ_COMMITTED = 2 where 1 was previously used.



git-svn-id: http://code.djangoproject.com/svn/django/trunk@17112 bcc190cf-cafb-0310-a4f2-bffc1f526a37
</content>
</entry>
<entry>
<title>Added support for time zones. Thanks Luke Plant for the review. Fixed #2626.</title>
<updated>2011-11-18T13:01:06Z</updated>
<author>
<name>Aymeric Augustin</name>
<email>aymeric.augustin@m4x.org</email>
</author>
<published>2011-11-18T13:01:06Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=9b1cb755a28f020e27d4268c214b25315d4de42e'/>
<id>urn:sha1:9b1cb755a28f020e27d4268c214b25315d4de42e</id>
<content type='text'>
For more information on this project, see this thread:
http://groups.google.com/group/django-developers/browse_thread/thread/cf0423bbb85b1bbf



git-svn-id: http://code.djangoproject.com/svn/django/trunk@17106 bcc190cf-cafb-0310-a4f2-bffc1f526a37
</content>
</entry>
<entry>
<title>Fixed #12308 -- Added tablespace support to the PostgreSQL backend.</title>
<updated>2011-10-14T21:49:43Z</updated>
<author>
<name>Aymeric Augustin</name>
<email>aymeric.augustin@m4x.org</email>
</author>
<published>2011-10-14T21:49:43Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=246580573d7f1226aca39615dbf39956c520e6d7'/>
<id>urn:sha1:246580573d7f1226aca39615dbf39956c520e6d7</id>
<content type='text'>
git-svn-id: http://code.djangoproject.com/svn/django/trunk@16987 bcc190cf-cafb-0310-a4f2-bffc1f526a37
</content>
</entry>
<entry>
<title>Fixed #7596.  Added Model.objects.bulk_create, and make use of it in several places.  This provides a performance benefit when inserting multiple objects.  THanks to Russ for the review, and Simon Meers for the MySQl implementation.</title>
<updated>2011-09-09T19:22:28Z</updated>
<author>
<name>Alex Gaynor</name>
<email>alex.gaynor@gmail.com</email>
</author>
<published>2011-09-09T19:22:28Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=7deb25b8dd5aa1ed02b5e30cbc67cd1fb0c3d6e6'/>
<id>urn:sha1:7deb25b8dd5aa1ed02b5e30cbc67cd1fb0c3d6e6</id>
<content type='text'>
git-svn-id: http://code.djangoproject.com/svn/django/trunk@16739 bcc190cf-cafb-0310-a4f2-bffc1f526a37
</content>
</entry>
<entry>
<title>Follow the same convention as the rest of the file.</title>
<updated>2011-08-29T23:01:25Z</updated>
<author>
<name>Honza Král</name>
<email>honza.kral@gmail.com</email>
</author>
<published>2011-08-29T23:01:25Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=93f92635b69c16a79ae546e060522eb437dc1c25'/>
<id>urn:sha1:93f92635b69c16a79ae546e060522eb437dc1c25</id>
<content type='text'>
Still cleanup after [16708]

git-svn-id: http://code.djangoproject.com/svn/django/trunk@16710 bcc190cf-cafb-0310-a4f2-bffc1f526a37
</content>
</entry>
</feed>
