diff options
author | Peter Eisentraut <peter@eisentraut.org> | 2023-02-24 14:29:18 +0100 |
---|---|---|
committer | Peter Eisentraut <peter@eisentraut.org> | 2023-02-24 14:54:41 +0100 |
commit | 62d56f6720cd9483ede8a410a1a2cd6a0202c091 (patch) | |
tree | 693b7cabd7a133edf1177ab5a0a4e7be51ee5a66 /contrib/postgres_fdw/connection.c | |
parent | d9595232579a3a9fadf4ce0b4cd58c1a3fc3b2f7 (diff) | |
download | postgresql-62d56f6720cd9483ede8a410a1a2cd6a0202c091.tar.gz postgresql-62d56f6720cd9483ede8a410a1a2cd6a0202c091.zip |
Fix comment indentation and whitespace
The previous layout satisfied pgindent but failed the git whitespace
check. Fix by not putting the comment first in the line, which
pgindent does not handle well.
Discussion: https://www.postgresql.org/message-id/flat/480e3c67-b703-46ff-a418-d3b481d68372%40enterprisedb.com
Diffstat (limited to 'contrib/postgres_fdw/connection.c')
-rw-r--r-- | contrib/postgres_fdw/connection.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/postgres_fdw/connection.c b/contrib/postgres_fdw/connection.c index 7760380f00d..12b54f15cd6 100644 --- a/contrib/postgres_fdw/connection.c +++ b/contrib/postgres_fdw/connection.c @@ -449,7 +449,7 @@ connect_pg_server(ForeignServer *server, UserMapping *user) /* OK to make connection */ conn = libpqsrv_connect_params(keywords, values, - /* expand_dbname = */ false, + false, /* expand_dbname */ PG_WAIT_EXTENSION); if (!conn || PQstatus(conn) != CONNECTION_OK) |