Search code examples
triggerscassandrauser-defined-functionsudfcqlsh

How to check existed udf's and triggers in cassandra?


I created two udf's and one trigger in Cassandra cqlsh.How to check existed udf's and triggers in cassandra?


Solution

  • You can list existing functions with:

    DESCRIBE FUNCTIONS;
    

    and you can get the triggers from the schema table:

    SELECT * from system_schema.triggers;