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
This commit is contained in:
Peter Eisentraut 2023-02-24 14:29:18 +01:00
parent d959523257
commit 62d56f6720
1 changed files with 1 additions and 1 deletions

View File

@ -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)