![]() |
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.
|
TableFilter represents a filter pushed down into the table scan. More...
#include <duckdb.hpp>

Public Member Functions | |
| TableFilter (TableFilterType filter_type_p) | |
| virtual FilterPropagateResult | CheckStatistics (BaseStatistics &stats) const =0 |
| Returns true if the statistics indicate that the segment can contain values that satisfy that filter. | |
| virtual string | ToString (const string &column_name) const =0 |
| string | DebugToString () const |
| virtual unique_ptr< TableFilter > | Copy () const =0 |
| virtual bool | Equals (const TableFilter &other) const |
| virtual unique_ptr< Expression > | ToExpression (const Expression &column) const =0 |
| virtual void | Serialize (Serializer &serializer) const |
| template<class TARGET > | |
| TARGET & | Cast () |
| template<class TARGET > | |
| const TARGET & | Cast () const |
Static Public Member Functions | |
| static unique_ptr< TableFilter > | Deserialize (Deserializer &deserializer) |
Public Attributes | |
| TableFilterType | filter_type |
TableFilter represents a filter pushed down into the table scan.
|
inlineexplicit |
|
inlinevirtual |
|
pure virtual |
Returns true if the statistics indicate that the segment can contain values that satisfy that filter.
Implemented in duckdb::DynamicFilter, duckdb::InFilter, duckdb::IsNullFilter, duckdb::IsNotNullFilter, duckdb::OptionalFilter, duckdb::StructFilter, duckdb::BFTableFilter, duckdb::SelectivityOptionalFilter, duckdb::ExpressionFilter, duckdb::ConjunctionOrFilter, duckdb::ConjunctionAndFilter, and duckdb::ConstantFilter.
|
inlinevirtual |