1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

Fix compile error when HAVE_BERKELEY_DB

sql/sql_table.cc:
  Add missing argument
This commit is contained in:
unknown
2005-06-01 16:03:41 -07:00
parent b4953598aa
commit 4e19af2716

View File

@ -3451,7 +3451,7 @@ int mysql_alter_table(THD *thd,char *new_db, char *new_name,
shutdown.
*/
char path[FN_REFLEN];
build_table_path(path, sizeof(path), new_db, table_name);
build_table_path(path, sizeof(path), new_db, table_name, "");
table=open_temporary_table(thd, path, new_db, tmp_name,0);
if (table)
{