home *** CD-ROM | disk | FTP | other *** search
/ Complete Linux / Complete Linux.iso / docs / apps / database / postgres / postgre2.z / postgre2 / ref / postquel / removeoperator < prev    next >
Encoding:
Text File  |  1992-08-27  |  769 b   |  33 lines

  1. .\" XXX standard disclaimer belongs here....
  2. .\" $Header: /private/postgres/ref/postquel/RCS/removeoperator,v 1.4 1992/07/14 06:07:30 ptong Exp $
  3. .SP "REMOVE OPERATOR" COMMANDS 6/14/90
  4. .XA 2 "Remove Operator"
  5. .uh NAME
  6. .lp
  7. remove operator \*- remove an operator from the system
  8. .uh SYNOPSIS
  9. .lp
  10. .(l
  11. \fBremove operator\fR opr_desc
  12. .)l
  13. .uh DESCRIPTION
  14. .lp
  15. This command drops an existing operator from the database.
  16. To execute this command you must be the owner of the operator.
  17. .lp
  18. .i Opr_desc
  19. is the name of the operator to be removed followed by a
  20. parenthesized list of the operand types for the operator.
  21. .uh EXAMPLE
  22. .lp
  23. .nf
  24. .ft C
  25. /* Remove power operator a^n for 4 byte integers */
  26.  
  27. remove operator ^ (int4, int4)
  28. .ft
  29. .fi
  30. .uh "SEE ALSO"
  31. .lp
  32. define operator(commands).
  33.