drop_operator.l
上传用户:blenddy
上传日期:2007-01-07
资源大小:6495k
文件大小:1k
源码类别:

数据库系统

开发平台:

Unix_Linux

  1. ." This is -*-nroff-*-
  2. ." XXX standard disclaimer belongs here....
  3. ." $Header: /usr/local/cvsroot/pgsql/src/man/Attic/drop_operator.l,v 1.4 1998/06/23 17:52:36 momjian Exp $
  4. .TH "DROP OPERATOR" SQL 11/05/95 PostgreSQL PostgreSQL
  5. .SH NAME
  6. drop operator - remove an operator from the system
  7. .SH SYNOPSIS
  8. .nf
  9. fBdrop operatorfR opr_desc
  10. .fi
  11. .SH DESCRIPTION
  12. This command drops an existing operator from the database.  To execute
  13. this command you must be the owner of the operator.
  14. .PP
  15. .IR Opr_desc
  16. is the name of the operator to be removed followed by a parenthesized
  17. list of the operand types for the operator.  The left or right type
  18. of a left or right unary operator, respectively, may be specified
  19. as
  20. .IR none .
  21. .PP
  22. It is the user's responsibility to remove any access methods, operator
  23. classes, etc. that rely on the deleted operator.
  24. .SH EXAMPLE
  25. .nf
  26. --
  27. --Remove power operator a^n for int4
  28. --
  29. drop operator ^ (int4, int4)
  30. .fi
  31. .nf
  32. --
  33. --Remove left unary operator !a for booleans
  34. -- 
  35. drop operator ! (none, bool)
  36. .fi
  37. .nf
  38. --
  39. --Remove right unary factorial operator a! for int4
  40. --
  41. drop operator ! (int4, none)
  42. .fi
  43. .SH "SEE ALSO"
  44. create_operator(l).