Re: pg_restore ignore error patch

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: pg_restore ignore error patch
Дата
Msg-id 28138.1081539126@sss.pgh.pa.us
обсуждение исходный текст
Ответ на pg_restore ignore error patch  (Fabien COELHO <coelho@cri.ensmp.fr>)
Ответы Re: pg_restore ignore error patch  (Fabien COELHO <coelho@cri.ensmp.fr>)
Список pgsql-patches
Fabien COELHO <coelho@cri.ensmp.fr> writes:
> please find a small patch submission so that "pg_restore" ignores some sql
> errors.

Yeah, we've been talking about doing that for awhile.  But please define
"some errors" --- what do you ignore exactly?

+     if (AH->n_errors)
+         /* translator: %s stands for "error" or "errors" */
+         fprintf(stderr, _("warning: %d %s ignored on restore\n"),
+                 /* translator: in sentence warning: 123 errors ignored... */
+                 AH->n_errors, AH->n_errors>1? _("errors"): _("error"));

Please read the message style guidelines: the above goes directly
against the advice for writing translatable messages.

Also, it might be wise to return a nonzero exit code when any errors are
ignored.  I'm not sure about that, but it might be best to err on the
side of caution...

            regards, tom lane

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

Предыдущее
От: "Andrew Dunstan"
Дата:
Сообщение: Re: pg_restore ignore error patch
Следующее
От: Andrew Dunstan
Дата:
Сообщение: Re: COPY for CSVs