Commit 4e19af27 authored by unknown's avatar unknown
Browse files

Fix compile error when HAVE_BERKELEY_DB


sql/sql_table.cc:
  Add missing argument
parent b4953598
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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)
    {