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, 2
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
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