Re: ArchiveEntry optional arguments refactoring

Поиск
Список
Период
Сортировка
От Alvaro Herrera
Тема Re: ArchiveEntry optional arguments refactoring
Дата
Msg-id 201902011143.zzf7gxlxeszc@alvherre.pgsql
обсуждение исходный текст
Ответ на Re: ArchiveEntry optional arguments refactoring  (Alvaro Herrera <alvherre@2ndquadrant.com>)
Ответы Re: ArchiveEntry optional arguments refactoring  (Dmitry Dolgov <9erthalion6@gmail.com>)
Список pgsql-hackers
On 2019-Feb-01, Alvaro Herrera wrote:

> ... so this code
> 
>         if (!ropt->noOwner)
>             sanitized_owner = replace_line_endings(te->owner);
>         else
>             sanitized_owner = pg_strdup("-");
> 
> can become
>         sanitized_owner = replace_line_endings(te->owner, true);

Sorry, there's a silly bug here because I picked the wrong example to
hand-type.  The proposed pattern works fine for the schema cases, not
for this owner case.  The owner case is correctly handled (AFAICT) in
the patch I posted.  (Also for some reason I decided to go with "hyphen"
instead of "dash" in the argument name.  Not sure if anybody cares
strongly about using the right terminology there (I don't know which it
is).

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


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

Предыдущее
От: Alvaro Herrera
Дата:
Сообщение: Re: ArchiveEntry optional arguments refactoring
Следующее
От: Alvaro Herrera
Дата:
Сообщение: Re: [HACKERS] [PATCH] Generic type subscripting