summaryrefslogtreecommitdiff
path: root/django/contrib/postgres/signals.py
Commit message (Collapse)AuthorAgeFilesLines
* Fixed #33308 -- Added support for psycopg version 3.Daniele Varrazzo2022-12-151-29/+48
| | | | | | | Thanks Simon Charette, Tim Graham, and Adam Johnson for reviews. Co-authored-by: Florian Apolloner <florian@apolloner.eu> Co-authored-by: Mariusz Felisiak <felisiak.mariusz@gmail.com>
* Refs #33308 -- Added get_type_oids() hook and simplified registering type ↵Daniele Varrazzo2022-12-011-32/+25
| | | | handlers on PostgreSQL.
* Refs #33476 -- Reformatted code with Black.django-bot2022-02-071-3/+7
|
* Refs #32355 -- Used @functools.lru_cache as a straight decorator.Mariusz Felisiak2021-09-271-2/+2
|
* Refs #28334 -- Fixed crash in hstore/citext oid caching during test db creation.Tim Graham2017-09-191-1/+2
|
* Fixed #28334 -- Added caching for hstore/citext OIDs.Igor Gumenyuk2017-09-151-6/+34
|
* Fixed #28161 -- Fixed return type of ArrayField(CITextField()).Simon Charette2017-05-041-1/+16
| | | | Thanks Tim for the review.
* Refs #23919 -- Removed six.PY2/PY3 usageClaude Paroz2017-01-181-6/+1
| | | | Thanks Tim Graham for the review.
* Sorted imports with isort; refs #23860.Tim Graham2015-02-061-2/+2
|
* Added HStoreField.Marc Tamlyn2014-11-041-0/+25
Thanks to `django-hstore` for inspiration in some areas, and many people for reviews.