Re: 9.6 synchronous_standby_names: discrepancy between docs and functionality

Поиск
Список
Период
Сортировка
От Michael Paquier
Тема Re: 9.6 synchronous_standby_names: discrepancy between docs and functionality
Дата
Msg-id CAB7nPqRTBGmVNM6EU_WnwKu3haNLCxd+35Dg9m2u_7Jf1ovnng@mail.gmail.com
обсуждение исходный текст
Ответ на 9.6 synchronous_standby_names: discrepancy between docs and functionality  ("Nicholson, Brad (Toronto, ON, CA)" <bnicholson@hpe.com>)
Ответы Re: 9.6 synchronous_standby_names: discrepancy between docs and functionality  (Fujii Masao <masao.fujii@gmail.com>)
Список pgsql-bugs
On Thu, Apr 14, 2016 at 9:51 PM, Nicholson, Brad (Toronto, ON, CA)
<bnicholson@hpe.com> wrote:
> When you try and use this example, it fails:
>
> syncrep=# alter system set synchronous_standby_names='2 (s1, s2, s3)';
> ERROR:  invalid value for parameter "synchronous_standby_names": "2 (s1, s2, s3)"
> DETAIL:  List syntax is invalid.
>
> If you remove the space from between the 2 & the ( it works:
>
> syncrep=# alter system set synchronous_standby_names='2(s1, s2, s3)';
> ALTER SYSTEM

Both of them work for me (HEAD at 92a30a7):
=# alter system set synchronous_standby_names='2 (s1, s2, s3)';
ALTER SYSTEM
=# alter system set synchronous_standby_names='2(s1, s2, s3)';
ALTER SYSTEM
--
Michael

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

Предыдущее
От: "Nicholson, Brad (Toronto, ON, CA)"
Дата:
Сообщение: 9.6 synchronous_standby_names: discrepancy between docs and functionality
Следующее
От: Tom Lane
Дата:
Сообщение: Re: BUG #14084: typo in LIMIT documentation