Hello everyone. I am passing cassandra developer path.
In the Excercise 4 step 3-5 I need to create a table with default descending sorting order by added_date. I have created CQL and checked it with solution but query result does not show me correct ordering. The data is still ordering in some other order.
Could you please advise, am I doing something wrong or I missed something?
I have tried both course provided VM and Astra to verify result, but it was the same for me.
[EDIT] Adding describe table just in case.
cqlsh:killrvideo> DESCRIBE videos_by_tag; CREATE TABLE killrvideo.videos_by_tag ( tag text, added_date timestamp, video_id uuid, title text, PRIMARY KEY (tag, added_date, video_id) ) WITH CLUSTERING ORDER BY (added_date DESC, video_id ASC)