Commit 920c30b4 authored by unknown's avatar unknown

Merge bk-internal.mysql.com:/home/bk/mysql-4.1

into mysql.com:/home/kostja/mysql/mysql-4.1-root

parents d842a6d3 ac49ce88
...@@ -157,7 +157,7 @@ void ha_isammrg::info(uint flag) ...@@ -157,7 +157,7 @@ void ha_isammrg::info(uint flag)
deleted = (ha_rows) info.deleted; deleted = (ha_rows) info.deleted;
data_file_length=info.data_file_length; data_file_length=info.data_file_length;
errkey = info.errkey; errkey = info.errkey;
table->keys_in_use=0; // No keys yet table->keys_in_use.clear_all(); // No keys yet
table->db_options_in_use = info.options; table->db_options_in_use = info.options;
mean_rec_length=info.reclength; mean_rec_length=info.reclength;
block_size=0; block_size=0;
......
...@@ -29,7 +29,7 @@ template <uint default_width> class Bitmap ...@@ -29,7 +29,7 @@ template <uint default_width> class Bitmap
public: public:
Bitmap() { init(); } Bitmap() { init(); }
Bitmap(Bitmap& from) { *this=from; } Bitmap(Bitmap& from) { *this=from; }
Bitmap(uint prefix_to_set) { init(prefix_to_set); } explicit Bitmap(uint prefix_to_set) { init(prefix_to_set); }
void init() { bitmap_init(&map, buffer, default_width, 0); } void init() { bitmap_init(&map, buffer, default_width, 0); }
void init(uint prefix_to_set) { init(); set_prefix(prefix_to_set); } void init(uint prefix_to_set) { init(); set_prefix(prefix_to_set); }
uint length() const { return default_width; } uint length() const { return default_width; }
...@@ -91,7 +91,7 @@ template <> class Bitmap<64> ...@@ -91,7 +91,7 @@ template <> class Bitmap<64>
ulonglong map; ulonglong map;
public: public:
Bitmap<64>() { } Bitmap<64>() { }
Bitmap<64>(uint prefix_to_set) { set_prefix(prefix_to_set); } explicit Bitmap<64>(uint prefix_to_set) { set_prefix(prefix_to_set); }
void init() { } void init() { }
void init(uint prefix_to_set) { set_prefix(prefix_to_set); } void init(uint prefix_to_set) { set_prefix(prefix_to_set); }
uint length() const { return 64; } uint length() const { return 64; }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment