List:Commits« Previous MessageNext Message »
From:Chad MILLER Date:May 5 2007 1:04am
Subject:bk commit into 5.0 tree (cmiller:1.2473)
View as plain text  
Below is the list of changes that have just been committed into a local
5.0 repository of cmiller. When cmiller 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-05-04 19:04:09-04:00, cmiller@stripped +2 -0
  Merge zippy.cornsilk.net:/home/cmiller/work/mysql/bug27976/my41-bug27976
  into  zippy.cornsilk.net:/home/cmiller/work/mysql/bug27976/my50-bug27976
  MERGE: 1.1616.3023.9

  myisam/sort.c@stripped, 2007-05-04 19:04:07-04:00, cmiller@stripped +2 -4
    Manual merge.
    MERGE: 1.35.1.16

  mysql-test/r/repair.result@stripped, 2007-05-04 19:00:23-04:00, cmiller@stripped
+0 -0
    Auto merged
    MERGE: 1.14.1.7

# 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:	cmiller
# Host:	zippy.cornsilk.net
# Root:	/home/cmiller/work/mysql/bug27976/my50-bug27976/RESYNC

--- 1.60/myisam/sort.c	2007-01-22 07:10:36 -05:00
+++ 1.61/myisam/sort.c	2007-05-04 19:04:07 -04:00
@@ -151,7 +151,7 @@ int _create_index_by_sort(MI_SORT_PARAM 
             keys < (uint) maxbuffer)
 	{
 	  mi_check_print_error(info->sort_info->param,
-			       "sort_buffer_size is to small");
+			       "myisam_sort_buffer_size is too small");
 	  goto err;
 	}
       }
@@ -175,7 +175,7 @@ int _create_index_by_sort(MI_SORT_PARAM 
   }
   if (memavl < MIN_SORT_MEMORY)
   {
-    mi_check_print_error(info->sort_info->param,"Sort buffer to small"); /*
purecov: tested */
+    mi_check_print_error(info->sort_info->param,"MyISAM sort buffer too small"); /*
purecov: tested */
     goto err; /* purecov: tested */
   }
   (*info->lock_in_memory)(info->sort_info->param);/* Everything is allocated */
@@ -369,7 +369,7 @@ pthread_handler_t thr_find_all_keys(void
               keys < (uint) maxbuffer)
           {
             mi_check_print_error(sort_param->sort_info->param,
-                                 "sort_buffer_size is to small");
+                                 "myisam_sort_buffer_size is too small");
             goto err;
           }
         }
@@ -397,7 +397,7 @@ pthread_handler_t thr_find_all_keys(void
     if (memavl < MIN_SORT_MEMORY)
     {
       mi_check_print_error(sort_param->sort_info->param,
-                           "Sort buffer too small");
+                           "MyISAM sort buffer too small");
       goto err; /* purecov: tested */
     }
 

--- 1.22/mysql-test/r/repair.result	2006-10-19 09:48:35 -04:00
+++ 1.23/mysql-test/r/repair.result	2007-05-04 19:00:23 -04:00
@@ -84,7 +84,7 @@ Error	1034	Number of rows changed from 0
 SET myisam_repair_threads=2;
 REPAIR TABLE t1;
 Table	Op	Msg_type	Msg_text
-test.t1	repair	error	sort_buffer_size is to small
+test.t1	repair	error	myisam_sort_buffer_size is too small
 test.t1	repair	warning	Number of rows changed from 0 to 157
 test.t1	repair	status	OK
 SET myisam_repair_threads=@@global.myisam_repair_threads;
Thread
bk commit into 5.0 tree (cmiller:1.2473)Chad MILLER5 May