Re: [HACKERS] psql and libpq fixes

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: [HACKERS] psql and libpq fixes
Дата
Msg-id 22504.949970790@sss.pgh.pa.us
обсуждение исходный текст
Ответ на psql and libpq fixes  (Peter Eisentraut <peter_e@gmx.net>)
Ответы Re: [HACKERS] psql and libpq fixes  (Peter Eisentraut <e99re41@DoCS.UU.SE>)
Список pgsql-hackers
Peter Eisentraut <peter_e@gmx.net> writes:
> While we're at it, there's a setting that causes psql to stop execution of
> a script on an error (since usually the later commands will be depending
> on the successful completion of earlier ones). I was wondering if that
> should be the default if you use the -f option.

Sounds useful, but you can't make it the default without breaking existing
scripts.  Trivial example is this common idiom:DROP TABLE t1;       -- in case it already existsCREATE TABLE t1;COPY
...

In general, an existing script is not going to be written with the idea
that psql will cut it off at the knees for provoking an error.  If the
author *does* want all the rest of the commands to be skipped on error,
he'll just have written BEGIN and END around the whole script.
        regards, tom lane


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

Предыдущее
От: Bruce Momjian
Дата:
Сообщение: Re: [HACKERS] TODO item
Следующее
От: "Hiroshi Inoue"
Дата:
Сообщение: RE: [HACKERS] TODO item