pgsql: Add missing fields to _outConstraint()

From: Peter Eisentraut <peter(at)eisentraut(dot)org>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Add missing fields to _outConstraint()
Date: 2022-08-13 08:42:17
Message-ID: E1oMmil-000ZKr-S9@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Add missing fields to _outConstraint()

As of 897795240cfaaed724af2f53ed2c50c9862f951f, check constraints can
be declared invalid. But that patch didn't update _outConstraint() to
also show the relevant struct fields (which were only applicable to
foreign keys before that). This currently only affects debugging
output, so no impact in practice.

Branch
------
REL_14_STABLE

Details
-------
https://git.postgresql.org/pg/commitdiff/2db574a2184e5e6ae289e48079e8523c9cbdc8c4

Modified Files
--------------
src/backend/nodes/outfuncs.c | 2 ++
1 file changed, 2 insertions(+)

Browse pgsql-committers by date

  From Date Subject
Next Message Thomas Munro 2022-08-13 12:16:44 pgsql: Remove configure probe for sys/resource.h and refactor.
Previous Message Peter Eisentraut 2022-08-12 22:18:55 pgsql: pg_upgrade: Fix some minor code issues