summaryrefslogtreecommitdiff
path: root/storage/archive
diff options
context:
space:
mode:
authorunknown <reggie@big_geek.>2006-05-16 08:55:08 -0500
committerunknown <reggie@big_geek.>2006-05-16 08:55:08 -0500
commitb1d833f7f286d9d94b6af50734a75a1088e03e75 (patch)
treed8247f70683e7f74e6edf4028664c9bd6af80e90 /storage/archive
parent06ec1190472eb2001b2f30c426142ca91ffae855 (diff)
downloadmariadb-git-b1d833f7f286d9d94b6af50734a75a1088e03e75.tar.gz
Bug #18480 Windows file rename problems in archive storage engine
The problem was that the optimize code was not closing both the reader and writer streams before attempting to rename the file. This will not work on Windows where all file handles have to be closed before the file can be renamed, moved, or deleted. The fix was to move the close calls before the rename. We return the error code from my_rename in case of failure but we attempt to reopen the writers and readers even in the case of failure so that the table can still be usable. storage/archive/ha_archive.cc: close the writer and reader before the rename so that the rename will work on Windows.
Diffstat (limited to 'storage/archive')
-rw-r--r--storage/archive/ha_archive.cc21
1 files changed, 14 insertions, 7 deletions
diff --git a/storage/archive/ha_archive.cc b/storage/archive/ha_archive.cc
index e39ee976eb1..f3f20f6b103 100644
--- a/storage/archive/ha_archive.cc
+++ b/storage/archive/ha_archive.cc
@@ -1239,7 +1239,7 @@ int ha_archive::repair(THD* thd, HA_CHECK_OPT* check_opt)
int ha_archive::optimize(THD* thd, HA_CHECK_OPT* check_opt)
{
DBUG_ENTER("ha_archive::optimize");
- int rc;
+ int rc= 0;
azio_stream writer;
char writer_filename[FN_REFLEN];
@@ -1342,7 +1342,20 @@ int ha_archive::optimize(THD* thd, HA_CHECK_OPT* check_opt)
azclose(&writer);
share->dirty= FALSE;
share->forced_flushes= 0;
+
+ // now we close both our writer and our reader for the rename
azclose(&(share->archive_write));
+ azclose(&archive);
+
+ // make the file we just wrote be our data file
+ rc = my_rename(writer_filename,share->data_file_name,MYF(0));
+
+ /*
+ now open the shared writer back up
+ we don't check rc here because we want to open the file back up even
+ if the optimize failed but we will return rc below so that we will
+ know it failed.
+ */
DBUG_PRINT("info", ("Reopening archive data file"));
if (!(azopen(&(share->archive_write), share->data_file_name,
O_WRONLY|O_APPEND|O_BINARY)))
@@ -1352,21 +1365,15 @@ int ha_archive::optimize(THD* thd, HA_CHECK_OPT* check_opt)
goto error;
}
- my_rename(writer_filename,share->data_file_name,MYF(0));
-
/*
Now we need to reopen our read descriptor since it has changed.
*/
- azclose(&archive);
if (!(azopen(&archive, share->data_file_name, O_RDONLY|O_BINARY)))
{
rc= HA_ERR_CRASHED_ON_USAGE;
goto error;
}
-
- DBUG_RETURN(0);
-
error:
azclose(&writer);