diff options
author | Michael Paquier <michael@paquier.xyz> | 2023-05-16 16:51:44 +0900 |
---|---|---|
committer | Michael Paquier <michael@paquier.xyz> | 2023-05-16 16:51:44 +0900 |
commit | 44e977d7ecb915d1181007e700f2da31acb6ea4c (patch) | |
tree | 6de990a75d019bec396c55995f0c6276823a4c1d | |
parent | c91f3560835f76bd8c9f614bebaa8c634b98b451 (diff) | |
download | postgresql-44e977d7ecb915d1181007e700f2da31acb6ea4c.tar.gz postgresql-44e977d7ecb915d1181007e700f2da31acb6ea4c.zip |
doc: Fix ordering of entries in wait event table for I/O type
Issue spotted while reviewing a different patch touching this area.
Discussion: https://postgr.es/m/ZGM1U5D5EuBUbasi@paquier.xyz
-rw-r--r-- | doc/src/sgml/monitoring.sgml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/src/sgml/monitoring.sgml b/doc/src/sgml/monitoring.sgml index 99f7f95c393..9842f820915 100644 --- a/doc/src/sgml/monitoring.sgml +++ b/doc/src/sgml/monitoring.sgml @@ -1285,14 +1285,14 @@ postgres 27093 0.0 0.0 30096 2752 ? Ss 11:34 0:00 postgres: ser <entry>Waiting for a read from a buffered file.</entry> </row> <row> - <entry><literal>BufFileWrite</literal></entry> - <entry>Waiting for a write to a buffered file.</entry> - </row> - <row> <entry><literal>BufFileTruncate</literal></entry> <entry>Waiting for a buffered file to be truncated.</entry> </row> <row> + <entry><literal>BufFileWrite</literal></entry> + <entry>Waiting for a write to a buffered file.</entry> + </row> + <row> <entry><literal>ControlFileRead</literal></entry> <entry>Waiting for a read from the <filename>pg_control</filename> file.</entry> |