mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Removed double records_in_range calls from multi_range_read_info_const
This was to remove a performance regression between 10.3 and 10.4 In 10.5 we will have a better implementation of records_in_range that will enable us to get more statistics. This change was not done in 10.4 because the 10.5 will be part of a larger change that is not suitable for the GA 10.4 version Other things: - Changed default handler block_size to 8192 to fix things statistics for engines that doesn't set the block size. - Fixed a bug in spider when using multiple part const ranges (Patch from Kentoku)
This commit is contained in:
@ -2905,7 +2905,7 @@ public:
|
||||
data_file_length(0), max_data_file_length(0),
|
||||
index_file_length(0), max_index_file_length(0), delete_length(0),
|
||||
auto_increment_value(0), records(0), deleted(0), mean_rec_length(0),
|
||||
create_time(0), check_time(0), update_time(0), block_size(0),
|
||||
create_time(0), check_time(0), update_time(0), block_size(8192),
|
||||
checksum(0), checksum_null(FALSE), mrr_length_per_rec(0)
|
||||
{}
|
||||
};
|
||||
|
Reference in New Issue
Block a user