I've read that lightweight transactions just support update and insert statements with an "if" and "if exists" clause. Do they also support delete statement with "if exists" clause.
Eg : create table user(userid text,email text, primary key(email))
delete from user where userid='kris' if exists
Do lightweight transactions support the above delete statement?