#28928: Add support for expression indexes for GinIndex
----------------------------------+------------------------------------
     Reporter:  James Howe        |                    Owner:  (none)
         Type:  New feature       |                   Status:  new
    Component:  contrib.postgres  |                  Version:  1.11
     Severity:  Normal            |               Resolution:
     Keywords:                    |             Triage Stage:  Accepted
    Has patch:  0                 |      Needs documentation:  0
  Needs tests:  0                 |  Patch needs improvement:  0
Easy pickings:  0                 |                    UI/UX:  0
----------------------------------+------------------------------------
Description changed by James Howe:

Old description:

> I'm envisaging an api such that
> {{{
> GinIndex(fields=['jdoc.tags[0]'])
> }}}
> would generate
> {{{
> CREATE INDEX jdoc_gin ON mymodel USING GIN ((jdoc -> 'tags' -> 0));
> }}}

New description:

 I'm envisaging an api such that
 {{{
 GinIndex(fields=['jdoc.tags[0]'])
 }}}
 would generate
 {{{
 CREATE INDEX jdoc_gin ON mymodel USING GIN (((jdoc -> 'tags')::jsonb ->
 0));
 }}}

--

-- 
Ticket URL: <https://code.djangoproject.com/ticket/28928#comment:2>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/067.21a30a6da5c259af7bce524e1a6a370e%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to