pgsql: Add ability to reset all shared stats types in pg_stat_reset_sha

From: Michael Paquier <michael(at)paquier(dot)xyz>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Add ability to reset all shared stats types in pg_stat_reset_sha
Date: 2023-11-12 07:44:27
Message-ID: E1r258t-00539v-Er@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Add ability to reset all shared stats types in pg_stat_reset_shared()

Currently, pg_stat_reset_shared() can use an argument to specify the
target of statistics to reset, doing nothing for NULL as it is strict.

This patch adds to pg_stat_reset_shared() the possibility to reset all
the stats types already handled in this function rather than do nothing
if the argument value given is NULL or if nothing is specified
(proisstrict is switched to false). Like previously, SLRUs are not
included in what gets reset.

The idea to use NULL or no argument to control if all the shared stats
already covered by this function should be reset has been proposed by
Andres Freund.

Bump catalog version.

Author: Atsushi Torikoshi
Reviewed-by: Kyotaro Horiguchi, Michael Paquier, Bharath Rupireddy,
Matthias van de Meent
Discussion: https://postgr.es/m/4291a55137ddda77cf7cc5f46e846daf@oss.nttdata.com

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/23c8c0c8f4721db693ef908c22f7cf754e6852a9

Modified Files
--------------
doc/src/sgml/monitoring.sgml | 5 ++++-
src/backend/catalog/system_functions.sql | 7 +++++++
src/backend/utils/adt/pgstatfuncs.c | 17 ++++++++++++++++-
src/include/catalog/catversion.h | 2 +-
src/include/catalog/pg_proc.dat | 5 +++--
src/test/regress/expected/stats.out | 15 ++++++++-------
src/test/regress/sql/stats.sql | 15 ++++++++-------
7 files changed, 47 insertions(+), 19 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Michael Paquier 2023-11-12 23:36:58 pgsql: Extend sendFileWithContent() to handle custom content length in
Previous Message Michael Paquier 2023-11-12 01:07:09 pgsql: Fix inconsistencies for queries on pg_class in type_sanity.sql