I created two udf's and one trigger in Cassandra cqlsh.How to check existed udf's and triggers in cassandra?
You can list existing functions with:
DESCRIBE FUNCTIONS;
and you can get the triggers from the schema table:
SELECT * from system_schema.triggers;