pgsql: postgres_fdw: Fix whitespace violation in connection.c

From: Fujii Masao <fujii(at)postgresql(dot)org>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: postgres_fdw: Fix whitespace violation in connection.c
Date: 2026-05-28 12:54:43
Message-ID: E1wSaG3-001V02-1G@gemulon.postgresql.org
Views: Whole Thread | Raw Message | Download mbox | Resend email
Thread:
Lists: pgsql-committers

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 <peter(at)eisentraut(dot)org>
Author: Chao Li <lic(at)highgo(dot)com>
Author: Fujii Masao <masao(dot)fujii(at)gmail(dot)com>
Discussion: https://postgr.es/m/2620a664-7b44-48b2-9aa8-5f0131702d9c@eisentraut.org

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/af23353a73d5b890181f8fc3d2c20ff35b655af0

Modified Files
--------------
contrib/postgres_fdw/connection.c | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Álvaro Herrera 2026-05-28 13:05:40 pgsql: Improve REPACK (CONCURRENTLY) error when wal_level < replica
Previous Message Fujii Masao 2026-05-28 11:59:49 pgsql: postgres_fdw, dblink: Validate use_scram_passthrough values