diff options
author | David Rowley <drowley@postgresql.org> | 2023-03-22 08:58:13 +1300 |
---|---|---|
committer | David Rowley <drowley@postgresql.org> | 2023-03-22 08:58:13 +1300 |
commit | b94c671648a6b2141f3309386023afd47f0bd886 (patch) | |
tree | 2a745ce901ebd2283edba015915d616d9a444104 /src/backend | |
parent | f48b4f892f76ee2b34968013c8ea67b1dfd4fa26 (diff) | |
download | postgresql-b94c671648a6b2141f3309386023afd47f0bd886.tar.gz postgresql-b94c671648a6b2141f3309386023afd47f0bd886.zip |
Fix incorrect comment in preptlist.c
Author: Etsuro Fujita
Reviewed-by: Richard Guo, Tom Lane
Discussion: https://postgr.es/m/CAPmGK15V8dcVxL9vcgVWPHV6pw1qzM42LzoUkQDB7-e+1onnJw@mail.gmail.com
Diffstat (limited to 'src/backend')
-rw-r--r-- | src/backend/optimizer/prep/preptlist.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/optimizer/prep/preptlist.c b/src/backend/optimizer/prep/preptlist.c index 2615d7f0b33..9d46488ef7c 100644 --- a/src/backend/optimizer/prep/preptlist.c +++ b/src/backend/optimizer/prep/preptlist.c @@ -12,7 +12,7 @@ * For UPDATE and DELETE queries, the targetlist must also contain "junk" * tlist entries needed to allow the executor to identify the rows to be * updated or deleted; for example, the ctid of a heap row. (The planner - * adds these; they're not in what we receive from the planner/rewriter.) + * adds these; they're not in what we receive from the parser/rewriter.) * * For all query types, there can be additional junk tlist entries, such as * sort keys, Vars needed for a RETURNING list, and row ID information needed |