mariadb/mysql-test/t/rollback.test
monty@mashka.mysql.fi 1f6ecc0cd3 Changed mysql-test to print warnings for not existing table to DROP TABLE
Cleaned up test; Removed wrong DROP TABLE commands and use standard table and database names.
changed store_warning() -> push_warning_print()
2003-01-06 01:48:59 +02:00

21 lines
404 B
Text

#
# 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;