.DROP FUNCTION
Aplica-se a: SQL do Databricks Runtime do Databricks
Descarta uma UDF (função definida pelo usuário) temporária ou permanente. Para remover uma função, você precisa ser o respectivo proprietário, ou o proprietário do esquema, catálogo ou metastore nos quais a função residir.
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 do esquema.
TEMPORARY
Usado para excluir uma função
TEMPORARY
.IF EXISTS
Se especificado, nenhuma exceção é gerada 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;