2
# This test should fail as MyISAM doesn't have rollback
6
drop table if exists t1;
8
# PS doesn't work with BEGIN ... ROLLBACK
11
create table t1 (n int not null primary key) engine=myisam;
13
insert into t1 values (4);
14
insert into t1 values (5);
16
select @@warning_count;
21
select @@warning_count;