pgsql: libpq: Fix sending queries in pipeline aborted state

Поиск
Список
Период
Сортировка
От Alvaro Herrera
Тема pgsql: libpq: Fix sending queries in pipeline aborted state
Дата
Msg-id E1m1wqI-0001q0-Lj@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
libpq: Fix sending queries in pipeline aborted state

When sending queries in pipeline mode, we were careless about leaving
the connection in the right state so that PQgetResult would behave
correctly; trying to read further results after sending a query after
having read a result with an error would sometimes hang.  Fix by
ensuring internal libpq state is changed properly.  All the state
changes were being done by the callers of pqAppendCmdQueueEntry(); it
would have become too repetitious to have this logic in each of them, so
instead put it all in that function and relieve callers of the
responsibility.

Add a test to verify this case.  Without the code fix, this new test
hangs sometimes.

Also, document that PQisBusy() would return false when no queries are
pending result.  This is not intuitively obvious, and NULL would be
obtained by calling PQgetResult() at that point, which is confusing.
Wording by Boris Kolpackov.

In passing, fix bogus use of "false" to mean "0", per Ranier Vilela.

Backpatch to 14.

Author: Álvaro Herrera <alvherre@alvh.no-ip.org>
Reported-by: Boris Kolpackov <boris@codesynthesis.com>
Discussion: https://postgr.es/m/boris.20210624103805@codesynthesis.com

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/ab09679429009bfed4bd894a6187afde0b7bdfcd

Modified Files
--------------
doc/src/sgml/libpq.sgml                          |   5 +-
src/interfaces/libpq/fe-exec.c                   |  57 ++++--
src/test/modules/libpq_pipeline/libpq_pipeline.c | 226 +++++++++++++++++++++++
3 files changed, 274 insertions(+), 14 deletions(-)


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

Предыдущее
От: Jeff Davis
Дата:
Сообщение: pgsql: Eliminate replication protocol error related to IDENTIFY_SYSTEM.
Следующее
От: Tom Lane
Дата:
Сообщение: pgsql: Un-break AIX build, take 2.