tinySQL
0.1
A self-contained database management system
|
The storage detail of an internal node of b-plus tree. More...
#include <bpTree_block.h>
Public Member Functions | |
void | init (blockId_t myBId, blockId_t parentId) |
db_size_t | internal_biSearch (const key_t key) |
![]() | |
void | init (blockId_t myBId, blockId_t parentId) |
bool | isLeaf () const |
Public Attributes | |
MAPPING_T | _k_child_pair [MAX_INTERNAL_SIZE+1] |
One extra space for spanning. | |
![]() | |
blockType_t | _blockType |
blockId_t | _parent_block_id |
blockId_t | _block_id |
db_size_t | _size |
db_size_t | _max_size |
blockId_t | _next_block_id |
The storage detail of an internal node of b-plus tree.
Definition at line 122 of file bpTree_block.h.
|
inline |
Init an internal node.
myBId | block id for this node |
parentId | block id for its parent. INVALID_BLOCK_ID for no parent. |
Definition at line 129 of file bpTree_block.h.
|
inline |
Return the position of the greatest key that is smaller or equal to the given key.
key | The given key |
Definition at line 142 of file bpTree_block.h.