File tree Expand file tree Collapse file tree 1 file changed +4
-6
lines changed Expand file tree Collapse file tree 1 file changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -1649,12 +1649,6 @@ dberr_t PageConverter::update_records(buf_block_t *block) UNIV_NOTHROW {
16491649 while (!m_rec_iter.end ()) {
16501650 rec_t *rec = m_rec_iter.current ();
16511651
1652- /* FIXME: Move out of the loop */
1653-
1654- if (rec_get_status (rec) == REC_STATUS_NODE_PTR) {
1655- break ;
1656- }
1657-
16581652 ibool deleted = rec_get_deleted_flag (rec, comp);
16591653
16601654 /* For the clustered index we have to adjust the BLOB
@@ -1746,6 +1740,10 @@ dberr_t PageConverter::update_index_page(buf_block_t *block) UNIV_NOTHROW {
17461740 return (DB_SUCCESS);
17471741 }
17481742
1743+ if (!page_is_leaf (block->frame )) {
1744+ return (DB_SUCCESS);
1745+ }
1746+
17491747 return (update_records (block));
17501748}
17511749
You can’t perform that action at this time.
0 commit comments