Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Eisentraut2023-02-24 13:29:18 +0000
committerPeter Eisentraut2023-02-24 13:54:41 +0000
commit62d56f6720cd9483ede8a410a1a2cd6a0202c091 (patch)
tree693b7cabd7a133edf1177ab5a0a4e7be51ee5a66 /contrib/postgres_fdw
parentd9595232579a3a9fadf4ce0b4cd58c1a3fc3b2f7 (diff)
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')
-rw-r--r--contrib/postgres_fdw/connection.c2
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)