1
drop table if exists t1;
2
create table t1 (n int not null primary key) engine=myisam;
4
insert into t1 values (4);
5
insert into t1 values (5);
8
Warning 1196 Some non-transactional changed tables couldn't be rolled back
9
select @@warning_count;
17
Warning 1196 Some non-transactional changed tables couldn't be rolled back
24
select @@warning_count;