Re: BUG #17415: Unable to use underscore as first character in set_config custom parameter

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: BUG #17415: Unable to use underscore as first character in set_config custom parameter
Дата
Msg-id 1012792.1645631940@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Re: BUG #17415: Unable to use underscore as first character in set_config custom parameter  (Japin Li <japinli@hotmail.com>)
Список pgsql-bugs
Japin Li <japinli@hotmail.com> writes:
> On Wed, 23 Feb 2022 at 16:36, PG Bug reporting form <noreply@postgresql.org> wrote:
>> SELECT set_config('_foo.bar', 'foo', FALSE);
>> ERROR:  invalid configuration parameter name "_foo.bar"
>> DETAIL:  Custom parameter names must be two or more simple identifiers
>> separated by dots.

> According to the comment of valid_custom_variable_name(), the custom variable
> must be two or more identifiers separated dots, and the identifier confirm
> scan.l, see below:
> However, the code in valid_custom_variable_name() doesn't confirm it.

Yeah, it's supposed to match scan.l, so that's an embarrassing
oversight.  Will apply patch.

            regards, tom lane



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

Предыдущее
От: Tomas Vondra
Дата:
Сообщение: Re: BUG #17406: Segmentation fault on GiST index after 14.2 upgrade
Следующее
От: Tom Lane
Дата:
Сообщение: Re: BUG #17416: Server crashes due to python3 stack overflow on executing multiple plpy.rollback() calls