Re: pgsql: pg_waldump: Add a --quiet option.

Поиск
Список
Период
Сортировка
От Robert Haas
Тема Re: pgsql: pg_waldump: Add a --quiet option.
Дата
Msg-id CA+TgmoYD9Aq9VuZEO3P78q=dqkA_qYA-i1SuB_f5+YOePZN7PQ@mail.gmail.com
обсуждение исходный текст
Ответ на Re: pgsql: pg_waldump: Add a --quiet option.  (Fujii Masao <masao.fujii@oss.nttdata.com>)
Список pgsql-committers
On Thu, Apr 2, 2020 at 9:41 PM Fujii Masao <masao.fujii@oss.nttdata.com> wrote:
> On 2020/04/03 10:11, Robert Haas wrote:
> > pg_waldump: Add a --quiet option.
> >
> > The primary motivation for this change is that it will be used by the
> > upcoming patch to add backup manifests, but it also seems to have some
> > potential more general use.
>
> I'm not sure what the actual purpose of this feature yet, but ISTM that
> the following change is necessary. Otherwise, "empty" stats information
> is output even when --quiet is specified.
>
> -       if (config.stats == true)
> +       if (config.stats == true && !config.quiet)
>                  XLogDumpDisplayStats(&config, &stats);

Oops. That seems like a bug. It only matters if you specify --quiet
and --stats together, but even so the behavior is not as documented,
so it should be fixed. Thanks.

-- 
Robert Haas
EnterpriseDB: http://www.enterprisedb.com
The Enterprise PostgreSQL Company



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

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: pgsql: Include information on buffer usage during planning phase, in EX
Следующее
От: Robert Haas
Дата:
Сообщение: pgsql: Add checksum helper functions.