mirror of
https://github.com/MariaDB/server.git
synced 2025-08-08 11:22:35 +03:00
Merge with 3.23.54
This commit is contained in:
@@ -22,6 +22,17 @@
|
||||
#endif
|
||||
#include "heap.h" /* Structs & some defines */
|
||||
|
||||
/*
|
||||
When allocating keys /rows in the internal block structure, do it
|
||||
within the following boundaries.
|
||||
|
||||
The challenge is to find the balance between allocate as few blocks
|
||||
as possible and keep memory consumption down.
|
||||
*/
|
||||
|
||||
#define HP_MIN_RECORDS_IN_BLOCK 16
|
||||
#define HP_MAX_RECORDS_IN_BLOCK 8192
|
||||
|
||||
/* Some extern variables */
|
||||
|
||||
extern LIST *heap_open_list,*heap_share_list;
|
||||
|
Reference in New Issue
Block a user