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

Commit04e14fa

Browse files
committed
drop_function.sgml:
===================In Notes: Refer to CREATE FUNCTION for information on creating aggregate functions. ^^^^^^^^^^^^^^^^^^^I assume it must read C function instead.In Compatibility SQL/PSM: SQL/PSM is a proposed standard. We had that before: remove proposed.drop_index.sgml:================<REFNAME>: Removes existing indexes from a databaseas far as I can see index should be singular. The command description iswritten as if only one index can be removed at a time. Interestinglyenough, in v7.0.2 it was in fact singular. Am I mistaken here?drop_operator.sgml:===================In Outputs the arguments are referred to as type and type2, but the synopsisand Inputs section these are left_type and right_type, respectively. Also,oper is used in Outputs versus id in Inputs/Synopsis. In the translation Ifollow the replaceables used in the Inputs/Synopsis part.Frank Wegmann
1 parentcd11d33 commit04e14fa

File tree

3 files changed

+11
-10
lines changed

3 files changed

+11
-10
lines changed

‎doc/src/sgml/ref/create_operator.sgml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
$Header: /cvsroot/pgsql/doc/src/sgml/ref/create_operator.sgml,v 1.18 2001/01/13 23:58:55 petere Exp $
2+
$Header: /cvsroot/pgsql/doc/src/sgml/ref/create_operator.sgml,v 1.19 2001/05/08 17:51:30 momjian Exp $
33
Postgres documentation
44
-->
55

@@ -24,7 +24,8 @@ Postgres documentation
2424
</refsynopsisdivinfo>
2525
<synopsis>
2626
CREATE OPERATOR <replaceable>name</replaceable> ( PROCEDURE = <replaceable class="parameter">func_name</replaceable>
27-
[, LEFTARG = <replaceable class="parameter">type1</replaceable> ] [, RIGHTARG = <replaceable class="parameter">type2</replaceable> ]
27+
[, LEFTARG = <replaceable class="parameter">lefttype</replaceable>
28+
] [, RIGHTARG = <replaceable class="parameter">righttype</replaceable> ]
2829
[, COMMUTATOR = <replaceable class="parameter">com_op</replaceable> ] [, NEGATOR = <replaceable class="parameter">neg_op</replaceable> ]
2930
[, RESTRICT = <replaceable class="parameter">res_proc</replaceable> ] [, JOIN = <replaceable class="parameter">join_proc</replaceable> ]
3031
[, HASHES ] [, SORT1 = <replaceable class="parameter">left_sort_op</replaceable> ] [, SORT2 = <replaceable class="parameter">right_sort_op</replaceable> ] )
@@ -57,7 +58,7 @@ CREATE OPERATOR <replaceable>name</replaceable> ( PROCEDURE = <replaceable class
5758
</listitem>
5859
</varlistentry>
5960
<varlistentry>
60-
<term><replaceable class="parameter">type1</replaceable></term>
61+
<term><replaceable class="parameter">lefttype</replaceable></term>
6162
<listitem>
6263
<para>
6364
The type of the left-hand argument of the operator, if any.
@@ -66,7 +67,7 @@ CREATE OPERATOR <replaceable>name</replaceable> ( PROCEDURE = <replaceable class
6667
</listitem>
6768
</varlistentry>
6869
<varlistentry>
69-
<term><replaceable class="parameter">type2</replaceable></term>
70+
<term><replaceable class="parameter">righttype</replaceable></term>
7071
<listitem>
7172
<para>
7273
The type of the right-hand argument of the operator, if any.

‎doc/src/sgml/ref/drop_index.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/drop_index.sgml,v 1.9 2000/12/25 23:15:26 petere Exp $
2+
$Header: /cvsroot/pgsql/doc/src/sgml/ref/drop_index.sgml,v 1.10 2001/05/08 17:51:30 momjian Exp $
33
Postgres documentation
44
-->
55

@@ -15,7 +15,7 @@ Postgres documentation
1515
DROP INDEX
1616
</refname>
1717
<refpurpose>
18-
Removesexisting indexes froma database
18+
Removesan index fromthe database
1919
</refpurpose>
2020
</refnamediv>
2121
<refsynopsisdiv>

‎doc/src/sgml/ref/drop_operator.sgml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
$Header: /cvsroot/pgsql/doc/src/sgml/ref/drop_operator.sgml,v 1.9 2000/12/25 23:15:26 petere Exp $
2+
$Header: /cvsroot/pgsql/doc/src/sgml/ref/drop_operator.sgml,v 1.10 2001/05/08 17:51:30 momjian Exp $
33
Postgres documentation
44
-->
55

@@ -88,7 +88,7 @@ DROP
8888
</varlistentry>
8989
<varlistentry>
9090
<term><computeroutput>
91-
ERROR: RemoveOperator: binary operator '<replaceable class="PARAMETER">oper</replaceable>' taking '<replaceable class="PARAMETER">type</replaceable>' and '<replaceable class="PARAMETER">type2</replaceable>' does not exist
91+
ERROR: RemoveOperator: binary operator '<replaceable class="PARAMETER">oper</replaceable>' taking '<replaceable class="PARAMETER">lefttype</replaceable>' and '<replaceable class="PARAMETER">righttype</replaceable>' does not exist
9292
</computeroutput></term>
9393
<listitem>
9494
<para>
@@ -98,7 +98,7 @@ ERROR: RemoveOperator: binary operator '<replaceable class="PARAMETER">oper</re
9898
</varlistentry>
9999
<varlistentry>
100100
<term><computeroutput>
101-
ERROR:RemoveOperator: left unary operator '<replaceable class="PARAMETER">oper</replaceable>' taking '<replaceable class="PARAMETER">type</replaceable>' does not exist
101+
ERROR: RemoveOperator: left unary operator '<replaceable class="PARAMETER">oper</replaceable>' taking '<replaceable class="PARAMETER">lefttype</replaceable>' does not exist
102102
</computeroutput></term>
103103
<listitem>
104104
<para>
@@ -109,7 +109,7 @@ ERROR: RemoveOperator: left unary operator '<replaceable class="PARAMETER">oper
109109
</varlistentry>
110110
<varlistentry>
111111
<term><computeroutput>
112-
ERROR:RemoveOperator: right unary operator '<replaceable class="PARAMETER">oper</replaceable>' taking '<replaceable class="PARAMETER">type</replaceable>' does not exist
112+
ERROR: RemoveOperator: right unary operator '<replaceable class="PARAMETER">oper</replaceable>' taking '<replaceable class="PARAMETER">righttype</replaceable>' does not exist
113113
</computeroutput></term>
114114
<listitem>
115115
<para>

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp