pgsql: Fix pg_sequence_last_value() for unlogged sequences on standbys.

Поиск
Список
Период
Сортировка
От Nathan Bossart
Тема pgsql: Fix pg_sequence_last_value() for unlogged sequences on standbys.
Дата
Msg-id E1s6cjV-0003mZ-6f@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Fix pg_sequence_last_value() for unlogged sequences on standbys.

Presently, when this function is called for an unlogged sequence on
a standby server, it will error out with a message like

        ERROR:  could not open file "base/5/16388": No such file or directory

Since the pg_sequences system view uses pg_sequence_last_value(),
it can error similarly.  To fix, modify the function to return NULL
for unlogged sequences on standby servers.  Since this bug is
present on all versions since v15, this approach is preferable to
making the ERROR nicer because we need to repair the pg_sequences
view without modifying its definition on released versions.  For
consistency, this commit also modifies the function to return NULL
for other sessions' temporary sequences.  The pg_sequences view
already appropriately filters out such sequences, so there's no bug
there, but we might as well offer some defense in case someone
invokes this function directly.

Unlogged sequences were first introduced in v15, but temporary
sequences are much older, so while the fix for unlogged sequences
is only back-patched to v15, the temporary sequence portion is
back-patched to all supported versions.

We could also remove the privilege check in the pg_sequences view
definition in v18 if we modify this function to return NULL for
sequences for which the current user lacks privileges, but that is
left as a future exercise for when v18 development begins.

Reviewed-by: Tom Lane, Michael Paquier
Discussion: https://postgr.es/m/20240501005730.GA594666%40nathanxps13
Backpatch-through: 12

Branch
------
REL_16_STABLE

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

Modified Files
--------------
doc/src/sgml/system-views.sgml        | 29 +++++++++++++++++++++++++----
src/backend/commands/sequence.c       | 31 ++++++++++++++++++++++---------
src/test/recovery/t/001_stream_rep.pl |  8 ++++++++
3 files changed, 55 insertions(+), 13 deletions(-)


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

Предыдущее
От: Nathan Bossart
Дата:
Сообщение: pgsql: Fix pg_sequence_last_value() for unlogged sequences on standbys.
Следующее
От: Bruce Momjian
Дата:
Сообщение: pgsql: doc PG 17 relnotes: add psql connection control-C item