GPUdb C++ API
Version 7.2.2.4
|
A set of results returned by GPUdb::aggregateGroupBy. More...
#include <gpudb/protocol/aggregate_group_by.h>
Public Member Functions | |
AggregateGroupByResponse () | |
Constructs an AggregateGroupByResponse object with default parameters. More... | |
Public Attributes | |
std::string | responseSchemaStr |
Avro schema of data or jsonEncodedResponse. More... | |
std::vector< gpudb::GenericRecord > | data |
Avro binary 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... | |
gpudb_type_ptr_t | dataTypePtr |
A set of results returned by GPUdb::aggregateGroupBy.
Definition at line 1335 of file aggregate_group_by.h.
|
inline |
Constructs an AggregateGroupByResponse object with default parameters.
Definition at line 1341 of file aggregate_group_by.h.
std::vector<gpudb::GenericRecord> gpudb::AggregateGroupByResponse::data |
Avro binary encoded response.
Definition at line 1359 of file aggregate_group_by.h.
gpudb_type_ptr_t gpudb::AggregateGroupByResponse::dataTypePtr |
Definition at line 1385 of file aggregate_group_by.h.
bool gpudb::AggregateGroupByResponse::hasMoreRecords |
std::map<std::string, std::string> gpudb::AggregateGroupByResponse::info |
Additional information.
The default value is an empty map.
Definition at line 1383 of file aggregate_group_by.h.
std::string gpudb::AggregateGroupByResponse::responseSchemaStr |
Avro schema of data or jsonEncodedResponse.
Definition at line 1354 of file aggregate_group_by.h.
int64_t gpudb::AggregateGroupByResponse::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 1366 of file aggregate_group_by.h.