Browse Source

MDEV-35457 Remove btr_cur_t::path_arr

After MDEV-21136 fix, the btr_cur_t::path_arr field stayed declared, but
not used, wasting space in each btr_cur_t and btr_pcur_t. Remove it.
pull/3642/head
Vlad Lesin 12 months ago
parent
commit
bcbeef6772
  1. 4
      storage/innobase/include/btr0cur.h

4
storage/innobase/include/btr0cur.h

@ -730,10 +730,6 @@ struct btr_cur_t {
ulint fold; /*!< fold value used in the search if
flag is BTR_CUR_HASH */
/* @} */
btr_path_t* path_arr; /*!< in estimating the number of
rows in range, we store in this array
information of the path through
the tree */
rtr_info_t* rtr_info; /*!< rtree search info */
btr_cur_t() { memset((void*) this, 0, sizeof *this); }

Loading…
Cancel
Save