Autonomy Software C++ 24.5.1
Welcome to the Autonomy Software repository of the Mars Rover Design Team (MRDT) at Missouri University of Science and Technology (Missouri S&T)! API reference contains the source code and other resources for the development of the autonomy software for our Mars rover. The Autonomy Software project aims to compete in the University Rover Challenge (URC) by demonstrating advanced autonomous capabilities and robust navigation algorithms.
Loading...
Searching...
No Matches
duckdb::CompressionInfo Class Reference
Collaboration diagram for duckdb::CompressionInfo:

Public Member Functions

 CompressionInfo (BlockManager &block_manager)
 
idx_t GetCompactionFlushLimit () const
 The size below which the segment is compacted on flushing.
 
idx_t GetBlockSize () const
 The block size for blocks using this compression.
 
idx_t GetBlockHeaderSize () const
 The block header size for blocks using this compression.
 
BlockManagerGetBlockManager () const
 

Private Attributes

BlockManagerblock_manager
 

Constructor & Destructor Documentation

◆ CompressionInfo()

duckdb::CompressionInfo::CompressionInfo ( BlockManager block_manager)
inlineexplicit
48651 : block_manager(block_manager) {
48652 }

Member Function Documentation

◆ GetCompactionFlushLimit()

idx_t duckdb::CompressionInfo::GetCompactionFlushLimit ( ) const
inline

The size below which the segment is compacted on flushing.

48656 {
48657 return block_manager.GetBlockSize() / 5 * 4;
48658 }
idx_t GetBlockSize() const
Returns the size of the block that is available for usage.
Definition duckdb.hpp:45319
Here is the call graph for this function:

◆ GetBlockSize()

idx_t duckdb::CompressionInfo::GetBlockSize ( ) const
inline

The block size for blocks using this compression.

48660 {
48661 return block_manager.GetBlockSize();
48662 }
Here is the call graph for this function:

◆ GetBlockHeaderSize()

idx_t duckdb::CompressionInfo::GetBlockHeaderSize ( ) const
inline

The block header size for blocks using this compression.

48665 {
48666 return block_manager.GetBlockHeaderSize();
48667 }
idx_t GetBlockHeaderSize() const
Returns the block header size including the 8-byte checksum of this block manager.
Definition duckdb.hpp:45312
Here is the call graph for this function:

◆ GetBlockManager()

BlockManager & duckdb::CompressionInfo::GetBlockManager ( ) const
inline
48669 {
48670 return block_manager;
48671 }

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