summaryrefslogtreecommitdiff
path: root/django/db/backends/postgresql/operations.py
AgeCommit message (Expand)Author
2019-03-29[2.2.x] Removed unnecessary /static from links to PostgreSQL docs.Nick Pope
2018-08-18Fixed #28649 -- Added ExtractIsoYear database function and iso_year lookup.Sigurd Ljødal
2018-08-03Fixed #28668 -- Allowed QuerySet.bulk_create() to ignore insert conflicts.Tom
2018-07-25Fixed #29569 -- Fixed Cast() with AutoField and BigAutoField.Mariusz Felisiak
2018-04-19Fixed #28574 -- Added QuerySet.explain().Tom
2018-02-10Fixed #24747 -- Allowed transforms in QuerySet.order_by() and distinct(*fields).Matthew Wilkes
2018-01-03Fixed #28982 -- Simplified code with and/or.Дилян Палаузов
2017-12-04Fixed #28860 -- Removed unnecessary len() calls.Дилян Палаузов
2017-11-29Fixed #28702 -- Made query lookups for CIText fields use citext.Mads Jensen
2017-09-18Fixed #26608 -- Added support for window expressions (OVER clause).Mads Jensen
2017-08-01Removed unused DatabaseOperations.last_insert_id() on PostgreSQL.Mariusz Felisiak
2017-07-27Fixed #28371 -- Fixed Cast() with CharField if the max_length argument isn't ...Mariusz Felisiak
2017-04-07Fixed #28038 -- Restored casting to text of builtin lookups on PostgreSQL.Simon Charette
2017-02-28Refs #27656 -- Updated django.db docstring verbs according to PEP 257.Anton Samarchyan
2017-02-21Refs #26285 -- Removed postgresql's unused DatabaseOperations.fulltext_search...Tim Graham
2017-02-21Fixed #27856 -- Improved accuracy of date subtraction on PostgreSQL.Vytis Banaitis
2017-02-09Refs #23919 -- Removed default 'utf-8' argument for str.encode()/decode().Tim Graham
2017-02-06Fixed #27802 -- Unified return value of db backend datetime SQL methods.Mariusz Felisiak
2017-01-25Refs #23919 -- Replaced super(ClassName, self) with super().chillaranand
2017-01-18Refs #23919 -- Removed encoding preambles and future importsClaude Paroz
2016-10-25Updated postgresql.org links to https and made them canonical.Marti Raudsepp
2016-09-22Removed unnecessary casting when using builtin lookups on PostgreSQL.Simon Charette
2016-07-08Fixed #26348 -- Added TruncTime and exposed it through the __time lookup.Simon Charette
2016-07-08Refs #25774, #26348 -- Allowed Trunc functions to operate with time fields.Simon Charette
2016-04-22Refs #3254 -- Added full text search to contrib.postgres.Marc Tamlyn
2016-04-08Fixed E128 flake8 warnings in django/.Tim Graham
2016-03-02Refs #19527 -- Allowed QuerySet.bulk_create() to set the primary key of its o...acrefoot
2016-02-26Fixed #24793 -- Unified temporal difference support.Simon Charette
2015-09-22Fixed #24509 -- Added Expression support to SQLInsertCompilerAlex Hill
2015-08-07Fixed #25175 -- Renamed the postgresql_psycopg2 database backend to postgresql.Caio Ariede
2011-04-02Deprecated the psycopg-based postgresql database backend.Russell Keith-Magee
2010-12-22Fixed #10154: Allow combining F expressions with timedelta values.Karen Tracey
2010-07-30Fixed #13821 -- Added a double-quoting to the PostgreSQL sequence reset code....Russell Keith-Magee
2010-07-30Fixed #13941 -- Corrected the way sequence names are reset under Postgres, es...Russell Keith-Magee
2010-06-21Fixed #8901 -- Reapplied r13328 (with extra docs) now that we have a 1.3 deve...Russell Keith-Magee
2010-06-10Refs #8901 -- Reverted r13328 because the patch imposes a minimum version req...Russell Keith-Magee
2010-06-07Fixed #8901 -- Corrected the PostgreSQL sequence reset code when field identi...Russell Keith-Magee
2010-04-29Fixed #13441 -- Enforced a maximum identifier length of 63 for PostgreSQL. Th...Russell Keith-Magee
2009-12-22Fixed #1142 -- Added multiple database support.Russell Keith-Magee
2009-07-11Fixed #11107 -- Corrected the generation of sequence reset SQL for m2m fields...Russell Keith-Magee
2009-05-11Corrected PostgreSQL version comparisons from r10730. Thanks to rozwell for t...Russell Keith-Magee
2009-05-10Fixed #10906 -- Added a check for PostgreSQL pre 8.2 when using StdDev/Varian...Russell Keith-Magee
2009-05-10Fixed #10842 -- Corrected parsing of version numbers for PostgreSQL 8.4beta s...Russell Keith-Magee
2009-04-12Fixed #10071 -- Changed some internal database data representations.Malcolm Tredinnick
2009-02-17Fixed #10289 -- Corrected typo that produced oversensitive rejection of Postg...Russell Keith-Magee
2009-02-08Fixed #7672 -- Added a 'week_day' lookup type. Many thanks to Ross Poulton fo...Karen Tracey
2009-02-02Fixed #10142 -- Added docs and an exploding error message to highlight an err...Russell Keith-Magee
2008-08-28Fixed #8597 -- Allow the use of strings containing underscores and percentageMalcolm Tredinnick
2008-08-25Fixed #3575: use UPPER() instead ILIKE for postgres case-insensitive comparis...Jacob Kaplan-Moss
2008-08-12Added savepoint support to the transaction code.Malcolm Tredinnick