summaryrefslogtreecommitdiff
path: root/django/contrib/postgres/indexes.py
Commit message (Expand)AuthorAgeFilesLines
* Fixed #33717 -- Dropped support for PostgreSQL 11.Mariusz Felisiak2022-05-191-7/+0
* Fixed #33607 -- Made PostgresIndex.create_sql() respect the "using" argument.Alexandru Mărășteanu2022-04-151-1/+1
* Fixed #33539 -- Fixed spaces in WITH SQL for indexes on PostgreSQL.Anders Kaseorg2022-02-241-1/+1
* Refs #33476 -- Reformatted code with Black.django-bot2022-02-071-54/+68
* Refs #32943 -- Added support for covering SP-GiST indexes on PostgreSQL 14+.Nick Pope2021-10-011-0/+7
* Fixed typo in exception message for GiST indexes and exclusion constraints.Nick Pope2021-10-011-1/+1
* Fixed #32357 -- Dropped support for PostgreSQL 9.6 and PostGIS 2.3.Mariusz Felisiak2021-01-191-4/+0
* Fixed #26167 -- Added support for functional indexes.Hannes Ljungberg2021-01-131-15/+22
* Fixed #30913 -- Added support for covering indexes on PostgreSQL 11+.Hannes Ljungberg2020-06-041-0/+4
* Fixed #31579 -- Dropped support for PostgreSQL 9.5 and PostGIS 2.2.Mariusz Felisiak2020-05-141-4/+0
* Simplified imports from django.db and django.contrib.gis.db.Nick Pope2020-02-041-1/+1
* Fixed #30943 -- Added BloomIndex to django.contrib.postgres.Nick Pope2019-11-071-2/+50
* Fixed #21039 -- Added AddIndexConcurrently/RemoveIndexConcurrently operations...Mads Jensen2019-08-211-2/+2
* Fixed #30155 -- Dropped support for PostgreSQL 9.4 and PostGIS 2.1.Tim Graham2019-02-041-6/+0
* Refs #27869 -- Added PostgreSQL version check for GinIndex support.Nick Pope2018-08-021-0/+4
* Refs #25809, #28990 -- Added PostgreSQL version check for BrinIndex support.Nick Pope2018-08-021-0/+11
* Fixed #29614 -- Added BTreeIndex to django.contrib.postres.Nick Pope2018-08-021-1/+24
* Fixed #28990 -- Added autosummarize parameter to BrinIndex.Nick Pope2018-08-021-1/+6
* Fixed #28887 -- Added SpGistIndex to django.contrib.postgres.Nick Pope2018-08-021-1/+21
* Fixed #26974 -- Added HashIndex to django.contrib.postgres.Nick Pope2018-08-021-1/+21
* Fixed string format specifier for fillfactor in GistIndex.Nick Pope2018-01-121-1/+1
* Unified construction of WITH SQL in contrib.postgres.indexes.Tim Graham2018-01-101-18/+23
* Allowed indexes in contrib.postgres to have suffixes of any length.Nick Pope2018-01-091-9/+13
* Fixed #28126 -- Added GistIndex to contrib.postgres.Mads Jensen2017-09-041-3/+34
* Refs #27869 -- Omitted field kwargs from GinIndex.deconstruct() if they're None.Mads Jensen2017-08-261-2/+4
* Refs #25809 -- Omitted pages_per_range from BrinIndex.deconstruct() if it's N...Mads Jensen2017-08-261-1/+2
* Fixed #28465 -- Unified index SQL creation in DatabaseSchemaEditorClaude Paroz2017-08-081-12/+10
* Fixed #28330 -- Prevented passing positional arguments to an Index.Mariusz Felisiak2017-06-271-4/+4
* Fixed #27869 -- Added fastupdate and gin_pending_list_limit params to GinIndex.Mads Jensen2017-06-201-0/+22
* Refs #25809 -- Removed BrinIndex.__repr__().Tim Graham2017-06-171-10/+0
* Refs #27935 -- Fixed BrinIndex.max_name_length if a project's default databas...Mariusz Felisiak2017-03-201-10/+5
* Fixed #27935 -- Fixed crash with BrinIndex name > 30 characters.Mads Jensen2017-03-181-0/+10
* Refs #23919 -- Replaced super(ClassName, self) with super().chillaranand2017-01-251-5/+5
* Refs #23919 -- Removed encoding preambles and future importsClaude Paroz2017-01-181-2/+0
* Refs #25809 -- Made a few late review comments for BrinIndex.Mads Jensen2017-01-161-3/+3
* Refs #25809 -- Prefered imports from django.db.models.Mads Jensen2017-01-151-1/+1
* Fixed #25809 -- Added BrinIndex support in django.contrib.postgres.Mads Jensen2017-01-151-2/+34
* Fixed #27030 -- Added contrib.postgres.indexes.GinIndex.Akshesh2016-08-121-0/+12