DROP FUNCTION
Aplica-se a: Databricks SQL Databricks Runtime
Descarta uma função definida pelo usuário (UDF) temporária ou permanente.
Para eliminar uma função, é necessário ter o privilégio MANAGE
na função, ser o proprietário da mesma ou do esquema, catálogo ou metastore onde a função está localizada.
Sintaxe
DROP [ TEMPORARY ] FUNCTION [ IF EXISTS ] function_name
Parâmetros
-
O nome de uma função existente. O nome da função pode ser opcionalmente qualificado com um nome de esquema.
TEMPORÁRIO
Usado para excluir uma
TEMPORARY
função.SE EXISTE
Se especificado, nenhuma exceção é lançada quando a função não existe.
Exemplos
-- Create a permanent function `hello`
> CREATE FUNCTION hello() RETURNS STRING RETURN 'Hello World!';
-- Create a temporary function `hello`
> CREATE TEMPORARY FUNCTION hello() RETURNS STRING RETURN 'Good morning!';
-- List user functions
> SHOW USER FUNCTIONS;
default.hello
hello
-- Drop a permanent function
> DROP FUNCTION hello;
-- Try to drop a permanent function which is not present
> DROP FUNCTION hello;
Function 'default.hello' not found in schema 'default'
-- List the functions after dropping, it should list only temporary function
> SHOW USER FUNCTIONS;
hello
-- Drop a temporary function if exists
> DROP TEMPORARY FUNCTION IF EXISTS hello;