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::StatementProperties::CatalogIdentity Struct Reference
Collaboration diagram for duckdb::StatementProperties::CatalogIdentity:

Public Member Functions

bool operator== (const CatalogIdentity &rhs) const
 
bool operator!= (const CatalogIdentity &rhs) const
 

Public Attributes

idx_t catalog_oid
 
optional_idx catalog_version
 

Member Function Documentation

◆ operator==()

bool duckdb::StatementProperties::CatalogIdentity::operator== ( const CatalogIdentity rhs) const
inline
19384 {
19385 return catalog_oid == rhs.catalog_oid && catalog_version == rhs.catalog_version;
19386 }

◆ operator!=()

bool duckdb::StatementProperties::CatalogIdentity::operator!= ( const CatalogIdentity rhs) const
inline
19388 {
19389 return !operator==(rhs);
19390 }

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