mirror of
https://github.com/MariaDB/server.git
synced 2025-02-01 11:31:51 +01:00
a816aa066e
MDEV-16123 ASAN heap-use-after-free handler::ha_index_or_rnd_end MDEV-13828 Segmentation fault on RENAME TABLE Problem was that destructor called methods for closed table. Fixed by removing code in destructor.
6 lines
135 B
Text
6 lines
135 B
Text
CREATE TABLE t1 (i int);
|
|
RENAME TABLE t1 TO t2;
|
|
FLUSH TABLES;
|
|
DROP TABLE IF EXISTS t1, t2;
|
|
Warnings:
|
|
Note 1051 Unknown table 'test.t1'
|