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::IndexAppendInfo Class Reference
Collaboration diagram for duckdb::IndexAppendInfo:

Public Member Functions

 IndexAppendInfo (const IndexAppendMode append_mode, optional_ptr< BoundIndex > delete_index)
 

Public Attributes

IndexAppendMode append_mode
 
vector< reference< BoundIndex > > delete_indexes
 

Constructor & Destructor Documentation

◆ IndexAppendInfo() [1/2]

duckdb::IndexAppendInfo::IndexAppendInfo ( )
inline
49989 : append_mode(IndexAppendMode::DEFAULT) {
49990 }

◆ IndexAppendInfo() [2/2]

duckdb::IndexAppendInfo::IndexAppendInfo ( const IndexAppendMode  append_mode,
optional_ptr< BoundIndex delete_index 
)
inline
49992 : append_mode(append_mode) {
49993 if (delete_index) {
49994 delete_indexes.push_back(*delete_index);
49995 }
49996 }

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