[PATCH] Reset single-row processing mode at end of pipeline commands queue

Поиск
Список
Период
Сортировка
От Denis Laxalde
Тема [PATCH] Reset single-row processing mode at end of pipeline commands queue
Дата
Msg-id 01af18c5-dacc-a8c8-07ee-aecc7650c3e8@dalibo.com
обсуждение исходный текст
Ответы Re: [PATCH] Reset single-row processing mode at end of pipeline commands queue  (Alvaro Herrera <alvherre@alvh.no-ip.org>)
Список pgsql-hackers
Hello,

I'm trying to make single-row mode and pipeline mode work together in 
Psycopg using libpq. I think there is something wrong with respect to 
the single-row mode flag, not being correctly reset, in some situations.

The minimal case I'm considering is (in a pipeline):
* send query 1,
* get its results in single-row mode,
* send query 2,
* get its results *not* in single-row mode.

It seems that, as the command queue in the pipeline is empty after 
getting the results of query 1, the single-row mode flag is not reset 
and is still active for query 2, thus leading to an unexpected 
PGRES_SINGLE_TUPLE status.

The attached patch demonstrates this in the test suite. It also suggests 
to move the statement resetting single-row mode up in 
pqPipelineProcessQueue(), before exiting the function when the command 
queue is empty in particular.

Thanks for considering,
Denis
Вложения

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

Предыдущее
От: Peter Eisentraut
Дата:
Сообщение: Simplify event trigger support checking functions
Следующее
От: "Daniel Verite"
Дата:
Сообщение: Re: [patch] \g with multiple result sets and \watch with copy queries