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

Commit5d00f98

Browse files
committed
Make the SQL command synopses appear less random.
1 parent5aa29e8 commit5d00f98

36 files changed

+147
-152
lines changed

‎doc/src/sgml/ref/alter_database.sgml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
$Header: /cvsroot/pgsql/doc/src/sgml/ref/alter_database.sgml,v 1.9 2003/09/09 18:28:52 tgl Exp $
2+
$Header: /cvsroot/pgsql/doc/src/sgml/ref/alter_database.sgml,v 1.10 2003/09/22 00:16:57 petere Exp $
33
PostgreSQL documentation
44
-->
55

@@ -20,8 +20,8 @@ PostgreSQL documentation
2020

2121
<refsynopsisdiv>
2222
<synopsis>
23-
ALTER DATABASE <replaceable class="PARAMETER">name</replaceable> SET <replaceable>variable</replaceable> { TO | = } { <replaceable>value</replaceable> | DEFAULT }
24-
ALTER DATABASE <replaceable class="PARAMETER">name</replaceable> RESET <replaceable>variable</replaceable>
23+
ALTER DATABASE <replaceable class="PARAMETER">name</replaceable> SET <replaceable>parameter</replaceable> { TO | = } { <replaceable>value</replaceable> | DEFAULT }
24+
ALTER DATABASE <replaceable class="PARAMETER">name</replaceable> RESET <replaceable>parameter</replaceable>
2525

2626
ALTER DATABASE <replaceable class="PARAMETER">name</replaceable> RENAME TO <replaceable>newname</replaceable>
2727
</synopsis>
@@ -70,12 +70,12 @@ ALTER DATABASE <replaceable class="PARAMETER">name</replaceable> RENAME TO <repl
7070
</varlistentry>
7171

7272
<varlistentry>
73-
<term><replaceable>variable</replaceable></term>
73+
<term><replaceable>parameter</replaceable></term>
7474
<term><replaceable>value</replaceable></term>
7575
<listitem>
7676
<para>
7777
Set the session default for this database of the specified
78-
configurationvariable to the given value. If
78+
configurationparameter to the given value. If
7979
<replaceable>value</replaceable> is <literal>DEFAULT</literal>
8080
or, equivalently, <literal>RESET</literal> is used, the
8181
database-specific variable setting is removed and the system-wide
@@ -86,7 +86,7 @@ ALTER DATABASE <replaceable class="PARAMETER">name</replaceable> RENAME TO <repl
8686

8787
<para>
8888
See <xref linkend="sql-set" endterm="sql-set-title"> and <xref linkend="runtime-config">
89-
for more information about allowedvariable names
89+
for more information about allowedparameter names
9090
and values.
9191
</para>
9292
</listitem>

‎doc/src/sgml/ref/alter_domain.sgml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
$Header: /cvsroot/pgsql/doc/src/sgml/ref/alter_domain.sgml,v 1.9 2003/09/09 18:28:52 tgl Exp $
2+
$Header: /cvsroot/pgsql/doc/src/sgml/ref/alter_domain.sgml,v 1.10 2003/09/22 00:16:57 petere Exp $
33
PostgreSQL documentation
44
-->
55

@@ -24,15 +24,15 @@ PostgreSQL documentation
2424

2525
<refsynopsisdiv>
2626
<synopsis>
27-
ALTER DOMAIN <replaceable class="PARAMETER">domain</replaceable>
28-
{ SET DEFAULT <replaceable class="PARAMETER">value</replaceable> | DROP DEFAULT }
29-
ALTER DOMAIN <replaceable class="PARAMETER">domain</replaceable>
27+
ALTER DOMAIN <replaceable class="PARAMETER">name</replaceable>
28+
{ SET DEFAULT <replaceable class="PARAMETER">expression</replaceable> | DROP DEFAULT }
29+
ALTER DOMAIN <replaceable class="PARAMETER">name</replaceable>
3030
{ SET | DROP } NOT NULL
31-
ALTER DOMAIN <replaceable class="PARAMETER">domain</replaceable>
31+
ALTER DOMAIN <replaceable class="PARAMETER">name</replaceable>
3232
ADD <replaceable class="PARAMETER">domain_constraint</replaceable>
33-
ALTER DOMAIN <replaceable class="PARAMETER">domain</replaceable>
33+
ALTER DOMAIN <replaceable class="PARAMETER">name</replaceable>
3434
DROP CONSTRAINT <replaceable class="PARAMETER">constraint_name</replaceable> [ RESTRICT | CASCADE ]
35-
ALTER DOMAIN <replaceable class="PARAMETER">domain</replaceable>
35+
ALTER DOMAIN <replaceable class="PARAMETER">name</replaceable>
3636
OWNER TO <replaceable class="PARAMETER">new_owner</replaceable>
3737
</synopsis>
3838
</refsynopsisdiv>
@@ -111,7 +111,7 @@ ALTER DOMAIN <replaceable class="PARAMETER">domain</replaceable>
111111
<para>
112112
<variablelist>
113113
<varlistentry>
114-
<term><replaceable class="PARAMETER"> domain</replaceable></term>
114+
<term><replaceable class="PARAMETER">name</replaceable></term>
115115
<listitem>
116116
<para>
117117
The name (possibly schema-qualified) of an existing domain to
@@ -121,7 +121,7 @@ ALTER DOMAIN <replaceable class="PARAMETER">domain</replaceable>
121121
</varlistentry>
122122

123123
<varlistentry>
124-
<term><replaceable class="PARAMETER">domain_constraint</replaceable></term>
124+
<term><replaceable class="PARAMETER">domain_constraint</replaceable></term>
125125
<listitem>
126126
<para>
127127
New domain constraint for the domain.
@@ -130,7 +130,7 @@ ALTER DOMAIN <replaceable class="PARAMETER">domain</replaceable>
130130
</varlistentry>
131131

132132
<varlistentry>
133-
<term><replaceable class="PARAMETER">constraint_name</replaceable></term>
133+
<term><replaceable class="PARAMETER">constraint_name</replaceable></term>
134134
<listitem>
135135
<para>
136136
Name of an existing constraint to drop.

‎doc/src/sgml/ref/alter_sequence.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/alter_sequence.sgml,v 1.4 2003/09/09 18:28:52 tgl Exp $
2+
$Header: /cvsroot/pgsql/doc/src/sgml/ref/alter_sequence.sgml,v 1.5 2003/09/22 00:16:57 petere Exp $
33
PostgreSQL documentation
44
-->
55

@@ -24,7 +24,7 @@ PostgreSQL documentation
2424

2525
<refsynopsisdiv>
2626
<synopsis>
27-
ALTER SEQUENCE <replaceable class="parameter">seqname</replaceable> [ INCREMENT [ BY ] <replaceable class="parameter">increment</replaceable> ]
27+
ALTER SEQUENCE <replaceable class="parameter">name</replaceable> [ INCREMENT [ BY ] <replaceable class="parameter">increment</replaceable> ]
2828
[ MINVALUE <replaceable class="parameter">minvalue</replaceable> | NO MINVALUE ] [ MAXVALUE <replaceable class="parameter">maxvalue</replaceable> | NO MAXVALUE ]
2929
[ RESTART [ WITH ] <replaceable class="parameter">start</replaceable> ] [ CACHE <replaceable class="parameter">cache</replaceable> ] [ [ NO ] CYCLE ]
3030
</synopsis>
@@ -46,7 +46,7 @@ ALTER SEQUENCE <replaceable class="parameter">seqname</replaceable> [ INCREMENT
4646
<para>
4747
<variablelist>
4848
<varlistentry>
49-
<term><replaceable class="parameter">seqname</replaceable></term>
49+
<term><replaceable class="parameter">name</replaceable></term>
5050
<listitem>
5151
<para>
5252
The name (optionally schema-qualified) of a sequence to be altered.

‎doc/src/sgml/ref/alter_table.sgml

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
$Header: /cvsroot/pgsql/doc/src/sgml/ref/alter_table.sgml,v 1.61 2003/09/09 18:28:52 tgl Exp $
2+
$Header: /cvsroot/pgsql/doc/src/sgml/ref/alter_table.sgml,v 1.62 2003/09/22 00:16:57 petere Exp $
33
PostgreSQL documentation
44
-->
55

@@ -20,33 +20,33 @@ PostgreSQL documentation
2020

2121
<refsynopsisdiv>
2222
<synopsis>
23-
ALTER TABLE [ ONLY ] <replaceable class="PARAMETER">table</replaceable> [ * ]
23+
ALTER TABLE [ ONLY ] <replaceable class="PARAMETER">name</replaceable> [ * ]
2424
ADD [ COLUMN ] <replaceable class="PARAMETER">column</replaceable> <replaceable class="PARAMETER">type</replaceable> [ <replaceable class="PARAMETER">column_constraint</replaceable> [ ... ] ]
25-
ALTER TABLE [ ONLY ] <replaceable class="PARAMETER">table</replaceable> [ * ]
25+
ALTER TABLE [ ONLY ] <replaceable class="PARAMETER">name</replaceable> [ * ]
2626
DROP [ COLUMN ] <replaceable class="PARAMETER">column</replaceable> [ RESTRICT | CASCADE ]
27-
ALTER TABLE [ ONLY ] <replaceable class="PARAMETER">table</replaceable> [ * ]
28-
ALTER [ COLUMN ] <replaceable class="PARAMETER">column</replaceable> { SET DEFAULT <replaceable class="PARAMETER">value</replaceable> | DROP DEFAULT }
29-
ALTER TABLE [ ONLY ] <replaceable class="PARAMETER">table</replaceable> [ * ]
27+
ALTER TABLE [ ONLY ] <replaceable class="PARAMETER">name</replaceable> [ * ]
28+
ALTER [ COLUMN ] <replaceable class="PARAMETER">column</replaceable> { SET DEFAULT <replaceable class="PARAMETER">expression</replaceable> | DROP DEFAULT }
29+
ALTER TABLE [ ONLY ] <replaceable class="PARAMETER">name</replaceable> [ * ]
3030
ALTER [ COLUMN ] <replaceable class="PARAMETER">column</replaceable> { SET | DROP } NOT NULL
31-
ALTER TABLE [ ONLY ] <replaceable class="PARAMETER">table</replaceable> [ * ]
31+
ALTER TABLE [ ONLY ] <replaceable class="PARAMETER">name</replaceable> [ * ]
3232
ALTER [ COLUMN ] <replaceable class="PARAMETER">column</replaceable> SET STATISTICS <replaceable class="PARAMETER">integer</replaceable>
33-
ALTER TABLE [ ONLY ] <replaceable class="PARAMETER">table</replaceable> [ * ]
33+
ALTER TABLE [ ONLY ] <replaceable class="PARAMETER">name</replaceable> [ * ]
3434
ALTER [ COLUMN ] <replaceable class="PARAMETER">column</replaceable> SET STORAGE { PLAIN | EXTERNAL | EXTENDED | MAIN }
35-
ALTER TABLE [ ONLY ] <replaceable class="PARAMETER">table</replaceable> [ * ]
35+
ALTER TABLE [ ONLY ] <replaceable class="PARAMETER">name</replaceable> [ * ]
3636
SET WITHOUT OIDS
37-
ALTER TABLE [ ONLY ] <replaceable class="PARAMETER">table</replaceable> [ * ]
37+
ALTER TABLE [ ONLY ] <replaceable class="PARAMETER">name</replaceable> [ * ]
3838
RENAME [ COLUMN ] <replaceable class="PARAMETER">column</replaceable> TO <replaceable
3939
class="PARAMETER">new_column</replaceable>
40-
ALTER TABLE <replaceable class="PARAMETER">table</replaceable>
41-
RENAME TO <replaceable class="PARAMETER">new_table</replaceable>
42-
ALTER TABLE [ ONLY ] <replaceable class="PARAMETER">table</replaceable> [ * ]
40+
ALTER TABLE <replaceable class="PARAMETER">name</replaceable>
41+
RENAME TO <replaceable class="PARAMETER">new_name</replaceable>
42+
ALTER TABLE [ ONLY ] <replaceable class="PARAMETER">name</replaceable> [ * ]
4343
ADD <replaceable class="PARAMETER">table_constraint</replaceable>
44-
ALTER TABLE [ ONLY ] <replaceable class="PARAMETER">table</replaceable> [ * ]
44+
ALTER TABLE [ ONLY ] <replaceable class="PARAMETER">name</replaceable> [ * ]
4545
DROP CONSTRAINT <replaceable class="PARAMETER">constraint_name</replaceable> [ RESTRICT | CASCADE ]
46-
ALTER TABLE <replaceable class="PARAMETER">table</replaceable>
47-
OWNER TO <replaceable class="PARAMETER">new_owner</replaceable>
48-
ALTER TABLE <replaceable class="PARAMETER">table</replaceable>
49-
CLUSTER ON <replaceable class="PARAMETER">index_name</replaceable>
46+
ALTER TABLE <replaceable class="PARAMETER">name</replaceable>
47+
OWNER TO <replaceable class="PARAMETER">new_owner</replaceable>
48+
ALTER TABLE <replaceable class="PARAMETER">name</replaceable>
49+
CLUSTER ON <replaceable class="PARAMETER">index_name</replaceable>
5050
</synopsis>
5151
</refsynopsisdiv>
5252

@@ -220,7 +220,7 @@ ALTER TABLE <replaceable class="PARAMETER">table</replaceable>
220220
<variablelist>
221221

222222
<varlistentry>
223-
<term><replaceable class="PARAMETER">table</replaceable></term>
223+
<term><replaceable class="PARAMETER">name</replaceable></term>
224224
<listitem>
225225
<para>
226226
The name (possibly schema-qualified) of an existing table to
@@ -264,7 +264,7 @@ ALTER TABLE <replaceable class="PARAMETER">table</replaceable>
264264
</varlistentry>
265265

266266
<varlistentry>
267-
<term><replaceable class="PARAMETER">new_table</replaceable></term>
267+
<term><replaceable class="PARAMETER">new_name</replaceable></term>
268268
<listitem>
269269
<para>
270270
New name for the table.

‎doc/src/sgml/ref/alter_trigger.sgml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
$Header: /cvsroot/pgsql/doc/src/sgml/ref/alter_trigger.sgml,v 1.6 2003/09/09 18:28:52 tgl Exp $
2+
$Header: /cvsroot/pgsql/doc/src/sgml/ref/alter_trigger.sgml,v 1.7 2003/09/22 00:16:57 petere Exp $
33
PostgreSQL documentation
44
-->
55

@@ -20,8 +20,7 @@ PostgreSQL documentation
2020

2121
<refsynopsisdiv>
2222
<synopsis>
23-
ALTER TRIGGER <replaceable class="PARAMETER">trigger</replaceable> ON <replaceable class="PARAMETER">table</replaceable>
24-
RENAME TO <replaceable class="PARAMETER">newname</replaceable>
23+
ALTER TRIGGER <replaceable class="PARAMETER">name</replaceable> ON <replaceable class="PARAMETER">table</replaceable> RENAME TO <replaceable class="PARAMETER">newname</replaceable>
2524
</synopsis>
2625
</refsynopsisdiv>
2726

@@ -45,7 +44,7 @@ ALTER TRIGGER <replaceable class="PARAMETER">trigger</replaceable> ON <replaceab
4544

4645
<variablelist>
4746
<varlistentry>
48-
<term><replaceable class="PARAMETER">trigger</replaceable></term>
47+
<term><replaceable class="PARAMETER">name</replaceable></term>
4948
<listitem>
5049
<para>
5150
The name of an existing trigger to alter.

‎doc/src/sgml/ref/alter_user.sgml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
$Header: /cvsroot/pgsql/doc/src/sgml/ref/alter_user.sgml,v 1.30 2003/09/09 18:28:52 tgl Exp $
2+
$Header: /cvsroot/pgsql/doc/src/sgml/ref/alter_user.sgml,v 1.31 2003/09/22 00:16:57 petere Exp $
33
PostgreSQL documentation
44
-->
55

@@ -20,7 +20,7 @@ PostgreSQL documentation
2020

2121
<refsynopsisdiv>
2222
<synopsis>
23-
ALTER USER <replaceable class="PARAMETER">username</replaceable> [ [ WITH ] <replaceable class="PARAMETER">option</replaceable> [ ... ] ]
23+
ALTER USER <replaceable class="PARAMETER">name</replaceable> [ [ WITH ] <replaceable class="PARAMETER">option</replaceable> [ ... ] ]
2424

2525
where <replaceable class="PARAMETER">option</replaceable> can be:
2626

@@ -29,10 +29,10 @@ where <replaceable class="PARAMETER">option</replaceable> can be:
2929
| CREATEUSER | NOCREATEUSER
3030
| VALID UNTIL '<replaceable class="PARAMETER">abstime</replaceable>'
3131

32-
ALTER USER <replaceable class="PARAMETER">username</replaceable> RENAME TO <replaceable>newname</replaceable>
32+
ALTER USER <replaceable class="PARAMETER">name</replaceable> RENAME TO <replaceable>newname</replaceable>
3333

34-
ALTER USER <replaceable class="PARAMETER">username</replaceable> SET <replaceable>variable</replaceable> { TO | = } { <replaceable>value</replaceable> | DEFAULT }
35-
ALTER USER <replaceable class="PARAMETER">username</replaceable> RESET <replaceable>variable</replaceable>
34+
ALTER USER <replaceable class="PARAMETER">name</replaceable> SET <replaceable>parameter</replaceable> { TO | = } { <replaceable>value</replaceable> | DEFAULT }
35+
ALTER USER <replaceable class="PARAMETER">name</replaceable> RESET <replaceable>parameter</replaceable>
3636
</synopsis>
3737
</refsynopsisdiv>
3838

@@ -75,7 +75,7 @@ ALTER USER <replaceable class="PARAMETER">username</replaceable> RESET <replacea
7575

7676
<variablelist>
7777
<varlistentry>
78-
<term><replaceable class="PARAMETER">username</replaceable></term>
78+
<term><replaceable class="PARAMETER">name</replaceable></term>
7979
<listitem>
8080
<para>
8181
The name of the user whose attributes are to be altered.
@@ -152,12 +152,12 @@ ALTER USER <replaceable class="PARAMETER">username</replaceable> RESET <replacea
152152
</varlistentry>
153153

154154
<varlistentry>
155-
<term><replaceable>variable</replaceable></term>
155+
<term><replaceable>parameter</replaceable></term>
156156
<term><replaceable>value</replaceable></term>
157157
<listitem>
158158
<para>
159159
Set this user's session default for the specified configuration
160-
variable to the given value. If
160+
parameter to the given value. If
161161
<replaceable>value</replaceable> is <literal>DEFAULT</literal>
162162
or, equivalently, <literal>RESET</literal> is used, the
163163
user-specific variable setting is removed and the user will
@@ -166,9 +166,9 @@ ALTER USER <replaceable class="PARAMETER">username</replaceable> RESET <replacea
166166
</para>
167167

168168
<para>
169-
See <xref linkend="sql-set" endterm="sql-set-title"> and <xref linkend="runtime-config">
170-
for more information about allowed variable names
171-
and values.
169+
See <xref linkend="sql-set" endterm="sql-set-title"> and <xref
170+
linkend="runtime-config">for more information about allowed
171+
parameter namesand values.
172172
</para>
173173
</listitem>
174174
</varlistentry>

‎doc/src/sgml/ref/close.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/close.sgml,v 1.18 2003/09/09 18:28:52 tgl Exp $
2+
$Header: /cvsroot/pgsql/doc/src/sgml/ref/close.sgml,v 1.19 2003/09/22 00:16:57 petere Exp $
33
PostgreSQL documentation
44
-->
55

@@ -20,7 +20,7 @@ PostgreSQL documentation
2020

2121
<refsynopsisdiv>
2222
<synopsis>
23-
CLOSE <replaceable class="PARAMETER">cursor</replaceable>
23+
CLOSE <replaceable class="PARAMETER">name</replaceable>
2424
</synopsis>
2525
</refsynopsisdiv>
2626

@@ -51,7 +51,7 @@ CLOSE <replaceable class="PARAMETER">cursor</replaceable>
5151

5252
<variablelist>
5353
<varlistentry>
54-
<term><replaceable class="PARAMETER">cursor</replaceable></term>
54+
<term><replaceable class="PARAMETER">name</replaceable></term>
5555
<listitem>
5656
<para>
5757
The name of an open cursor to close.

‎doc/src/sgml/ref/copy.sgml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
$Header: /cvsroot/pgsql/doc/src/sgml/ref/copy.sgml,v 1.50 2003/09/11 21:42:20 momjian Exp $
2+
$Header: /cvsroot/pgsql/doc/src/sgml/ref/copy.sgml,v 1.51 2003/09/22 00:16:57 petere Exp $
33
PostgreSQL documentation
44
-->
55

@@ -11,7 +11,7 @@ PostgreSQL documentation
1111

1212
<refnamediv>
1313
<refname>COPY</refname>
14-
<refpurpose>copy data betweenfilesandtables</refpurpose>
14+
<refpurpose>copy data betweena fileanda table</refpurpose>
1515
</refnamediv>
1616

1717
<indexterm zone="sql-copy">
@@ -20,15 +20,15 @@ PostgreSQL documentation
2020

2121
<refsynopsisdiv>
2222
<synopsis>
23-
COPY <replaceable class="parameter">table</replaceable> [ ( <replaceable class="parameter">column</replaceable> [, ...] ) ]
23+
COPY <replaceable class="parameter">tablename</replaceable> [ ( <replaceable class="parameter">column</replaceable> [, ...] ) ]
2424
FROM { '<replaceable class="parameter">filename</replaceable>' | STDIN }
2525
[ [ WITH ]
2626
[ BINARY ]
2727
[ OIDS ]
2828
[ DELIMITER [ AS ] '<replaceable class="parameter">delimiter</replaceable>' ]
2929
[ NULL [ AS ] '<replaceable class="parameter">null string</replaceable>' ] ]
3030

31-
COPY <replaceable class="parameter">table</replaceable> [ ( <replaceable class="parameter">column</replaceable> [, ...] ) ]
31+
COPY <replaceable class="parameter">tablename</replaceable> [ ( <replaceable class="parameter">column</replaceable> [, ...] ) ]
3232
TO { '<replaceable class="parameter">filename</replaceable>' | STDOUT }
3333
[ [ WITH ]
3434
[ BINARY ]
@@ -74,7 +74,7 @@ COPY <replaceable class="parameter">table</replaceable> [ ( <replaceable class="
7474

7575
<variablelist>
7676
<varlistentry>
77-
<term><replaceable class="parameter">table</replaceable></term>
77+
<term><replaceable class="parameter">tablename</replaceable></term>
7878
<listitem>
7979
<para>
8080
The name (possibly schema-qualified) of an existing table.
@@ -571,12 +571,12 @@ ZW ZIMBABWE
571571
still supported:
572572

573573
<synopsis>
574-
COPY [ BINARY ] <replaceable class="parameter">table</replaceable> [ WITH OIDS ]
574+
COPY [ BINARY ] <replaceable class="parameter">tablename</replaceable> [ WITH OIDS ]
575575
FROM { '<replaceable class="parameter">filename</replaceable>' | STDIN }
576576
[ [USING] DELIMITERS '<replaceable class="parameter">delimiter</replaceable>' ]
577577
[ WITH NULL AS '<replaceable class="parameter">null string</replaceable>' ]
578578

579-
COPY [ BINARY ] <replaceable class="parameter">table</replaceable> [ WITH OIDS ]
579+
COPY [ BINARY ] <replaceable class="parameter">tablename</replaceable> [ WITH OIDS ]
580580
TO { '<replaceable class="parameter">filename</replaceable>' | STDOUT }
581581
[ [USING] DELIMITERS '<replaceable class="parameter">delimiter</replaceable>' ]
582582
[ WITH NULL AS '<replaceable class="parameter">null string</replaceable>' ]

‎doc/src/sgml/ref/create_cast.sgml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!-- $Header: /cvsroot/pgsql/doc/src/sgml/ref/create_cast.sgml,v 1.13 2003/09/09 18:28:52 tgl Exp $ -->
1+
<!-- $Header: /cvsroot/pgsql/doc/src/sgml/ref/create_cast.sgml,v 1.14 2003/09/22 00:16:57 petere Exp $ -->
22

33
<refentry id="SQL-CREATECAST">
44
<refmeta>
@@ -8,7 +8,7 @@
88

99
<refnamediv>
1010
<refname>CREATE CAST</refname>
11-
<refpurpose>define auser-defined cast</refpurpose>
11+
<refpurpose>define anew cast</refpurpose>
1212
</refnamediv>
1313

1414
<indexterm zone="sql-createcast">

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp