mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 04:53:01 +01:00
A post-merge fix.
This commit is contained in:
parent
16633169e4
commit
679a264357
1 changed files with 1 additions and 1 deletions
|
@ -5315,7 +5315,7 @@ mysql_prepare_alter_table(THD *thd, TABLE *table,
|
|||
|
||||
if (!create_info->tablespace && create_info->storage_media != HA_SM_MEMORY)
|
||||
{
|
||||
char *tablespace= thd->alloc(FN_LEN);
|
||||
char *tablespace= static_cast<char *>(thd->alloc(FN_LEN));
|
||||
/*
|
||||
Regular alter table of disk stored table (no tablespace/storage change)
|
||||
Copy tablespace name
|
||||
|
|
Loading…
Reference in a new issue