mirror of
https://github.com/MariaDB/server.git
synced 2026-05-11 01:20:15 +02:00
Replace univ_page_size and UNIV_PAGE_SIZE
Try to use one variable (srv_page_size) for innodb_page_size. Also, replace UNIV_PAGE_SIZE_SHIFT with srv_page_size_shift.
This commit is contained in:
parent
ba19764209
commit
a90100d756
84 changed files with 541 additions and 546 deletions
|
|
@ -834,7 +834,7 @@ btr_cur_latch_leaves(
|
|||
/** In the pessimistic delete, if the page data size drops below this
|
||||
limit, merging it to a neighbor is tried */
|
||||
#define BTR_CUR_PAGE_COMPRESS_LIMIT(index) \
|
||||
((UNIV_PAGE_SIZE * (ulint)((index)->merge_threshold)) / 100)
|
||||
((srv_page_size * (ulint)((index)->merge_threshold)) / 100)
|
||||
|
||||
/** A slot in the path array. We store here info on a search path down the
|
||||
tree. Each slot contains data on a single level of the tree. */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue