Hi,
I have created column family.
create columnfamily comptest2(KEY varchar primary key) with comparator='DynamicCompositeType(s=>UTF8Type,u=>UTF8Type)';
I am trying to add Composite column using alter statement but I am getting error. I tried all possible options I can think of.
cqlsh> alter table comptest2 add {"col1","col2"} ;
Bad Request: line 1:43 no viable alternative at character '}'
cqlsh> alter table comptest2 add {"col1","col2"} {varchar,varchar};
Bad Request: line 1:61 no viable alternative at character '}'
What am I doing wrong?
Thanks,
R
