GPUdb C++ API
Version 7.2.2.4
|
A set of results returned by GPUdb::insertRecordsFromFiles. More...
#include <gpudb/protocol/insert_records_from_files.h>
Public Member Functions | |
InsertRecordsFromFilesResponse () | |
Constructs an InsertRecordsFromFilesResponse object with default parameters. More... | |
Public Attributes | |
std::string | tableName |
Value of tableName. More... | |
std::string | typeId |
ID of the currently registered table structure type for the target table. More... | |
std::string | typeDefinition |
A JSON string describing the columns of the target table. More... | |
std::string | typeLabel |
The user-defined description associated with the target table's structure. More... | |
std::map< std::string, std::vector< std::string > > | typeProperties |
A mapping of each target table column name to an array of column properties associated with that column. More... | |
int64_t | countInserted |
Number of records inserted into the target table. More... | |
int64_t | countSkipped |
Number of records skipped, when not running in abort error handling mode. More... | |
int64_t | countUpdated |
[Not yet implemented] Number of records updated within the target table. More... | |
std::map< std::string, std::string > | info |
Additional information. More... | |
std::vector< std::string > | files |
A set of results returned by GPUdb::insertRecordsFromFiles.
Definition at line 2175 of file insert_records_from_files.h.
|
inline |
Constructs an InsertRecordsFromFilesResponse object with default parameters.
Definition at line 2181 of file insert_records_from_files.h.
int64_t gpudb::InsertRecordsFromFilesResponse::countInserted |
Number of records inserted into the target table.
Definition at line 2228 of file insert_records_from_files.h.
int64_t gpudb::InsertRecordsFromFilesResponse::countSkipped |
Number of records skipped, when not running in abort error handling mode.
Definition at line 2234 of file insert_records_from_files.h.
int64_t gpudb::InsertRecordsFromFilesResponse::countUpdated |
[Not yet implemented] Number of records updated within the target table.
Definition at line 2240 of file insert_records_from_files.h.
std::vector<std::string> gpudb::InsertRecordsFromFilesResponse::files |
Definition at line 2247 of file insert_records_from_files.h.
std::map<std::string, std::string> gpudb::InsertRecordsFromFilesResponse::info |
Additional information.
Definition at line 2245 of file insert_records_from_files.h.
std::string gpudb::InsertRecordsFromFilesResponse::tableName |
Value of tableName.
Definition at line 2199 of file insert_records_from_files.h.
std::string gpudb::InsertRecordsFromFilesResponse::typeDefinition |
A JSON string describing the columns of the target table.
Definition at line 2211 of file insert_records_from_files.h.
std::string gpudb::InsertRecordsFromFilesResponse::typeId |
ID of the currently registered table structure type for the target table.
Definition at line 2206 of file insert_records_from_files.h.
std::string gpudb::InsertRecordsFromFilesResponse::typeLabel |
The user-defined description associated with the target table's structure.
Definition at line 2217 of file insert_records_from_files.h.
std::map<std::string, std::vector<std::string> > gpudb::InsertRecordsFromFilesResponse::typeProperties |
A mapping of each target table column name to an array of column properties associated with that column.
Definition at line 2223 of file insert_records_from_files.h.