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

CentOS 2.1AS

(Slurm)

drop_type(l)


DROP TYPE

DROP TYPE

NAME
SYNOPSIS
DESCRIPTION
USAGE
COMPATIBILITY

NAME

DROP TYPE − Removes user-defined types from the system catalogs

SYNOPSIS

DROP TYPE typename [, ...]

INPUTS
typename

The name of an existing type.

OUTPUTS

DROP

The message returned if the command is successful.

ERROR: RemoveType: type ’typename’ does not exist

This message occurs if the specified type is not found.

DESCRIPTION

DROP TYPE will remove a user type from the system catalogs.

Only the owner of a type can remove it.

NOTES
DROP TYPE statement is a Postgres language extension.

Refer to CREATE TYPE for information on how to create types.

It is the user’s responsibility to remove any operators, functions, aggregates, access methods, subtypes, and tables that use a deleted type.

If a built-in type is removed, the behavior of the backend is unpredictable.

USAGE

To remove the box type:

DROP TYPE box;

COMPATIBILITY

SQL3
DROP TYPE
is a SQL3 statement.



drop_type(l)