mariadb/storage/innobase/dict
Marko Mäkelä fade8b2f96 MDEV-35049: Improve btr_search_drop_page_hash_index()
btr_search_drop_page_hash_index(): Replace the Boolean parameter
with const dict_index_t *not_garbage. If buf_block_t::index points
to that, there is no need to acquire btr_sea::partition::latch.

The old parameter bool garbage_collect=false is equivalent to the
parameter not_garbage=nullptr. The parameter garbage_collect=true
will be replaced either with the actual index that is associated
with the buffer page, or with a bogus pointer not_garbage=-1 to
indicate that any lazily entries for a freed index need to be removed.

buf_page_get_low(), buf_page_get_gen(), mtr_t::page_lock(),
mtr_t::upgrade_buffer_fix(): Do not invoke
btr_search_drop_page_hash_index(). Our caller will have to do it
when appropriate.

buf_page_create_low(): Keep invoking btr_search_drop_page_hash_index().
This is the normal way of lazily dropping the adaptive hash index
after a DDL operation such as DROP INDEX operation.

btr_block_get(), btr_root_block_get(), btr_root_adjust_on_import(),
btr_read_autoinc_with_fallback(), btr_cur_instant_init_low(),
btr_cur_t::search_leaf(), btr_cur_t::pessimistic_search_leaf(),
btr_pcur_optimistic_latch_leaves(), dict_stats_analyze_index_below_cur():
Invoke btr_search_drop_page_hash_index(block, index) for pages that
may be leaf pages. No adaptive hash index may have been created on
anything else than a B-tree leaf page.

btr_cur_search_to_nth_level(): Do not invoke
btr_search_drop_page_hash_index(), because we are only accessing
non-leaf pages and the adaptive hash index may only have been created
on leaf pages.

btr_page_alloc_for_ibuf() and many other callers of buf_page_get_gen()
or similar functions do not invoke btr_search_drop_page_hash_index(),
because the adaptive hash index is never created on such pages.
If a page in the tablespace was freed as part of a DDL operation and
reused for something else, then buf_page_create_low() will take care
of dropping the adaptive hash index before the freed page will be
modified.

It is notable that while the flst_ functions may access pages that are
related to allocating B-tree index pages (the BTR_SEG_TOP and BTR_SEG_LEAF
linked from the index root page), those pages themselves can never be
stored in the adaptive hash index. Therefore, it is not necessary to
invoke btr_search_drop_page_hash_index() on them.

Reviewed by: Vladislav Lesin
2025-01-10 16:12:38 +02:00
..
dict0boot.cc Merge branch '10.6' into 10.11 2023-12-18 11:19:04 +01:00
dict0crea.cc MDEV-35049: btr_search_check_free_space_in_heap() is a bottleneck 2025-01-10 16:12:34 +02:00
dict0defrag_bg.cc MDEV-30638 Deadlock between INSERT and InnoDB non-persistent statistics update 2023-02-16 08:30:20 +02:00
dict0dict.cc MDEV-35049: btr_search_check_free_space_in_heap() is a bottleneck 2025-01-10 16:12:34 +02:00
dict0load.cc MDEV-35049: btr_search_check_free_space_in_heap() is a bottleneck 2025-01-10 16:12:34 +02:00
dict0mem.cc Merge 10.6 into 10.11 2024-12-19 15:38:53 +02:00
dict0stats.cc MDEV-35049: Improve btr_search_drop_page_hash_index() 2025-01-10 16:12:38 +02:00
dict0stats_bg.cc Fix galera.galera_kill_ddl test errors in debug mode. 2023-12-22 17:55:30 +01:00
drop.cc Merge branch '10.6' into 10.11 2024-10-29 15:24:38 +01:00