![]() |
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.
|
A Binding represents a binding to a table, table-producing function or subquery with a specified table index. More...


Public Member Functions | |
| Binding (BindingType binding_type, BindingAlias alias, vector< LogicalType > types, vector< string > names, idx_t index) | |
| bool | TryGetBindingIndex (const string &column_name, column_t &column_index) |
| column_t | GetBindingIndex (const string &column_name) |
| bool | HasMatchingBinding (const string &column_name) |
| virtual ErrorData | ColumnNotFoundError (const string &column_name) const |
| virtual BindResult | Bind (ColumnRefExpression &colref, idx_t depth) |
| virtual optional_ptr< StandardEntry > | GetStandardEntry () |
| string | GetAlias () const |
| BindingType | GetBindingType () |
| const BindingAlias & | GetBindingAlias () |
| idx_t | GetIndex () |
| const vector< LogicalType > & | GetColumnTypes () |
| const vector< string > & | GetColumnNames () |
| idx_t | GetColumnCount () |
| void | SetColumnType (idx_t col_idx, LogicalType type) |
| template<class TARGET > | |
| TARGET & | Cast () |
| template<class TARGET > | |
| const TARGET & | Cast () const |
Static Public Member Functions | |
| static BindingAlias | GetAlias (const string &explicit_alias, const StandardEntry &entry) |
| static BindingAlias | GetAlias (const string &explicit_alias, optional_ptr< StandardEntry > entry) |
Protected Member Functions | |
| void | Initialize () |
Protected Attributes | |
| BindingType | binding_type |
| The type of Binding. | |
| BindingAlias | alias |
| The alias of the binding. | |
| idx_t | index |
| The table index of the binding. | |
| vector< LogicalType > | types |
| The types of the bound columns. | |
| vector< string > | names |
| Column names of the subquery. | |
| case_insensitive_map_t< column_t > | name_map |
| Name -> index for the names. | |
A Binding represents a binding to a table, table-producing function or subquery with a specified table index.
|
virtual |
Reimplemented in duckdb::DummyBinding.