Check a user-defined function (UDF)
In cqlsh, the DESCRIBE FUNCTION
command outputs the full details of a user-defined function.
Use the output from the DESCRIBE
command to recreate the UDF.
Prerequisites
Verify that a UDF exists
DESCRIBE FUNCTION cycling.flog;
Results
CREATE FUNCTION cycling.flog(input double)
CALLED ON NULL INPUT
RETURNS double
LANGUAGE java
AS $$ return Double.valueOf(Math.log(input.doubleValue())); $$;
See also: