@@ -3560,7 +3560,7 @@ repeat('Pg', 4) <returnvalue>PgPgPgPg</returnvalue>
3560
3560
<returnvalue>text</returnvalue>
3561
3561
</para>
3562
3562
<para>
3563
- Evaluate escaped Unicode characters in argument. Unicode characters
3563
+ Evaluate escaped Unicode characters inthe argument. Unicode characters
3564
3564
can be specified as
3565
3565
<literal>\<replaceable>XXXX</replaceable></literal> (4 hexadecimal
3566
3566
digits), <literal>\+<replaceable>XXXXXX</replaceable></literal> (6
@@ -24926,12 +24926,12 @@ SELECT collation for ('foo' COLLATE "de_DE");
24926
24926
<returnvalue>boolean</returnvalue>
24927
24927
</para>
24928
24928
<para>
24929
- Requests to log the memory contextswhose backendprocess has
24930
- the specified process ID. These memory contexts will be logged at
24929
+ Requests to log the memory contextsof the backendwith the
24930
+ specified process ID. These memory contexts will be logged at
24931
24931
<literal>LOG</literal> message level. They will appear in
24932
24932
the server log based on the log configuration set
24933
24933
(See <xref linkend="runtime-config-logging"/> for more information),
24934
- but will not be sent to the clientwhatever the setting of
24934
+ but will not be sent to the clientregardless of
24935
24935
<xref linkend="guc-client-min-messages"/>.
24936
24936
Only superusers can request to log the memory contexts.
24937
24937
</para></entry>
@@ -25037,7 +25037,7 @@ SELECT collation for ('foo' COLLATE "de_DE");
25037
25037
25038
25038
<para>
25039
25039
<function>pg_log_backend_memory_contexts</function> can be used
25040
- to log the memory contexts ofthe backend process. For example,
25040
+ to log the memory contexts ofa backend process. For example:
25041
25041
<programlisting>
25042
25042
postgres=# SELECT pg_log_backend_memory_contexts(pg_backend_pid());
25043
25043
pg_log_backend_memory_contexts
@@ -25061,8 +25061,8 @@ LOG: level: 1; TransactionAbortContext: 32768 total in 1 blocks; 32504 free (0
25061
25061
LOG: level: 1; ErrorContext: 8192 total in 1 blocks; 7928 free (3 chunks); 264 used
25062
25062
LOG: Grand total: 1651920 bytes in 201 blocks; 622360 free (88 chunks); 1029560 used
25063
25063
</screen>
25064
- For more than 100 child contexts under the same parent one,
25065
- 100 child contextsand a summary of the remainingones will be logged .
25064
+ If there are more than 100 child contexts under the same parent, the first
25065
+ 100 child contextsare logged, along with a summary of the remainingcontexts .
25066
25066
Note that frequent calls to this function could incur significant overhead,
25067
25067
because it may generate a large number of log messages.
25068
25068
</para>
@@ -25576,7 +25576,7 @@ postgres=# SELECT * FROM pg_walfile_name_offset(pg_stop_backup());
25576
25576
Returns recovery pause state. The return values are <literal>
25577
25577
not paused</literal> if pause is not requested, <literal>
25578
25578
pause requested</literal> if pause is requested but recovery is
25579
- not yet paused and, <literal>paused</literal> if the recovery is
25579
+ not yet paused, and <literal>paused</literal> if the recovery is
25580
25580
actually paused.
25581
25581
</para></entry>
25582
25582
</row>