Drop a user-defined function (UDF)
Use the DROP FUNCTION
command to drop a user-defined function (UDF).
The following example drops the fLog
function.
The conditional option IF EXISTS
can be included to silently ignore the command if the named function doesn’t exist in the keyspace.
Otherwise, an error is returned if the function doesn’t exist.
DROP FUNCTION IF EXISTS cycling.flog;