summaryrefslogtreecommitdiff
path: root/mysql-test/t/rollback.test
blob: 1673f1648d3df6c84562cb1e7078d93e13ff6a1e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#
# This test should fail as MyISAM doesn't have rollback
#

--disable_warnings
drop table if exists t1;
--enable_warnings

create table t1 (n int not null primary key) type=myisam;
begin work;
insert into t1 values (4);
insert into t1 values (5);
rollback;
select @@warning_count;
select @@error_count;
show warnings;
show errors;
select * from t1;
select @@warning_count;
show warnings;
drop table t1;