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::BoundCheckConstraint Class Reference
Inheritance diagram for duckdb::BoundCheckConstraint:
Collaboration diagram for duckdb::BoundCheckConstraint:

Public Member Functions

unique_ptr< BoundConstraintCopy () const override
 
- Public Member Functions inherited from duckdb::BoundConstraint
 BoundConstraint (ConstraintType type)
 
template<class TARGET >
TARGETCast ()
 
template<class TARGET >
const TARGETCast () const
 

Public Attributes

unique_ptr< Expressionexpression
 The expression.
 
physical_index_set_t bound_columns
 The columns used by the CHECK constraint.
 
- Public Attributes inherited from duckdb::BoundConstraint
ConstraintType type
 

Static Public Attributes

static constexpr const ConstraintType TYPE = ConstraintType::CHECK
 

Detailed Description

The CheckConstraint contains an expression that must evaluate to TRUE for every row in a table

Constructor & Destructor Documentation

◆ BoundCheckConstraint()

duckdb::BoundCheckConstraint::BoundCheckConstraint ( )
inline
12568 : BoundConstraint(ConstraintType::CHECK) {
12569 }

Member Function Documentation

◆ Copy()

unique_ptr< BoundConstraint > duckdb::BoundCheckConstraint::Copy ( ) const
inlineoverridevirtual

Implements duckdb::BoundConstraint.

12577 {
12578 auto result = make_uniq<BoundCheckConstraint>();
12579 result->expression = expression->Copy();
12580 result->bound_columns = bound_columns;
12581 return std::move(result);
12582 }
physical_index_set_t bound_columns
The columns used by the CHECK constraint.
Definition duckdb.cpp:12574
unique_ptr< Expression > expression
The expression.
Definition duckdb.cpp:12572

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