Re: Rule system goes weird with SELECT queries

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: Rule system goes weird with SELECT queries
Дата
Msg-id 12897.972000611@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Re: Rule system goes weird with SELECT queries  ("Kevin O'Gorman" <kogorman@pacbell.net>)
Список pgsql-hackers
"Kevin O'Gorman" <kogorman@pacbell.net> writes:
> When I actually *execute* the 'insert into dummy', I get the output of
> only one select: the second one listed.  Is there something about
> executing a list I don't know about, or is this also old news??

If you're using psql then that doesn't surprise me, because psql submits
queries via PQexec, and PQexec is not capable of dealing with multiple
result sets per submitted query string --- its API provides no way to
handle that, so it just bit-buckets all but the last command result.

This would work OK in an app that uses PQsendQuery followed by a
PQgetResult loop, however.  See
http://www.postgresql.org/devel-corner/docs/postgres/libpq-async.htm

I've been kind of wanting to update psql to use these lower-level
routines, but that item has been languishing in the to-do queue for
a couple years now...
        regards, tom lane


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

Предыдущее
От: "Kevin O'Gorman"
Дата:
Сообщение: Re: Rule system goes weird with SELECT queries
Следующее
От: "Kevin O'Gorman"
Дата:
Сообщение: Proposed relaxation of CREATE RULE syntax