pgsql: Make identity sequence management more robust

From: Peter Eisentraut <peter(at)eisentraut(dot)org>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Make identity sequence management more robust
Date: 2019-07-22 10:16:23
Message-ID: E1hpVMl-0003P8-8p@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Make identity sequence management more robust

Some code could get confused when certain catalog state involving both
identity and serial sequences was present, perhaps during an attempt
to upgrade the latter to the former. Specifically, dropping the
default of a serial column maintains the ownership of the sequence by
the column, and so it would then be possible to afterwards make the
column an identity column that would now own two sequences. This
causes the code that looks up the identity sequence to error out,
making the new identity column inoperable until the ownership of the
previous sequence is released.

To fix this, make the identity sequence lookup only consider sequences
with the appropriate dependency type for an identity sequence, so it
only ever finds one (unless something else is broken). In the above
example, the old serial sequence would then be ignored. Reorganize
the various owned-sequence-lookup functions a bit to make this
clearer.

Reported-by: Laurenz Albe <laurenz(dot)albe(at)cybertec(dot)at>
Discussion: https://www.postgresql.org/message-id/flat/470c54fc8590be4de0f41b0d295fd6390d5e8a6c(dot)camel(at)cybertec(dot)at

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/19781729f789f3c6b2540e02b96f8aa500460322

Modified Files
--------------
src/backend/catalog/pg_depend.c | 33 +++++++++++++++++++++++++--------
src/backend/commands/tablecmds.c | 4 ++--
src/backend/parser/parse_utilcmd.c | 12 +++++-------
src/backend/rewrite/rewriteHandler.c | 2 +-
src/include/catalog/dependency.h | 4 ++--
src/test/regress/expected/identity.out | 5 +++++
src/test/regress/sql/identity.sql | 8 ++++++++
7 files changed, 48 insertions(+), 20 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message David Rowley 2019-07-22 12:14:36 pgsql: Use appendBinaryStringInfo in more places where the length is kn
Previous Message David Rowley 2019-07-22 07:03:37 pgsql: Make better use of the new List implementation in a couple of pl