diff options
-rw-r--r-- | doc/src/sgml/high-availability.sgml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/src/sgml/high-availability.sgml b/doc/src/sgml/high-availability.sgml index 437712762ae..b5b60421045 100644 --- a/doc/src/sgml/high-availability.sgml +++ b/doc/src/sgml/high-availability.sgml @@ -2127,7 +2127,7 @@ HINT: You can then restart the server after making the necessary configuration <para> <function>pg_cancel_backend()</function> and <function>pg_terminate_backend()</function> will work on user backends, - but not the Startup process, which performs + but not the startup process, which performs recovery. <structname>pg_stat_activity</structname> does not show recovering transactions as active. As a result, <structname>pg_prepared_xacts</structname> is always empty during @@ -2139,9 +2139,9 @@ HINT: You can then restart the server after making the necessary configuration <para> <structname>pg_locks</structname> will show locks held by backends, as normal. <structname>pg_locks</structname> also shows - a virtual transaction managed by the Startup process that owns all + a virtual transaction managed by the startup process that owns all <literal>AccessExclusiveLocks</literal> held by transactions being replayed by recovery. - Note that the Startup process does not acquire locks to + Note that the startup process does not acquire locks to make database changes, and thus locks other than <literal>AccessExclusiveLocks</literal> do not show in <structname>pg_locks</structname> for the Startup process; they are just presumed to exist. |