Hi,
I was interested if transactions support optional statements. Basically
INSERT iNTO T1 IF NOT EXISTS;
UPDATE t2 (only if previous statement succeeded);
and
UPDATE t1 SET a=1 WHERE id=x AND a!=1;
UPDATE t2 (only if previous statement succeeded);
All statements are single rows update/insert. Sometimes they are single partition, other times they are cross partition.
Regards,
Dorian