GPUdb C++ API  Version 7.2.2.4
gpudb::ExportRecordsToTableRequest Struct Reference

A set of parameters for GPUdb::exportRecordsToTable. More...

#include <gpudb/protocol/export_records_to_table.h>

Public Member Functions

 ExportRecordsToTableRequest ()
 Constructs an ExportRecordsToTableRequest object with default parameters. More...
 
 ExportRecordsToTableRequest (const std::string &tableName_, const std::string &remoteQuery_, const std::map< std::string, std::string > &options_)
 Constructs an ExportRecordsToTableRequest object with the specified parameters. More...
 

Public Attributes

std::string tableName
 Name of the table from which the data will be exported to remote database, in [ schema_name. ]table_name format, using standard name resolution rules. More...
 
std::string remoteQuery
 Parameterized insert query to export gpudb table data into remote database. More...
 
std::map< std::string, std::string > options
 Optional parameters. More...
 

Detailed Description

A set of parameters for GPUdb::exportRecordsToTable.

Exports records from source table to the specified target table in an external database

Definition at line 19 of file export_records_to_table.h.

Constructor & Destructor Documentation

◆ ExportRecordsToTableRequest() [1/2]

gpudb::ExportRecordsToTableRequest::ExportRecordsToTableRequest ( )
inline

Constructs an ExportRecordsToTableRequest object with default parameters.

Definition at line 25 of file export_records_to_table.h.

◆ ExportRecordsToTableRequest() [2/2]

gpudb::ExportRecordsToTableRequest::ExportRecordsToTableRequest ( const std::string &  tableName_,
const std::string &  remoteQuery_,
const std::map< std::string, std::string > &  options_ 
)
inline

Constructs an ExportRecordsToTableRequest object with the specified parameters.

Parameters
[in]tableName_Name of the table from which the data will be exported to remote database, in [schema_name.]table_name format, using standard name resolution rules.
[in]remoteQuery_Parameterized insert query to export gpudb table data into remote database. The default value is ''.
[in]options_Optional parameters. The default value is an empty map.

Definition at line 116 of file export_records_to_table.h.

Member Data Documentation

◆ options

std::map<std::string, std::string> gpudb::ExportRecordsToTableRequest::options

Optional parameters.

The default value is an empty map.

Definition at line 194 of file export_records_to_table.h.

◆ remoteQuery

std::string gpudb::ExportRecordsToTableRequest::remoteQuery

Parameterized insert query to export gpudb table data into remote database.

The default value is ''.

Definition at line 135 of file export_records_to_table.h.

◆ tableName

std::string gpudb::ExportRecordsToTableRequest::tableName

Name of the table from which the data will be exported to remote database, in [ schema_name. ]table_name format, using standard name resolution rules.

Definition at line 129 of file export_records_to_table.h.


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