From f5f88703b2899bb67b63844ec88041476d73fa6d Mon Sep 17 00:00:00 2001 From: "jimw@mysql.com" <> Date: Wed, 1 Jun 2005 16:03:41 -0700 Subject: [PATCH] Fix compile error when HAVE_BERKELEY_DB --- sql/sql_table.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sql/sql_table.cc b/sql/sql_table.cc index f277bc50462..7e80a71beb0 100644 --- a/sql/sql_table.cc +++ b/sql/sql_table.cc @@ -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) {