diff options
author | Etsuro Fujita <efujita@postgresql.org> | 2021-03-30 13:00:02 +0900 |
---|---|---|
committer | Etsuro Fujita <efujita@postgresql.org> | 2021-03-30 13:00:02 +0900 |
commit | 78f8b0965a224e650b4fc42e5c174256ca0fc929 (patch) | |
tree | 337d18a4f7413bba746e6e86b6cda86e885a23c4 /contrib/postgres_fdw/postgres_fdw.c | |
parent | f50dc2c725fd546b994f228101211ae50e6858e5 (diff) | |
download | postgresql-78f8b0965a224e650b4fc42e5c174256ca0fc929.tar.gz postgresql-78f8b0965a224e650b4fc42e5c174256ca0fc929.zip |
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/postgres_fdw.c')
-rw-r--r-- | contrib/postgres_fdw/postgres_fdw.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/contrib/postgres_fdw/postgres_fdw.c b/contrib/postgres_fdw/postgres_fdw.c index 3ddd604888a..c7e6de8868a 100644 --- a/contrib/postgres_fdw/postgres_fdw.c +++ b/contrib/postgres_fdw/postgres_fdw.c @@ -595,8 +595,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; |