aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHeikki Linnakangas <heikki.linnakangas@iki.fi>2020-11-30 10:26:43 +0200
committerHeikki Linnakangas <heikki.linnakangas@iki.fi>2020-11-30 10:29:18 +0200
commit74d6fb0a037a7453693418e1069718a7f08ba31e (patch)
treecf830a01bb0fd5650fd9b8061a56bc16eba856cb
parent72b930f5045ee5a44e222cee1ceb76d4c341d4b3 (diff)
downloadpostgresql-74d6fb0a037a7453693418e1069718a7f08ba31e.tar.gz
postgresql-74d6fb0a037a7453693418e1069718a7f08ba31e.zip
Remove leftover comments, left behind by removal of WITH OIDS.
Author: Amit Langote Discussion: https://www.postgresql.org/message-id/CA%2BHiwqGaRoF3XrhPW-Y7P%2BG7bKo84Z_h%3DkQHvMh-80%3Dav3wmOw%40mail.gmail.com
-rw-r--r--contrib/file_fdw/file_fdw.c3
-rw-r--r--src/backend/commands/copy.c1
2 files changed, 0 insertions, 4 deletions
diff --git a/contrib/file_fdw/file_fdw.c b/contrib/file_fdw/file_fdw.c
index fbcf7ca9c91..44acbac2f1a 100644
--- a/contrib/file_fdw/file_fdw.c
+++ b/contrib/file_fdw/file_fdw.c
@@ -723,9 +723,6 @@ fileIterateForeignScan(ForeignScanState *node)
*
* We can pass ExprContext = NULL because we read all columns from the
* file, so no need to evaluate default expressions.
- *
- * We can also pass tupleOid = NULL because we don't allow oids for
- * foreign tables.
*/
ExecClearTuple(slot);
found = NextCopyFrom(festate->cstate, NULL,
diff --git a/src/backend/commands/copy.c b/src/backend/commands/copy.c
index 6d53dc463c1..48dc9414ac2 100644
--- a/src/backend/commands/copy.c
+++ b/src/backend/commands/copy.c
@@ -3629,7 +3629,6 @@ NextCopyFromRawFields(CopyState cstate, char ***fields, int *nfields)
*
* 'values' and 'nulls' arrays must be the same length as columns of the
* relation passed to BeginCopyFrom. This function fills the arrays.
- * Oid of the tuple is returned with 'tupleOid' separately.
*/
bool
NextCopyFrom(CopyState cstate, ExprContext *econtext,