summaryrefslogtreecommitdiff
path: root/mysql-test/r/rollback.result
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/r/rollback.result
parentab1941266c59a19703a74b5593cf3f508a5752d7 (diff)
downloadmariadb-git-a7abddeffa6a760ce948c2dfb007cdf3f1a369d5.tar.gz
Create 'main' test directory and move 't' and 'r' there
Diffstat (limited to 'mysql-test/r/rollback.result')
-rw-r--r--mysql-test/r/rollback.result29
1 files changed, 0 insertions, 29 deletions
diff --git a/mysql-test/r/rollback.result b/mysql-test/r/rollback.result
deleted file mode 100644
index e562b73c981..00000000000
--- a/mysql-test/r/rollback.result
+++ /dev/null
@@ -1,29 +0,0 @@
-drop table if exists t1;
-create table t1 (n int not null primary key) engine=myisam;
-begin work;
-insert into t1 values (4);
-insert into t1 values (5);
-rollback;
-Warnings:
-Warning 1196 Some non-transactional changed tables couldn't be rolled back
-select @@warning_count;
-@@warning_count
-1
-select @@error_count;
-@@error_count
-0
-show warnings;
-Level Code Message
-Warning 1196 Some non-transactional changed tables couldn't be rolled back
-show errors;
-Level Code Message
-select * from t1;
-n
-4
-5
-select @@warning_count;
-@@warning_count
-0
-show warnings;
-Level Code Message
-drop table t1;