diff options
author | Michael Paquier | 2025-02-20 05:22:00 +0000 |
---|---|---|
committer | Michael Paquier | 2025-02-20 05:22:00 +0000 |
commit | f11674f8dfe811390dfeaf6f3c3a554dbeb790e1 (patch) | |
tree | d12cc6f004dd7dd5c13435d9aa6993720a960036 | |
parent | 4538bd3f1dde065820438ea461ad30c993982d92 (diff) |
doc: Fix typo in section "WAL configuration"
pg_stat_io has an attribute named fsync_time, not sync_time.
Oversight in 2f70871c2bc1.
Discussion: https://postgr.es/m/Z7RkQ0EfYaqqjgz/@ip-10-97-1-34.eu-west-3.compute.internal
-rw-r--r-- | doc/src/sgml/wal.sgml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/src/sgml/wal.sgml b/doc/src/sgml/wal.sgml index 4c0bf710dda..52b5b8f793b 100644 --- a/doc/src/sgml/wal.sgml +++ b/doc/src/sgml/wal.sgml @@ -813,7 +813,7 @@ When <xref linkend="guc-track-io-timing"/> is enabled, the total amounts of time <function>XLogWrite</function> writes and <function>issue_xlog_fsync</function> syncs WAL data to disk are counted as - <varname>write_time</varname> and <varname>sync_time</varname> in + <varname>write_time</varname> and <varname>fsync_time</varname> in <xref linkend="pg-stat-io-view"/> for the <varname>object</varname> <literal>wal</literal>, respectively. <function>XLogWrite</function> is normally called by |