diff --git a/doc/src/sgml/ref/create_operator.sgml b/doc/src/sgml/ref/create_operator.sgml index 089fcebb079cf0dd9f2f9757b204632e19feaa87..a4daba49cbd07a86c682abfff482d87d5273ceb9 100644 --- a/doc/src/sgml/ref/create_operator.sgml +++ b/doc/src/sgml/ref/create_operator.sgml @@ -1,5 +1,5 @@ <!-- -$Header: /cvsroot/pgsql/doc/src/sgml/ref/create_operator.sgml,v 1.18 2001/01/13 23:58:55 petere Exp $ +$Header: /cvsroot/pgsql/doc/src/sgml/ref/create_operator.sgml,v 1.19 2001/05/08 17:51:30 momjian Exp $ Postgres documentation --> @@ -24,7 +24,8 @@ Postgres documentation </refsynopsisdivinfo> <synopsis> CREATE OPERATOR <replaceable>name</replaceable> ( PROCEDURE = <replaceable class="parameter">func_name</replaceable> - [, LEFTARG = <replaceable class="parameter">type1</replaceable> ] [, RIGHTARG = <replaceable class="parameter">type2</replaceable> ] + [, LEFTARG = <replaceable class="parameter">lefttype</replaceable> + ] [, RIGHTARG = <replaceable class="parameter">righttype</replaceable> ] [, COMMUTATOR = <replaceable class="parameter">com_op</replaceable> ] [, NEGATOR = <replaceable class="parameter">neg_op</replaceable> ] [, RESTRICT = <replaceable class="parameter">res_proc</replaceable> ] [, JOIN = <replaceable class="parameter">join_proc</replaceable> ] [, 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 </listitem> </varlistentry> <varlistentry> - <term><replaceable class="parameter">type1</replaceable></term> + <term><replaceable class="parameter">lefttype</replaceable></term> <listitem> <para> The type of the left-hand argument of the operator, if any. @@ -66,7 +67,7 @@ CREATE OPERATOR <replaceable>name</replaceable> ( PROCEDURE = <replaceable class </listitem> </varlistentry> <varlistentry> - <term><replaceable class="parameter">type2</replaceable></term> + <term><replaceable class="parameter">righttype</replaceable></term> <listitem> <para> The type of the right-hand argument of the operator, if any. diff --git a/doc/src/sgml/ref/drop_index.sgml b/doc/src/sgml/ref/drop_index.sgml index a72eef030dd11e9740007fa2dda38f49d6a60ace..ad9edd92f11e3604ae360ffb309bcc30a1d30e9e 100644 --- a/doc/src/sgml/ref/drop_index.sgml +++ b/doc/src/sgml/ref/drop_index.sgml @@ -1,5 +1,5 @@ <!-- -$Header: /cvsroot/pgsql/doc/src/sgml/ref/drop_index.sgml,v 1.9 2000/12/25 23:15:26 petere Exp $ +$Header: /cvsroot/pgsql/doc/src/sgml/ref/drop_index.sgml,v 1.10 2001/05/08 17:51:30 momjian Exp $ Postgres documentation --> @@ -15,7 +15,7 @@ Postgres documentation DROP INDEX </refname> <refpurpose> - Removes existing indexes from a database + Removes an index from the database </refpurpose> </refnamediv> <refsynopsisdiv> diff --git a/doc/src/sgml/ref/drop_operator.sgml b/doc/src/sgml/ref/drop_operator.sgml index b8a24c4e5bc2c594ada27f06c858ae11d98ae07e..375cd0e596708fc26a29b70a404643b742450c4a 100644 --- a/doc/src/sgml/ref/drop_operator.sgml +++ b/doc/src/sgml/ref/drop_operator.sgml @@ -1,5 +1,5 @@ <!-- -$Header: /cvsroot/pgsql/doc/src/sgml/ref/drop_operator.sgml,v 1.9 2000/12/25 23:15:26 petere Exp $ +$Header: /cvsroot/pgsql/doc/src/sgml/ref/drop_operator.sgml,v 1.10 2001/05/08 17:51:30 momjian Exp $ Postgres documentation --> @@ -88,7 +88,7 @@ DROP </varlistentry> <varlistentry> <term><computeroutput> -ERROR: RemoveOperator: binary operator '<replaceable class="PARAMETER">oper</replaceable>' taking '<replaceable class="PARAMETER">type</replaceable>' and '<replaceable class="PARAMETER">type2</replaceable>' does not exist +ERROR: RemoveOperator: binary operator '<replaceable class="PARAMETER">oper</replaceable>' taking '<replaceable class="PARAMETER">lefttype</replaceable>' and '<replaceable class="PARAMETER">righttype</replaceable>' does not exist </computeroutput></term> <listitem> <para> @@ -98,7 +98,7 @@ ERROR: RemoveOperator: binary operator '<replaceable class="PARAMETER">oper</re </varlistentry> <varlistentry> <term><computeroutput> -ERROR: RemoveOperator: left unary operator '<replaceable class="PARAMETER">oper</replaceable>' taking '<replaceable class="PARAMETER">type</replaceable>' does not exist +ERROR: RemoveOperator: left unary operator '<replaceable class="PARAMETER">oper</replaceable>' taking '<replaceable class="PARAMETER">lefttype</replaceable>' does not exist </computeroutput></term> <listitem> <para> @@ -109,7 +109,7 @@ ERROR: RemoveOperator: left unary operator '<replaceable class="PARAMETER">oper </varlistentry> <varlistentry> <term><computeroutput> -ERROR: RemoveOperator: right unary operator '<replaceable class="PARAMETER">oper</replaceable>' taking '<replaceable class="PARAMETER">type</replaceable>' does not exist +ERROR: RemoveOperator: right unary operator '<replaceable class="PARAMETER">oper</replaceable>' taking '<replaceable class="PARAMETER">righttype</replaceable>' does not exist </computeroutput></term> <listitem> <para>