From a7abddeffa6a760ce948c2dfb007cdf3f1a369d5 Mon Sep 17 00:00:00 2001 From: Michael Widenius Date: Fri, 9 Mar 2018 14:05:35 +0200 Subject: Create 'main' test directory and move 't' and 'r' there --- mysql-test/t/rollback.test | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 mysql-test/t/rollback.test (limited to 'mysql-test/t/rollback.test') diff --git a/mysql-test/t/rollback.test b/mysql-test/t/rollback.test deleted file mode 100644 index 3b8ad901907..00000000000 --- a/mysql-test/t/rollback.test +++ /dev/null @@ -1,25 +0,0 @@ -# -# This test should fail as MyISAM doesn't have rollback -# - ---disable_warnings -drop table if exists t1; ---enable_warnings -# PS doesn't work with BEGIN ... ROLLBACK ---disable_ps_protocol - -create table t1 (n int not null primary key) engine=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; - -# End of 4.1 tests -- cgit v1.2.1