Re: pg_restore COPY error handling

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: pg_restore COPY error handling
Дата
Msg-id 7360.1138845828@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Re: pg_restore COPY error handling  (Stephen Frost <sfrost@snowman.net>)
Ответы Re: pg_restore COPY error handling  (Stephen Frost <sfrost@snowman.net>)
Re: pg_restore COPY error handling  ("Andrew Dunstan" <andrew@dunslane.net>)
Re: pg_restore COPY error handling  (Stephen Frost <sfrost@snowman.net>)
Список pgsql-patches
Stephen Frost <sfrost@snowman.net> writes:
> * Tom Lane (tgl@sss.pgh.pa.us) wrote:
>> This is not super surprising because the original design approach for
>> pg_restore was "bomb out on any sort of difficulty whatsoever".  That
>> was justly complained about, and now it will try to keep going after
>> SQL-command errors ... but it sounds like the COPY-data processing
>> part didn't get fixed properly.

> Exactly so.  Possibly because it appears to be non-trivial to detect
> when it was a *COPY* command which failed (to differentiate it from some
> other command).  What I did was check for '<whitespace>COPY'.  I'd be
> happy to change that if anyone has a better suggestion though.

ISTM you should be depending on the archive structure: at some level,
at least, pg_restore knows darn well whether it is dealing with table
data or SQL commands.

Also, it might be possible to depend on whether libpq has entered the
"copy in" state.  I'm not sure this works very well, because if there's
an error in the COPY command itself (not in the following data) then we
probably don't ever get into "copy in" state.

            regards, tom lane

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

Предыдущее
От: Stephen Frost
Дата:
Сообщение: Re: pg_restore COPY error handling
Следующее
От: Stephen Frost
Дата:
Сообщение: Re: pg_restore COPY error handling