From: Date: January 29 2008 12:12pm Subject: bk commit into 5.1 tree (kostja:1.2660) BUG#27812 List-Archive: http://lists.mysql.com/commits/41356 X-Bug: 27812 Message-Id: <20080129111247.BCB7743E4C@vajra.local> Below is the list of changes that have just been committed into a local 5.1 repository of kostja. When kostja 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, 2008-01-29 14:12:42+03:00, kostja@dipika.(none) +1 -0 Fix Bug#27812 "an ampersand is missed in sql/sql_bitmap.h, line 68" sql/sql_bitmap.h@stripped, 2008-01-29 14:12:40+03:00, kostja@dipika.(none) +1 -1 Fix Bug#27812 "an ampersand is missed in sql/sql_bitmap.h, line 68" diff -Nrup a/sql/sql_bitmap.h b/sql/sql_bitmap.h --- a/sql/sql_bitmap.h 2006-12-23 22:19:53 +03:00 +++ b/sql/sql_bitmap.h 2008-01-29 14:12:40 +03:00 @@ -65,7 +65,7 @@ public: my_bool is_clear_all() const { return bitmap_is_clear_all(&map); } my_bool is_set_all() const { return bitmap_is_set_all(&map); } my_bool is_subset(const Bitmap& map2) const { return bitmap_is_subset(&map, &map2.map); } - my_bool is_overlapping(const Bitmap& map2) const { return bitmap_is_overlapping(&map, map2.map); } + my_bool is_overlapping(const Bitmap& map2) const { return bitmap_is_overlapping(&map, &map2.map); } my_bool operator==(const Bitmap& map2) const { return bitmap_cmp(&map, &map2.map); } char *print(char *buf) const {