pgsql: Don't let libpq "event" procs break the state of PGresult object

Поиск
Список
Период
Сортировка
От Tom Lane
Тема pgsql: Don't let libpq "event" procs break the state of PGresult object
Дата
Msg-id E1nL6Lo-0006pN-O7@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Don't let libpq "event" procs break the state of PGresult objects.

As currently implemented, failure of a PGEVT_RESULTCREATE callback
causes the PGresult to be converted to an error result.  This is
intellectually inconsistent (shouldn't a failing callback likewise
prevent creation of the error result? what about side-effects on the
behavior seen by other event procs? why does PQfireResultCreateEvents
act differently from PQgetResult?), but more importantly it destroys
any promises we might wish to make about the behavior of libpq in
nontrivial operating modes, such as pipeline mode.  For example,
it's not possible to promise that PGRES_PIPELINE_SYNC results will
be returned if an event callback fails on those.  With this
definition, expecting applications to behave sanely in the face of
possibly-failing callbacks seems like a very big lift.

Hence, redefine the result of a callback failure as being simply
that that event procedure won't be called any more for this PGresult
(which was true already).  Event procedures can still signal failure
back to the application through out-of-band mechanisms, for example
via their passthrough arguments.

Similarly, don't let failure of a PGEVT_RESULTCOPY callback prevent
PQcopyResult from succeeding.  That definition allowed a misbehaving
event proc to break single-row mode (our sole internal use of
PQcopyResult), and it probably had equally deleterious effects for
outside uses.

Discussion: https://postgr.es/m/3185105.1644960083@sss.pgh.pa.us

Branch
------
master

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

Modified Files
--------------
doc/src/sgml/libpq.sgml             | 31 ++++++++++++++++---------------
src/interfaces/libpq/fe-exec.c      | 37 +++++++------------------------------
src/interfaces/libpq/libpq-events.c | 14 ++++++++------
3 files changed, 31 insertions(+), 51 deletions(-)


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

Предыдущее
От: Tom Lane
Дата:
Сообщение: pgsql: Suppress warning about stack_base_ptr with late-model GCC.
Следующее
От: Robert Haas
Дата:
Сообщение: pgsql: Add support for building with ZSTD.