Re: [PATCH] Opclass parameters

From: Nikita Glukhov <n(dot)gluhov(at)postgrespro(dot)ru>
To: Tomas Vondra <tomas(dot)vondra(at)2ndquadrant(dot)com>, "pgsql-hackers(at)postgresql(dot)org" <pgsql-hackers(at)postgresql(dot)org>
Cc: Alvaro Herrera <alvherre(at)2ndquadrant(dot)com>, Robert Haas <robertmhaas(at)gmail(dot)com>, Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>, Nikolay Shaplov <dhyan(at)nataraj(dot)su>, Oleg Bartunov <obartunov(at)gmail(dot)com>
Subject: Re: [PATCH] Opclass parameters
Date: 2020-02-29 02:13:40
Message-ID: 5e95f74b-977f-ce98-cd73-302a0fb83e9f@postgrespro.ru
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

Attached new version of the patches.

On 12.09.2019 3:16, Tomas Vondra wrote:

> On Wed, Sep 11, 2019 at 01:44:28AM +0300, Nikita Glukhov wrote:
>> On 11.09.2019 1:03, Tomas Vondra wrote:
>>
>>> On Tue, Sep 10, 2019 at 04:30:41AM +0300, Nikita Glukhov wrote:
>>>
>>>> 2. New AM method amattoptions().
>>>>
>>>>   amattoptions() is used to specify per-column AM-specific options.
>>>>   The example is signature length for bloom indexes (patch #3).
>>>
>>> I'm somewhat confused how am I supposed to use this, considering the
>>> patch
>>> set only defines this for the contrib/bloom index AM. So let's say I
>>> want
>>> to create a custom BRIN opclass with per-attribute options (like the
>>> two
>>> BRIN opclasses I work on in the other thread). Clearly, I can't
>>> tweak the
>>> IndexAmRoutine from the extension. ISTM the patch series should
>>> modify all
>>> existing index AMs to have a valid amattoptions() implementation,
>>> calling
>>> the new amproc if defined.
>>>
>>> Or what is the correct way to define custom opclass for existing
>>> index AM
>>> (e.g. BRIN) with attribute options?
>>>
>> Per-attribute opclass options are implemented independently from
>> per-attribute
>> AM options.  amattoptions() is optional and needs to be defined only
>> if AM has
>> per-attribute options.
>
> OK, thanks for the explanation - so the per-attribute opclass options
> will
> work even when the AM does not have amattoptions() defined. Is there any
> practical reason why not to just define everything as opclass options and
> get rid of the amattoptions() entirely?
The reason is that it would be no need to duplicate AM-specific
per-attribute
options in each opclass. For example, contrib/bloom AM has per-column
options
(signature length), but its opclasses have no options now.

>> amproc #0 is called regardless of whether amattoptions
>> is defined or not.  That was the main reason why uniform procnum 0 was
>> picked.
>>
>
> I still think using procnum 0 and passing the data through fn_expr are
> not
> the right solution. Firstly, traditionally the amprocs are either
> required
> or optional, with required procs having low procnums and optional
> starting
> at 11 or so. The 0 breaks this, because it's optional but it contradicts
> the procnum rule. Also, what happens if we need to add another optional
> amproc defined for all AMs? Surely we won't use -1.
>
> IMHO we should keep AM-specific procnum and pass it somehow to the AM
> machinery.

As you suggested, I introduced AM-specific procnum
IndexAmRoutine.attoptsprocnum, that has different values for each AM.
This was not a problem, because there are only a few AMs now.

>
> FWIW there seems to be a bug in identify_opfamily_groups() which does
> this:
>    /* Ignore strategy numbers outside supported range */
>    if (oprform->amopstrategy > 0 && oprform->amopstrategy < 64)
>        thisgroup->operatorset |= ((uint64) 1) << oprform->amopstrategy;
>
> but then identify_opfamily_groups() computes allfuncs without any such
> restriction, i.e. it includes procnum 0. And then it fails on this check
>
>    if (thisgroup->functionset != allfuncs) {...}
>
> None of the built-in brin opclasses defines the new amproc, so the code
> does not hit this issue. I only noticed this with the opclasses added in
> the other thread.

This really seems to be bug in previous patches, but now procnum can't be 0.

>
> As for the fn_expr, I still think this seems like a misuse of a field
> which was intended for something else. I wonder if it might be breaking
> some exising code - either in code or in some extension. It seems quite
> possible.
>
> It just seems like we're inventing a new way to novel way to pass data
> into a function while we already have parameters for that purpose. Adding
> parameters may require care so as not to break existing opclasses, but it
> seems like the right approach.

fn_expr is used to pass metainformation about user function calls. It is
not
used In AM method calls, so it seems safe to reuse it.  Opclass parameters
can be considered here as some kind metainfo about AM calls.

Of course, we could add special parameter to each support function of
each AM.
But it looks too complicated, and every external AM needs to do that to
enable
opclass parameters. So I think it is desirable to implement a more general
solution.

--
Nikita Glukhov
Postgres Professional: http://www.postgrespro.com
The Russian Postgres Company

Attachment Content-Type Size
0001-Introduce-opclass-parameters-20200229.patch.gz application/gzip 24.0 KB
0002-Introduce-amattoptions-20200229.patch.gz application/gzip 1.9 KB
0003-Use-amattoptions-in-contrib_bloom-20200229.patch.gz application/gzip 2.8 KB
0004-Use-opclass-parameters-in-GiST-tsvector_ops-20200229.patch.gz application/gzip 7.1 KB
0005-Use-opclass-parameters-in-contrib_intarray-20200229.patch.gz application/gzip 7.3 KB
0006-Use-opclass-parameters-in-contrib_ltree-20200229.patch.gz application/gzip 8.5 KB
0007-Use-opclass-parameters-in-contrib_pg_trgm-20200229.patch.gz application/gzip 6.0 KB
0008-Use-opclass-parameters-in-contrib_hstore-20200229.patch.gz application/gzip 4.8 KB
0009-Use-opclass-parameters-in-GIN-tsvector_ops-20200229.patch.gz application/gzip 5.8 KB
0010-Remove-pg_index.indoption-20200229.patch.gz application/gzip 11.0 KB

In response to

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Justin Pryzby 2020-02-29 02:42:02 Re: ALTER tbl rewrite loses CLUSTER ON index
Previous Message Tom Lane 2020-02-29 01:42:02 Re: Portal->commandTag as an enum