From 0984a3b851abe89bec6c3eff51b03038808e1997 Mon Sep 17 00:00:00 2001 From: Jeff Davis Date: Tue, 5 Mar 2024 11:16:23 -0800 Subject: [PATCH] Run pgindent again on the same file. Apparently, pgindent got confused by the double space. The first time I ran it, it moved the function name to the next line. The second time I ran it, it moved the function name back, but without the double space. Now the results appear stable. --- src/backend/utils/activity/backend_status.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/utils/activity/backend_status.c b/src/backend/utils/activity/backend_status.c index e3ed0a2271c..1ccf4c6d839 100644 --- a/src/backend/utils/activity/backend_status.c +++ b/src/backend/utils/activity/backend_status.c @@ -831,8 +831,8 @@ pgstat_read_current_status(void) /* * The BackendStatusArray index is exactly the ProcNumber of the * source backend. Note that this means localBackendStatusTable - * is in order by proc_number. - * pgstat_get_beentry_by_proc_number() depends on that. + * is in order by proc_number. pgstat_get_beentry_by_proc_number() + * depends on that. */ localentry->proc_number = procNumber; ProcNumberGetTransactionIds(procNumber, -- 2.30.2