pg_sequence_last_value() for unlogged sequences on standbys - Mailing list pgsql-hackers

From Nathan Bossart
Subject pg_sequence_last_value() for unlogged sequences on standbys
Date
Msg-id 20240501005730.GA594666@nathanxps13
Whole thread Raw
Responses Re: pg_sequence_last_value() for unlogged sequences on standbys
List pgsql-hackers
If you create an unlogged sequence on a primary, pg_sequence_last_value()
for that sequence on a standby will error like so:

    postgres=# select pg_sequence_last_value('test'::regclass);
    ERROR:  could not open file "base/5/16388": No such file or directory

This function is used by the pg_sequences system view, which fails with the
same error on standbys.  The two options I see are:

* Return a better ERROR and adjust pg_sequences to avoid calling this
  function for unlogged sequences on standbys.
* Return NULL from pg_sequence_last_value() if called for an unlogged
  sequence on a standby.

As pointed out a few years ago [0], this function is undocumented, so
there's no stated contract to uphold.  I lean towards just returning NULL
because that's what we'll have to put in the relevant pg_sequences field
anyway, but I can see an argument for fixing the ERROR to align with what
you see when you try to access unlogged relations on a standby (i.e.,
"cannot access temporary or unlogged relations during recovery").

Thoughts?

[0] https://postgr.es/m/CAAaqYe8JL8Et2DoO0RRjGaMvy7-C6eDH-2wHXK-gp3dOssvBkQ%40mail.gmail.com

-- 
Nathan Bossart
Amazon Web Services: https://aws.amazon.com



pgsql-hackers by date:

Previous
From: Jacob Champion
Date:
Subject: Re: TLS certificate alternate trust paths issue in libpq - certificate chain validation failing
Next
From: Tom Lane
Date:
Subject: Re: pg_sequence_last_value() for unlogged sequences on standbys