Opened 7 years ago

Closed 7 years ago

#28126 closed New feature (fixed)

Add GistIndex Model Index

Reported by: Flavio Curella Owned by: Lefteris Nikoltsios
Component: GIS Version: dev
Severity: Normal Keywords:
Cc: Triage Stage: Accepted
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

Django 1.11 added the Indexes (https://docs.djangoproject.com/en/1.11/ref/models/indexes/), but the GIST Index used prevalently in GIS application hasn't been implemented.

Change History (7)

comment:1 by Tim Graham, 7 years ago

Has patch: set
Triage Stage: UnreviewedAccepted

PR from Marc.

comment:2 by Mariusz Felisiak, 7 years ago

Triage Stage: AcceptedReady for checkin

comment:3 by Mads Jensen, 7 years ago

Triage Stage: Ready for checkinAccepted

comment:4 by Lefteris Nikoltsios, 7 years ago

Owner: changed from nobody to Lefteris Nikoltsios
Status: newassigned

comment:5 by Mads Jensen, 7 years ago

Patch needs improvement: set

comment:6 by Mads Jensen, 7 years ago

Patch needs improvement: unset
Version: 1.11master

PR with support for the fillfactor and buffering parameters, and schema tests, as well as support for the btree_gist extension.

The extension intarray is required for support for gist indexes on integer[]. The extension is not added in the PR, only btree_gist.

comment:7 by Tim Graham <timograham@…>, 7 years ago

Resolution: fixed
Status: assignedclosed

In f4135783:

Fixed #28126 -- Added GistIndex to contrib.postgres.

Thanks to Marc Tamlyn for the initial patch.

Note: See TracTickets for help on using tickets.
Back to Top