pgsql: Fix broken-FK-detection query in release notes

From: Álvaro Herrera <alvherre(at)kurilemu(dot)de>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Fix broken-FK-detection query in release notes
Date: 2025-05-30 14:22:10
Message-ID: E1uL0cb-000jjW-1V@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Fix broken-FK-detection query in release notes

Commits 53af9491a043 and 2d5fe514052a fixed a number of problems with
foreign keys that reference partitioned tables, and a query to detect
already broken FKs was supplied with the release notes for 17.1, 16.5,
15.9, 14.14, 13.17. However, that query has a bug that causes it to
wrongly report self-referential foreign keys even when they are correct,
so if the user was to drop and rebuild the FKs as indicated, the query
would continue to report them as needing to be repaired. Here we fix
the query to not have that problem.

Reported-by: Paul Foerster <paul(dot)foerster(at)gmail(dot)com>
Discussion: https://postgr.es/m/5456A1D0-CD47-4315-9C65-71B27E7A2906@gmail.com
Backpatch-through: 13-17

Branch
------
REL_14_STABLE

Details
-------
https://git.postgresql.org/pg/commitdiff/7f4261d9da35b90d3feb85ea8ea2c7de18913483

Modified Files
--------------
doc/src/sgml/release-14.sgml | 8 ++++++--
1 file changed, 6 insertions(+), 2 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Fujii Masao 2025-05-30 15:15:11 pgsql: Make XactLockTableWait() and ConditionalXactLockTableWait() inte
Previous Message David Rowley 2025-05-30 11:00:27 pgsql: Change internal queryid type from uint64 to int64