Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commita9e38c6

Browse files
author
Liudmila Mantrova
committed
DOC: fix typos specific for EE
1 parent7dd9d2e commita9e38c6

File tree

10 files changed

+20
-20
lines changed

10 files changed

+20
-20
lines changed

‎doc/src/sgml/aqo.sgml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ where <replaceable>mode</> is the name of the optimization mode to use.
137137
</note>
138138
<para>
139139
Since the <literal>intelligent</literal> mode tries to learn separately for
140-
different query types, <filename>aqo</filename> may fail to providepeformance improvements if the types of the queries in the workload are constantly changing. For such dynamic workloads, reset the <filename>aqo</filename> extension to
140+
different query types, <filename>aqo</filename> may fail to provideperformance improvements if the types of the queries in the workload are constantly changing. For such dynamic workloads, reset the <filename>aqo</filename> extension to
141141
the <literal>controlled</literal> mode, or try using the <literal>forced</literal> mode.
142142
</para>
143143
<para>

‎doc/src/sgml/cfs.sgml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@
9898
most frequently used pages. Each page is fixed size (8kb by default). But if we compress page, then
9999
its size will depend on its content. So updated page can require more (or less) space than original page.
100100
So we may not always perform in-place update of the page. Instead of it we have to locate new space for the page and somehow release
101-
old space. There are two mainapporaches of solving this problem:
101+
old space. There are two mainapproaches to solving this problem:
102102
</para>
103103

104104
<variablelist>

‎doc/src/sgml/multimaster.sgml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@
7272

7373
<sect2 id="multimaster-limitations">
7474
<title>Limitations</title>
75-
<para>The <filename>multimaster</filename> extension takes care of the database replication in a fully automated way. You can perform write transactions on any node and work with temporary tables on each cluster nodesimultaneosly. However, make sure to take the following replication restrictions into account:</para>
75+
<para>The <filename>multimaster</filename> extension takes care of the database replication in a fully automated way. You can perform write transactions on any node and work with temporary tables on each cluster nodesimultaneously. However, make sure to take the following replication restrictions into account:</para>
7676
<itemizedlist>
7777
<listitem>
7878
<para>
@@ -832,7 +832,7 @@ pg_ctl -D <replaceable>datadir</replaceable> -l <replaceable>pg.log</replaceable
832832
<varlistentry><term><varname>multimaster.max_recovery_lag</varname><indexterm><primary><varname>multimaster.max_recovery_lag</varname></primary></indexterm></term><listitem><para>
833833
Maximal WAL lag
834834
size, in bytes. When a node is disconnected from the cluster, other
835-
nodes copy WALs for all newtrasactions into the replication slot of
835+
nodes copy WALs for all newtransactions into the replication slot of
836836
this node. Upon reaching the
837837
<varname>multimaster.max_recovery_lag</varname> value, the
838838
replication slot for the disconnected node is dropped to avoid

‎doc/src/sgml/pghintplan.sgml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<title>Synopsis</title>
1212
<para>
1313
&productname; uses cost-based optimizer, which utilizes data
14-
statistics, not static rules. The planner (optimizer)esitimates
14+
statistics, not static rules. The planner (optimizer)estimates
1515
costs of each possible execution plans for a SQL statement then
1616
the execution plan with the lowest cost finally be executed. The
1717
planner does its best to select the best execution plan, but
@@ -284,7 +284,7 @@ postgres=# /*+ Leading((t1 (t2 t3))) */ SELECT...
284284
condition. This hint can corrects the number by several methods,
285285
which are absolute value, addition/subtraction and
286286
multiplication. The parameters are the list of objects compose
287-
thetargetted join then operation. The following example shows
287+
thetargeted join then operation. The following example shows
288288
notations to correct the number of the join on a and b by the
289289
four correction methods.
290290
</para>
@@ -299,7 +299,7 @@ postgres=# /*+ Rows(a b *10) */ SELECT... ; Makes the number 10 times larger.
299299
<title>GUC temporarily setting</title>
300300
<para>
301301
<quote>Set</quote> hint sets GUC parameter values during the
302-
target statement is underplannning. In the following example,
302+
target statement is underplanning. In the following example,
303303
planning for the query is done with random_page_cost is 2.0.
304304
</para>
305305
<programlisting>
@@ -407,10 +407,10 @@ postgres=#
407407
<title>Limitations on multiple VALUES lists in FROM
408408
clauses</title>
409409
<para>
410-
Alloccurences of VALUES lists in FROM clauses in a query has
410+
Alloccurrences of VALUES lists in FROM clauses in a query has
411411
the same name <quote>*VALUES*</quote> irrespective of aliases
412412
syntactically given to them or shown in explain descriptions. So
413-
it cannot be hinted at all ifappeares twice or more in a target
413+
it cannot be hinted at all ifappears twice or more in a target
414414
query.
415415
</para>
416416
</sect3>
@@ -453,7 +453,7 @@ postgres=#
453453
Hints are effective on any objects with the target name even if
454454
they aren't apparent in the query, specifically objects in views.
455455
For that reason, you should create different views in which
456-
targetted objects have distinct aliases if you want to hint them
456+
targeted objects have distinct aliases if you want to hint them
457457
differently from the first view.
458458
</para>
459459
<para>
@@ -580,9 +580,9 @@ postgres=# WHERE aid IN (SELECT bid FROM pgbench_accounts a2 LIMIT 10);
580580
<sect3>
581581
<title>Object misspecifications</title>
582582
<para>
583-
Object misspecifications results silentingorance of the hints.
583+
Object misspecifications results silentignorance of the hints.
584584
This kind of error is reported as <quote>not used hints</quote>
585-
in the server log by the samecondtion to syntax errors.
585+
in the server log by the samecondition to syntax errors.
586586
</para>
587587
</sect3>
588588
<sect3>
@@ -643,7 +643,7 @@ postgres=# WHERE aid IN (SELECT bid FROM pgbench_accounts a2 LIMIT 10);
643643
<para>
644644
ECPG removes comments in queries written as embedded SQLs so
645645
hints cannot be passed form those queries. The only exception is
646-
that EXECUTE command passes given stringunmodifed. Please
646+
that EXECUTE command passes given stringunmodified. Please
647647
consider hint tables for this case.
648648
</para>
649649
</sect3>

‎doc/src/sgml/pgpro-scheduler.sgml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ Make sure to create the <filename>pgpro_scheduler</filename> extension for each
131131
<programlisting>
132132
<varname>schedule.max_parallel_workers</varname> = 3
133133
</programlisting>
134-
<para>By default, twobackgound workers for one-time jobs are available. These workers are not included into the <varname>schedule.max_workers</> number. Thus, one-time jobs can run in parallel with the scheduled jobs even if all the <varname>schedule.max_workers</> workers are busy.</para>
134+
<para>By default, twobackground workers for one-time jobs are available. These workers are not included into the <varname>schedule.max_workers</> number. Thus, one-time jobs can run in parallel with the scheduled jobs even if all the <varname>schedule.max_workers</> workers are busy.</para>
135135
</listitem>
136136
<listitem>
137137
<para>

‎doc/src/sgml/pgrepack.sgml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -525,7 +525,7 @@ CREATE EXTENSION pg_repack
525525
<para>
526526
For previous versions load the script
527527
<filename>$SHAREDIR/contrib/uninstall_pg_repack.sql</filename> into the database
528-
where the erroroccured and then load <filename>$SHAREDIR/contrib/pg_repack.sql</filename>
528+
where the erroroccurred and then load <filename>$SHAREDIR/contrib/pg_repack.sql</filename>
529529
again.
530530
</para>
531531

‎doc/src/sgml/release-proee-9.6.sgml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@
107107
use of <xref linkend="pgupgrade">, is required for those
108108
wishing to migrate data from any previous major release.</para>
109109

110-
<para>Dump/restore isneccessary when migrating from <productname>PostgreSQL</productname>
110+
<para>Dump/restore isnecessary when migrating from <productname>PostgreSQL</productname>
111111
or <productname>Postgres Pro Standard</productname> edition.</para>
112112

113113
<para>For upgrades from previous releases of <productname>Postgres Pro Standard</productname> or
@@ -193,7 +193,7 @@
193193
use of <xref linkend="pgupgrade">, is required for those
194194
wishing to migrate data from any previous major release.</para>
195195

196-
<para>Dump/restore isneccessary when migrating from <productname>PostgreSQL</productname>
196+
<para>Dump/restore isnecessary when migrating from <productname>PostgreSQL</productname>
197197
or <productname>Postgres Pro Standard</productname> edition.</para>
198198

199199
<para>For upgrades from previous releases of <productname>Postgres Pro Standard</productname> or from

‎doc/src/sgml/rum.sgml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<para>
2121
Slow ranking. The positional information is needed for ranking.
2222
<literal>GIN</literal> index doesn't store positions of lexems.
23-
So after index scan we need an additional heap scan toretreive
23+
So after index scan we need an additional heap scan toretrieve
2424
lexems positions.
2525
</para>
2626
</listitem>

‎doc/src/sgml/spgist.sgml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@
159159
</para>
160160
<para>
161161
By supporting the ordering &lt;-&gt; operator the quad_point_ops and kd_point_ops provide
162-
a user with the ability to perform a K-nearest-neighbour search over the indexed point dataset.
162+
a user with the ability to perform a K-nearest-neighbor search over the indexed point dataset.
163163
</para>
164164

165165
</sect1>

‎doc/src/sgml/storage.sgml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -777,7 +777,7 @@ data. Empty in ordinary tables.</entry>
777777
from the page start to the start of unallocated space, to the end of
778778
unallocated space, and to the start of the special space.
779779
Next are two 8-byte fields containing epoch, i. e. an offset, for
780-
short (4-byte)transacion IDs in this page. The next 2
780+
short (4-byte)transaction IDs in this page. The next 2
781781
bytes of the page header, <structfield>pd_pagesize_version</structfield>,
782782
store both the page size and a version indicator. Beginning with
783783
<productname>PostgreSQL</productname> 8.3 the version number is 4;

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp