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_language(l)


DROP LANGUAGE

DROP LANGUAGE

NAME
SYNOPSIS
DESCRIPTION
EXAMPLE
SEE ALSO
BUGS

NAME

drop language - remove a user-defined procedural language

SYNOPSIS

drop procedural language ’lanname’

DESCRIPTION

drop procedural language will remove the definition of the previously registered PL with the name lanname.

EXAMPLE

--
--this command removes the PL/Sample language
--
drop procedural language ’plsample’;

SEE ALSO

create language(l).

BUGS

No checks are made if functions or trigger procedures registered in this language still exist. To reenable them without having to drop and recreate all the functions, the pg_proc’s prolang attribute of the functions must be adjusted to the new object ID of the recreated pg_language entry for the PL.



drop_language(l)