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

Commita33bcf9

Browse files
committed
typo fix
1 parented5003c commita33bcf9

File tree

3 files changed

+14
-14
lines changed

3 files changed

+14
-14
lines changed

‎doc/src/sgml/ref/set.sgml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
$Header: /cvsroot/pgsql/doc/src/sgml/ref/set.sgml,v 1.48 2000/08/29 20:02:09 momjian Exp $
2+
$Header: /cvsroot/pgsql/doc/src/sgml/ref/set.sgml,v 1.49 2000/09/12 21:12:45 momjian Exp $
33
Postgres documentation
44
-->
55

@@ -59,7 +59,7 @@ SET TIME ZONE { '<replaceable class="PARAMETER">timezone</replaceable>' | LOCAL
5959
<term>NAMES</term>
6060
<listitem>
6161
<para>
62-
Sets themulti-byte client encoding. The specified encoding
62+
Sets themultibyte client encoding. The specified encoding
6363
must be supported by the backend.
6464
</para>
6565

@@ -220,7 +220,7 @@ SELECT setseed(<replaceable>value</replaceable>);
220220
<term>SERVER_ENCODING</term>
221221
<listitem>
222222
<para>
223-
Sets themulti-byte server encoding.
223+
Sets themultibyte server encoding.
224224
</para>
225225

226226
<para>

‎doc/src/sgml/ref/vacuum.sgml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
$Header: /cvsroot/pgsql/doc/src/sgml/ref/vacuum.sgml,v 1.9 2000/04/14 17:37:54 momjian Exp $
2+
$Header: /cvsroot/pgsql/doc/src/sgml/ref/vacuum.sgml,v 1.10 2000/09/12 21:12:45 momjian Exp $
33
Postgres documentation
44
-->
55

@@ -180,7 +180,7 @@ NOTICE: Index <replaceable class="PARAMETER">index</replaceable>: Pages 28;
180180
</para>
181181
<para>
182182
We recommend that active production databases be
183-
<command>VACUUMM</command>-ed nightly, in order to keep remove
183+
<command>VACUUM</command>-ed nightly, in order to keep remove
184184
expired rows. After copying a large class into
185185
<productname>Postgres</productname> or after deleting a large number
186186
of records, it may be a good idea to issue a <command>VACUUM

‎doc/src/sgml/release.sgml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
$Header: /cvsroot/pgsql/doc/src/sgml/release.sgml,v 1.58 2000/08/29 20:02:07 momjian Exp $
2+
$Header: /cvsroot/pgsql/doc/src/sgml/release.sgml,v 1.59 2000/09/12 21:12:44 momjian Exp $
33
-->
44

55
<chapter id="release">
@@ -585,7 +585,7 @@ Performance
585585
Prevent exponential space consumption with many AND's and OR's (Tom)
586586
Collect attribute selectivity values for system columns (Tom)
587587
Reduce memory usage of aggregates (Tom)
588-
Fix for LIKE optimization to use indexes withmulti-byte encodings (Tom)
588+
Fix for LIKE optimization to use indexes withmultibyte encodings (Tom)
589589
Fix r-tree index optimizer selectivity (Thomas)
590590
Improve optimizer selectivity computations and functions (Tom)
591591
Optimize btree searching for cases where many equal keys exist (Tom)
@@ -1144,7 +1144,7 @@ New moddatetime contrib(Terry)
11441144
Update to pgaccess 0.96(Constantin)
11451145
Add routines for single-byte "char" type(Thomas)
11461146
Improved substr() function(Thomas)
1147-
Improvedmulti-byte handling(Tatsuo)
1147+
Improvedmultibyte handling(Tatsuo)
11481148
Multi-version concurrency control/MVCC(Vadim)
11491149
New Serialized mode(Vadim)
11501150
Fix for tables over 2gigs(Peter)
@@ -1335,7 +1335,7 @@ Change exp() behavior to generate error on underflow(Thomas)
13351335
pg_dump fixes for memory leak, inheritance constraints, layout change
13361336
update pgaccess to 0.93
13371337
Fix prototype for 64-bit platforms
1338-
Multi-byte fixes(Tatsuo)
1338+
Multibyte fixes(Tatsuo)
13391339
New ecpg man page
13401340
Fix memory overruns(Tatsuo)
13411341
Fix for lo_import() crash(Bruce)
@@ -1489,7 +1489,7 @@ Enhancements
14891489
Upgrade ecpg and ecpglib,see src/interfaces/ecpc/ChangeLog(Michael)
14901490
Show the index used in an EXPLAIN(Zeugswetter)
14911491
EXPLAIN invokes rule system and shows plan(s) for rewritten queries(Jan)
1492-
Multi-byte awareness of many data types and functions, via configure(Tatsuo)
1492+
Multibyte awareness of many data types and functions, via configure(Tatsuo)
14931493
New configure --with-mb option(Tatsuo)
14941494
New initdb --pgencoding option(Tatsuo)
14951495
New createdb -E multibyte option(Tatsuo)
@@ -1535,7 +1535,7 @@ Add -error option to libpgtcl's pg_result command(Tom)
15351535
New locale patch, see docs/README/locale(Oleg)
15361536
Fix for pg_dump so CONSTRAINT and CHECK syntax is correct(ccb)
15371537
New contrib/lo code for large object orphan removal(Peter)
1538-
New psql command "SET CLIENT_ENCODING TO 'encoding'" formulti-bytes
1538+
New psql command "SET CLIENT_ENCODING TO 'encoding'" formultibytes
15391539
feature, see /doc/README.mb(Tatsuo)
15401540
/contrib/noupdate code to revoke update permission on a column
15411541
Libpq can now be compiled on win32(Magnus)
@@ -1628,7 +1628,7 @@ Source Tree Changes
16281628
Inline some small functions called for every row(Bruce)
16291629
Alpha/linux fixes
16301630
Hp/UX cleanups(Tom)
1631-
Multi-byte regression tests(Soonmyung.)
1631+
Multibyte regression tests(Soonmyung.)
16321632
Remove --disabled options from configure
16331633
Define PGDOC to use POSTGRESDIR by default
16341634
Make regression optional
@@ -1759,7 +1759,7 @@ ASSERT fixes(Bruce)
17591759
<itemizedlist>
17601760
<listitem>
17611761
<para>
1762-
Additional support formulti-byte character sets.
1762+
Additional support formultibyte character sets.
17631763
</para>
17641764
</listitem>
17651765

@@ -1807,7 +1807,7 @@ fix for redefining builtin functions(Thomas)
18071807
ultrix4 cleanup
18081808
upgrade to pg_access 0.83
18091809
updated CLUSTER manual page
1810-
multi-byte character set support, see doc/README.mb(Tatsuo)
1810+
multibyte character set support, see doc/README.mb(Tatsuo)
18111811
configure --with-pgport fix
18121812
pg_ident fix
18131813
big-endian fix for backend communications(Kataoka)

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp