diff options
author | Georgi Kodinov <Georgi.Kodinov@Oracle.com> | 2010-08-20 12:09:17 +0300 |
---|---|---|
committer | Georgi Kodinov <Georgi.Kodinov@Oracle.com> | 2010-08-20 12:09:17 +0300 |
commit | 7d3a9b4cf68475f24b24f64ae43a205d6016b83e (patch) | |
tree | d7d20b0fb3455280191417a9653848ff8d25442e /mysql-test/suite/innodb/t/innodb_mysql.test | |
parent | dd9329761ae48e3d8518f882d1ca12737a4165d0 (diff) | |
parent | 69c280506808e434e20669d838724d43b675540c (diff) | |
download | mariadb-git-7d3a9b4cf68475f24b24f64ae43a205d6016b83e.tar.gz |
merge
Diffstat (limited to 'mysql-test/suite/innodb/t/innodb_mysql.test')
-rw-r--r-- | mysql-test/suite/innodb/t/innodb_mysql.test | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/mysql-test/suite/innodb/t/innodb_mysql.test b/mysql-test/suite/innodb/t/innodb_mysql.test index 25e834cf3f8..d633cb2222e 100644 --- a/mysql-test/suite/innodb/t/innodb_mysql.test +++ b/mysql-test/suite/innodb/t/innodb_mysql.test @@ -733,6 +733,20 @@ ORDER BY f1 DESC LIMIT 5; DROP TABLE t1; + +--echo # +--echo # Bug#54117 crash in thr_multi_unlock, temporary table +--echo # + +CREATE TEMPORARY TABLE t1(a INT) ENGINE = InnoDB; + +LOCK TABLES t1 READ; +ALTER TABLE t1 COMMENT 'test'; +UNLOCK TABLES; + +DROP TABLE t1; + + --echo # --echo # Bug#55580: segfault in read_view_sees_trx_id --echo # |