diff options
author | Andres Freund <andres@anarazel.de> | 2022-04-04 12:14:34 -0700 |
---|---|---|
committer | Andres Freund <andres@anarazel.de> | 2022-04-04 13:53:34 -0700 |
commit | edadf8098f4b2ca50bcc449f8857d0cc960b3c90 (patch) | |
tree | 710ed7455f85bf13e140aeff83b987b132014eea /src/backend/utils/activity/pgstat_function.c | |
parent | 4e34747c88a03ede6e9d731727815e37273d4bc9 (diff) | |
download | postgresql-edadf8098f4b2ca50bcc449f8857d0cc960b3c90.tar.gz postgresql-edadf8098f4b2ca50bcc449f8857d0cc960b3c90.zip |
pgstat: consistent function comment formatting.
There was a wild mishmash of function comment formatting in pgstat, making it
hard to know what to use for any new function and hard to extend existing
comments (particularly due to randomly different forms of indentation).
Author: Andres Freund <andres@anarazel.de>
Reviewed-By: Thomas Munro <thomas.munro@gmail.com>
Discussion: https://postgr.es/m/20220329191727.mzzwbl7udhpq7pmf@alap3.anarazel.de
Discussion: https://postgr.es/m/20220308205351.2xcn6k4x5yivcxyd@alap3.anarazel.de
Diffstat (limited to 'src/backend/utils/activity/pgstat_function.c')
-rw-r--r-- | src/backend/utils/activity/pgstat_function.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/backend/utils/activity/pgstat_function.c b/src/backend/utils/activity/pgstat_function.c index ad37bb74aa6..93ec29757aa 100644 --- a/src/backend/utils/activity/pgstat_function.c +++ b/src/backend/utils/activity/pgstat_function.c @@ -206,8 +206,7 @@ pgstat_send_funcstats(void) } /* - * find_funcstat_entry - find any existing PgStat_BackendFunctionEntry entry - * for specified function + * find any existing PgStat_BackendFunctionEntry entry for specified function * * If no entry, return NULL, don't create a new one */ |