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

A set of properties from the client context that can be used to interpret the query result. More...

#include <duckdb.hpp>

Collaboration diagram for duckdb::ClientProperties:

Public Member Functions

 ClientProperties (string time_zone_p, const ArrowOffsetSize arrow_offset_size_p, const bool arrow_use_list_view_p, const bool produce_arrow_string_view_p, const bool lossless_conversion, const ArrowFormatVersion arrow_output_version, const optional_ptr< ClientContext > client_context)
 

Public Attributes

string time_zone = "UTC"
 
ArrowOffsetSize arrow_offset_size = ArrowOffsetSize::REGULAR
 
bool arrow_use_list_view = false
 
bool produce_arrow_string_view = false
 
bool arrow_lossless_conversion = false
 
ArrowFormatVersion arrow_output_version = ArrowFormatVersion::V1_0
 
optional_ptr< ClientContextclient_context
 

Detailed Description

A set of properties from the client context that can be used to interpret the query result.

Constructor & Destructor Documentation

◆ ClientProperties() [1/2]

duckdb::ClientProperties::ClientProperties ( string  time_zone_p,
const ArrowOffsetSize  arrow_offset_size_p,
const bool  arrow_use_list_view_p,
const bool  produce_arrow_string_view_p,
const bool  lossless_conversion,
const ArrowFormatVersion  arrow_output_version,
const optional_ptr< ClientContext client_context 
)
inline
19483 : time_zone(std::move(time_zone_p)), arrow_offset_size(arrow_offset_size_p),
19484 arrow_use_list_view(arrow_use_list_view_p), produce_arrow_string_view(produce_arrow_string_view_p),
19485 arrow_lossless_conversion(lossless_conversion), arrow_output_version(arrow_output_version),
19486 client_context(client_context) {
19487 }

◆ ClientProperties() [2/2]

duckdb::ClientProperties::ClientProperties ( )
inline
19488{};

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