diff --git a/doc/src/sgml/ref/create_operator.sgml b/doc/src/sgml/ref/create_operator.sgml index 089fcebb079..a4daba49cbd 100644 --- a/doc/src/sgml/ref/create_operator.sgml +++ b/doc/src/sgml/ref/create_operator.sgml @@ -1,5 +1,5 @@ @@ -24,7 +24,8 @@ Postgres documentation CREATE OPERATOR name ( PROCEDURE = func_name - [, LEFTARG = type1 ] [, RIGHTARG = type2 ] + [, LEFTARG = lefttype + ] [, RIGHTARG = righttype ] [, COMMUTATOR = com_op ] [, NEGATOR = neg_op ] [, RESTRICT = res_proc ] [, JOIN = join_proc ] [, HASHES ] [, SORT1 = left_sort_op ] [, SORT2 = right_sort_op ] ) @@ -57,7 +58,7 @@ CREATE OPERATOR name ( PROCEDURE = - type1 + lefttype The type of the left-hand argument of the operator, if any. @@ -66,7 +67,7 @@ CREATE OPERATOR name ( PROCEDURE = - type2 + righttype 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 a72eef030dd..ad9edd92f11 100644 --- a/doc/src/sgml/ref/drop_index.sgml +++ b/doc/src/sgml/ref/drop_index.sgml @@ -1,5 +1,5 @@ @@ -15,7 +15,7 @@ Postgres documentation DROP INDEX - Removes existing indexes from a database + Removes an index from the database diff --git a/doc/src/sgml/ref/drop_operator.sgml b/doc/src/sgml/ref/drop_operator.sgml index b8a24c4e5bc..375cd0e5967 100644 --- a/doc/src/sgml/ref/drop_operator.sgml +++ b/doc/src/sgml/ref/drop_operator.sgml @@ -1,5 +1,5 @@ @@ -88,7 +88,7 @@ DROP -ERROR: RemoveOperator: binary operator 'oper' taking 'type' and 'type2' does not exist +ERROR: RemoveOperator: binary operator 'oper' taking 'lefttype' and 'righttype' does not exist @@ -98,7 +98,7 @@ ERROR: RemoveOperator: binary operator 'oper -ERROR: RemoveOperator: left unary operator 'oper' taking 'type' does not exist +ERROR: RemoveOperator: left unary operator 'oper' taking 'lefttype' does not exist @@ -109,7 +109,7 @@ ERROR: RemoveOperator: left unary operator 'oper -ERROR: RemoveOperator: right unary operator 'oper' taking 'type' does not exist +ERROR: RemoveOperator: right unary operator 'oper' taking 'righttype' does not exist