GPUdb C++ API
Version 7.2.2.4
|
A set of results returned by GPUdb::aggregateGroupByRaw. More...
#include <gpudb/protocol/aggregate_group_by.h>
Public Member Functions | |
RawAggregateGroupByResponse () | |
Constructs a RawAggregateGroupByResponse object with default parameters. More... | |
Public Attributes | |
std::string | responseSchemaStr |
Avro schema of binaryEncodedResponse or jsonEncodedResponse. More... | |
std::vector< uint8_t > | binaryEncodedResponse |
Avro binary encoded response. More... | |
std::string | jsonEncodedResponse |
Avro JSON encoded response. 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::aggregateGroupByRaw.
Definition at line 1204 of file aggregate_group_by.h.
|
inline |
Constructs a RawAggregateGroupByResponse object with default parameters.
Definition at line 1210 of file aggregate_group_by.h.
std::vector<uint8_t> gpudb::RawAggregateGroupByResponse::binaryEncodedResponse |
Avro binary encoded response.
Definition at line 1229 of file aggregate_group_by.h.
bool gpudb::RawAggregateGroupByResponse::hasMoreRecords |
std::map<std::string, std::string> gpudb::RawAggregateGroupByResponse::info |
Additional information.
The default value is an empty map.
Definition at line 1258 of file aggregate_group_by.h.
std::string gpudb::RawAggregateGroupByResponse::jsonEncodedResponse |
Avro JSON encoded response.
Definition at line 1234 of file aggregate_group_by.h.
std::string gpudb::RawAggregateGroupByResponse::responseSchemaStr |
Avro schema of binaryEncodedResponse or jsonEncodedResponse.
Definition at line 1224 of file aggregate_group_by.h.
int64_t gpudb::RawAggregateGroupByResponse::totalNumberOfRecords |
Total/Filtered number of records.
This may be an over-estimate if a limit was applied and there are additional records (i.e., when hasMoreRecords is true).
Definition at line 1241 of file aggregate_group_by.h.