File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -1119,9 +1119,9 @@ LANGUAGE INTERNAL
1119
1119
STRICT IMMUTABLE PARALLEL SAFE
1120
1120
AS ' jsonb_insert' ;
1121
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()));
1122
+ CREATE VIEW snapfs_snapshots AS
1123
+ select * ,(select pg_get_snapshot_timestamp(generate_series)) as snap_created , pg_size_pretty((select pg_get_snapshot_size(generate_series))) as snap_size
1124
+ from generate_series((select oldest_snapshot from pg_control_snapshot()), (select recent_snapshot from pg_control_snapshot())) as snap_id ;
1125
1125
1126
1126
--
1127
1127
-- The default permissions for functions mean that anyone can execute them.
You can’t perform that action at this time.
0 commit comments