我在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),但不同的聚类列值。 将这些2个语句是孤立的?