mirror of
https://github.com/percona/pg_stat_monitor.git
synced 2026-02-04 22:16:20 +00:00
Removing the view for 2.0. Updating the required SQL files to manage the upgrade. Downgrade from 2.x to 1.x is not supported. Also part of this fix is the SQL regression. This does not update the tap test cases.
32 lines
561 B
SQL
32 lines
561 B
SQL
CREATE EXTENSION pg_stat_monitor;
|
|
|
|
\x
|
|
|
|
SELECT name
|
|
, setting
|
|
, unit
|
|
, category
|
|
, short_desc
|
|
, extra_desc
|
|
, context
|
|
, vartype
|
|
, source
|
|
, min_val
|
|
, max_val
|
|
, enumvals
|
|
, boot_val
|
|
, reset_val
|
|
, sourcefile
|
|
, sourceline
|
|
, pending_restart
|
|
FROM pg_settings
|
|
WHERE name LIKE 'pg_stat_monitor.%'
|
|
AND name NOT LIKE 'pg_stat_monitor.pgsm_track_planning'
|
|
ORDER
|
|
BY name
|
|
COLLATE "C";
|
|
|
|
\x
|
|
|
|
DROP EXTENSION pg_stat_monitor;
|