You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
the following script get a violation error:
create table t2(i integer primary key);
commit;
insert into t2(i) values(1);
insert into t2(i) values(2);
commit;
update t2 set i=i+1;
commit;