diff options
author | Marko Mäkelä <marko.makela@mariadb.com> | 2020-07-16 12:33:20 +0300 |
---|---|---|
committer | Marko Mäkelä <marko.makela@mariadb.com> | 2020-07-20 14:48:56 +0300 |
commit | 14543afd59d7d42a639b6933c404f971c2cc76a6 (patch) | |
tree | 83de9aa2b03273e1a85f4b34ff96107f06d40f8a | |
parent | c400ef2586bd188858ff43f2120fdf17475f2fdb (diff) | |
download | mariadb-git-14543afd59d7d42a639b6933c404f971c2cc76a6.tar.gz |
Cleanup: Remove unused AbstractCallback::m_free_limit
-rw-r--r-- | storage/innobase/row/row0import.cc | 9 | ||||
-rw-r--r-- | storage/xtradb/row/row0import.cc | 9 |
2 files changed, 0 insertions, 18 deletions
diff --git a/storage/innobase/row/row0import.cc b/storage/innobase/row/row0import.cc index f5e882f96fe..2121b00d009 100644 --- a/storage/innobase/row/row0import.cc +++ b/storage/innobase/row/row0import.cc @@ -561,14 +561,6 @@ protected: /** Space id of the file being iterated over. */ ulint m_space; - /** Minimum page number for which the free list has not been - initialized: the pages >= this limit are, by definition, free; - note that in a single-table tablespace where size < 64 pages, - this number is 64, i.e., we have initialized the space about - the first extent, but have not physically allocted those pages - to the file. @see FSP_LIMIT. */ - ulint m_free_limit; - /** Current size of the space in pages */ ulint m_size; @@ -647,7 +639,6 @@ AbstractCallback::init( ut_a(m_space == ULINT_UNDEFINED); m_size = mach_read_from_4(page + FSP_SIZE); - m_free_limit = mach_read_from_4(page + FSP_FREE_LIMIT); m_space = mach_read_from_4(page + FSP_HEADER_OFFSET + FSP_SPACE_ID); return set_current_xdes(0, page); diff --git a/storage/xtradb/row/row0import.cc b/storage/xtradb/row/row0import.cc index f5e882f96fe..2121b00d009 100644 --- a/storage/xtradb/row/row0import.cc +++ b/storage/xtradb/row/row0import.cc @@ -561,14 +561,6 @@ protected: /** Space id of the file being iterated over. */ ulint m_space; - /** Minimum page number for which the free list has not been - initialized: the pages >= this limit are, by definition, free; - note that in a single-table tablespace where size < 64 pages, - this number is 64, i.e., we have initialized the space about - the first extent, but have not physically allocted those pages - to the file. @see FSP_LIMIT. */ - ulint m_free_limit; - /** Current size of the space in pages */ ulint m_size; @@ -647,7 +639,6 @@ AbstractCallback::init( ut_a(m_space == ULINT_UNDEFINED); m_size = mach_read_from_4(page + FSP_SIZE); - m_free_limit = mach_read_from_4(page + FSP_FREE_LIMIT); m_space = mach_read_from_4(page + FSP_HEADER_OFFSET + FSP_SPACE_ID); return set_current_xdes(0, page); |