mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 12:02:42 +01:00
Remove .TMD files on DROP DATABASE.
This commit is contained in:
parent
38357b30e6
commit
1565d5e8ac
1 changed files with 3 additions and 3 deletions
|
@ -104,14 +104,14 @@ exit2:
|
|||
DBUG_RETURN(error);
|
||||
}
|
||||
|
||||
const char *del_exts[]= {".frm", ".BAK", NullS};
|
||||
const char *del_exts[]= {".frm", ".BAK", ".TMD", NullS};
|
||||
static TYPELIB deletable_extentions=
|
||||
{array_elements(del_exts)-1,"del_exts", del_exts};
|
||||
|
||||
const char *known_exts[]=
|
||||
{".ISM",".ISD",".ISM",".MRG",".MYI",".MYD", ".db", NullS};
|
||||
{".ISM",".ISD",".ISM",".MRG",".MYI",".MYD",".db",NullS};
|
||||
static TYPELIB known_extentions=
|
||||
{array_elements(del_exts)-1,"del_exts", known_exts};
|
||||
{array_elements(known_exts)-1,"known_exts", known_exts};
|
||||
|
||||
/*
|
||||
Drop all tables in a database.
|
||||
|
|
Loading…
Reference in a new issue