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

Public Member Functions

 ExpressionState (const Expression &expr, ExpressionExecutorState &root)
 
void AddChild (Expression &child_expr)
 
void Finalize ()
 
AllocatorGetAllocator ()
 
bool HasContext ()
 
DUCKDB_API ClientContextGetContext ()
 
void Verify (ExpressionExecutorState &root)
 
virtual void ResetDictionaryStates ()
 Reset any cached dictionary expression states in this expression state and its children.
 
template<class TARGET >
TARGETCast ()
 
template<class TARGET >
const TARGETCast () const
 

Public Attributes

const Expressionexpr
 
ExpressionExecutorStateroot
 
vector< unique_ptr< ExpressionState > > child_states
 
vector< LogicalTypetypes
 
DataChunk intermediate_chunk
 
vector< bool > initialize
 

Constructor & Destructor Documentation

◆ ~ExpressionState()

virtual duckdb::ExpressionState::~ExpressionState ( )
inlinevirtual
14038 {
14039 }

Member Function Documentation

◆ ResetDictionaryStates()

virtual void duckdb::ExpressionState::ResetDictionaryStates ( )
virtual

Reset any cached dictionary expression states in this expression state and its children.

Reimplemented in duckdb::ExecuteFunctionState.

◆ Cast() [1/2]

template<class TARGET >
TARGET & duckdb::ExpressionState::Cast ( )
inline
14062 {
14063 DynamicCastCheck<TARGET>(this);
14064 return reinterpret_cast<TARGET &>(*this);
14065 }

◆ Cast() [2/2]

template<class TARGET >
const TARGET & duckdb::ExpressionState::Cast ( ) const
inline
14067 {
14068 DynamicCastCheck<TARGET>(this);
14069 return reinterpret_cast<const TARGET &>(*this);
14070 }

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