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

The storage detail of the header of each page in index files. More...

#include <bpTree_block.h>

Inheritance diagram for bpTree_Block:
Inheritance graph
[legend]

Public Member Functions

void init (blockId_t myBId, blockId_t parentId)
 
bool isLeaf () const
 

Public Attributes

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 the header of each page in index files.

Both internal and leaf blocks are inherited from this.

It actually serves as a header part for each B+ tree page and contains information shared by both leaf block and internal block.

Header format (size in byte, 20 bytes in total):

| BlockType (4) | CurrentSize (4) | MaxSize (4) |

| ParentBlockId (4) | BlockId(4) |

Definition at line 39 of file bpTree_block.h.

Member Function Documentation

◆ init()

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

Init a block, neither leaf nor internal node. Usually occurs when a table exists but has no content

Parameters
myBId
parentId

Definition at line 46 of file bpTree_block.h.

Here is the caller graph for this function:

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