diff options
author | Chad MILLER <chad@mysql.com> | 2009-01-26 10:27:51 -0500 |
---|---|---|
committer | Chad MILLER <chad@mysql.com> | 2009-01-26 10:27:51 -0500 |
commit | 34dabc062f19c87fd2d85bc62b157ed31899e17e (patch) | |
tree | 392be156a765daee2681de5a6b00fdc78b92c78f /sql/parse_file.cc | |
parent | 80fe6268f7a110abf383866fd9db3d2fbee332a8 (diff) | |
parent | 9b1b1d507e95c52a362f5f029d4fd06a13c0778b (diff) | |
download | mariadb-git-34dabc062f19c87fd2d85bc62b157ed31899e17e.tar.gz |
Merge fix for bug 38145 from 5.0.
Diffstat (limited to 'sql/parse_file.cc')
-rw-r--r-- | sql/parse_file.cc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sql/parse_file.cc b/sql/parse_file.cc index d3ece194dcd..07ea434e8e0 100644 --- a/sql/parse_file.cc +++ b/sql/parse_file.cc @@ -266,6 +266,11 @@ sql_create_definition_file(const LEX_STRING *dir, const LEX_STRING *file_name, if (end_io_cache(&file)) goto err_w_file; + if (opt_sync_frm) { + if (my_sync(handler, MYF(MY_WME))) + goto err_w_file; + } + if (my_close(handler, MYF(MY_WME))) { DBUG_RETURN(TRUE); |