You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-07-27 21:01:50 +03:00
MCOL-5206 This patch brings some EMIndex and treeish EM leftovers from develop-5
This commit is contained in:
@ -1066,11 +1066,10 @@ class ExtentMap : public Undoable
|
||||
static const constexpr size_t EM_FREELIST_INITIAL_SIZE = 50 * sizeof(InlineLBIDRange);
|
||||
static const constexpr size_t EM_FREELIST_INCREMENT = 50 * sizeof(InlineLBIDRange);
|
||||
// RBTree constants.
|
||||
static const size_t EM_RB_TREE_NODE_SIZE = 10 * (sizeof(EMEntry) + 8 * sizeof(uint64_t));
|
||||
static const size_t EM_RB_TREE_NODE_SIZE = sizeof(EMEntry) + 8 * sizeof(uint64_t);
|
||||
static const size_t EM_RB_TREE_EMPTY_SIZE = 1024;
|
||||
static const size_t EM_RB_TREE_INITIAL_SIZE =
|
||||
EM_INCREMENT_ROWS * 10 * EM_RB_TREE_NODE_SIZE + EM_RB_TREE_EMPTY_SIZE;
|
||||
static const size_t EM_RB_TREE_INCREMENT = EM_INCREMENT_ROWS * EM_RB_TREE_NODE_SIZE;
|
||||
static const size_t EM_RB_TREE_INITIAL_SIZE = 16 * 1024 * 1024;
|
||||
static const size_t EM_RB_TREE_INCREMENT = 16 * 1024 * 1024;
|
||||
|
||||
ExtentMap(const ExtentMap& em);
|
||||
ExtentMap& operator=(const ExtentMap& em);
|
||||
|
Reference in New Issue
Block a user