We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 269bca7 commit 25e8421Copy full SHA for 25e8421
src/backend/catalog/system_views.sql
@@ -1119,6 +1119,10 @@ LANGUAGE INTERNAL
1119
STRICT IMMUTABLE PARALLEL SAFE
1120
AS 'jsonb_insert';
1121
1122
+CREATE VIEW snapfs_snapshots AS
1123
+select *,(select pg_get_snapshot_timestamp(generate_series)), pg_size_pretty((select pg_get_snapshot_size(generate_series)))
1124
+from generate_series((select oldest_snapshot from pg_control_snapshot()), (select recent_snapshot from pg_control_snapshot()));
1125
+
1126
--
1127
-- The default permissions for functions mean that anyone can execute them.
1128
-- A number of functions shouldn't be executable by just anyone, but rather
0 commit comments