Re: [HACKERS] Continue transactions after errors in psql

Поиск
Список
Период
Сортировка
От Andrew Dunstan
Тема Re: [HACKERS] Continue transactions after errors in psql
Дата
Msg-id 426E584C.3080003@dunslane.net
обсуждение исходный текст
Ответ на Re: [HACKERS] Continue transactions after errors in psql  (Tom Lane <tgl@sss.pgh.pa.us>)
Ответы Re: [HACKERS] Continue transactions after errors in psql
Список pgsql-patches

Tom Lane wrote:

>Richard Huxton <dev@archonet.com> writes:
>
>
>>Michael Paesold wrote:
>>
>>
>>>I just don't see why non-interactive mode does need such a switch
>>>because there is no way to check if there was an error. So just put two
>>>queries there and hope one will work?
>>>
>>>
>
>
>
>>DROP TABLE foo;
>>CREATE TABLE foo...
>>
>>
>
>Unconvincing.  What if the drop fails for permission reasons, rather
>than because the table's not there?  Then the CREATE will fail too
>... but now the script bulls ahead regardless, with who knows what
>bad consequences.
>
>I would far rather see people code explicit markers around statements
>whose failure can be ignored.  That is, a script that needs this
>behavior ought to look like
>
>    BEGIN;
>    \begin_ignore_error
>    DROP TABLE foo;
>    \end_ignore_error
>    CREATE ...
>    ...
>    COMMIT;
>
>
>
>

That's a lot of work. In this particular case I would actually like to
see us provide "DROP IF EXISTS ..." or some such.

My instinct on this facility is that distinguishing between interactive
and noninteractive use is likely to be highly confusing. So I would
favor behaviour that is consistent and defaults to off.

cheers

andrew



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

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: [HACKERS] Continue transactions after errors in psql
Следующее
От: Tom Lane
Дата:
Сообщение: Re: [HACKERS] Continue transactions after errors in psql