postgresql/doc/src/sgml/ref/drop_function.sgml

198 lines
4.4 KiB
Plaintext
Raw Normal View History

<!--
$Header: /cvsroot/pgsql/doc/src/sgml/ref/drop_function.sgml,v 1.13 2001/09/03 12:57:49 petere Exp $
Postgres documentation
-->
<refentry id="SQL-DROPFUNCTION">
<refmeta>
<refentrytitle id="SQL-DROPFUNCTION-TITLE">
1998-05-13 07:34:00 +02:00
DROP FUNCTION
</refentrytitle>
<refmiscinfo>SQL - Language Statements</refmiscinfo>
</refmeta>
<refnamediv>
<refname>
1998-05-13 07:34:00 +02:00
DROP FUNCTION
</refname>
<refpurpose>
remove a user-defined function
</refpurpose>
</refnamediv>
<refsynopsisdiv>
<refsynopsisdivinfo>
<date>1999-07-20</date>
</refsynopsisdivinfo>
<synopsis>
1998-09-22 17:48:03 +02:00
DROP FUNCTION <replaceable class="parameter">name</replaceable> ( [ <replaceable class="parameter">type</replaceable> [, ...] ] )
</synopsis>
<refsect2 id="R2-SQL-DROPFUNCTION-1">
<refsect2info>
<date>1998-04-15</date>
</refsect2info>
<title>
1998-05-13 07:34:00 +02:00
Inputs
</title>
<para>
<variablelist>
<varlistentry>
<term><replaceable class="parameter"> name</replaceable></term>
<listitem>
<para>
The name of an existing function.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term><replaceable class="parameter">type</replaceable></term>
<listitem>
<para>
The type of function parameters.
</para>
</listitem>
</varlistentry>
</variablelist>
</para>
</refsect2>
<refsect2 id="R2-SQL-DROPFUNCTION-2">
<refsect2info>
<date>1998-04-15</date>
</refsect2info>
<title>
1998-05-13 07:34:00 +02:00
Outputs
</title>
<para>
<variablelist>
<varlistentry>
<term><computeroutput>
DROP
</computeroutput></term>
<listitem>
<para>
Message returned if the command completes successfully.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term><computeroutput>
NOTICE RemoveFunction: Function "<replaceable class="parameter">name</replaceable>" ("<replaceable class="parameter">types</replaceable>") does not exist
</computeroutput></term>
<listitem>
<para>
This message is given if the function specified does not
exist in the current database.
</para>
</listitem>
</varlistentry>
</variablelist>
</para>
</refsect2>
</refsynopsisdiv>
<refsect1 id="R1-SQL-DROPFUNCTION-1">
<refsect1info>
<date>1998-04-15</date>
</refsect1info>
<title>
1998-05-13 07:34:00 +02:00
Description
</title>
<para>
1998-05-13 07:34:00 +02:00
DROP FUNCTION will remove references to an existing C
function. To execute this command the user must be the
owner of the function. The input argument types to the
function must be specified, as only the function with the
given name and argument types will be removed.
</para>
<refsect2 id="R2-SQL-DROPFUNCTION-3">
<refsect2info>
<date>1998-04-15</date>
</refsect2info>
<title>
1998-05-13 07:34:00 +02:00
Notes
</title>
<para>
Refer to
<xref linkend="sql-createfunction">
for information on creating functions.
</para>
<para>
No checks are made to ensure that types, operators or access
methods that rely on the function have been removed first.
</para>
</refsect2>
</refsect1>
<refsect1 id="R1-SQL-DROPFUNCTION-2">
<title>
1998-05-13 07:34:00 +02:00
Usage
</title>
<para>
1998-05-13 07:34:00 +02:00
This command removes the square root function:
<programlisting>
1998-09-22 17:48:03 +02:00
DROP FUNCTION sqrt(int4);
</programlisting>
</para>
</refsect1>
<refsect1 id="R1-SQL-DROPFUNCTION-4">
<title>
1998-05-13 07:34:00 +02:00
Compatibility
</title>
1998-05-13 07:34:00 +02:00
<refsect2 id="R2-SQL-DROPFUNCTION-4">
<refsect2info>
<date>1999-07-20</date>
</refsect2info>
<title>
SQL92
</title>
<para>
<command>DROP FUNCTION</command>
is a <productname>Postgres</productname> language extension.
</para>
</refsect2>
<refsect2 id="R2-SQL-DROPFUNCTION-5">
<refsect2info>
<date>1998-04-15</date>
</refsect2info>
<title>
1998-05-13 07:34:00 +02:00
SQL/PSM
</title>
<para>
SQL/PSM is a standard to enable function extensibility.
The SQL/PSM DROP FUNCTION statement has the following syntax:
<synopsis>
DROP [ SPECIFIC ] FUNCTION <replaceable class="parameter">name</replaceable> { RESTRICT | CASCADE }
</synopsis>
</para>
1998-05-13 07:34:00 +02:00
</refsect2>
</refsect1>
</refentry>
1998-05-13 07:34:00 +02:00
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:nil
1998-05-13 07:34:00 +02:00
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:1
sgml-indent-data:t
sgml-parent-document:nil
sgml-default-dtd-file:"../reference.ced"
sgml-exposed-tags:nil
sgml-local-catalogs:"/usr/lib/sgml/catalog"
sgml-local-ecat-files:nil
End:
-->