summaryrefslogtreecommitdiff
path: root/mysql-test/main/statistics_close.test
blob: de22a5a44febdff838a081fb65b19e2f7498bfe6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#
# MDEV-16123 ASAN heap-use-after-free handler::ha_index_or_rnd_end
# MDEV-13828 Segmentation fault on RENAME TABLE
#

CREATE TABLE t1 (i int);
--connect (con1,localhost,root,,test)
--send
RENAME TABLE t1 TO t2;
--connection default
FLUSH TABLES;
--connection con1
--reap

# Cleanup
--disconnect con1
--connection default
DROP TABLE IF EXISTS t1, t2;