From 82c5e9061c2e7e54180d5af17c3993816a7322f1 Mon Sep 17 00:00:00 2001 From: "Chao Li (Evan)" Date: Thu, 28 May 2026 08:30:22 +0800 Subject: [PATCH v2] Fix an indentation problem in postgres_fdw/connection.c Reported-by: Peter Eisentraut Author: Chao Li Reviewed-by: Discussion: https://postgr.es/m/2620a664-7b44-48b2-9aa8-5f0131702d9c@eisentraut.org --- contrib/postgres_fdw/connection.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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); -- 2.53.0