From 1fcadb474e54fe82eb0aa5f8d62ecd2dafede1dc Mon Sep 17 00:00:00 2001 From: "Chao Li (Evan)" Date: Thu, 28 May 2026 08:30:22 +0800 Subject: [PATCH v1] 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 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/postgres_fdw/connection.c b/contrib/postgres_fdw/connection.c index 346f6f1fbfe..0810b756d38 100644 --- a/contrib/postgres_fdw/connection.c +++ b/contrib/postgres_fdw/connection.c @@ -648,7 +648,7 @@ connect_pg_server(ForeignServer *server, UserMapping *user) /* OK to make connection */ start_conn = libpqsrv_connect_params_start(keywords, values, - /* expand_dbname = */ false); + false /* expand_dbname */ ); PQsetNoticeReceiver(start_conn, libpqsrv_notice_receiver, "received message via remote connection"); libpqsrv_connect_complete(start_conn, pgfdw_we_connect); -- 2.50.1 (Apple Git-155)