GPUdb C++ API
Version 6.1.0.0
|
A set of output parameters for getRecordsByColumnRaw(const GetRecordsByColumnRequest&) const. More...
#include <gpudb/protocol/get_records_by_column.h>
Public Member Functions | |
RawGetRecordsByColumnResponse () | |
Constructs a RawGetRecordsByColumnResponse object with default parameter values. More... | |
Public Attributes | |
std::string | tableName |
std::string | responseSchemaStr |
std::vector< uint8_t > | binaryEncodedResponse |
std::string | jsonEncodedResponse |
int64_t | totalNumberOfRecords |
bool | hasMoreRecords |
A set of output parameters for getRecordsByColumnRaw(const GetRecordsByColumnRequest&) const.
For a given table, retrieves the values from the requested column(s). Maps of column name to the array of values as well as the column data type are returned. This endpoint supports pagination with the offset and limit parameters.
When using pagination, if the table (or the underlying table in the case of a view) is modified (records are inserted, updated, or deleted) during a call to the endpoint, the records or values retrieved may differ between calls based on the type of the update, e.g., the contiguity across pages cannot be relied upon.
The response is returned as a dynamic schema. For details see: dynamic schemas documentation.
Definition at line 280 of file get_records_by_column.h.
|
inline |
Constructs a RawGetRecordsByColumnResponse object with default parameter values.
Definition at line 287 of file get_records_by_column.h.
std::vector<uint8_t> gpudb::RawGetRecordsByColumnResponse::binaryEncodedResponse |
Definition at line 299 of file get_records_by_column.h.
bool gpudb::RawGetRecordsByColumnResponse::hasMoreRecords |
Definition at line 302 of file get_records_by_column.h.
std::string gpudb::RawGetRecordsByColumnResponse::jsonEncodedResponse |
Definition at line 300 of file get_records_by_column.h.
std::string gpudb::RawGetRecordsByColumnResponse::responseSchemaStr |
Definition at line 298 of file get_records_by_column.h.
std::string gpudb::RawGetRecordsByColumnResponse::tableName |
Definition at line 297 of file get_records_by_column.h.
int64_t gpudb::RawGetRecordsByColumnResponse::totalNumberOfRecords |
Definition at line 301 of file get_records_by_column.h.