diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2017-07-09 12:51:15 -0400 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2017-07-09 12:51:25 -0400 |
commit | eb01287c9d799fd4867cbe850b8ad8b4d3b4f8eb (patch) | |
tree | 6c96cdeed3cd89b2763792d4da64d0f287bf6236 | |
parent | d61b39c7e2f945854551ef087c48c294a265d88d (diff) |
Doc: fix backwards description of visibility map's all-frozen data.
Thinko in commit a892234f8.
Vik Fearing
Discussion: https://postgr.es/m/b6aaa23d-e26f-6404-a30d-e89431492d5d@2ndquadrant.com
-rw-r--r-- | doc/src/sgml/storage.sgml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/src/sgml/storage.sgml b/doc/src/sgml/storage.sgml index 1b812bd0a99..75a87a504ad 100644 --- a/doc/src/sgml/storage.sgml +++ b/doc/src/sgml/storage.sgml @@ -624,7 +624,7 @@ can be used to examine the information stored in free space maps. Each heap relation has a Visibility Map (VM) to keep track of which pages contain only tuples that are known to be visible to all active transactions; it also keeps track of which pages contain -only unfrozen tuples. It's stored +only frozen tuples. It's stored alongside the main relation data in a separate relation fork, named after the filenode number of the relation, plus a <literal>_vm</> suffix. For example, if the filenode of a relation is 12345, the VM is stored in a file called |