mirror of
https://github.com/MariaDB/server.git
synced 2025-01-30 18:41:56 +01:00
dce4c0f979
When acquiring SNW/SNRW/X MDL lock DDL/admin statements may abort pending thr lock in concurrent connection with open HANDLER (or delayed insert thread). This may lead to a race condition when table->alias is accessed concurrently by such threads. Either assertion failure or memory leak is a practical consequence of this race condition. Specifically HANDLER is opening a table and issuing alias.copy(), while DDL executing get_lock_data()/alias.c_ptr()/realloc()/realloc_raw(). Fixed by perforimg table->init() before it is published via thd->open_tables.
9 lines
221 B
Text
9 lines
221 B
Text
#
|
|
# MDEV-22339 - Assertion `str_length < len' failed in
|
|
# Binary_string::realloc_raw
|
|
#
|
|
CREATE TABLE t1(a INT) ENGINE=MyISAM;
|
|
connect con1, localhost, root;
|
|
disconnect con1;
|
|
connection default;
|
|
DROP TABLE t1;
|