mirror of
https://github.com/percona/pg_stat_monitor.git
synced 2026-02-04 05:56:21 +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.
37 lines
796 B
Plaintext
37 lines
796 B
Plaintext
CREATE EXTENSION pg_stat_monitor;
|
|
SELECT pg_stat_monitor_reset();
|
|
pg_stat_monitor_reset
|
|
-----------------------
|
|
|
|
(1 row)
|
|
|
|
SET application_name = 'naeem' ;
|
|
SELECT 1 AS num;
|
|
num
|
|
-----
|
|
1
|
|
(1 row)
|
|
|
|
SET application_name = 'psql' ;
|
|
SELECT 1 AS num;
|
|
num
|
|
-----
|
|
1
|
|
(1 row)
|
|
|
|
SELECT query,application_name FROM pg_stat_monitor ORDER BY query, application_name COLLATE "C";
|
|
query | application_name
|
|
--------------------------------+------------------------------------
|
|
SELECT 1 AS num | naeem
|
|
SELECT 1 AS num | psql
|
|
SELECT pg_stat_monitor_reset() | pg_regress/application_name_unique
|
|
(3 rows)
|
|
|
|
SELECT pg_stat_monitor_reset();
|
|
pg_stat_monitor_reset
|
|
-----------------------
|
|
|
|
(1 row)
|
|
|
|
DROP EXTENSION pg_stat_monitor;
|