GPUdb C++ API
Version 7.2.2.4
|
A set of results returned by GPUdb::getRecords. More...
#include <gpudb/protocol/get_records.h>
Public Member Functions | |
GetRecordsResponse () | |
Constructs a GetRecordsResponse object with default parameters. More... | |
Public Attributes | |
std::string | tableName |
Value of tableName. More... | |
std::string | typeName |
std::string | typeSchema |
Avro schema of data or recordsJson. More... | |
std::vector< T > | data |
If the encoding was 'binary', then this list contains the binary encoded records retrieved from the table, otherwise not populated. More... | |
int64_t | totalNumberOfRecords |
Total/Filtered number of records. More... | |
bool | hasMoreRecords |
Too many records. More... | |
std::map< std::string, std::string > | info |
Additional information. More... | |
A set of results returned by GPUdb::getRecords.
T | The type of object being processed. |
Definition at line 537 of file get_records.h.
|
inline |
Constructs a GetRecordsResponse object with default parameters.
Definition at line 542 of file get_records.h.
std::vector<T> gpudb::GetRecordsResponse< T >::data |
If the encoding was 'binary', then this list contains the binary encoded records retrieved from the table, otherwise not populated.
Definition at line 570 of file get_records.h.
bool gpudb::GetRecordsResponse< T >::hasMoreRecords |
std::map<std::string, std::string> gpudb::GetRecordsResponse< T >::info |
Additional information.
Definition at line 585 of file get_records.h.
std::string gpudb::GetRecordsResponse< T >::tableName |
Value of tableName.
Definition at line 556 of file get_records.h.
int64_t gpudb::GetRecordsResponse< T >::totalNumberOfRecords |
Total/Filtered number of records.
Definition at line 575 of file get_records.h.
std::string gpudb::GetRecordsResponse< T >::typeName |
Definition at line 558 of file get_records.h.
std::string gpudb::GetRecordsResponse< T >::typeSchema |
Avro schema of data or recordsJson.
Definition at line 563 of file get_records.h.