drop_function.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_function.l,v 1.4 1998/06/23 17:52:35 momjian Exp $
  4. .TH "DROP FUNCTION" SQL 11/05/95 PostgreSQL PostgreSQL
  5. .SH NAME
  6. drop function - remove a user-defined C function 
  7. .SH SYNOPSIS
  8. .nf
  9. fBdrop function fRfunction_name ( fP[ type-1  { fB,fP type-n } ] fB) 
  10. .fi
  11. .SH DESCRIPTION
  12. .BR "drop function"
  13. will remove references to an existing C function.  To execute this
  14. command the user must be the owner of the function.  The input
  15. argument types to the function must be specified, as only the
  16. function with the given name and argument types will be removed.
  17. .SH EXAMPLE
  18. .nf
  19. --
  20. --this command removes the square root function
  21. --
  22. drop function sqrt(int4)
  23. .fi
  24. .SH "SEE ALSO"
  25. create_function(l).
  26. .SH BUGS
  27. No checks are made to ensure that types, operators or access methods
  28. that rely on the function have been removed first.