Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 122fa9f

Browse files
committed
doc: Fix whitespace
Author: Julien Rouhaud <rjuju123@gmail.com>
1 parent 45f8eaa commit 122fa9f

15 files changed

+32
-32
lines changed

doc/src/sgml/client-auth.sgml

+3-3
Original file line numberDiff line numberDiff line change
@@ -671,7 +671,7 @@ hostnogssenc <replaceable>database</replaceable> <replaceable>user</replaceable
671671
non-null <structfield>error</structfield> fields indicate problems in the
672672
corresponding lines of the file.
673673
</para>
674-
674+
675675
<tip>
676676
<para>
677677
To connect to a particular database, a user must not only pass the
@@ -747,9 +747,9 @@ host all all .example.com scram-sha-256
747747
# reject all connections from 192.168.54.1 (since that entry will be
748748
# matched first), but allow GSSAPI-encrypted connections from anywhere else
749749
# on the Internet. The zero mask causes no bits of the host IP address to
750-
# be considered, so it matches any host. Unencrypted GSSAPI connections
750+
# be considered, so it matches any host. Unencrypted GSSAPI connections
751751
# (which "fall through" to the third line since "hostgssenc" only matches
752-
# encrypted GSSAPI connections) are allowed, but only from 192.168.12.10.
752+
# encrypted GSSAPI connections) are allowed, but only from 192.168.12.10.
753753
#
754754
# TYPE DATABASE USER ADDRESS METHOD
755755
host all all 192.168.54.1/32 reject

doc/src/sgml/config.sgml

+1-1
Original file line numberDiff line numberDiff line change
@@ -953,7 +953,7 @@ include_dir 'conf.d'
953953
This parameter is supported only on systems that support
954954
<symbol>TCP_USER_TIMEOUT</symbol>; on other systems, it must be zero.
955955
In sessions connected via a Unix-domain socket, this parameter is
956-
ignored and always reads as zero.
956+
ignored and always reads as zero.
957957
</para>
958958
<note>
959959
<para>

doc/src/sgml/ecpg.sgml

+5-5
Original file line numberDiff line numberDiff line change
@@ -312,7 +312,7 @@ current=testdb1 (should be testdb1)
312312
</para>
313313

314314
<para>
315-
The third option is to declare a sql identifier linked to
315+
The third option is to declare a sql identifier linked to
316316
the connection, for example:
317317
<programlisting>
318318
EXEC SQL AT <replaceable>connection-name</replaceable> DECLARE <replaceable>statement-name</replaceable> STATEMENT;
@@ -558,7 +558,7 @@ EXEC SQL COMMIT;
558558
</para>
559559
</listitem>
560560
</varlistentry>
561-
561+
562562
<varlistentry>
563563
<term><literal>EXEC SQL SET AUTOCOMMIT TO ON</literal></term>
564564
<listitem>
@@ -6843,7 +6843,7 @@ EXEC SQL [ AT <replaceable class="parameter">connection_name</replaceable> ] DEC
68436843
A database connection name established by the <command>CONNECT</command> command.
68446844
</para>
68456845
<para>
6846-
If AT clause is omitted, an SQL statement identifier is associated with the DEFAULT connection.
6846+
If AT clause is omitted, an SQL statement identifier is associated with the DEFAULT connection.
68476847
</para>
68486848
</listitem>
68496849
</varlistentry>
@@ -6862,10 +6862,10 @@ EXEC SQL [ AT <replaceable class="parameter">connection_name</replaceable> ] DEC
68626862
</refsect1>
68636863

68646864
<refsect1>
6865-
<title>Notes</title>
6865+
<title>Notes</title>
68666866
<para>
68676867
AT clause can be used at other dynamic SQL statements. The following table
6868-
gives the connected database when AT clause is used at DECLARE STATEMENT
6868+
gives the connected database when AT clause is used at DECLARE STATEMENT
68696869
and other dynamic statements.
68706870
</para>
68716871
<table tocentry="1" id="ecpg-declare-statement-table">

doc/src/sgml/func.sgml

+2-2
Original file line numberDiff line numberDiff line change
@@ -17397,7 +17397,7 @@ SET search_path TO <replaceable>schema</replaceable> <optional>, <replaceable>sc
1739717397
because it needs access to the predicate lock manager's shared
1739817398
state for a short time.
1739917399
</para>
17400-
17400+
1740117401
<indexterm>
1740217402
<primary>version</primary>
1740317403
</indexterm>
@@ -21225,7 +21225,7 @@ postgres=# SELECT * FROM pg_walfile_name_offset(pg_stop_backup());
2122521225
<row><entry>Name</entry> <entry>Return Type</entry> <entry>Description</entry></row>
2122621226
</thead>
2122721227

21228-
<tbody>
21228+
<tbody>
2122921229
<row>
2123021230
<entry>
2123121231
<indexterm><primary>pg_partition_tree</primary></indexterm>

doc/src/sgml/high-availability.sgml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1518,7 +1518,7 @@ synchronous_standby_names = 'ANY 2 (s1, s2, s3)'
15181518
processing would request a file from the WAL archive, reporting failure
15191519
if the file was unavailable. For standby processing it is normal for
15201520
the next WAL file to be unavailable, so the standby must wait for
1521-
it to appear. For files ending in
1521+
it to appear. For files ending in
15221522
<literal>.history</literal> there is no need to wait, and a non-zero return
15231523
code must be returned. A waiting <varname>restore_command</varname> can be
15241524
written as a custom script that loops after polling for the existence of

doc/src/sgml/json.sgml

+1-1
Original file line numberDiff line numberDiff line change
@@ -625,7 +625,7 @@ SELECT jdoc-&gt;'guid', jdoc-&gt;'name' FROM api WHERE jdoc @&gt; '{"tags": ["qu
625625
</sect2>
626626

627627
<sect2 id="datatype-jsonpath">
628-
<title>jsonpath Type</title>
628+
<title>jsonpath Type</title>
629629

630630
<indexterm zone="datatype-jsonpath">
631631
<primary>jsonpath</primary>

doc/src/sgml/monitoring.sgml

+10-10
Original file line numberDiff line numberDiff line change
@@ -3622,7 +3622,7 @@ SELECT pg_stat_get_backend_pid(s.backendid) AS pid,
36223622
with write locks that can potentially see the table to finish.
36233623
This phase is skipped when not in concurrent mode.
36243624
Columns <structname>lockers_total</structname>, <structname>lockers_done</structname>
3625-
and <structname>current_locker_pid</structname> contain the progress
3625+
and <structname>current_locker_pid</structname> contain the progress
36263626
information for this phase.
36273627
</entry>
36283628
</row>
@@ -3644,7 +3644,7 @@ SELECT pg_stat_get_backend_pid(s.backendid) AS pid,
36443644
with write locks that can potentially write into the table to finish.
36453645
This phase is skipped when not in concurrent mode.
36463646
Columns <structname>lockers_total</structname>, <structname>lockers_done</structname>
3647-
and <structname>current_locker_pid</structname> contain the progress
3647+
and <structname>current_locker_pid</structname> contain the progress
36483648
information for this phase.
36493649
</entry>
36503650
</row>
@@ -3682,7 +3682,7 @@ SELECT pg_stat_get_backend_pid(s.backendid) AS pid,
36823682
that can potentially see the table to release their snapshots. This
36833683
phase is skipped when not in concurrent mode.
36843684
Columns <structname>lockers_total</structname>, <structname>lockers_done</structname>
3685-
and <structname>current_locker_pid</structname> contain the progress
3685+
and <structname>current_locker_pid</structname> contain the progress
36863686
information for this phase.
36873687
</entry>
36883688
</row>
@@ -3693,7 +3693,7 @@ SELECT pg_stat_get_backend_pid(s.backendid) AS pid,
36933693
with read locks on the table to finish, before marking the old index dead.
36943694
This phase is skipped when not in concurrent mode.
36953695
Columns <structname>lockers_total</structname>, <structname>lockers_done</structname>
3696-
and <structname>current_locker_pid</structname> contain the progress
3696+
and <structname>current_locker_pid</structname> contain the progress
36973697
information for this phase.
36983698
</entry>
36993699
</row>
@@ -3704,7 +3704,7 @@ SELECT pg_stat_get_backend_pid(s.backendid) AS pid,
37043704
with read locks on the table to finish, before dropping the old index.
37053705
This phase is skipped when not in concurrent mode.
37063706
Columns <structname>lockers_total</structname>, <structname>lockers_done</structname>
3707-
and <structname>current_locker_pid</structname> contain the progress
3707+
and <structname>current_locker_pid</structname> contain the progress
37083708
information for this phase.
37093709
</entry>
37103710
</row>
@@ -3725,8 +3725,8 @@ SELECT pg_stat_get_backend_pid(s.backendid) AS pid,
37253725
that will be reported and provide information about how to interpret it.
37263726
Progress for <command>VACUUM FULL</command> commands is reported via
37273727
<structname>pg_stat_progress_cluster</structname>
3728-
because both <command>VACUUM FULL</command> and <command>CLUSTER</command>
3729-
rewrite the table, while regular <command>VACUUM</command> only modifies it
3728+
because both <command>VACUUM FULL</command> and <command>CLUSTER</command>
3729+
rewrite the table, while regular <command>VACUUM</command> only modifies it
37303730
in place. See <xref linkend='cluster-progress-reporting'/>.
37313731
</para>
37323732

@@ -3912,7 +3912,7 @@ SELECT pg_stat_get_backend_pid(s.backendid) AS pid,
39123912
<para>
39133913
Whenever <command>CLUSTER</command> or <command>VACUUM FULL</command> is
39143914
running, the <structname>pg_stat_progress_cluster</structname> view will
3915-
contain a row for each backend that is currently running either command.
3915+
contain a row for each backend that is currently running either command.
39163916
The tables below describe the information that will be reported and
39173917
provide information about how to interpret it.
39183918
</para>
@@ -4054,7 +4054,7 @@ SELECT pg_stat_get_backend_pid(s.backendid) AS pid,
40544054
<row>
40554055
<entry><literal>sorting tuples</literal></entry>
40564056
<entry>
4057-
<command>CLUSTER</command> is currently sorting tuples.
4057+
<command>CLUSTER</command> is currently sorting tuples.
40584058
</entry>
40594059
</row>
40604060
<row>
@@ -4072,7 +4072,7 @@ SELECT pg_stat_get_backend_pid(s.backendid) AS pid,
40724072
<row>
40734073
<entry><literal>performing final cleanup</literal></entry>
40744074
<entry>
4075-
The command is performing final cleanup. When this phase is
4075+
The command is performing final cleanup. When this phase is
40764076
completed, <command>CLUSTER</command>
40774077
or <command>VACUUM FULL</command> will end.
40784078
</entry>

doc/src/sgml/parallel.sgml

+2-2
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ EXPLAIN SELECT * FROM pgbench_accounts WHERE filler LIKE '%x%';
102102
order-preserving merge. In contrast, <literal>Gather</literal> reads tuples
103103
from the workers in whatever order is convenient, destroying any sort
104104
order that may have existed.
105-
</para>
105+
</para>
106106
</sect1>
107107

108108
<sect1 id="when-can-parallel-query-be-used">
@@ -347,7 +347,7 @@ EXPLAIN SELECT * FROM pgbench_accounts WHERE filler LIKE '%x%';
347347
workers in order to produce the final result. This is reflected in the
348348
plan as a <literal>Finalize Aggregate</literal> node.
349349
</para>
350-
350+
351351
<para>
352352
Because the <literal>Finalize Aggregate</literal> node runs on the leader
353353
process, queries which produce a relatively large number of groups in

doc/src/sgml/postgres-fdw.sgml

+1-1
Original file line numberDiff line numberDiff line change
@@ -544,7 +544,7 @@
544544

545545
<para>
546546
<filename>postgres_fdw</filename> likewise establishes remote session settings
547-
for various parameters:
547+
for various parameters:
548548
<itemizedlist spacing="compact">
549549
<listitem>
550550
<para>

doc/src/sgml/protocol.sgml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1586,7 +1586,7 @@ PostgreSQL is <literal>tls-server-end-point</literal>.
15861586
user-supplied password in the transmitted password hash. While this
15871587
prevents the password hash from being successfully retransmitted in
15881588
a later session, it does not prevent a fake server between the real
1589-
server and client from passing through the server's random value
1589+
server and client from passing through the server's random value
15901590
and successfully authenticating.
15911591
</para>
15921592

doc/src/sgml/ref/pg_basebackup.sgml

+1-1
Original file line numberDiff line numberDiff line change
@@ -327,7 +327,7 @@ PostgreSQL documentation
327327
</para>
328328
<para>
329329
When tar format mode is used, the write-ahead log files will be
330-
written to a separate file named <filename>pg_wal.tar</filename>
330+
written to a separate file named <filename>pg_wal.tar</filename>
331331
(if the server is a version earlier than 10, the file will be named
332332
<filename>pg_xlog.tar</filename>).
333333
</para>

doc/src/sgml/ref/pg_rewind.sgml

+1-1
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ GRANT EXECUTE ON function pg_catalog.pg_ls_dir(text, boolean, boolean) TO rewind
260260
GRANT EXECUTE ON function pg_catalog.pg_stat_file(text, boolean) TO rewind_user;
261261
GRANT EXECUTE ON function pg_catalog.pg_read_binary_file(text) TO rewind_user;
262262
GRANT EXECUTE ON function pg_catalog.pg_read_binary_file(text, bigint, bigint, boolean) TO rewind_user;
263-
</programlisting>
263+
</programlisting>
264264
</para>
265265

266266
<para>

doc/src/sgml/ref/pgupgrade.sgml

+1-1
Original file line numberDiff line numberDiff line change
@@ -796,7 +796,7 @@ psql --username=postgres --file=script.sql postgres
796796
In <productname>PostgreSQL</productname> 12 and later small tables by
797797
default don't have a free space map, as a space optimization. If you are
798798
upgrading a pre-12 cluster, the free space maps of small tables will
799-
likewise not be transferred to the new cluster.
799+
likewise not be transferred to the new cluster.
800800
</para>
801801

802802
</refsect1>

doc/src/sgml/runtime.sgml

+1-1
Original file line numberDiff line numberDiff line change
@@ -643,7 +643,7 @@ psql: could not connect to server: No such file or directory
643643
amount of anonymous <function>mmap</function> shared memory.
644644
Alternatively, a single large System V shared memory region can be used
645645
(see <xref linkend="guc-shared-memory-type"/>).
646-
646+
647647
In addition a significant number of semaphores, which can be either
648648
System V or POSIX style, are created at server startup. Currently,
649649
POSIX semaphores are used on Linux and FreeBSD systems while other

doc/src/sgml/spgist.sgml

+1-1
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@
160160
</entry>
161161
<entry>
162162
<literal>&lt;-&gt;</literal>
163-
</entry>
163+
</entry>
164164
</row>
165165
<row>
166166
<entry><literal>text_ops</literal></entry>

0 commit comments

Comments
 (0)