mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 20:42:30 +01:00
d57ddaa190
only use HA_EXTRA_PREPARE_FOR_DROP when the table is going to be dropped
10 lines
339 B
Text
10 lines
339 B
Text
#
|
|
# MDEV-15551 Server hangs or assertion `strcmp(share->unique_file_name,filename) || share->last_version' fails in test_if_reopen or unexpected ER_LOCK_DEADLOCK
|
|
#
|
|
--source include/have_partition.inc
|
|
create table t1 (i int) engine=myisam partition by hash(i) partitions 2 ;
|
|
lock table t1 write;
|
|
truncate table t1;
|
|
desc t1;
|
|
drop table t1;
|
|
|