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

Public Member Functions

bool operator== (const CatalogEntryInfo &other) const
 
void Serialize (Serializer &serializer) const
 

Static Public Member Functions

static CatalogEntryInfo Deserialize (Deserializer &deserializer)
 

Public Attributes

CatalogType type
 
string schema
 
string name
 

Member Function Documentation

◆ operator==()

bool duckdb::CatalogEntryInfo::operator== ( const CatalogEntryInfo other) const
inline
27890 {
27891 if (other.type != type) {
27892 return false;
27893 }
27894 if (!StringUtil::CIEquals(other.schema, schema)) {
27895 return false;
27896 }
27897 if (!StringUtil::CIEquals(other.name, name)) {
27898 return false;
27899 }
27900 return true;
27901 }
static DUCKDB_API bool CIEquals(const string &l1, const string &l2)
Case insensitive equals.

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