Re: BRIN is missing in multicolumn indexes documentation - Mailing list pgsql-hackers

From Fujii Masao
Subject Re: BRIN is missing in multicolumn indexes documentation
Date
Msg-id CAHGQGwF80LGhOXYJnPFCBcs1kd_L+8S=Vki7y9PSQNd_p_kc1g@mail.gmail.com
Whole thread Raw
In response to BRIN is missing in multicolumn indexes documentation  (Petr Jediný <petr.jediny@gmail.com>)
Responses Re: BRIN is missing in multicolumn indexes documentation
List pgsql-hackers
On Tue, Mar 22, 2016 at 12:53 AM, Petr Jediný <petr.jediny@gmail.com> wrote:
> Hello,
>
> the http://www.postgresql.org/docs/9.5/static/indexes-multicolumn.html
> page doesn't mention BRIN support, but according to the
> http://www.postgresql.org/docs/9.5/static/sql-createindex.html it is
> supported in multicolumn setup.
>
> The attached patch (git diff against master branch) fixes the omission
> and adds "Oxford comma" before "and" to unify the writing style with
> the style used in the "create index" documentation.

Good catch!

In addtion to your patch, we should add the description for
the multicolumn brin index, like the following one in the doc?

---------------
A multicolumn GIN index can be used with query conditions that
involve any subset of the index's columns. Unlike B-tree or GiST,
index search effectiveness is the same regardless of which index
column(s) the query conditions use.
---------------

Regards,

--
Fujii Masao



pgsql-hackers by date:

Previous
From: Aleksander Alekseev
Date:
Subject: Re: Re: PROPOSAL: make PostgreSQL sanitizers-friendly (and prevent information disclosure)
Next
From: Merlin Moncure
Date:
Subject: Re: Relax requirement for INTO with SELECT in pl/pgsql