head	1.4;
access;
symbols;
locks; strict;
comment	@# @;


1.4
date	92.07.14.06.07.30;	author ptong;	state Exp;
branches;
next	1.3;

1.3
date	92.07.14.05.54.17;	author ptong;	state Exp;
branches;
next	1.2;

1.2
date	90.07.21.18.29.19;	author kemnitz;	state Exp;
branches;
next	1.1;

1.1
date	90.07.18.16.22.23;	author mao;	state Exp;
branches;
next	;


desc
@man page for the removeoperator postquel command
@


1.4
log
@fixed up
@
text
@.\" XXX standard disclaimer belongs here....
.\" $Header: /home/postgres/mer/refs/postquel/RCS/removeoperator,v 1.3 1992/07/14 05:54:17 ptong Exp ptong $
.SP "REMOVE OPERATOR" COMMANDS 6/14/90
.XA 2 "Remove Operator"
.uh NAME
.lp
remove operator \*- remove an operator from the system
.uh SYNOPSIS
.lp
.(l
\fBremove operator\fR opr_desc
.)l
.uh DESCRIPTION
.lp
This command drops an existing operator from the database.
To execute this command you must be the owner of the operator.
.lp
.i Opr_desc
is the name of the operator to be removed followed by a
parenthesized list of the operand types for the operator.
.uh EXAMPLE
.lp
.nf
.ft C
/* Remove power operator a^n for 4 byte integers */

remove operator ^ (int4, int4)
.ft
.fi
.uh "SEE ALSO"
.lp
define operator(commands).
@


1.3
log
@reformated
@
text
@d2 1
a2 1
.\" $Header: /home/postgres/mer/refs/postquel/RCS/removeoperator,v 1.2 1990/07/21 18:29:19 kemnitz Exp ptong $
d22 1
@


1.2
log
@Made a better example.
@
text
@d2 1
a2 1
.\" $Header: RCS/removeoperator,v 1.1 90/07/18 16:22:23 mao Exp Locker: kemnitz $
d10 3
a12 2
.b "remove operator"
opr_desc
d23 2
a24 1
/* Remove the power operator, a^n, for 4 byte integers */
d26 2
a27 1
   remove operator ^ (int4, int4)
@


1.1
log
@Initial revision
@
text
@d2 1
a2 1
.\" $Header: removeoperator,v 1.3 88/05/29 20:51:56 hirohama Exp $
d22 1
a22 1
/* Remove the sqrt operator */
d24 1
a24 1
   remove operator sqrt (int4, int4)
@
