Even though the table definition for killrvideo.video_recommendations is with videoid in ASC order, why the query results for the query "SELECT * FROM killrvideo.video_recommendations where userid=11111111-1111-1111-1111-111111111111;" does not return the results with videoid in ASC order?
CREATE TABLE killrvideo.video_recommendations ( userid uuid, added_date timestamp, videoid uuid, authorid uuid, name text, preview_image_location text, rating float, PRIMARY KEY (userid, added_date, videoid) )WITH CLUSTERING ORDER BY (added_date DESC, videoid ASC)