diff options
author | Robert Haas <rhaas@postgresql.org> | 2016-11-01 16:21:29 -0400 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2016-11-01 16:21:29 -0400 |
commit | 9779f71c40906876018e85982c1d4a7a8c52abec (patch) | |
tree | 1a9d792cc00aa7e33fae4df1f3bb79eec39e8c11 /contrib/postgres_fdw/deparse.c | |
parent | b5e3942f50cc8fb57d36581ceabcba035212eb7d (diff) | |
download | postgresql-9779f71c40906876018e85982c1d4a7a8c52abec.tar.gz postgresql-9779f71c40906876018e85982c1d4a7a8c52abec.zip |
postgres_fdw: Fix typo in comment.
Etsuro Fujita
Diffstat (limited to 'contrib/postgres_fdw/deparse.c')
-rw-r--r-- | contrib/postgres_fdw/deparse.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/postgres_fdw/deparse.c b/contrib/postgres_fdw/deparse.c index 450693ad820..66b059ac960 100644 --- a/contrib/postgres_fdw/deparse.c +++ b/contrib/postgres_fdw/deparse.c @@ -847,7 +847,7 @@ deparse_type_name(Oid type_oid, int32 typemod) * * The output targetlist contains the columns that need to be fetched from the * foreign server for the given relation. If foreignrel is an upper relation, - * then the output targetlist can also contains expressions to be evaluated on + * then the output targetlist can also contain expressions to be evaluated on * foreign server. */ List * |