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

Public Member Functions

 CorrelatedColumnInfo (ColumnBinding binding, LogicalType type_p, string name_p, idx_t depth)
 
 CorrelatedColumnInfo (BoundColumnRefExpression &expr)
 
bool operator== (const CorrelatedColumnInfo &rhs) const
 

Public Attributes

ColumnBinding binding
 
LogicalType type
 
string name
 
idx_t depth
 

Constructor & Destructor Documentation

◆ CorrelatedColumnInfo() [1/2]

duckdb::CorrelatedColumnInfo::CorrelatedColumnInfo ( ColumnBinding  binding,
LogicalType  type_p,
string  name_p,
idx_t  depth 
)
inline
1855 : binding(binding), type(std::move(type_p)), name(std::move(name_p)), depth(depth) {
1856 }

◆ CorrelatedColumnInfo() [2/2]

duckdb::CorrelatedColumnInfo::CorrelatedColumnInfo ( BoundColumnRefExpression expr)
inlineexplicit
1858 : CorrelatedColumnInfo(expr.binding, expr.return_type, expr.GetName(), expr.depth) {
1859 }

Member Function Documentation

◆ operator==()

bool duckdb::CorrelatedColumnInfo::operator== ( const CorrelatedColumnInfo rhs) const
inline
1861 {
1862 return binding == rhs.binding;
1863 }

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