tinySQL  0.1
A self-contained database management system
Public Member Functions | Public Attributes | List of all members
bpTree_Internal Struct Reference

The storage detail of an internal node of b-plus tree. More...

#include <bpTree_block.h>

Inheritance diagram for bpTree_Internal:
Inheritance graph
[legend]
Collaboration diagram for bpTree_Internal:
Collaboration graph
[legend]

Public Member Functions

void init (blockId_t myBId, blockId_t parentId)
 
db_size_t internal_biSearch (const key_t key)
 
- Public Member Functions inherited from bpTree_Block
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.
 
- Public Attributes inherited from bpTree_Block
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
 

Detailed Description

The storage detail of an internal node of b-plus tree.

Definition at line 122 of file bpTree_block.h.

Member Function Documentation

◆ init()

void bpTree_Internal::init ( blockId_t  myBId,
blockId_t  parentId 
)
inline

Init an internal node.

Parameters
myBIdblock id for this node
parentIdblock id for its parent. INVALID_BLOCK_ID for no parent.

Definition at line 129 of file bpTree_block.h.

Here is the call graph for this function:

◆ internal_biSearch()

db_size_t bpTree_Internal::internal_biSearch ( const key_t  key)
inline

Return the position of the greatest key that is smaller or equal to the given key.

Parameters
keyThe given key
Returns

Definition at line 142 of file bpTree_block.h.


The documentation for this struct was generated from the following file: