mirror of
https://github.com/MariaDB/server.git
synced 2025-01-28 01:34:17 +01:00
11 lines
242 B
Text
11 lines
242 B
Text
|
#
|
||
|
# MDEV-4480 Assertion `inited == NONE' fails on closing a connection with open handler on temporary table
|
||
|
#
|
||
|
|
||
|
--connect (con1,localhost,root,,)
|
||
|
create temporary table t1 as select 1;
|
||
|
handler t1 open;
|
||
|
handler t1 read next;
|
||
|
--disconnect con1
|
||
|
|