summaryrefslogtreecommitdiff
path: root/django/contrib/postgres/indexes.py
Commit message (Expand)AuthorAgeFilesLines
* 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