dbTalk Databases Forums  

bk commit into 5.1 tree (tomas:1.1928)

mailing.database.mysql-internals mailing.database.mysql-internals


Discuss bk commit into 5.1 tree (tomas:1.1928) in the mailing.database.mysql-internals forum.



Reply
 
Thread Tools Display Modes
  #1  
Old   
tomas@mysql.com
 
Posts: n/a

Default bk commit into 5.1 tree (tomas:1.1928) - 06-02-2005 , 03:14 PM






Below is the list of changes that have just been committed into a local
5.1 repository of tomas. When tomas 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/in...urce-tree.html

ChangeSet
1.1928 05/06/03 00:12:23 tomas (AT) poseidon (DOT) ndb.mysql.com +1 -0
my_bitmap.h:
corrected error in prev push

include/my_bitmap.h
1.18 05/06/03 00:11:56 tomas (AT) poseidon (DOT) ndb.mysql.com +4 -4
corrected error in prev push

# 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: tomas
# Host: poseidon.ndb.mysql.com
# Root: /home/tomas/mysql-5.1-wl2325

--- 1.17/include/my_bitmap.h 2005-06-02 23:25:47 +02:00
+++ 1.18/include/my_bitmap.h 2005-06-03 00:11:56 +02:00
@@ -89,25 +89,25 @@
#define _bitmap_clear_bit(MAP, BIT) ((MAP)->bitmap[(BIT) / 32] &= ~ (1 << ((BIT) & 31)))
#define _bitmap_is_set(MAP, BIT) ((MAP)->bitmap[(BIT) / 32] & (1 << ((BIT) & 31)))
#ifndef DBUG_OFF
-inline my_bool
+inline uint32
bitmap_set_bit(MY_BITMAP *map,uint bit)
{
DBUG_ASSERT(bit < (map)->n_bits);
return _bitmap_set_bit(map,bit);
}
-inline my_bool
+inline uint32
bitmap_flip_bit(MY_BITMAP *map,uint bit)
{
DBUG_ASSERT(bit < (map)->n_bits);
return _bitmap_flip_bit(map,bit);
}
-inline my_bool
+inline uint32
bitmap_clear_bit(MY_BITMAP *map,uint bit)
{
DBUG_ASSERT(bit < (map)->n_bits);
return _bitmap_clear_bit(map,bit);
}
-inline my_bool
+inline uint32
bitmap_is_set(const MY_BITMAP *map,uint bit)
{
DBUG_ASSERT(bit < (map)->n_bits);

--
MySQL Internals Mailing List
For list archives: http://lists.mysql.com/internals
To unsubscribe: http://lists.mysql.com/internals?uns...ie.nctu.edu.tw


Reply With Quote
Reply




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.3
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.