diff options
author | unknown <jimw@mysql.com> | 2005-06-01 16:03:41 -0700 |
---|---|---|
committer | unknown <jimw@mysql.com> | 2005-06-01 16:03:41 -0700 |
commit | 4e19af2716b645cec8ca04ea15ddf698ec36927c (patch) | |
tree | 7cb76bbce381e37e63ef85cbf989176e8ac8ae67 /sql | |
parent | b4953598aa436f926a06cdcb505eb7a4c38bf846 (diff) | |
download | mariadb-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.cc | 2 |
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) { |