1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-19 13:42:17 +03:00

pgstat: rename some pgstat_send_* functions to pgstat_report_*.

Only the pgstat_send_* functions that are called from outside pgstat*.c are
renamed (the rest will go away). This is done separately from the - quite
large - shared memory statistics patch to make review easier.

Author: Andres Freund <andres@anarazel.de>
Reviewed-By: Kyotaro Horiguchi <horikyota.ntt@gmail.com>
Discussion: https://postgr.es/m/20220404041516.cctrvpadhuriawlq@alap3.anarazel.de
This commit is contained in:
Andres Freund
2022-04-06 14:08:57 -07:00
parent dbafe127bb
commit cc96373cf3
10 changed files with 23 additions and 23 deletions

View File

@@ -25,7 +25,7 @@
* Report archiver statistics
*/
void
pgstat_send_archiver(const char *xlog, bool failed)
pgstat_report_archiver(const char *xlog, bool failed)
{
PgStat_MsgArchiver msg;