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/r/lock_tables_lost_commit.result | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 mysql-test/r/lock_tables_lost_commit.result (limited to 'mysql-test/r/lock_tables_lost_commit.result') diff --git a/mysql-test/r/lock_tables_lost_commit.result b/mysql-test/r/lock_tables_lost_commit.result deleted file mode 100644 index 769e9734c7a..00000000000 --- a/mysql-test/r/lock_tables_lost_commit.result +++ /dev/null @@ -1,15 +0,0 @@ -connect con1,localhost,root,,; -connect con2,localhost,root,,; -connection con1; -DROP TABLE IF EXISTS t1; -CREATE TABLE t1(a INT) ENGINE=innodb; -LOCK TABLES t1 WRITE; -INSERT INTO t1 VALUES(10); -disconnect con1; -connection con2; -SELECT * FROM t1; -a -10 -DROP TABLE t1; -connection default; -disconnect con2; -- cgit v1.2.1