ha_innodb.cc:
Anthony's http://lists.mysql.com/internals/18505 patch for DROP DATABASE broke caused it to return errno if .ibd files were present (bas_ext() was obsolete in ha_innodb.cc); fix this sql/ha_innodb.cc: Anthony's http://lists.mysql.com/internals/18505 patch for DROP DATABASE broke caused it to return errno if .ibd files were present (bas_ext() was obsolete in ha_innodb.cc); fix this
This commit is contained in:
parent
7d074100d3
commit
d711df11f5
@ -1505,17 +1505,14 @@ innobase_close_connection(
|
|||||||
*****************************************************************************/
|
*****************************************************************************/
|
||||||
|
|
||||||
/********************************************************************
|
/********************************************************************
|
||||||
This function is not relevant since we store the tables and indexes
|
Gives the file extension of an InnoDB single-table tablespace. */
|
||||||
into our own tablespace, not as files, whose extension this function would
|
|
||||||
give. */
|
|
||||||
|
|
||||||
const char**
|
const char**
|
||||||
ha_innobase::bas_ext() const
|
ha_innobase::bas_ext() const
|
||||||
/*========================*/
|
/*========================*/
|
||||||
/* out: file extension strings, currently not
|
/* out: file extension string */
|
||||||
used */
|
|
||||||
{
|
{
|
||||||
static const char* ext[] = {".InnoDB", NullS};
|
static const char* ext[] = {".ibd", NullS};
|
||||||
|
|
||||||
return(ext);
|
return(ext);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user