diff options
author | Sergei Golubchik <serg@mariadb.org> | 2016-01-09 00:02:56 +0100 |
---|---|---|
committer | Sergei Golubchik <serg@mariadb.org> | 2016-12-12 20:27:28 +0100 |
commit | 605cf619ba6dd025d0f6b100f40f0cd152ee3e3c (patch) | |
tree | 6babf8462b9e3bbd2d6f89408504ae500e4d816d /sql/ha_partition.cc | |
parent | 98be2d853e96f564d0570ade6e54333816efaacc (diff) | |
download | mariadb-git-605cf619ba6dd025d0f6b100f40f0cd152ee3e3c.tar.gz |
cleanup: extra_rec_buf_length
Diffstat (limited to 'sql/ha_partition.cc')
-rw-r--r-- | sql/ha_partition.cc | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/sql/ha_partition.cc b/sql/ha_partition.cc index 400ca6129d6..31cffe75e55 100644 --- a/sql/ha_partition.cc +++ b/sql/ha_partition.cc @@ -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; |