Re: pgsql: Add support for building GiST index by sorting.

2020-09-17 Thread Heikki Linnakangas
On 17/09/2020 23:07, Peter Geoghegan wrote: On Thu, Sep 17, 2020 at 1:34 AM Heikki Linnakangas wrote: Add support for building GiST index by sorting. You forgot to bump catversion, despite your best efforts. :-) You left this behind: +/* FIXME: bump this before pushing! */ I have settled

Re: pgsql: Add support for building GiST index by sorting.

2020-09-17 Thread Tom Lane
Peter Geoghegan writes: > On Thu, Sep 17, 2020 at 1:34 AM Heikki Linnakangas > wrote: >> Add support for building GiST index by sorting. > You forgot to bump catversion, despite your best efforts. :-) > You left this behind: > +/* FIXME: bump this before pushing! */ Yeah, I noticed that, and j

Re: pgsql: Add support for building GiST index by sorting.

2020-09-17 Thread Peter Geoghegan
On Thu, Sep 17, 2020 at 1:34 AM Heikki Linnakangas wrote: > Add support for building GiST index by sorting. You forgot to bump catversion, despite your best efforts. :-) You left this behind: +/* FIXME: bump this before pushing! */ I have settled on a system for this: I write myself a reminde

pgsql: Add support for building GiST index by sorting.

2020-09-17 Thread Heikki Linnakangas
Add support for building GiST index by sorting. This adds a new optional support function to the GiST access method: sortsupport. If it is defined, the GiST index is built by sorting all data to the order defined by the sortsupport's comparator function, and packing the tuples in that order to GiS