Re: [PATCH] Opclass parameters

Поиск
Список
Период
Сортировка
От Alvaro Herrera
Тема Re: [PATCH] Opclass parameters
Дата
Msg-id 20190903220254.GA22389@alvherre.pgsql
обсуждение исходный текст
Ответ на Re: [PATCH] Opclass parameters  (Tomas Vondra <tomas.vondra@2ndquadrant.com>)
Ответы Re: [PATCH] Opclass parameters  (Nikita Glukhov <n.gluhov@postgrespro.ru>)
Список pgsql-hackers
On 2019-Jun-11, Tomas Vondra wrote:

> 1) We need a better infrastructure to parse opclass parameters. For
> example the gtsvector_options does this:

I think this is part of what Nikolay's patch series was supposed to
address.  But that one has been going way too slow.  I agree we need
something better.

> 2) The 0001 part does this in index_opclass_options_generic:
> 
>    get_opclass_name(opclass, InvalidOid, &str);
> 
>    ereport(ERROR,
>            (errcode(ERRCODE_INVALID_PARAMETER_VALUE),
>             errmsg("operator class \"%s\" has no options",
>                    opclassname.data)));
> 
> But that's a bit broken, because get_opclass_name() appends the opclass
> name to 'str', but with a space at the beginning.

Yeah, I think just exporting get_opclass_name from ruleutils.c is a bad
idea.  Sounds like we need a (very small) new function in lsyscache.c
that does the job of extracting the opclass name, and then the ruleutils
function can call that one to avoid duplicated code.

Anyway, this patchset doesn't apply anymore.  Somebody (maybe its
author this time?) please rebase.

-- 
Álvaro Herrera                https://www.2ndQuadrant.com/
PostgreSQL Development, 24x7 Support, Remote DBA, Training & Services



В списке pgsql-hackers по дате отправления:

Предыдущее
От: Alvaro Herrera
Дата:
Сообщение: Re: Attempt to consolidate reading of XLOG page
Следующее
От: Alvaro Herrera
Дата:
Сообщение: Re: WIP: BRIN multi-range indexes