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

Commit5194b9d

Browse files
committed
Spell and markup checking
1 parentee0e525 commit5194b9d

File tree

70 files changed

+728
-731
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

70 files changed

+728
-731
lines changed

‎doc/src/sgml/arch-dev.sgml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!-- $PostgreSQL: pgsql/doc/src/sgml/arch-dev.sgml,v 2.34 2010/04/03 07:22:52 petere Exp $ -->
1+
<!-- $PostgreSQL: pgsql/doc/src/sgml/arch-dev.sgml,v 2.35 2010/08/17 04:37:20 petere Exp $ -->
22

33
<chapter id="overview">
44
<title>Overview of PostgreSQL Internals</title>
@@ -463,7 +463,7 @@
463463
needed, plus any auxiliary steps needed, such as sort nodes or
464464
aggregate-function calculation nodes. Most of these plan node
465465
types have the additional ability to do <firstterm>selection</>
466-
(discarding rows that do not meet a specifiedboolean condition)
466+
(discarding rows that do not meet a specifiedBoolean condition)
467467
and <firstterm>projection</> (computation of a derived column set
468468
based on given column values, that is, evaluation of scalar
469469
expressions where needed). One of the responsibilities of the

‎doc/src/sgml/bki.sgml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!-- $PostgreSQL: pgsql/doc/src/sgml/bki.sgml,v 1.23 2010/01/05 01:06:55 tgl Exp $ -->
1+
<!-- $PostgreSQL: pgsql/doc/src/sgml/bki.sgml,v 1.24 2010/08/17 04:37:20 petere Exp $ -->
22

33
<chapter id="bki">
44
<title><acronym>BKI</acronym> Backend Interface</title>
@@ -122,7 +122,7 @@
122122
The table is created as shared if <literal>shared_relation</> is
123123
specified.
124124
It will have OIDs unless <literal>without_oids</> is specified.
125-
The table'srowtype OID (<structname>pg_type</> OID) can optionally
125+
The table'srow type OID (<structname>pg_type</> OID) can optionally
126126
be specified via the <literal>rowtype_oid</> clause; if not specified,
127127
an OID is automatically generated for it. (The <literal>rowtype_oid</>
128128
clause is useless if <literal>bootstrap</> is specified, but it can be

‎doc/src/sgml/btree-gin.sgml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!-- $PostgreSQL: pgsql/doc/src/sgml/btree-gin.sgml,v 1.1 2009/03/25 23:20:01 tgl Exp $ -->
1+
<!-- $PostgreSQL: pgsql/doc/src/sgml/btree-gin.sgml,v 1.2 2010/08/17 04:37:20 petere Exp $ -->
22

33
<sect1 id="btree-gin">
44
<title>btree_gin</title>
@@ -9,7 +9,7 @@
99

1010
<para>
1111
<filename>btree_gin</> provides sample GIN operator classes that
12-
implement B-Tree equivalent behavior for the data types
12+
implement B-tree equivalent behavior for the data types
1313
<type>int2</>, <type>int4</>, <type>int8</>, <type>float4</>,
1414
<type>float8</>, <type>timestamp with time zone</>,
1515
<type>timestamp without time zone</>, <type>time with time zone</>,
@@ -21,12 +21,12 @@
2121

2222
<para>
2323
In general, these operator classes will not outperform the equivalent
24-
standardbtree index methods, and they lack one major feature of the
25-
standardbtree code: the ability to enforce uniqueness. However,
24+
standardB-tree index methods, and they lack one major feature of the
25+
standardB-tree code: the ability to enforce uniqueness. However,
2626
they are useful for GIN testing and as a base for developing other
2727
GIN operator classes. Also, for queries that test both a GIN-indexable
28-
column and abtree-indexable column, it might be more efficient to create
29-
amulti-column GIN index that uses one of theseopclasses than to create
28+
column and aB-tree-indexable column, it might be more efficient to create
29+
amulticolumn GIN index that uses one of theseoperator classes than to create
3030
two separate indexes that would have to be combined via bitmap ANDing.
3131
</para>
3232

‎doc/src/sgml/btree-gist.sgml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!-- $PostgreSQL: pgsql/doc/src/sgml/btree-gist.sgml,v 1.7 2010/08/03 15:15:31 tgl Exp $ -->
1+
<!-- $PostgreSQL: pgsql/doc/src/sgml/btree-gist.sgml,v 1.8 2010/08/17 04:37:20 petere Exp $ -->
22

33
<sect1 id="btree-gist">
44
<title>btree_gist</title>
@@ -9,7 +9,7 @@
99

1010
<para>
1111
<filename>btree_gist</> provides sample GiST operator classes that
12-
implement B-Tree equivalent behavior for the data types
12+
implement B-tree equivalent behavior for the data types
1313
<type>int2</>, <type>int4</>, <type>int8</>, <type>float4</>,
1414
<type>float8</>, <type>numeric</>, <type>timestamp with time zone</>,
1515
<type>timestamp without time zone</>, <type>time with time zone</>,
@@ -21,8 +21,8 @@
2121

2222
<para>
2323
In general, these operator classes will not outperform the equivalent
24-
standardbtree index methods, and they lack one major feature of the
25-
standardbtree code: the ability to enforce uniqueness. However,
24+
standardB-tree index methods, and they lack one major feature of the
25+
standardB-tree code: the ability to enforce uniqueness. However,
2626
they are useful for GiST testing and as a base for developing other
2727
GiST operator classes.
2828
</para>

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp