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

Public Member Functions

 ArrowArrayScanState (ClientContext &context)
 
ArrowArrayScanStateGetChild (idx_t child_idx)
 
void AddDictionary (unique_ptr< Vector > dictionary_p, ArrowArray *arrow_dict)
 
bool HasDictionary () const
 
bool CacheOutdated (ArrowArray *dictionary) const
 
VectorGetDictionary ()
 
ArrowRunEndEncodingStateRunEndEncoding ()
 
void Reset ()
 

Public Attributes

shared_ptr< ArrowArrayWrapperowned_data
 
unordered_map< idx_t, unique_ptr< ArrowArrayScanState > > children
 
optional_ptr< ArrowArrayarrow_dictionary = nullptr
 
unique_ptr< Vectordictionary
 
ArrowRunEndEncodingState run_end_encoding
 Run-end-encoding state.
 
ClientContextcontext
 

Member Function Documentation

◆ RunEndEncoding()

ArrowRunEndEncodingState & duckdb::ArrowArrayScanState::RunEndEncoding ( )
inline
27355 {
27356 return run_end_encoding;
27357 }
ArrowRunEndEncodingState run_end_encoding
Run-end-encoding state.
Definition duckdb.cpp:27346

◆ Reset()

void duckdb::ArrowArrayScanState::Reset ( )
inline
27360 {
27361 // Note: dictionary is not reset
27362 // the dictionary should be the same for every array scanned of this column
27363 run_end_encoding.Reset();
27364 for (auto &child : children) {
27365 child.second->Reset();
27366 }
27367 owned_data.reset();
27368 }

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