diff options
author | Davi Arnaut <Davi.Arnaut@Sun.COM> | 2009-02-24 10:49:18 +0100 |
---|---|---|
committer | Davi Arnaut <Davi.Arnaut@Sun.COM> | 2009-02-24 10:49:18 +0100 |
commit | 1959c4966ee1ebfacd52935ca58bcd55fe9b931c (patch) | |
tree | 43ee155a8a890841554f2f0aaf6bc027d48d57d9 /mysql-test/include/handler.inc | |
parent | d16c7dd1829e7dcfa2ef119fa04d090981936d09 (diff) | |
parent | 322a5a39adeb68ef336c1f3d44db4ef41063663c (diff) | |
download | mariadb-git-1959c4966ee1ebfacd52935ca58bcd55fe9b931c.tar.gz |
Bug#41110: crash with handler command when used concurrently with alter table
Bug#41112: crash in mysql_ha_close_table/get_lock_data with alter table
The problem is that the server wasn't handling robustly failures
to re-open a table during a HANDLER .. READ statement. If the
table needed to be re-opened due to it's storage engine being
altered to one that doesn't support HANDLER, a reference (dangling
pointer) to a closed table could be left in place and accessed in
later attempts to fetch from the table using the handler. Also,
if the server failed to set a error message if the re-open
failed. These problems could lead to server crashes or hangs.
The solution is to remove any references to a closed table and
to set a error if reopening a table during a HANDLER .. READ
statement fails.
Diffstat (limited to 'mysql-test/include/handler.inc')
-rw-r--r-- | mysql-test/include/handler.inc | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/mysql-test/include/handler.inc b/mysql-test/include/handler.inc index 485b2e881d3..04f4cac831d 100644 --- a/mysql-test/include/handler.inc +++ b/mysql-test/include/handler.inc @@ -692,3 +692,29 @@ unlock tables; drop table t1; --error ER_UNKNOWN_TABLE handler t1 read a next; + +# +# Bug#41110: crash with handler command when used concurrently with alter table +# Bug#41112: crash in mysql_ha_close_table/get_lock_data with alter table +# + +--disable_warnings +drop table if exists t1; +--enable_warnings +create table t1 (a int); +insert into t1 values (1); +handler t1 open; +connect(con1,localhost,root,,); +send alter table t1 engine=memory; +connection default; +let $wait_condition= + select count(*) = 1 from information_schema.processlist + where state = "rename result table" and info = "alter table t1 engine=memory"; +--source include/wait_condition.inc +--error ER_ILLEGAL_HA +handler t1 read a next; +handler t1 close; +connection con1; +--reap +drop table t1; +connection default; |