summaryrefslogtreecommitdiff
path: root/sql
diff options
context:
space:
mode:
authorunknown <jimw@mysql.com>2005-06-01 16:03:41 -0700
committerunknown <jimw@mysql.com>2005-06-01 16:03:41 -0700
commit4e19af2716b645cec8ca04ea15ddf698ec36927c (patch)
tree7cb76bbce381e37e63ef85cbf989176e8ac8ae67 /sql
parentb4953598aa436f926a06cdcb505eb7a4c38bf846 (diff)
downloadmariadb-git-4e19af2716b645cec8ca04ea15ddf698ec36927c.tar.gz
Fix compile error when HAVE_BERKELEY_DB
sql/sql_table.cc: Add missing argument
Diffstat (limited to 'sql')
-rw-r--r--sql/sql_table.cc2
1 files changed, 1 insertions, 1 deletions
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)
{