mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Merge mysql.com:/home/my/mysql-5.0
into mysql.com:/home/my/mysql-5.1
This commit is contained in:
@ -64,7 +64,8 @@ HP_INFO *heap_open(const char *name, int mode)
|
||||
info->opt_flag= READ_CHECK_USED; /* Check when changing */
|
||||
#endif
|
||||
DBUG_PRINT("exit",("heap: 0x%lx reclength: %d records_in_block: %d",
|
||||
info,share->reclength,share->block.records_in_block));
|
||||
(long) info, share->reclength,
|
||||
share->block.records_in_block));
|
||||
DBUG_RETURN(info);
|
||||
}
|
||||
|
||||
@ -82,7 +83,7 @@ HP_SHARE *hp_find_named_heap(const char *name)
|
||||
info= (HP_SHARE*) pos->data;
|
||||
if (!strcmp(name, info->name))
|
||||
{
|
||||
DBUG_PRINT("exit", ("Old heap_database: 0x%lx",info));
|
||||
DBUG_PRINT("exit", ("Old heap_database: 0x%lx", (long) info));
|
||||
DBUG_RETURN(info);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user