mirror of
https://github.com/MariaDB/server.git
synced 2025-11-25 17:25:02 +03:00
MDEV-5839 TokuDB tables not properly cleaned on DROP DATABASE TokuDB does not support discover_table_names() and writes no files in the database directory, so automatic filename-based discover_table_names() doesn't work either. So, it must force .frm file to disk in ::create()
21 lines
445 B
Plaintext
21 lines
445 B
Plaintext
#
|
|
# MDEV-5943 'show table status' does not immediately show tokudb tables
|
|
#
|
|
create table t1 (id int primary key) engine=tokudb;
|
|
show tables;
|
|
drop table t1;
|
|
|
|
#
|
|
# MDEV-5839 TokuDB tables not properly cleaned on DROP DATABASE
|
|
#
|
|
create database mysqltest1;
|
|
use mysqltest1;
|
|
create table t1 (a int) engine=tokudb;
|
|
drop database mysqltest1;
|
|
|
|
create database mysqltest1;
|
|
use mysqltest1;
|
|
create table t1 (a int) engine=tokudb;
|
|
drop database mysqltest1;
|
|
|