Below is the list of changes that have just been committed into a local
5.1 repository of gluh. When gluh does a push these changes will
be propagated to the main repository and, within 24 hours after the
push, to the public repository.
For information on how to access the public repository
see http://dev.mysql.com/doc/mysql/en/installing-source-tree.html
ChangeSet@stripped, 2007-01-12 13:34:33+04:00, gluh@stripped +1 -0
Function mysql_rm_tmp_tables():
fixed valgrind error
fixed indentation
sql/sql_base.cc@stripped, 2007-01-12 13:34:31+04:00, gluh@stripped +26 -26
Function mysql_rm_tmp_tables():
fixed valgrind error
fixed indentation
# This is a BitKeeper patch. What follows are the unified diffs for the
# set of deltas contained in the patch. The rest of the patch, the part
# that BitKeeper cares about, is below these diffs.
# User: gluh
# Host: eagle.(none)
# Root: /home/gluh/MySQL/Merge/5.1-opt
--- 1.372/sql/sql_base.cc 2007-01-11 16:50:32 +04:00
+++ 1.373/sql/sql_base.cc 2007-01-12 13:34:31 +04:00
@@ -6103,36 +6103,36 @@ my_bool mysql_rm_tmp_tables(void)
(file->name[1] == '.' && !file->name[2])))
continue;
- if (!bcmp(file->name,tmp_file_prefix,tmp_file_prefix_length))
- {
- char *ext= fn_ext(file->name);
- uint ext_len= strlen(ext);
- uint filePath_len= my_snprintf(filePath, sizeof(filePath),
- "%s%c%s", tmpdir, FN_LIBCHAR,
- file->name);
- if (!bcmp(reg_ext, ext, ext_len))
+ if (!bcmp(file->name,tmp_file_prefix,tmp_file_prefix_length))
{
- handler *handler_file= 0;
- /* We should cut file extention before deleting of table */
- memcpy(filePathCopy, filePath, filePath_len - ext_len);
- filePathCopy[filePath_len - ext_len]= 0;
- init_tmp_table_share(&share, "", 0, "", filePathCopy);
- if (!open_table_def(thd, &share, 0) &&
- ((handler_file= get_new_handler(&share, thd->mem_root,
- share.db_type))))
+ char *ext= fn_ext(file->name);
+ uint ext_len= strlen(ext);
+ uint filePath_len= my_snprintf(filePath, sizeof(filePath),
+ "%s%c%s", tmpdir, FN_LIBCHAR,
+ file->name);
+ if (!bcmp(reg_ext, ext, ext_len))
{
- handler_file->delete_table(filePathCopy);
- delete handler_file;
+ handler *handler_file= 0;
+ /* We should cut file extention before deleting of table */
+ memcpy(filePathCopy, filePath, filePath_len - ext_len);
+ filePathCopy[filePath_len - ext_len]= 0;
+ init_tmp_table_share(&share, "", 0, "", filePathCopy);
+ if (!open_table_def(thd, &share, 0) &&
+ ((handler_file= get_new_handler(&share, thd->mem_root,
+ share.db_type))))
+ {
+ handler_file->delete_table(filePathCopy);
+ delete handler_file;
+ }
+ free_table_share(&share);
}
- free_table_share(&share);
+ /*
+ File can be already deleted by tmp_table.file->delete_table().
+ So we hide error messages which happnes during deleting of these
+ files(MYF(0)).
+ */
+ VOID(my_delete(filePath, MYF(0)));
}
- }
- /*
- File can be already deleted by tmp_table.file->delete_table().
- So we hide error messages which happnes during deleting of these
- files(MYF(0)).
- */
- VOID(my_delete(filePath, MYF(0)));
}
my_dirend(dirp);
}
| Thread |
|---|
| • bk commit into 5.1 tree (gluh:1.2386) | gluh | 12 Jan |