diff options
author | Daniel Gustafsson <dgustafsson@postgresql.org> | 2023-12-05 15:54:59 +0100 |
---|---|---|
committer | Daniel Gustafsson <dgustafsson@postgresql.org> | 2023-12-05 15:54:59 +0100 |
commit | 4d0cf0b05defcee985d5af38cb0db2b9c2f8dbae (patch) | |
tree | 53b03e185ca09e5822c0326be4f43b968e747ddd /src | |
parent | 98e675ed7af95cb65a594ce730d42390e0118dcb (diff) | |
download | postgresql-4d0cf0b05defcee985d5af38cb0db2b9c2f8dbae.tar.gz postgresql-4d0cf0b05defcee985d5af38cb0db2b9c2f8dbae.zip |
Fix indentation
When preparing commit 98e675ed7af I accidentally forgot to run
pgindent, which did produce a diff. Fix by adding the required
whitespace per the koel buildfarm failure.
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/replication/libpqwalreceiver/libpqwalreceiver.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/backend/replication/libpqwalreceiver/libpqwalreceiver.c b/src/backend/replication/libpqwalreceiver/libpqwalreceiver.c index 5a1633cc4c2..4152d1ddbc8 100644 --- a/src/backend/replication/libpqwalreceiver/libpqwalreceiver.c +++ b/src/backend/replication/libpqwalreceiver/libpqwalreceiver.c @@ -381,6 +381,7 @@ libpqrcv_identify_system(WalReceiverConn *conn, TimeLineID *primary_tli) "the primary server: %s", pchomp(PQerrorMessage(conn->streamConn))))); } + /* * IDENTIFY_SERVER returns 3 columns in 9.3 and earlier, and 4 columns in * 9.4 and onwards. |