mirror of
https://github.com/percona/pg_stat_monitor.git
synced 2026-02-04 14:06:20 +00:00
As part of this PR, also updated regression test cases that are related to following JIRA issues as well. PG-354 pg_stat_monitor: Remove pg_stat_monitor_settings view Now we not using pg_stat_monitor_settings view, due to this change majority of TAP testcase requried output changes. PG-558: Create test case to verify the function names and count in PGSM. Added additional output file for SQL test case. PG-554: Remove redundant expected output files from regression. Removed unnecessary output files in TAP testcases where these were not needed.
43 lines
2.0 KiB
Plaintext
43 lines
2.0 KiB
Plaintext
DROP ROLE IF EXISTS su;
|
|
NOTICE: role "su" does not exist, skipping
|
|
CREATE USER su WITH SUPERUSER;
|
|
SET ROLE su;
|
|
CREATE EXTENSION pg_stat_monitor;
|
|
CREATE USER u1;
|
|
SELECT pg_stat_monitor_reset();
|
|
pg_stat_monitor_reset
|
|
-----------------------
|
|
|
|
(1 row)
|
|
|
|
SELECT routine_schema, routine_name, routine_type, data_type FROM information_schema.routines WHERE routine_schema = 'public' ORDER BY routine_name COLLATE "C";
|
|
routine_schema | routine_name | routine_type | data_type
|
|
----------------+--------------------------+--------------+-----------
|
|
public | decode_error_level | FUNCTION | text
|
|
public | get_cmd_type | FUNCTION | text
|
|
public | get_histogram_timings | FUNCTION | text
|
|
public | histogram | FUNCTION | record
|
|
public | pg_stat_monitor_internal | FUNCTION | record
|
|
public | pg_stat_monitor_reset | FUNCTION | void
|
|
public | pg_stat_monitor_version | FUNCTION | text
|
|
public | pgsm_create_11_view | FUNCTION | integer
|
|
public | pgsm_create_13_view | FUNCTION | integer
|
|
public | pgsm_create_14_view | FUNCTION | integer
|
|
public | pgsm_create_15_view | FUNCTION | integer
|
|
public | pgsm_create_view | FUNCTION | integer
|
|
public | range | FUNCTION | ARRAY
|
|
(13 rows)
|
|
|
|
SET ROLE u1;
|
|
SELECT routine_schema, routine_name, routine_type, data_type FROM information_schema.routines WHERE routine_schema = 'public' ORDER BY routine_name COLLATE "C";
|
|
routine_schema | routine_name | routine_type | data_type
|
|
----------------+-------------------------+--------------+-----------
|
|
public | histogram | FUNCTION | record
|
|
public | pg_stat_monitor_reset | FUNCTION | void
|
|
public | pg_stat_monitor_version | FUNCTION | text
|
|
(3 rows)
|
|
|
|
SET ROLE su;
|
|
DROP USER u1;
|
|
DROP EXTENSION pg_stat_monitor;
|