summaryrefslogtreecommitdiff
path: root/django/db/backends/postgresql/base.py
Commit message (Expand)AuthorAgeFilesLines
* Fixed #34470 -- Enforced UTF-8 encoding on PostgreSQL.Mariusz Felisiak2023-04-071-1/+1
* Fixed #34466 -- Reallowed setting cursor_factory in DATABASES["options"] on P...Anders Kaseorg2023-04-071-9/+8
* Refs #33476 -- Applied Black's 2023 stable style.David Smith2023-02-011-1/+0
* Fixed #34255 -- Made PostgreSQL backend use client-side parameters binding wi...Mariusz Felisiak2023-01-171-3/+16
* Refs #34255 -- Bumped required psycopg version to 3.1.8.Mariusz Felisiak2023-01-171-3/+3
* Fixed #34200 -- Made the session role configurable on PostgreSQL.Mike Crute2023-01-031-5/+20
* Fixed #14094 -- Added support for unlimited CharField on PostgreSQL.Adrian Torres2022-12-281-1/+7
* Fixed #33308 -- Added support for psycopg version 3.Daniele Varrazzo2022-12-151-48/+114
* Refs #33308 -- Added psycopg_any.IsolationLevel.Florian Apolloner2022-12-121-6/+15
* Refs #33308 -- Modernized database wrapper in the PostgreSQL backend.Florian Apolloner2022-12-061-6/+5
* Fixed #30511 -- Used identity columns instead of serials on PostgreSQL.Florian Apolloner2022-04-131-3/+8
* Fixed #33379 -- Added minimum database version checks.Hasan Ramezani2022-02-181-0/+8
* Refs #33476 -- Reformatted code with Black.django-bot2022-02-071-99/+114
* Refs #32355 -- Bumped required psycopg2 version to 2.8.4.Mariusz Felisiak2021-12-221-2/+2
* Fixed #33160 -- Avoided suppressing query errors in _nodb_cursor() on Postgre...Daniel Hahler2021-10-011-0/+3
* Fixed #32355 -- Dropped support for Python 3.6 and 3.7Mariusz Felisiak2021-02-101-6/+1
* Fixed #32403 -- Fixed re-raising DatabaseErrors when using only 'postgres' da...Mariusz Felisiak2021-02-021-0/+3
* Fixed #32292 -- Added support for connection by service name to PostgreSQL.Hasan Ramezani2021-01-201-6/+19
* Refs #31369 -- Removed models.NullBooleanField per deprecation timeline.Mariusz Felisiak2021-01-141-1/+0
* Fixed #32201 -- Removed obsolete isort:skip's.Seamus Quinn2020-11-191-6/+6
* Fixed #31956 -- Fixed crash of ordering by JSONField with a custom decoder on...Mariusz Felisiak2020-08-281-1/+4
* Fixed #12990, Refs #27694 -- Added JSONField model field.sage2020-05-081-0/+1
* Fixed #31233 -- Closed database connections and cursors after use.Jon Dufresne2020-02-061-3/+5
* Refs #31233 -- Changed DatabaseWrapper._nodb_connection to _nodb_cursor().Jon Dufresne2020-02-061-6/+11
* Simplified imports from django.db and django.contrib.gis.db.Nick Pope2020-02-041-2/+1
* Fixed #31212 -- Updated psycopg links to HTTPS and new location.Jon Dufresne2020-01-291-1/+1
* Fixed #23524 -- Allowed DATABASES['TIME_ZONE'] option on PostgreSQL.Aymeric Augustin2019-12-041-2/+4
* Fixed #30987 -- Added models.PositiveBigIntegerField.Caio Ariede2019-11-191-0/+2
* Fixed #30661 -- Added models.SmallAutoField.Nick Pope2019-08-021-0/+1
* Fixed #30451 -- Added ASGI handler and coroutine-safety.Andrew Godwin2019-06-201-2/+28
* Fixed #30148 -- Logged COPY ... TO statements in connection.queries on Postgr...kingbuzzman2019-04-291-0/+16
* Fixed #30193, Refs #28478 -- Avoided PostgreSQL connection health checks on i...Simon Charette2019-02-201-4/+1
* Fixed #30171 -- Fixed DatabaseError in servers tests.Jon Dufresne2019-02-141-1/+0
* Refs #27753 -- Favored SafeString over SafeText.Tim Graham2019-02-061-2/+2
* Refs #28478 -- Prevented timezone assignment for unusable PostgreSQL connecti...Simon Charette2019-01-141-1/+5
* Fixed #29886 -- Fixed unaccent lookup when PostgreSQL's standard_conforming_s...Jayantha Gumballi2018-11-011-1/+1
* Refs #29015 -- Added database name to PostgreSQL database name too long excep...Jon Dufresne2018-08-171-3/+7
* Fixed #29015 -- Added an exception if the PostgreSQL database name is too long.priyanshsaxena2018-04-271-0/+6
* Refs #24791 -- Made PostgreSQL's nodb connection use first PostgresSQL db whe...Mariusz Felisiak2018-04-031-9/+9
* Fixed hanging indentation in various code.Mariusz Felisiak2018-03-161-1/+2
* Fixed #28909 -- Simplified code using tuple/list/set/dict unpacking.Nick Pope2017-12-111-1/+1
* Removed DatabaseWrapper.psycopg2_version.Sergey Fedoseev2017-09-061-4/+0
* Removed unneeded __init__() in PostgreSQL DatabaseWrapper.Mads Jensen2017-09-051-4/+2
* Fixed #27830 -- Used distutils.version.LooseVersion for version parsing.chillaranand2017-06-131-1/+2
* Refs #27859 -- Added DatabaseWrapper.display_name.Mariusz Felisiak2017-05-231-0/+1
* Fixed #27966 -- Bumped required psycopg2 version to 2.5.4.Mariusz Felisiak2017-03-211-2/+2
* Removed PostgreSQL version detection for psycopg2 < 2.0.12.Tim Graham2017-03-011-2/+1
* Refs #27656 -- Updated django.db docstring verbs according to PEP 257.Anton Samarchyan2017-02-281-2/+2
* Refs #23919 -- Removed usage of obsolete SafeBytes classClaude Paroz2017-01-301-2/+1
* Refs #23919 -- Replaced super(ClassName, self) with super().chillaranand2017-01-251-2/+2