From 64527a17a5053fdd52322dfe32a5a13e5d3f577c Mon Sep 17 00:00:00 2001 From: Daniel Gustafsson Date: Wed, 3 Dec 2025 15:22:38 +0100 Subject: [PATCH] doc: Consistently use restartpoint in the documentation The majority of cases already used "restartpoint" with just a few instances of "restart point". Changing the latter spelling to the former ensures consistency in the user facing documentation. Code comments are not affected by this since it is not worth the churn to change anything there. Author: Daniel Gustafsson Reviewed-by: Laurenz Albe Reviewed-by: Michael Paquier Discussion: https://postgr.es/m/0F6E38D0-649F-4489-B2C1-43CD937E6636@yesql.se --- doc/src/sgml/config.sgml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/src/sgml/config.sgml b/doc/src/sgml/config.sgml index 737b90736bf..405c9689bd0 100644 --- a/doc/src/sgml/config.sgml +++ b/doc/src/sgml/config.sgml @@ -4050,7 +4050,7 @@ include_dir 'conf.d' (The path name is relative to the current working directory, i.e., the cluster's data directory.) Any %r is replaced by the name of the file containing the - last valid restart point. That is the earliest file that must be kept + last valid restartpoint. That is the earliest file that must be kept to allow a restore to be restartable, so this information can be used to truncate the archive to just the minimum required to support restarting from the current restore. %r is typically only @@ -4095,7 +4095,7 @@ restore_command = 'copy "C:\\server\\archivedir\\%f" "%p"' # Windows cleaning up old archived WAL files that are no longer needed by the standby server. Any %r is replaced by the name of the file containing the - last valid restart point. + last valid restartpoint. That is the earliest file that must be kept to allow a restore to be restartable, and so all files earlier than %r may be safely removed. @@ -4139,7 +4139,7 @@ restore_command = 'copy "C:\\server\\archivedir\\%f" "%p"' # Windows recovery_end_command is to provide a mechanism for cleanup following replication or recovery. Any %r is replaced by the name of the file containing the - last valid restart point, like in . + last valid restartpoint, like in . If the command returns a nonzero exit status then a warning log -- 2.39.5