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::QueryParameters Struct Reference

Public Member Functions

 QueryParameters (bool allow_streaming)
 
 QueryParameters (QueryResultOutputType output_type)
 

Public Attributes

QueryResultOutputType output_type = QueryResultOutputType::FORCE_MATERIALIZED
 
QueryResultMemoryType memory_type = QueryResultMemoryType::IN_MEMORY
 

Constructor & Destructor Documentation

◆ QueryParameters() [1/3]

duckdb::QueryParameters::QueryParameters ( )
inline
19235 {
19236 }

◆ QueryParameters() [2/3]

duckdb::QueryParameters::QueryParameters ( bool  allow_streaming)
inline
19238 : output_type(allow_streaming ? QueryResultOutputType::ALLOW_STREAMING
19239 : QueryResultOutputType::FORCE_MATERIALIZED) {
19240 }

◆ QueryParameters() [3/3]

duckdb::QueryParameters::QueryParameters ( QueryResultOutputType  output_type)
inline
19242 : output_type(output_type) {
19243 }

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