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

Public Member Functions

 ClientData (ClientContext &context)
 

Static Public Member Functions

static DUCKDB_API ClientDataGet (ClientContext &context)
 
static DUCKDB_API const ClientDataGet (const ClientContext &context)
 

Public Attributes

shared_ptr< QueryProfilerprofiler
 The query profiler of this client.
 
shared_ptr< AttachedDatabasetemporary_objects
 The set of temporary objects belonging to this client.
 
case_insensitive_map_t< shared_ptr< PreparedStatementData > > prepared_statements
 The set of bound prepared statements belonging to this client.
 
unique_ptr< RandomEnginerandom_engine
 
unique_ptr< CatalogSearchPathcatalog_search_path
 The catalog search path.
 
unique_ptr< FileOpenerfile_opener
 The file opener of the client context.
 
unique_ptr< FileSystemclient_file_system
 The clients' file system wrapper.
 
unique_ptr< BufferManagerclient_buffer_manager
 The clients' buffer manager wrapper.
 
bool debug_set_max_line_length = false
 
idx_t debug_max_line_length = 0
 
unique_ptr< BufferedFileWriterlog_query_writer
 

Member Data Documentation

◆ random_engine

unique_ptr<RandomEngine> duckdb::ClientData::random_engine

The random generator used by random(). Its seed value can be set by setseed().

◆ debug_set_max_line_length

bool duckdb::ClientData::debug_set_max_line_length = false

The Max Line Length Size of Last Query Executed on a CSV File. (Only used for testing) FIXME: this should not be done like this

◆ log_query_writer

unique_ptr<BufferedFileWriter> duckdb::ClientData::log_query_writer

The writer used to log queries, if logging is enabled. DEPRECATED: Now, queries are written to the generic log.


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