List:Commits« Previous MessageNext Message »
From:gluh Date:January 11 2007 12:50pm
Subject:bk commit into 5.1 tree (gluh:1.2384)
View as plain text  
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-11 16:50:34+04:00, gluh@stripped +1 -0
  after merge fix

  sql/sql_base.cc@stripped, 2007-01-11 16:50:32+04:00, gluh@stripped +14 -11
    after merge fix

# 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.371/sql/sql_base.cc	2007-01-10 14:14:20 +04:00
+++ 1.372/sql/sql_base.cc	2007-01-11 16:50:32 +04:00
@@ -6076,7 +6076,7 @@ my_bool mysql_rm_tmp_tables(void)
   char	filePath[FN_REFLEN], *tmpdir, filePathCopy[FN_REFLEN];
   MY_DIR *dirp;
   FILEINFO *file;
-  TABLE tmp_table;
+  TABLE_SHARE share;
   THD *thd;
   DBUG_ENTER("mysql_rm_tmp_tables");
 
@@ -6108,21 +6108,24 @@ my_bool mysql_rm_tmp_tables(void)
       char *ext= fn_ext(file->name);
       uint ext_len= strlen(ext);
       uint filePath_len= my_snprintf(filePath, sizeof(filePath),
-                                     "%s%c%s", FN_LIBCHAR,tmpdir,
+                                     "%s%c%s", tmpdir, FN_LIBCHAR,
                                      file->name);
       if (!bcmp(reg_ext, ext, ext_len))
       {
-        TABLE tmp_table;
-        if (!openfrm(thd, filePath, "tmp_table", (uint) 0,
-                     READ_KEYINFO | COMPUTE_TYPES | EXTRA_RECORD,
-                     0, &tmp_table))
+        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))))
         {
-          /* We should cut file extention before deleting of table */
-          memcpy(filePathCopy, filePath, filePath_len - ext_len);
-          filePathCopy[filePath_len - ext_len]= 0;
-          tmp_table.file->delete_table(filePathCopy);
-          closefrm(&tmp_table);
+          handler_file->delete_table(filePathCopy);
+          delete handler_file;
         }
+        free_table_share(&share);
+      }
       }
       /*
         File can be already deleted by tmp_table.file->delete_table().
Thread
bk commit into 5.1 tree (gluh:1.2384)gluh11 Jan