私は、次のカサンドラテーブルを持っている:なぜ私のCassandraアップデートは機能しませんか?
create table start_stop (id text, start text, end text, price double, PRIMARY KEY (id, start));
私はこのような挿入操作を行います。
insert into start_stop (id, start) values ('123', 'w');
を今私は更新をしたい:
update start_stop set end = 'z' where id = '123';
とエラーが表示されます: InvalidRequest: code=2200 [Invalid query] message="Some clustering keys are missing: start"
更新を行う前に開始値を検索するクエリとは別に、これを修正できますか?