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::QualifiedColumnEquality Struct Reference

Public Member Functions

bool operator() (const QualifiedColumnName &a, const QualifiedColumnName &b) const
 

Member Function Documentation

◆ operator()()

bool duckdb::QualifiedColumnEquality::operator() ( const QualifiedColumnName a,
const QualifiedColumnName b 
) const
inline
667 {
668 // qualified column names follow a prefix comparison
669 // so "tbl.i" and "i" are equivalent, as are "schema.tbl.i" and "i"
670 // but "tbl.i" and "tbl2.i" are not equivalent
671 if (!a.catalog.empty() && !b.catalog.empty() && !StringUtil::CIEquals(a.catalog, b.catalog)) {
672 return false;
673 }
674 if (!a.schema.empty() && !b.schema.empty() && !StringUtil::CIEquals(a.schema, b.schema)) {
675 return false;
676 }
677 if (!a.table.empty() && !b.table.empty() && !StringUtil::CIEquals(a.table, b.table)) {
678 return false;
679 }
680 return StringUtil::CIEquals(a.column, b.column);
681 }
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: