I created two udf's and one trigger in Cassandra cqlsh.How to check existed udf's and triggers in cassandra?
Asked
Active
Viewed 1,021 times
1 Answers
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