Re: pgsql: Implement operator class parameters

2020-03-30 Thread Andres Freund
Hi, On 2020-03-30 23:11:06 +0300, Alexander Korotkov wrote: > BTW, what version of compiler (and options) do you use? At the first > glance gcc and clang don't show these warnings to me. In this case it was a snapshot of gcc-10, but I think it'd have been there with older compilers too. The warn

Re: pgsql: Implement operator class parameters

2020-03-30 Thread Alexander Korotkov
On Mon, Mar 30, 2020 at 9:36 PM Andres Freund wrote: > This triggers a few new (harmless) warnings for me: > In file included from /home/andres/src/postgresql/src/include/postgres.h:46, > from > /home/andres/src/postgresql/src/backend/access/index/indexam.c:44: > /home/andres/src

Re: pgsql: Implement operator class parameters

2020-03-30 Thread Andres Freund
Hi, On 2020-03-30 16:17:53 +, Alexander Korotkov wrote: > Implement operator class parameters > > PostgreSQL provides set of template index access methods, where opclasses have > much freedom in the semantics of indexing. These index AMs are GiST, GIN, > SP-GiST and BRIN. There opclasses de

pgsql: Implement operator class parameters

2020-03-30 Thread Alexander Korotkov
Implement operator class parameters PostgreSQL provides set of template index access methods, where opclasses have much freedom in the semantics of indexing. These index AMs are GiST, GIN, SP-GiST and BRIN. There opclasses define representation of keys, operations on them and supported search st