11<!--
2- $Header: /cvsroot/pgsql/doc/src/sgml/ref/drop_operator.sgml,v 1.7 2000/10/05 19:48:18 momjian Exp $
2+ $Header: /cvsroot/pgsql/doc/src/sgml/ref/drop_operator.sgml,v 1.8 2000/10/23 00:46:07 tgl Exp $
33Postgres documentation
44-->
55
@@ -24,7 +24,7 @@ Postgres documentation
2424 <date>1999-07-20</date>
2525 </refsynopsisdivinfo>
2626 <synopsis>
27- DROP OPERATOR <replaceable class="PARAMETER">id</replaceable> ( <replaceable class="PARAMETER">type </replaceable> | NONE[,...] )
27+ DROP OPERATOR <replaceable class="PARAMETER">id</replaceable> ( <replaceable class="PARAMETER">lefttype </replaceable> | NONE, <replaceable class="PARAMETER">righttype</replaceable> | NONE )
2828 </synopsis>
2929
3030 <refsect2 id="R2-SQL-DROPOPERATOR-1">
@@ -45,10 +45,20 @@ DROP OPERATOR <replaceable class="PARAMETER">id</replaceable> ( <replaceable cla
4545 </listitem>
4646 </varlistentry>
4747 <varlistentry>
48- <term><replaceable class="parameter">type </replaceable></term>
48+ <term><replaceable class="parameter">lefttype </replaceable></term>
4949 <listitem>
5050 <para>
51- The type of function parameters.
51+ The type of the operator's left argument; write <literal>NONE</literal> if the
52+ operator has no left argument.
53+ </para>
54+ </listitem>
55+ </varlistentry>
56+ <varlistentry>
57+ <term><replaceable class="parameter">righttype</replaceable></term>
58+ <listitem>
59+ <para>
60+ The type of the operator's right argument; write <literal>NONE</literal> if the
61+ operator has no right argument.
5262 </para>
5363 </listitem>
5464 </varlistentry>
@@ -127,7 +137,7 @@ ERROR: RemoveOperator: right unary operator '<replaceable class="PARAMETER">ope
127137 </para>
128138 <para>
129139 The left or right type of a left or right unary
130- operator, respectively,may be specified as <literal>NONE</literal>.
140+ operator, respectively,must be specified as <literal>NONE</literal>.
131141 </para>
132142
133143 <refsect2 id="R2-SQL-DROPOPERATOR-3">
@@ -166,13 +176,13 @@ DROP OPERATOR ^ (int4, int4);
166176 </programlisting>
167177 </para>
168178 <para>
169- Remove left unary negation operator (<literal>b ! </literal>) for booleans:
179+ Remove left unary negation operator (<literal>! b </literal>) for booleans:
170180 <programlisting>
171181DROP OPERATOR ! (none, bool);
172182 </programlisting>
173183 </para>
174184 <para>
175- Remove right unary factorial operator (<literal>! i </literal>) for
185+ Remove right unary factorial operator (<literal>i ! </literal>) for
176186 <literal>int4</literal>:
177187 <programlisting>
178188DROP OPERATOR ! (int4, none);