Let's say I use CQL to define this table.
CREATE TABLE songs (
id uuid PRIMARY KEY,
title text,
album text,
artist text,
tags set<text>,
data blob);
How can other developers (or myself after a few weeks) (re)discover the layout of this table?
I'm thinking of an equivalent to the MySQL DESCRIBE {tablename}
command.
[EDIT]
I see there is a DESCRIBE
method in Cassandra's command line interface (CLI), but upon using it, it states that it doesn't include information on CQL tables in its results.