diff options
author | Michael Paquier <michael@paquier.xyz> | 2020-09-07 14:35:17 +0900 |
---|---|---|
committer | Michael Paquier <michael@paquier.xyz> | 2020-09-07 14:35:17 +0900 |
commit | 87483c7bb32059f203a3fa36b4ffa9070970fa03 (patch) | |
tree | 2111603fdae7d364ad4f89df844da79ff8c11d2c | |
parent | f45dd3fed9cf7d336af08b53a1f73bf90c88fb1a (diff) | |
download | postgresql-87483c7bb32059f203a3fa36b4ffa9070970fa03.tar.gz postgresql-87483c7bb32059f203a3fa36b4ffa9070970fa03.zip |
doc: Tweak sentence for pg_checksums when enabling checksums
The previous version of the docs mentioned that files are rewritten,
implying that a second copy of each file gets created, but each file is
updated in-place.
Author: Michael Banck
Reviewed-by: Daniel Gustafsson, Michael Paquier
Discussion: https://postgr.es/m/858086b6a42fb7d17995b6175856f7e7ec44d0a2.camel@credativ.de
Backpatch-through: 12
-rw-r--r-- | doc/src/sgml/ref/pg_checksums.sgml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/src/sgml/ref/pg_checksums.sgml b/doc/src/sgml/ref/pg_checksums.sgml index 6baf9deaaea..b588cdefb63 100644 --- a/doc/src/sgml/ref/pg_checksums.sgml +++ b/doc/src/sgml/ref/pg_checksums.sgml @@ -47,8 +47,8 @@ PostgreSQL documentation <para> When verifying checksums, every file in the cluster is scanned. When - enabling checksums, every file in the cluster is rewritten. Disabling - checksums only updates the file <filename>pg_control</filename>. + enabling checksums, every file in the cluster is rewritten in-place. + Disabling checksums only updates the file <filename>pg_control</filename>. </para> </refsect1> |