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

Commit aa14bc4

Browse files
committed
Fix whitespace
1 parent 6d69ea3 commit aa14bc4

9 files changed

+40
-40
lines changed

doc/src/sgml/bloom.sgml

+3-3
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020
The implementation of a
2121
<ulink url="http://en.wikipedia.org/wiki/Bloom_filter">Bloom filter</ulink>
2222
allows fast exclusion of non-candidate tuples via signatures.
23-
Since a signature is a lossy representation of all indexed attributes,
24-
search results must be rechecked using heap information.
23+
Since a signature is a lossy representation of all indexed attributes,
24+
search results must be rechecked using heap information.
2525
The user can specify signature length (in uint16, default is 5) and the
2626
number of bits, which can be set per attribute (1 < colN < 2048).
2727
</para>
@@ -33,7 +33,7 @@
3333
possible queries where one needs only a single bloom index. A Bloom index
3434
supports only equality comparison. Since it's a signature file, and not a
3535
tree, it always must be read fully, but sequentially, so that index search
36-
performance is constant and doesn't depend on a query.
36+
performance is constant and doesn't depend on a query.
3737
</para>
3838
</sect2>
3939

doc/src/sgml/fdwhandler.sgml

+1-1
Original file line numberDiff line numberDiff line change
@@ -820,7 +820,7 @@ IterateDirectModify (ForeignScanState *node);
820820
</para>
821821

822822
<para>
823-
Whether the query has the clause or not, the query's reported row count
823+
Whether the query has the clause or not, the query's reported row count
824824
must be incremented by the FDW itself. When the query doesn't have the
825825
clause, the FDW must also increment the row count for the
826826
<structname>ForeignScanState</> node in the <command>EXPLAIN ANALYZE</>

doc/src/sgml/gin.sgml

+1-1
Original file line numberDiff line numberDiff line change
@@ -734,7 +734,7 @@
734734
from the indexed item). As of <productname>PostgreSQL</productname> 8.4,
735735
<acronym>GIN</> is capable of postponing much of this work by inserting
736736
new tuples into a temporary, unsorted list of pending entries.
737-
When the table is vacuumed or autoanalyzed, or when
737+
When the table is vacuumed or autoanalyzed, or when
738738
<function>gin_clean_pending_list</function> function is called, or if the
739739
pending list becomes larger than
740740
<xref linkend="guc-gin-pending-list-limit">, the entries are moved to the

doc/src/sgml/maintenance.sgml

+1-1
Original file line numberDiff line numberDiff line change
@@ -563,7 +563,7 @@ SELECT datname, age(datfrozenxid) FROM pg_database;
563563
<command>VACUUM</> normally only scans pages that have been modified
564564
since the last vacuum, but <structfield>relfrozenxid</> can only be
565565
advanced when every page of the table
566-
that might contain unfrozen XIDs is scanned. This happens when
566+
that might contain unfrozen XIDs is scanned. This happens when
567567
<structfield>relfrozenxid</> is more than
568568
<varname>vacuum_freeze_table_age</> transactions old, when
569569
<command>VACUUM</>'s <literal>FREEZE</> option is used, or when all

doc/src/sgml/postgres-fdw.sgml

+1-1
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,7 @@
304304
<term><literal>fetch_size</literal></term>
305305
<listitem>
306306
<para>
307-
This option specifies the number of rows <filename>postgres_fdw</>
307+
This option specifies the number of rows <filename>postgres_fdw</>
308308
should get in each fetch operation. It can be specified for a foreign
309309
table or a foreign server. The option specified on a table overrides
310310
an option specified for the server.

doc/src/sgml/ref/pg_rewind.sgml

+3-3
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ PostgreSQL documentation
7171
missing files from a WAL archive automatically is currently not supported.
7272
Besides, <application>pg_rewind</> use cases are not limited by failover.
7373
For instance, standby server could be promoted, run some writes and
74-
then be returned back as standby.
74+
then be returned back as standby.
7575
</para>
7676

7777
<para>
@@ -134,8 +134,8 @@ PostgreSQL documentation
134134
<para>
135135
Specifies a libpq connection string to connect to the source
136136
<productname>PostgreSQL</> server to synchronize the target with.
137-
The connection must be a normal (non-replication) connection
138-
with superuser access. The server must be up and running,
137+
The connection must be a normal (non-replication) connection
138+
with superuser access. The server must be up and running,
139139
and must not be in recovery mode.
140140
</para>
141141
</listitem>

doc/src/sgml/ref/pgbench.sgml

+13-13
Original file line numberDiff line numberDiff line change
@@ -1064,8 +1064,8 @@ f(x) = exp(-parameter * (x - min) / (max - min + 1)) / (1 - exp(-parameter))
10641064
function of the standard normal distribution, with mean <literal>mu</>
10651065
defined as <literal>(max + min) / 2.0</>, with
10661066
<literallayout>
1067-
f(x) = PHI(2.0 * parameter * (x - mu) / (max - min + 1)) /
1068-
(2.0 * PHI(parameter) - 1)
1067+
f(x) = PHI(2.0 * parameter * (x - mu) / (max - min + 1)) /
1068+
(2.0 * PHI(parameter) - 1)
10691069
</literallayout>
10701070
then value <replaceable>i</> between <replaceable>min</> and
10711071
<replaceable>max</> inclusive is drawn with probability:
@@ -1158,22 +1158,22 @@ END;
11581158
<para>
11591159
Here is a snippet of the log file generated:
11601160
<screen>
1161-
0 199 2241 0 1175850568 995598
1162-
0 200 2465 0 1175850568 998079
1163-
0 201 2513 0 1175850569 608
1164-
0 202 2038 0 1175850569 2663
1161+
0 199 2241 0 1175850568 995598
1162+
0 200 2465 0 1175850568 998079
1163+
0 201 2513 0 1175850569 608
1164+
0 202 2038 0 1175850569 2663
11651165
</screen>
11661166

11671167
Another example with --rate=100 and --latency-limit=5 (note the additional
11681168
<replaceable>schedule_lag</> column):
11691169
<screen>
1170-
0 81 4621 0 1412881037 912698 3005
1171-
0 82 6173 0 1412881037 914578 4304
1172-
0 83 skipped 0 1412881037 914578 5217
1173-
0 83 skipped 0 1412881037 914578 5099
1174-
0 83 4722 0 1412881037 916203 3108
1175-
0 84 4142 0 1412881037 918023 2333
1176-
0 85 2465 0 1412881037 919759 740
1170+
0 81 4621 0 1412881037 912698 3005
1171+
0 82 6173 0 1412881037 914578 4304
1172+
0 83 skipped 0 1412881037 914578 5217
1173+
0 83 skipped 0 1412881037 914578 5099
1174+
0 83 4722 0 1412881037 916203 3108
1175+
0 84 4142 0 1412881037 918023 2333
1176+
0 85 2465 0 1412881037 919759 740
11771177
</screen>
11781178
In this example, transaction 82 was late, because its latency (6.173 ms) was
11791179
over the 5 ms limit. The next two transactions were skipped, because they

doc/src/sgml/ref/pgtesttiming.sgml

+16-16
Original file line numberDiff line numberDiff line change
@@ -99,11 +99,11 @@ Testing timing overhead for 3 seconds.
9999
Per loop time including overhead: 35.96 nsec
100100
Histogram of timing durations:
101101
< usec % of total count
102-
1 96.40465 80435604
103-
2 3.59518 2999652
104-
4 0.00015 126
105-
8 0.00002 13
106-
16 0.00000 2
102+
1 96.40465 80435604
103+
2 3.59518 2999652
104+
4 0.00015 126
105+
8 0.00002 13
106+
16 0.00000 2
107107
</screen>
108108
</para>
109109

@@ -160,11 +160,11 @@ tsc hpet acpi_pm
160160
Per loop time including overhead: 722.92 nsec
161161
Histogram of timing durations:
162162
< usec % of total count
163-
1 27.84870 1155682
164-
2 72.05956 2990371
165-
4 0.07810 3241
166-
8 0.01357 563
167-
16 0.00007 3
163+
1 27.84870 1155682
164+
2 72.05956 2990371
165+
4 0.07810 3241
166+
8 0.01357 563
167+
16 0.00007 3
168168
</screen>
169169
</para>
170170

@@ -212,12 +212,12 @@ Testing timing overhead for 3 seconds.
212212
Per timing duration including loop overhead: 97.75 ns
213213
Histogram of timing durations:
214214
< usec % of total count
215-
1 90.23734 27694571
216-
2 9.75277 2993204
217-
4 0.00981 3010
218-
8 0.00007 22
219-
16 0.00000 1
220-
32 0.00000 1
215+
1 90.23734 27694571
216+
2 9.75277 2993204
217+
4 0.00981 3010
218+
8 0.00007 22
219+
16 0.00000 1
220+
32 0.00000 1
221221
</screen></para>
222222

223223
</refsect2>

doc/src/sgml/spgist.sgml

+1-1
Original file line numberDiff line numberDiff line change
@@ -637,7 +637,7 @@ typedef struct spgInnerConsistentOut
637637
responsible for palloc'ing the
638638
<structfield>nodeNumbers</>, <structfield>levelAdds</> and
639639
<structfield>reconstructedValues</> arrays.
640-
Sometimes accumulating some information is needed, while
640+
Sometimes accumulating some information is needed, while
641641
descending from parent to child node was happened. In this case
642642
<structfield>traversalValues</> array keeps pointers to
643643
specific data you need to accumulate for every child node.

0 commit comments

Comments
 (0)