1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-07 00:36:50 +03:00

Cast pg_stat_progress_cluster.cluster_index_relid to oid

It's tracked internally as bigint, but when presented to the user it
should be oid.
This commit is contained in:
Peter Eisentraut
2019-04-07 10:31:32 +02:00
parent 9e360f0e83
commit 106f2eb664
4 changed files with 4 additions and 4 deletions

View File

@ -1855,7 +1855,7 @@ pg_stat_progress_cluster| SELECT s.pid,
WHEN 7 THEN 'performing final cleanup'::text
ELSE NULL::text
END AS phase,
s.param3 AS cluster_index_relid,
(s.param3)::oid AS cluster_index_relid,
s.param4 AS heap_tuples_scanned,
s.param5 AS heap_tuples_written,
s.param6 AS heap_blks_total,