From: Fujii Masao Date: Thu, 28 May 2026 12:53:26 +0000 (+0900) Subject: postgres_fdw: Fix whitespace violation in connection.c X-Git-Tag: REL_19_BETA1~28 X-Git-Url: http://git.ipfire.org/gitweb/index.cgi?a=commitdiff_plain;h=af23353a73d5b890181f8fc3d2c20ff35b655af0;p=thirdparty%2Fpostgresql.git postgres_fdw: Fix whitespace violation in connection.c Previously a continuation line in the call to libpqsrv_connect_params_start() in postgres_fdw/connection.c was indented with spaces, violating the PostgreSQL project's whitespace rules for C files and triggering git show --check. This commit reformats the code to avoid that layout and use indentation consistent with project style. No functional change. Reported-by: Peter Eisentraut Author: Chao Li Author: Fujii Masao Discussion: https://postgr.es/m/2620a664-7b44-48b2-9aa8-5f0131702d9c@eisentraut.org --- diff --git a/contrib/postgres_fdw/connection.c b/contrib/postgres_fdw/connection.c index 346f6f1fbfe..aab21695979 100644 --- a/contrib/postgres_fdw/connection.c +++ b/contrib/postgres_fdw/connection.c @@ -647,8 +647,9 @@ connect_pg_server(ForeignServer *server, UserMapping *user) pgfdw_we_connect = WaitEventExtensionNew("PostgresFdwConnect"); /* OK to make connection */ - start_conn = libpqsrv_connect_params_start(keywords, values, - /* expand_dbname = */ false); + start_conn = + libpqsrv_connect_params_start(keywords, values, + /* expand_dbname = */ false); PQsetNoticeReceiver(start_conn, libpqsrv_notice_receiver, "received message via remote connection"); libpqsrv_connect_complete(start_conn, pgfdw_we_connect);