summaryrefslogtreecommitdiff
path: root/tests/postgres_tests/test_indexes.py
Commit message (Expand)AuthorAgeFilesLines
* Moved SearchVectorIndexTests.test_search_vector_index to postgres_tests.test_...Mariusz Felisiak2023-04-061-0/+15
* Refs #33308 -- Ensured type handlers are registered for all PostgreSQL specif...Florian Apolloner2022-12-011-2/+1
* Fixed #33717 -- Dropped support for PostgreSQL 11.Mariusz Felisiak2022-05-191-15/+0
* Fixed #33607 -- Made PostgresIndex.create_sql() respect the "using" argument.Alexandru Mărășteanu2022-04-151-0/+16
* Fixed #33539 -- Fixed spaces in WITH SQL for indexes on PostgreSQL.Anders Kaseorg2022-02-241-0/+5
* Refs #33476 -- Refactored code to strictly match 88 characters line length.Mariusz Felisiak2022-02-071-2/+4
* Refs #33476 -- Reformatted code with Black.django-bot2022-02-071-217/+309
* Refs #32943 -- Added support for covering SP-GiST indexes on PostgreSQL 14+.Nick Pope2021-10-011-0/+27
* Fixed typo in exception message for GiST indexes and exclusion constraints.Nick Pope2021-10-011-1/+1
* Fixed SpGistIndex tests on PostgreSQL 14+.Nick Pope2021-10-011-11/+11
* Refs #32858, Refs #32392 -- Restored using :: shortcut syntax in Cast() on Po...Mariusz Felisiak2021-06-221-1/+1
* Fixed #32392 -- Fixed ExclusionConstraint crash with Cast() in expressions.Tilman Koschnick2021-01-291-1/+1
* Fixed #32357 -- Dropped support for PostgreSQL 9.6 and PostGIS 2.3.Mariusz Felisiak2021-01-191-10/+0
* Fixed #26167 -- Added support for functional indexes.Hannes Ljungberg2021-01-131-5/+157
* Fixed #30913 -- Added support for covering indexes on PostgreSQL 11+.Hannes Ljungberg2020-06-041-1/+28
* Fixed #31579 -- Dropped support for PostgreSQL 9.5 and PostGIS 2.2.Mariusz Felisiak2020-05-141-12/+0
* Simplified imports from django.db and django.contrib.gis.db.Nick Pope2020-02-041-4/+2
* Fixed #30943 -- Added BloomIndex to django.contrib.postgres.Nick Pope2019-11-071-1/+81
* Fixed #30155 -- Dropped support for PostgreSQL 9.4 and PostGIS 2.1.Tim Graham2019-02-041-23/+1
* Removed unnecessary skipUnlessDBFeature.Simon Charette2019-01-131-1/+0
* Switched TestCase to SimpleTestCase where possible in Django's tests.Tim Graham2018-11-271-7/+7
* Fixed cached_properties that share a common property.Sergey Fedoseev2018-11-191-5/+5
* Fixed #29547 -- Added support for partial indexes.Mads Jensen2018-10-291-0/+34
* Refs #27869 -- Added PostgreSQL version check for GinIndex support.Nick Pope2018-08-021-0/+10
* Refs #25809, #28990 -- Added PostgreSQL version check for BrinIndex support.Nick Pope2018-08-021-0/+22
* Fixed #29614 -- Added BTreeIndex to django.contrib.postres.Nick Pope2018-08-021-1/+43
* Fixed #28990 -- Added autosummarize parameter to BrinIndex.Nick Pope2018-08-021-2/+20
* Fixed #28887 -- Added SpGistIndex to django.contrib.postgres.Nick Pope2018-08-021-1/+43
* Fixed #26974 -- Added HashIndex to django.contrib.postgres.Nick Pope2018-08-021-1/+45
* Simplified tests for PostgreSQL indexes.Nick Pope2018-08-021-83/+34
* Fixed #28126 -- Added GistIndex to contrib.postgres.Mads Jensen2017-09-041-1/+69
* Refs #27869 -- Omitted field kwargs from GinIndex.deconstruct() if they're None.Mads Jensen2017-08-261-0/+7
* Refs #25809 -- Omitted pages_per_range from BrinIndex.deconstruct() if it's N...Mads Jensen2017-08-261-1/+1
* Fixed #27869 -- Added fastupdate and gin_pending_list_limit params to GinIndex.Mads Jensen2017-06-201-2/+40
* Refs #25809 -- Removed BrinIndex.__repr__().Tim Graham2017-06-171-10/+0
* Fixed #27935 -- Fixed crash with BrinIndex name > 30 characters.Mads Jensen2017-03-181-1/+12
* Fixed #27135 -- Made index introspection return Index.suffix.Tim Graham2017-02-151-2/+8
* Refs #25809 -- Made a few late review comments for BrinIndex.Mads Jensen2017-01-161-5/+2
* Fixed #25809 -- Added BrinIndex support in django.contrib.postgres.Mads Jensen2017-01-151-2/+52
* Fixed #27097 -- Added index type introspection to built-in db backends.Akshesh2016-09-021-4/+5
* Refs #27097, #27098 -- Moved PostgreSQL index type introspection to get_const...Akshesh2016-08-301-6/+7
* Fixed #27030 -- Added contrib.postgres.indexes.GinIndex.Akshesh2016-08-121-0/+55