summaryrefslogtreecommitdiff
path: root/sql/table.cc
diff options
context:
space:
mode:
authorSergei Golubchik <serg@mariadb.org>2017-03-15 11:46:54 +0100
committerSergei Golubchik <serg@mariadb.org>2017-03-15 17:48:30 +0100
commit2c2bd8c1556b081fccd0fc3e010dc3ea2c38fffb (patch)
treea43c7e2f6fdec4910f6c06e00be4f41d17fd1a13 /sql/table.cc
parent06f1f1aa6e3dbc1efcd623378fe415b27c32b944 (diff)
downloadmariadb-git-2c2bd8c1556b081fccd0fc3e010dc3ea2c38fffb.tar.gz
MDEV-12261 build failure without P_S
restore mysql_file_delete_with_symlink() but let it use new my_handler_delete_with_symlink() mysys helper.
Diffstat (limited to 'sql/table.cc')
-rw-r--r--sql/table.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/table.cc b/sql/table.cc
index 80d0e02c6b1..975d9d53882 100644
--- a/sql/table.cc
+++ b/sql/table.cc
@@ -569,7 +569,7 @@ enum open_frm_error open_table_def(THD *thd, TABLE_SHARE *share, uint flags)
{
DBUG_ASSERT(flags & GTS_TABLE);
DBUG_ASSERT(flags & GTS_USE_DISCOVERY);
- my_handler_delete_with_symlink(key_file_frm, path, "", MYF(0));
+ mysql_file_delete_with_symlink(key_file_frm, path, "", MYF(0));
file= -1;
}
else