From: | Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> |
---|---|
To: | pgsql-committers(at)lists(dot)postgresql(dot)org |
Subject: | pgsql: Fix ALTER TABLE's scheduling rules for AT_AddConstraint subcomma |
Date: | 2020-08-22 16:34:27 |
Message-ID: | E1k9WTL-00035G-RD@gemulon.postgresql.org |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-committers |
Fix ALTER TABLE's scheduling rules for AT_AddConstraint subcommands.
Commit 1281a5c90 rearranged the logic in this area rather drastically,
and it broke the case of adding a foreign key constraint in the same
ALTER that adds the pkey or unique constraint it depends on. While
self-referential fkeys are surely a pretty niche case, this used to
work so we shouldn't break it.
To fix, reorganize the scheduling rules in ATParseTransformCmd so
that a transformed AT_AddConstraint subcommand will be delayed into
a later pass in all cases, not only when it's been spit out as a
side-effect of parsing some other command type.
Also tweak the logic so that we won't run ATParseTransformCmd twice
while doing this. It seems to work even without that, but it's
surely wasting cycles to do so.
Per bug #16589 from Jeremy Evans. Back-patch to v13 where the new
code was introduced.
Discussion: https://postgr.es/m/16589-31c8d981ca503896@postgresql.org
Branch
------
REL_13_STABLE
Details
-------
https://git.postgresql.org/pg/commitdiff/47de6ac11b53cf24393a2ef048f9e8921163da0a
Modified Files
--------------
src/backend/commands/tablecmds.c | 151 +++++++++++++++++-------------
src/test/regress/expected/alter_table.out | 36 +++++++
src/test/regress/sql/alter_table.sql | 14 +++
3 files changed, 135 insertions(+), 66 deletions(-)
From | Date | Subject | |
---|---|---|---|
Next Message | Tom Lane | 2020-08-22 18:47:07 | pgsql: Avoid pushing quals down into sub-queries that have grouping set |
Previous Message | Michael Paquier | 2020-08-22 13:27:30 | pgsql: doc: Fix format, incorrect structure names and markup inconsiste |