summaryrefslogtreecommitdiff
path: root/contrib/postgres_fdw
diff options
context:
space:
mode:
authorEtsuro Fujita <efujita@postgresql.org>2021-03-30 13:00:03 +0900
committerEtsuro Fujita <efujita@postgresql.org>2021-03-30 13:00:03 +0900
commitcf8384ac8333dea9742b754d998491a321269704 (patch)
tree6acbca90400ba6314e4977a00bfeb60d7a0624fc /contrib/postgres_fdw
parent3c3221a138413bf04d86a815733c321849792bd8 (diff)
downloadpostgresql-cf8384ac8333dea9742b754d998491a321269704.tar.gz
Update obsolete comment.
Back-patch to all supported branches. Author: Etsuro Fujita Discussion: https://postgr.es/m/CAPmGK17DwzaSf%2BB71dhL2apXdtG-OmD6u2AL9Cq2ZmAR0%2BzapQ%40mail.gmail.com
Diffstat (limited to 'contrib/postgres_fdw')
-rw-r--r--contrib/postgres_fdw/postgres_fdw.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/contrib/postgres_fdw/postgres_fdw.c b/contrib/postgres_fdw/postgres_fdw.c
index f0e90d0bd3..8fbf981e7c 100644
--- a/contrib/postgres_fdw/postgres_fdw.c
+++ b/contrib/postgres_fdw/postgres_fdw.c
@@ -597,8 +597,9 @@ postgresGetForeignRelSize(PlannerInfo *root,
fpinfo->server = GetForeignServer(fpinfo->table->serverid);
/*
- * Extract user-settable option values. Note that per-table setting of
- * use_remote_estimate overrides per-server setting.
+ * Extract user-settable option values. Note that per-table settings of
+ * use_remote_estimate and fetch_size override per-server settings of
+ * them, respectively.
*/
fpinfo->use_remote_estimate = false;
fpinfo->fdw_startup_cost = DEFAULT_FDW_STARTUP_COST;