Below is the list of changes that have just been committed into a local
4.1 repository of jani. When jani 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
1.2455 05/10/25 12:11:31 jani@stripped +2 -0
Changed some dbug print options.
myisam/mi_delete.c
1.32 05/10/25 12:11:26 jani@stripped +4 -2
Changed print style for keypos.
myisam/mi_check.c
1.152 05/10/25 12:11:26 jani@stripped +4 -3
Changed print style for keyoffset.
# 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: jani
# Host: ua141d10.elisa.omakaista.fi
# Root: /home/my/bk/mysql-4.1
--- 1.151/myisam/mi_check.c 2005-09-24 00:39:46 +03:00
+++ 1.152/myisam/mi_check.c 2005-10-25 12:11:26 +03:00
@@ -1731,9 +1731,10 @@
_mi_kpointer(info,keypos-nod_flag,param->new_file_pos); /* Save new pos */
if (sort_one_index(param,info,keyinfo,next_page,new_file))
{
- DBUG_PRINT("error",("From page: %ld, keyoffset: %d used_length: %d",
- (ulong) pagepos, (int) (keypos - buff),
- (int) used_length));
+ DBUG_PRINT("error",
+ ("From page: %ld, keyoffset: 0x%lx used_length: %d",
+ (ulong) pagepos, (ulong) (keypos - buff),
+ (int) used_length));
DBUG_DUMP("buff",(byte*) buff,used_length);
goto err;
}
--- 1.31/myisam/mi_delete.c 2004-10-23 00:15:02 +03:00
+++ 1.32/myisam/mi_delete.c 2005-10-25 12:11:26 +03:00
@@ -390,7 +390,8 @@
MYISAM_SHARE *share=info->s;
MI_KEY_PARAM s_temp;
DBUG_ENTER("del");
- DBUG_PRINT("enter",("leaf_page: %ld keypos: %lx",leaf_page,keypos));
+ DBUG_PRINT("enter",("leaf_page: %ld keypos: 0x%lx", leaf_page,
+ (ulong) keypos));
DBUG_DUMP("leaf_buff",(byte*) leaf_buff,mi_getint(leaf_buff));
endpos=leaf_buff+mi_getint(leaf_buff);
@@ -495,7 +496,8 @@
MI_KEY_PARAM s_temp;
MYISAM_SHARE *share=info->s;
DBUG_ENTER("underflow");
- DBUG_PRINT("enter",("leaf_page: %ld keypos: %lx",(long) leaf_page,keypos));
+ DBUG_PRINT("enter",("leaf_page: %ld keypos: 0x%lx",(long) leaf_page,
+ (ulong) keypos));
DBUG_DUMP("anc_buff",(byte*) anc_buff,mi_getint(anc_buff));
DBUG_DUMP("leaf_buff",(byte*) leaf_buff,mi_getint(leaf_buff));
| Thread |
|---|
| • bk commit into 4.1 tree (jani:1.2455) | jani | 25 Oct |