Heya, do you have any plans to add support for this?
E.g. this table created with cql3:
CREATE TABLE timeline (
user_id varchar,
tweet_id uuid,
author varchar,
body varchar,
PRIMARY KEY (user_id, tweet_id)
);
...doesn't show up in the list of column families. It can be queried by right clicking on a different column family, selecting "CQL Query", then writing a query, e.g.
SELECT * FROM timeline;
... but the resulting data is not formatted to take into account the composite key.
See http://www.datastax.com/dev/blog/schema-in-cassandra-1-1