diff options
author | Heikki Linnakangas <heikki.linnakangas@iki.fi> | 2020-11-30 10:26:43 +0200 |
---|---|---|
committer | Heikki Linnakangas <heikki.linnakangas@iki.fi> | 2020-11-30 10:29:18 +0200 |
commit | 74d6fb0a037a7453693418e1069718a7f08ba31e (patch) | |
tree | cf830a01bb0fd5650fd9b8061a56bc16eba856cb /contrib/file_fdw/file_fdw.c | |
parent | 72b930f5045ee5a44e222cee1ceb76d4c341d4b3 (diff) | |
download | postgresql-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
Diffstat (limited to 'contrib/file_fdw/file_fdw.c')
-rw-r--r-- | contrib/file_fdw/file_fdw.c | 3 |
1 files changed, 0 insertions, 3 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, |