diff options
author | Heikki Linnakangas <heikki.linnakangas@iki.fi> | 2019-01-23 13:39:00 +0200 |
---|---|---|
committer | Heikki Linnakangas <heikki.linnakangas@iki.fi> | 2019-01-23 13:39:00 +0200 |
commit | 95931133a959404cf7320b49058b2f1c2e4606b9 (patch) | |
tree | 63249b639bc6c367db56cf0ad7cc06b75c9db99e /contrib/postgres_fdw/postgres_fdw.c | |
parent | 1699e6dd1fa7fbc7c3d114b121828eb27eb523b1 (diff) | |
download | postgresql-95931133a959404cf7320b49058b2f1c2e4606b9.tar.gz postgresql-95931133a959404cf7320b49058b2f1c2e4606b9.zip |
Fix misc typos in comments.
Spotted mostly by Fabien Coelho.
Discussion: https://www.postgresql.org/message-id/alpine.DEB.2.21.1901230947050.16643@lancre
Diffstat (limited to 'contrib/postgres_fdw/postgres_fdw.c')
-rw-r--r-- | contrib/postgres_fdw/postgres_fdw.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/postgres_fdw/postgres_fdw.c b/contrib/postgres_fdw/postgres_fdw.c index d85a83abe98..961838ed93a 100644 --- a/contrib/postgres_fdw/postgres_fdw.c +++ b/contrib/postgres_fdw/postgres_fdw.c @@ -2771,7 +2771,7 @@ estimate_path_cost_size(PlannerInfo *root, run_cost += cpu_tuple_cost * numGroups; run_cost += ptarget->cost.per_tuple * numGroups; - /* Accout for the eval cost of HAVING quals, if any */ + /* Account for the eval cost of HAVING quals, if any */ if (root->parse->havingQual) { QualCost remote_cost; |