diff options
Diffstat (limited to 'doc/src')
| -rw-r--r-- | doc/src/sgml/monitoring.sgml | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/doc/src/sgml/monitoring.sgml b/doc/src/sgml/monitoring.sgml index 21e6ce2841e..c809ff1ba4a 100644 --- a/doc/src/sgml/monitoring.sgml +++ b/doc/src/sgml/monitoring.sgml @@ -6817,7 +6817,7 @@ FROM pg_stat_get_backend_idset() AS backendid; <structfield>pid</structfield> <type>integer</type> </para> <para> - Process ID of backend. + Process ID of the backend creating indexes. </para></entry> </row> @@ -6863,7 +6863,7 @@ FROM pg_stat_get_backend_idset() AS backendid; <structfield>command</structfield> <type>text</type> </para> <para> - The command that is running: <literal>CREATE INDEX</literal>, + Specific command type: <literal>CREATE INDEX</literal>, <literal>CREATE INDEX CONCURRENTLY</literal>, <literal>REINDEX</literal>, or <literal>REINDEX CONCURRENTLY</literal>. </para></entry> @@ -6946,9 +6946,10 @@ FROM pg_stat_get_backend_idset() AS backendid; <structfield>partitions_total</structfield> <type>bigint</type> </para> <para> - When creating an index on a partitioned table, this column is set to - the total number of partitions on which the index is to be created. - This field is <literal>0</literal> during a <literal>REINDEX</literal>. + Total number of partitions on which the index is to be created + or attached, including both direct and indirect partitions. + <literal>0</literal> during a <literal>REINDEX</literal>, or when + the index is not partitioned. </para></entry> </row> @@ -6957,9 +6958,10 @@ FROM pg_stat_get_backend_idset() AS backendid; <structfield>partitions_done</structfield> <type>bigint</type> </para> <para> - When creating an index on a partitioned table, this column is set to - the number of partitions on which the index has been created. - This field is <literal>0</literal> during a <literal>REINDEX</literal>. + Number of partitions on which the index has already been created + or attached, including both direct and indirect partitions. + <literal>0</literal> during a <literal>REINDEX</literal>, or when + the index is not partitioned. </para></entry> </row> </tbody> |
