Reputation: 1191
How to list all
materialized view tables
in Cassandra CQL
[cqlsh 5.0.1 | Cassandra 3.0.7.1158 | DSE 5.0.0 | CQL spec 3.4.0 | Native protocol v4]
Upvotes: 6
Views: 5488
Reputation: 6667
Probably the easiest way is from the views schema table with:
SELECT * FROM system_schema.views;
Upvotes: 18