1
0
mirror of https://github.com/postgres/postgres.git synced 2025-10-22 14:32:25 +03:00

Fix a few comments that referred to copy.c.

Missed these in the previous commit.
This commit is contained in:
Heikki Linnakangas
2020-11-23 11:36:13 +02:00
parent c532d15ddd
commit 68b1a4877e
5 changed files with 7 additions and 7 deletions

View File

@@ -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;