pgsql: refactor: Split ATExecAlterConstraintInternal()

From: Peter Eisentraut <peter(at)eisentraut(dot)org>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: refactor: Split ATExecAlterConstraintInternal()
Date: 2025-03-25 15:18:32
Message-ID: E1tx62y-000wUv-1L@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

refactor: Split ATExecAlterConstraintInternal()

Split ATExecAlterConstraintInternal() into two functions:
ATExecAlterConstrDeferrability() and
ATExecAlterConstrInheritability(). This simplifies the code and
avoids unnecessary confusion caused by recursive code, which isn't
needed for ATExecAlterConstrInheritability().

(This also takes over the changes in commit 64224a834ce, as the new
AlterConstrDeferrabilityRecurse() is essentially the old
ATExecAlterChildConstr().)

Author: Amul Sul <amul(dot)sul(at)enterprisedb(dot)com>
Discussion: https://www.postgresql.org/message-id/flat/CAAJ_b962c5AcYW9KUt_R_ER5qs3fUGbe4az-SP-vuwPS-w-AGA(at)mail(dot)gmail(dot)com

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/639238b978fefe53b8412f2cc0265f6a2512887a

Modified Files
--------------
src/backend/commands/tablecmds.c | 239 ++++++++++++++++++++++++---------------
1 file changed, 148 insertions(+), 91 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Peter Eisentraut 2025-03-25 16:08:11 pgsql: refactor: Pass relation OID instead of Relation to createForeign
Previous Message Peter Eisentraut 2025-03-25 13:37:35 pgsql: refactor: Move some code that updates pg_constraint to a separat