summaryrefslogtreecommitdiff
path: root/django/db/backends/postgresql
Commit message (Expand)AuthorAgeFilesLines
* Fixed #470 -- Added support for database defaults on fields.Ian Foote2023-05-121-0/+1
* Fixed #34553 -- Fixed improper % escaping of literal in constraints.Simon Charette2023-05-101-2/+0
* Fixed #34544 -- Avoided DBMS_LOB.SUBSTR() wrapping with IS NULL condition on ...Mariusz Felisiak2023-05-081-0/+3
* Fixed #34505 -- Skipped varchar_pattern_ops/text_pattern_ops index creation w...Petter Friberg2023-04-211-1/+3
* Fixed #16055 -- Fixed crash when filtering against char/text GenericRelation ...David Wobrock2023-04-181-0/+11
* Fixed #34486 -- Fixed DatabaseOperations.compose_sql() crash with no existing...Scott Macpherson2023-04-141-1/+2
* 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
* Prevented PostgreSQL's DatabaseCreation._execute_create_test_db() from hiding...Tim Graham2023-04-031-2/+1
* Made PostgreSQL's SchemaEditor._create_index_sql() respect the "sql" argument.Dan Glass2023-02-061-1/+1
* Refs #33476 -- Applied Black's 2023 stable style.David Smith2023-02-012-2/+0
* Refs #34255 -- Skipped test_group_by_nested_expression_with_params test on Po...Mariusz Felisiak2023-01-271-0/+20
* 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
* Refs #18468 -- Used obj_description() with a catalog name on PostgreSQL.Mariusz Felisiak2023-01-121-1/+1
* 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-282-1/+8
* Fixed #18468 -- Added support for comments on columns and tables.kimsoungryoul2022-12-282-4/+8
* Fixed #34219 -- Preserved Char/TextField.db_collation when altering column type.Mariusz Felisiak2022-12-221-5/+12
* Fixed #33308 -- Added support for psycopg version 3.Daniele Varrazzo2022-12-155-93/+291
* Refs #33308 -- Added DatabaseOperations.compose_sql() on PostgreSQL.Florian Apolloner2022-12-122-1/+9
* Refs #33308 -- Added psycopg_any.IsolationLevel.Florian Apolloner2022-12-122-6/+24
* Refs #33308 -- Added psycopg_any.sql.quote() hook.Florian Apolloner2022-12-122-7/+14
* Refs #33308 -- Moved psycopg2 imports to the psycopg_any module.Florian Apolloner2022-12-124-8/+10
* Made inspectdb used Cursor.description.display_size for CharFields' max_length.Mariusz Felisiak2022-12-081-1/+2
* Refs #33308 -- Modernized database wrapper in the PostgreSQL backend.Florian Apolloner2022-12-061-6/+5
* Refs #33308 -- Used psycopg's errors instead of errorcodes.Florian Apolloner2022-12-011-2/+3
* Refs #33308 -- Used get_db_prep_value() to adapt JSONFields.Simon Charette2022-11-151-0/+14
* Refs #34058 -- Fixed changing/deleting sequences when altering pre-Django 4.1...Mariusz Felisiak2022-10-011-25/+36
* Fixed #34058 -- Changed sequence types when altering pre-Django 4.1 auto fiel...Mariusz Felisiak2022-09-291-1/+24
* Fixed #34027 -- Fixed migrations crash when altering type of char/text fields...David Sanders2022-09-251-12/+14
* Fixed #33932 -- Fixed altering AutoFields to OneToOneField on PostgreSQL.BenoƮt Vinot2022-08-171-1/+1
* Fixed #33901 -- Skipped varchar_pattern_ops/text_pattern_ops index creation w...Haolun Chai2022-08-151-0/+4
* Fixed #33872 -- Deprecated django.contrib.postgres.fields.CIText/CICharField/...Mariusz Felisiak2022-08-031-0/+1
* Fixed #33881 -- Added support for database collations to ArrayField(Char/Text...Mariusz Felisiak2022-08-021-4/+30
* Fixed #33854 -- Corrected the order of parameters in dbshell on PostgreSQL.Jarrett Keifer2022-07-181-1/+1
* Refs CVE-2022-34265 -- Properly escaped Extract() and Trunc() parameters.Simon Charette2022-07-061-34/+40
* Fixed #32234 -- Made inspectdb inform about composite primary keys.Anv3sh2022-06-011-0/+7
* Fixed #33717 -- Dropped support for PostgreSQL 11.Mariusz Felisiak2022-05-191-9/+1
* Refs #27064 -- Added RenameIndex migration operation.David Wobrock2022-05-121-0/+1
* Fixed #25105 -- Checked deferred constraints before updating rows on PostgreSQL.David Wobrock2022-05-041-0/+7
* Fixed #33675 -- Dropped support for PostgreSQL 10 and PostGIS 2.4.Mariusz Felisiak2022-05-041-7/+2
* Removed unneeded code in explain_query_prefix()Tim Graham2022-04-141-1/+1
* Fixed #30511 -- Used identity columns instead of serials on PostgreSQL.Florian Apolloner2022-04-133-82/+66
* Fixed CVE-2022-28347 -- Protected QuerySet.explain(**options) against SQL inj...Mariusz Felisiak2022-04-112-9/+23
* Refs #33517 -- Prevented __second lookup from returning fractional seconds on...nabil-rady2022-02-221-0/+9
* Fixed #33379 -- Added minimum database version checks.Hasan Ramezani2022-02-182-0/+9
* Refs #33476 -- Refactored code to strictly match 88 characters line length.Mariusz Felisiak2022-02-074-20/+49
* Refs #33476 -- Reformatted code with Black.django-bot2022-02-077-328/+499
* Fixed #31685 -- Added support for updating conflicts to QuerySet.bulk_create().sean_c_hsu2022-01-192-2/+17