diff options
author | Heikki Linnakangas <heikki.linnakangas@iki.fi> | 2020-11-23 11:36:13 +0200 |
---|---|---|
committer | Heikki Linnakangas <heikki.linnakangas@iki.fi> | 2020-11-23 11:36:13 +0200 |
commit | 68b1a4877ef54f5ee6e05c64876655dd13d2c73b (patch) | |
tree | e6070f804376d6a02a94ac5f991d6c049005d661 /src/include/commands/trigger.h | |
parent | c532d15dddff14b01fe9ef1d465013cb8ef186df (diff) | |
download | postgresql-68b1a4877ef54f5ee6e05c64876655dd13d2c73b.tar.gz postgresql-68b1a4877ef54f5ee6e05c64876655dd13d2c73b.zip |
Fix a few comments that referred to copy.c.
Missed these in the previous commit.
Diffstat (limited to 'src/include/commands/trigger.h')
-rw-r--r-- | src/include/commands/trigger.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/include/commands/trigger.h b/src/include/commands/trigger.h index e38d732ed47..244540d90b9 100644 --- a/src/include/commands/trigger.h +++ b/src/include/commands/trigger.h @@ -44,7 +44,7 @@ typedef struct TriggerData /* * The state for capturing old and new tuples into transition tables for a - * single ModifyTable node (or other operation source, e.g. copy.c). + * single ModifyTable node (or other operation source, e.g. copyfrom.c). * * This is per-caller to avoid conflicts in setting * tcs_original_insert_tuple. Note, however, that the pointed-to @@ -69,8 +69,8 @@ typedef struct TransitionCaptureState * For INSERT and COPY, it would be wasteful to convert tuples from child * format to parent format after they have already been converted in the * opposite direction during routing. In that case we bypass conversion - * and allow the inserting code (copy.c and nodeModifyTable.c) to provide - * a slot containing the original tuple directly. + * and allow the inserting code (copyfrom.c and nodeModifyTable.c) to + * provide a slot containing the original tuple directly. */ TupleTableSlot *tcs_original_insert_tuple; |