diff options
author | Robert Haas <rhaas@postgresql.org> | 2016-08-24 16:29:10 -0400 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2016-08-24 16:29:10 -0400 |
commit | dcb7a54bd1cdbf5cca9549e8485cd34a28c7cf87 (patch) | |
tree | 745e971fd3ecfc27dd4aea92ce9b57cc04ea6258 /contrib/postgres_fdw/deparse.c | |
parent | 2c00fad2864350508f666da1a2c04e0cbe9cbf58 (diff) | |
download | postgresql-dcb7a54bd1cdbf5cca9549e8485cd34a28c7cf87.tar.gz postgresql-dcb7a54bd1cdbf5cca9549e8485cd34a28c7cf87.zip |
postgres_fdw: Cosmetic cleanup.
Etsuro Fujita
Diffstat (limited to 'contrib/postgres_fdw/deparse.c')
-rw-r--r-- | contrib/postgres_fdw/deparse.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/postgres_fdw/deparse.c b/contrib/postgres_fdw/deparse.c index 6476005f6d5..aaf9108c56c 100644 --- a/contrib/postgres_fdw/deparse.c +++ b/contrib/postgres_fdw/deparse.c @@ -939,7 +939,7 @@ deparseTargetList(StringInfo buf, } /* - * Deparse the appropriate locking clause (FOR SELECT or FOR SHARE) for a + * Deparse the appropriate locking clause (FOR UPDATE or FOR SHARE) for a * given relation (context->foreignrel). */ static void @@ -1163,7 +1163,7 @@ deparseFromExprForRel(StringInfo buf, PlannerInfo *root, RelOptInfo *foreignrel, /* * For a join relation FROM clause entry is deparsed as * - * ((outer relation) <join type> (inner relation) ON (joinclauses) + * ((outer relation) <join type> (inner relation) ON (joinclauses)) */ appendStringInfo(buf, "(%s %s JOIN %s ON ", join_sql_o.data, get_jointype_name(fpinfo->jointype), join_sql_i.data); |