Commit 106f2eb6 authored by Peter Eisentraut's avatar Peter Eisentraut

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.
parent 9e360f0e
...@@ -3937,7 +3937,7 @@ SELECT pg_stat_get_backend_pid(s.backendid) AS pid, ...@@ -3937,7 +3937,7 @@ SELECT pg_stat_get_backend_pid(s.backendid) AS pid,
</row> </row>
<row> <row>
<entry><structfield>cluster_index_relid</structfield></entry> <entry><structfield>cluster_index_relid</structfield></entry>
<entry><type>bigint</type></entry> <entry><type>oid</type></entry>
<entry> <entry>
If the table is being scanned using an index, this is the OID of the If the table is being scanned using an index, this is the OID of the
index being used; otherwise, it is zero. index being used; otherwise, it is zero.
......
...@@ -933,7 +933,7 @@ CREATE VIEW pg_stat_progress_cluster AS ...@@ -933,7 +933,7 @@ CREATE VIEW pg_stat_progress_cluster AS
WHEN 6 THEN 'rebuilding index' WHEN 6 THEN 'rebuilding index'
WHEN 7 THEN 'performing final cleanup' WHEN 7 THEN 'performing final cleanup'
END AS phase, END AS phase,
S.param3 AS cluster_index_relid, CAST(S.param3 AS oid) AS cluster_index_relid,
S.param4 AS heap_tuples_scanned, S.param4 AS heap_tuples_scanned,
S.param5 AS heap_tuples_written, S.param5 AS heap_tuples_written,
S.param6 AS heap_blks_total, S.param6 AS heap_blks_total,
......
...@@ -53,6 +53,6 @@ ...@@ -53,6 +53,6 @@
*/ */
/* yyyymmddN */ /* yyyymmddN */
#define CATALOG_VERSION_NO 201904051 #define CATALOG_VERSION_NO 201904071
#endif #endif
...@@ -1855,7 +1855,7 @@ pg_stat_progress_cluster| SELECT s.pid, ...@@ -1855,7 +1855,7 @@ pg_stat_progress_cluster| SELECT s.pid,
WHEN 7 THEN 'performing final cleanup'::text WHEN 7 THEN 'performing final cleanup'::text
ELSE NULL::text ELSE NULL::text
END AS phase, END AS phase,
s.param3 AS cluster_index_relid, (s.param3)::oid AS cluster_index_relid,
s.param4 AS heap_tuples_scanned, s.param4 AS heap_tuples_scanned,
s.param5 AS heap_tuples_written, s.param5 AS heap_tuples_written,
s.param6 AS heap_blks_total, s.param6 AS heap_blks_total,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment