Re: [HACKERS] How to implement a SP-GiST index as a extension module?

2017-11-14 Thread Connor Wolf
index, but the first step of that will probably be implementing a very basic, boring 2-ary B-tree index across a integral data-type. That way, I can separate implementation issues with logic issues. Connor On Tue, Nov 14, 2017 at 1:53 AM, Alexander Korotkov < a.korot...@postgrespro.ru>

Re: [HACKERS] How to implement a SP-GiST index as a extension module?

2017-11-13 Thread Connor Wolf
On Mon, Nov 13, 2017 at 2:09 AM, Alexander Korotkov < a.korot...@postgrespro.ru> wrote: > Hi! > > On Mon, Nov 13, 2017 at 6:47 AM, Connor Wolf < > conn...@imaginaryindustries.com> wrote: > >> Ok, I've managed to get my custom index working. >>