Remove leftover comments, left behind by removal of WITH OIDS.
authorHeikki Linnakangas
Mon, 30 Nov 2020 08:26:43 +0000 (10:26 +0200)
committerHeikki Linnakangas
Mon, 30 Nov 2020 08:29:26 +0000 (10:29 +0200)
Author: Amit Langote
Discussion: https://www.postgresql.org/message-id/CA%2BHiwqGaRoF3XrhPW-Y7P%2BG7bKo84Z_h%3DkQHvMh-80%3Dav3wmOw%40mail.gmail.com

contrib/file_fdw/file_fdw.c
src/backend/commands/copy.c

index 412dcabe55e270fde8e96914ef3fa5e4d6ffd2bd..4e5e72d03f12607d0f6f73d614984e5ccdaf6ca5 100644 (file)
@@ -725,9 +725,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,
index 4f04d122c3041ebfd6df07e685defc66a275d153..7019c571a1321bc2dc734547dac121342e72db09 100644 (file)
@@ -3683,7 +3683,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,