diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2021-04-07 12:21:54 -0400 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2021-04-07 12:22:02 -0400 |
commit | 0d46771eaaf77ad08555cf34e421234d5943edfa (patch) | |
tree | 911bf1fc2af3b02c9749ad473a8ec8e2ef7c3038 /src/backend/executor/nodeModifyTable.c | |
parent | 4573f6a9af6e232ba073392716a051ae2017d1e9 (diff) | |
download | postgresql-0d46771eaaf77ad08555cf34e421234d5943edfa.tar.gz postgresql-0d46771eaaf77ad08555cf34e421234d5943edfa.zip |
Comment cleanup for a1115fa07.
Amit Langote
Discussion: https://postgr.es/m/CA+HiwqEcawatEaUh1uTbZMEZTJeLzbroRTz9_X9Z5CFjTWJkhw@mail.gmail.com
Diffstat (limited to 'src/backend/executor/nodeModifyTable.c')
-rw-r--r-- | src/backend/executor/nodeModifyTable.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/backend/executor/nodeModifyTable.c b/src/backend/executor/nodeModifyTable.c index 6a16752c73a..c5a2a9a054b 100644 --- a/src/backend/executor/nodeModifyTable.c +++ b/src/backend/executor/nodeModifyTable.c @@ -377,9 +377,6 @@ ExecComputeStoredGenerated(ResultRelInfo *resultRelInfo, * * INSERT queries may need a projection to filter out junk attrs in the tlist. * - * This is "one-time" for any given result rel, but we might touch - * more than one result rel in the course of a partitioned INSERT. - * * This is also a convenient place to verify that the * output of an INSERT matches the target table. */ @@ -447,7 +444,7 @@ ExecInitInsertProjection(ModifyTableState *mtstate, * identity info in the junk attrs. * * This is "one-time" for any given result rel, but we might touch more than - * one result rel in the course of a partitioned UPDATE, and each one needs + * one result rel in the course of an inherited UPDATE, and each one needs * its own projection due to possible column order variation. * * This is also a convenient place to verify that the output of an UPDATE |