Commit 4a57a457 authored by Tom Lane's avatar Tom Lane

Update a couple of obsolete comments.

parent 9b0a1648
...@@ -17,7 +17,7 @@ ...@@ -17,7 +17,7 @@
* *
* Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group * Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group
* *
* $PostgreSQL: pgsql/src/backend/utils/adt/ri_triggers.c,v 1.81 2005/10/15 02:49:29 momjian Exp $ * $PostgreSQL: pgsql/src/backend/utils/adt/ri_triggers.c,v 1.82 2005/10/29 18:39:17 tgl Exp $
* *
* ---------- * ----------
*/ */
...@@ -2407,8 +2407,8 @@ RI_FKey_setdefault_upd(PG_FUNCTION_ARGS) ...@@ -2407,8 +2407,8 @@ RI_FKey_setdefault_upd(PG_FUNCTION_ARGS)
* RI_FKey_keyequal_upd_pk - * RI_FKey_keyequal_upd_pk -
* *
* Check if we have a key change on an update to a PK relation. This is * Check if we have a key change on an update to a PK relation. This is
* used by the AFTER trigger queue manager to detect "triggered data * used by the AFTER trigger queue manager to see if it can skip queuing
* change violation". * an instance of an RI trigger.
* ---------- * ----------
*/ */
bool bool
...@@ -2481,8 +2481,8 @@ RI_FKey_keyequal_upd_pk(Trigger *trigger, Relation pk_rel, ...@@ -2481,8 +2481,8 @@ RI_FKey_keyequal_upd_pk(Trigger *trigger, Relation pk_rel,
* RI_FKey_keyequal_upd_fk - * RI_FKey_keyequal_upd_fk -
* *
* Check if we have a key change on an update to an FK relation. This is * Check if we have a key change on an update to an FK relation. This is
* used by the AFTER trigger queue manager to detect "triggered data * used by the AFTER trigger queue manager to see if it can skip queuing
* change violation". * an instance of an RI trigger.
* ---------- * ----------
*/ */
bool bool
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment