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.
This commit is contained in:
Vlad Lesin 2024-11-20 17:43:04 +03:00
parent ba69d811fa
commit bcbeef6772

View file

@ -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); }