Re: Dynamic Column Families in CQLSH v3

2012-08-29 Thread Jonathan Ellis
To elaborate, we don't know yet how to expose DCT in CQL3. If you can give more background on what you're using DCT for, that would help. (If we're lucky, it's also possible that you don't actually need DCT -- Collections in 1.2 is done entirely with classic CT under the hood.) On Mon, Aug 27,

Re: Dynamic Column Families in CQLSH v3

2012-08-27 Thread aaron morton
It's not possible to have Dynamic Columns in CQL 3. The CF definition must specify the column names you expect to store. The COMPACT STORAGE (http://www.datastax.com/docs/1.1/references/cql/CREATE_COLUMNFAMILY) clause of the Create CF statement means can have column names that are part

Dynamic Column Families in CQLSH v3

2012-08-23 Thread Erik Onnen
Hello All, Attempting to create what the Datastax 1.1 documentation calls a Dynamic Column Family (http://www.datastax.com/docs/1.1/ddl/column_family#dynamic-column-families) via CQLSH. This works in v2 of the shell: create table data ( key varchar PRIMARY KEY) WITH comparator=LongType; When