0

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

Raghavan
  • 313
  • 2
  • 10

1 Answers1

1

You can list existing functions with:

DESCRIBE FUNCTIONS;

and you can get the triggers from the schema table:

SELECT * from system_schema.triggers;
mikea
  • 6,537
  • 19
  • 36
  • Thanks mikea.. would you please help me in how can I call them in java code by using datastax java driver.. – Raghavan Jun 30 '16 at 05:28