From: | Peter Eisentraut <peter(at)eisentraut(dot)org> |
---|---|
To: | pgsql-committers(at)lists(dot)postgresql(dot)org |
Subject: | pgsql: refactor: Pass relation OID instead of Relation to createForeign |
Date: | 2025-03-25 16:08:11 |
Message-ID: | E1tx6p1-000wlM-08@gemulon.postgresql.org |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-committers |
refactor: Pass relation OID instead of Relation to createForeignKeyCheckTriggers()
Currently, createForeignKeyCheckTriggers() takes a Relation type as
its first argument, but it doesn't use that argument directly.
Instead, it fetches the relation OID by calling RelationGetRelid().
Therefore, it would be more consistent with other functions (e.g.,
createForeignKeyCheckTriggers()) to pass the relation OID directly
instead of the whole Relation.
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/ef7a5af77d449ee2b426f627c1f7472740350040
Modified Files
--------------
src/backend/commands/tablecmds.c | 13 ++++++-------
1 file changed, 6 insertions(+), 7 deletions(-)
From | Date | Subject | |
---|---|---|---|
Next Message | Christoph Berg | 2025-03-25 16:28:59 | Squash constant lists in query jumbling by default |
Previous Message | Peter Eisentraut | 2025-03-25 15:18:32 | pgsql: refactor: Split ATExecAlterConstraintInternal() |