diff options
author | Monty <monty@mariadb.org> | 2020-03-30 20:12:02 +0300 |
---|---|---|
committer | Monty <monty@mariadb.org> | 2020-04-19 17:33:51 +0300 |
commit | f9f33b85be6b5006f0ecd0de7961c71d415a9d73 (patch) | |
tree | ae547acc02c05876ccc9f54a3c7be614af206425 /mysql-test/main/myisam_debug.test | |
parent | 7866b723048d1d0f4a202d5a1e5475420b1dda64 (diff) | |
download | mariadb-git-f9f33b85be6b5006f0ecd0de7961c71d415a9d73.tar.gz |
Handle errors from external_unlock & mysql_unlock_tables
Other things:
- Handler errors from ha_maria::implict_commit
- Disable DBUG in safe_mutex_lock to get trace file easier to read
Diffstat (limited to 'mysql-test/main/myisam_debug.test')
-rw-r--r-- | mysql-test/main/myisam_debug.test | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mysql-test/main/myisam_debug.test b/mysql-test/main/myisam_debug.test index 2861c344b10..fcb134c0400 100644 --- a/mysql-test/main/myisam_debug.test +++ b/mysql-test/main/myisam_debug.test @@ -67,6 +67,8 @@ lock tables t1 write; insert t1 values (1),(2),(1); set @old_dbug=@@debug_dbug; SET debug_dbug='+d,mi_lock_database_failure'; +--error HA_ERR_CRASHED unlock tables; +SHOW WARNINGS; SET debug_dbug=@old_dbug; drop table t1; |