diff options
author | Tomas Vondra <tomas.vondra@postgresql.org> | 2020-04-02 14:26:27 +0200 |
---|---|---|
committer | Tomas Vondra <tomas.vondra@postgresql.org> | 2020-04-02 14:26:27 +0200 |
commit | 2c220ca46f3f6de0611367312bec0daef99b29eb (patch) | |
tree | 3764332ac059e9db1c26308e3ccd9e1630f1c4bc /doc/src | |
parent | cefb82d49e2152e844af148a95d4072999dc3c6b (diff) | |
download | postgresql-2c220ca46f3f6de0611367312bec0daef99b29eb.tar.gz postgresql-2c220ca46f3f6de0611367312bec0daef99b29eb.zip |
Fix typo in SLRU stats documentation
Author: Noriyoshi Shinoda
Discussion: https://www.postgresql.org/message-id/flat/20200119143707.gyinppnigokesjok@development
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/monitoring.sgml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/src/sgml/monitoring.sgml b/doc/src/sgml/monitoring.sgml index 28ceb04d331..0ebadf0d26d 100644 --- a/doc/src/sgml/monitoring.sgml +++ b/doc/src/sgml/monitoring.sgml @@ -3296,7 +3296,7 @@ SELECT pid, wait_event_type, wait_event FROM pg_stat_activity WHERE wait_event i </row> <row> <entry><structfield>blks_hit</structfield></entry> - <entry><type>biging</type></entry> + <entry><type>bigint</type></entry> <entry>Number of times disk blocks were found already in the SLRU, so that a read was not necessary (this only includes hits in the SLRU, not the operating system's file system cache) |