summaryrefslogtreecommitdiff
path: root/mysql-test/r/lock_tables_lost_commit.result
diff options
context:
space:
mode:
authorMatthias Leich <Matthias.Leich@sun.com>2009-02-02 22:20:25 +0100
committerMatthias Leich <Matthias.Leich@sun.com>2009-02-02 22:20:25 +0100
commit1a04fc03fee176c5732897b687f5f5c4f1708d1c (patch)
treeec4adb26a96f9cb36e9645206d8fc76f047a0ba2 /mysql-test/r/lock_tables_lost_commit.result
parentbb31fd599252de83cd87192c95dca1196258a5b0 (diff)
downloadmariadb-git-1a04fc03fee176c5732897b687f5f5c4f1708d1c.tar.gz
1. Slice of fix for Bug#42003 tests missing the disconnect of connections <> default
- If missing: add "disconnect <session>" - If physical disconnect of non "default" sessions is not finished at test end: add routine which waits till this happened + additional improvements like - remove superfluous files created by the test - replace error numbers by error names - remove trailing spaces, replace tabs by spaces - unify writing of bugs within comments - correct comments - minor changes of formatting Modifications according to the code review are included. Fixed tests: grant2 grant3 lock_tables_lost_commit mysqldump openssl_1 outfile
Diffstat (limited to 'mysql-test/r/lock_tables_lost_commit.result')
-rw-r--r--mysql-test/r/lock_tables_lost_commit.result12
1 files changed, 6 insertions, 6 deletions
diff --git a/mysql-test/r/lock_tables_lost_commit.result b/mysql-test/r/lock_tables_lost_commit.result
index 22885d93d40..df4b6eff5cf 100644
--- a/mysql-test/r/lock_tables_lost_commit.result
+++ b/mysql-test/r/lock_tables_lost_commit.result
@@ -1,8 +1,8 @@
-drop table if exists t1;
-create table t1(a int) engine=innodb;
-lock tables t1 write;
-insert into t1 values(10);
-select * from t1;
+DROP TABLE IF EXISTS t1;
+CREATE TABLE t1(a INT) ENGINE=innodb;
+LOCK TABLES t1 WRITE;
+INSERT INTO t1 VALUES(10);
+SELECT * FROM t1;
a
10
-drop table t1;
+DROP TABLE t1;