Flashnux

GNU/Linux man pages

Livre :
Expressions régulières,
Syntaxe et mise en oeuvre :

ISBN : 978-2-7460-9712-4
EAN : 9782746097124
(Editions ENI)

GNU/Linux

RedHat 5.2

(Apollo)

drop_function(l)


DROP FUNCTION

DROP FUNCTION

NAME
SYNOPSIS
DESCRIPTION
EXAMPLE
SEE ALSO
BUGS

NAME

drop function - remove a user-defined C function

SYNOPSIS

drop function function_name ( [ type-1 { , type-n } ] )

DESCRIPTION

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.

EXAMPLE

--
--this command removes the square root function
--
drop function sqrt(int4)

SEE ALSO

create function(l).

BUGS

No checks are made to ensure that types, operators or access methods that rely on the function have been removed first.



drop_function(l)