I know that I can determine the order of clustering when I create the cql table as the code below:
create table test( id int, time timestamp, value text, primary key(id,time)) with clustering order by (time desc)
but I want to change the clustering for a table test after creating it with alter:
alter table test with clustering order by (item asc)
but I got an error. Thanks for any help.
source share