mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-27 08:39:28 +08:00
43cbedab8f
particular user/db/query. The function pg_stat_statements_reset() is extended to accept userid, dbid, and queryid as input parameters. Now, it can discard the statistics gathered so far by pg_stat_statements corresponding to the specified userid, dbid, and queryid. If no parameter is specified or all the specified parameters have default value aka 0, it will discard all statistics as per the old behavior. The new behavior is useful to get the fresh statistics for a specific user/database/query without resetting all the existing statistics. Author: Haribabu Kommi, with few additional changes by me Reviewed-by: Michael Paquier, Amit Kapila and Fujii Masao Discussion: https://postgr.es/m/CAJrrPGcyh-gkFswyc6C661K6cknL0XkNqVT0sQt2mFNMR4HRKA@mail.gmail.com
23 lines
806 B
SQL
23 lines
806 B
SQL
/* contrib/pg_stat_statements/pg_stat_statements--1.6--1.7.sql */
|
|
|
|
-- complain if script is sourced in psql, rather than via ALTER EXTENSION
|
|
\echo Use "ALTER EXTENSION pg_stat_statements UPDATE TO '1.7'" to load this file. \quit
|
|
|
|
/* First we have to remove them from the extension */
|
|
ALTER EXTENSION pg_stat_statements DROP FUNCTION pg_stat_statements_reset();
|
|
|
|
/* Then we can drop them */
|
|
DROP FUNCTION pg_stat_statements_reset();
|
|
|
|
/* Now redefine */
|
|
CREATE FUNCTION pg_stat_statements_reset(IN userid Oid DEFAULT 0,
|
|
IN dbid Oid DEFAULT 0,
|
|
IN queryid bigint DEFAULT 0
|
|
)
|
|
RETURNS void
|
|
AS 'MODULE_PATHNAME', 'pg_stat_statements_reset_1_7'
|
|
LANGUAGE C STRICT PARALLEL SAFE;
|
|
|
|
-- Don't want this to be available to non-superusers.
|
|
REVOKE ALL ON FUNCTION pg_stat_statements_reset(Oid, Oid, bigint) FROM PUBLIC;
|