doc: Add missing tags in pg_buffercache page
authorMichael Paquier <michael@paquier.xyz>
Thu, 27 Nov 2025 23:00:23 +0000 (08:00 +0900)
committerMichael Paquier <michael@paquier.xyz>
Thu, 27 Nov 2025 23:00:23 +0000 (08:00 +0900)
Issue noticed while looking at this area of the documentation, for a
different patch.  This is a matter of style, so no backpatch is done.

Discussion: https://postgr.es/m/CAN55FZ0h_YoSqqutxV6DES1RW8ig6wcA8CR9rJk358YRMxZFmw@mail.gmail.com

doc/src/sgml/pgbuffercache.sgml

index 91bbedff3433250c66972a5d1cb7b47f446d0240..a011c749c8a043345bdbf9aa6a618ae5aafd2be5 100644 (file)
    The <function>pg_buffercache_evict()</function> function takes a buffer
    identifier, as shown in the <structfield>bufferid</structfield> column of
    the <structname>pg_buffercache</structname> view.  It returns information
-   about whether the buffer was evicted and flushed.  The buffer_evicted
+   about whether the buffer was evicted and flushed.
+   The <structfield>buffer_evicted</structfield>
    column is true on success, and false if the buffer wasn't valid, if it
    couldn't be evicted because it was pinned, or if it became dirty again
-   after an attempt to write it out.  The buffer_flushed column is true if the
+   after an attempt to write it out.
+   The <structfield>buffer_flushed</structfield> column is true if the
    buffer was flushed.  This does not necessarily mean that buffer was flushed
    by us, it might be flushed by someone else.  The result is immediately out
    of date upon return, as the buffer might become valid again at any time due