Commit 2bc58879 authored by Heikki Linnakangas's avatar Heikki Linnakangas

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
parent 6742e149
...@@ -724,9 +724,6 @@ fileIterateForeignScan(ForeignScanState *node) ...@@ -724,9 +724,6 @@ fileIterateForeignScan(ForeignScanState *node)
* *
* We can pass ExprContext = NULL because we read all columns from the * We can pass ExprContext = NULL because we read all columns from the
* file, so no need to evaluate default expressions. * 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); ExecClearTuple(slot);
found = NextCopyFrom(festate->cstate, NULL, found = NextCopyFrom(festate->cstate, NULL,
......
...@@ -496,7 +496,6 @@ NextCopyFromRawFields(CopyFromState cstate, char ***fields, int *nfields) ...@@ -496,7 +496,6 @@ NextCopyFromRawFields(CopyFromState cstate, char ***fields, int *nfields)
* *
* 'values' and 'nulls' arrays must be the same length as columns of the * 'values' and 'nulls' arrays must be the same length as columns of the
* relation passed to BeginCopyFrom. This function fills the arrays. * relation passed to BeginCopyFrom. This function fills the arrays.
* Oid of the tuple is returned with 'tupleOid' separately.
*/ */
bool bool
NextCopyFrom(CopyFromState cstate, ExprContext *econtext, NextCopyFrom(CopyFromState cstate, ExprContext *econtext,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment