summaryrefslogtreecommitdiff
path: root/mysql-test/t/rollback.test
diff options
context:
space:
mode:
authorMichael Widenius <monty@mariadb.org>2018-03-09 14:05:35 +0200
committerMonty <monty@mariadb.org>2018-03-29 13:59:44 +0300
commita7abddeffa6a760ce948c2dfb007cdf3f1a369d5 (patch)
tree70eb743fa965a17380bbc0ac88ae79ca1075b896 /mysql-test/t/rollback.test
parentab1941266c59a19703a74b5593cf3f508a5752d7 (diff)
downloadmariadb-git-a7abddeffa6a760ce948c2dfb007cdf3f1a369d5.tar.gz
Create 'main' test directory and move 't' and 'r' there
Diffstat (limited to 'mysql-test/t/rollback.test')
-rw-r--r--mysql-test/t/rollback.test25
1 files changed, 0 insertions, 25 deletions
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