1
我在CQL創建一個表:卡桑德拉行級隔離
create table isolation_demo(key text,column1 text,column2 text,column3 text ,primary key(key,column1,column2));
我有一個批次2語句。
update isolation_demo set column3 ='ABC' where key =1 and column1 =1 and column2=1;
delete from isolation_demo where key =1 and column1 =2 and column2=2;
這裏兩個語句共享相同的分區鍵。 (鍵= 1),但是不同的聚類列值。這兩個陳述會被隔離嗎?