1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-08 11:22:35 +03:00

cleanup: extra_rec_buf_length

This commit is contained in:
Sergei Golubchik
2016-01-09 00:02:56 +01:00
parent 98be2d853e
commit 605cf619ba
5 changed files with 5 additions and 28 deletions

View File

@@ -8440,18 +8440,6 @@ uint ha_partition::max_supported_keys() const
}
uint ha_partition::extra_rec_buf_length() const
{
handler **file;
uint max= (*m_file)->extra_rec_buf_length();
for (file= m_file, file++; *file; file++)
if (max < (*file)->extra_rec_buf_length())
max= (*file)->extra_rec_buf_length();
return max;
}
uint ha_partition::min_record_length(uint options) const
{
handler **file;