diff options
author | Jeff Davis | 2024-03-05 19:16:23 +0000 |
---|---|---|
committer | Jeff Davis | 2024-03-05 19:16:23 +0000 |
commit | 0984a3b851abe89bec6c3eff51b03038808e1997 (patch) | |
tree | 798eaf8b62f5790ffe0cbd7c056c281cf0d83cff | |
parent | b406af1806e9fc5c090e58282c7d98f22a4b397f (diff) |
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.
-rw-r--r-- | src/backend/utils/activity/backend_status.c | 4 |
1 files 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, |