GPUdb C++ API
Version 6.1.0.0
|
A set of output parameters for aggregateUnpivot(const AggregateUnpivotRequest&) const. More...
#include <gpudb/protocol/aggregate_unpivot.h>
Public Member Functions | |
AggregateUnpivotResponse () | |
Constructs an AggregateUnpivotResponse object with default parameter values. More... | |
Public Attributes | |
std::string | tableName |
std::string | responseSchemaStr |
std::vector< gpudb::GenericRecord > | data |
int64_t | totalNumberOfRecords |
bool | hasMoreRecords |
A set of output parameters for aggregateUnpivot(const AggregateUnpivotRequest&) const.
Rotate the column values into rows values.
The aggregate unpivot is used to normalize tables that are built for cross tabular reporting purposes. The unpivot operator rotates the column values for all the pivoted columns. A variable column, value column and all columns from the source table except the unpivot columns are projected into the result table. The variable column and value columns in the result table indicate the pivoted column name and values respectively.
The response is returned as a dynamic schema. For details see: dynamic schemas documentation.
Definition at line 425 of file aggregate_unpivot.h.
|
inline |
Constructs an AggregateUnpivotResponse object with default parameter values.
Definition at line 432 of file aggregate_unpivot.h.
std::vector<gpudb::GenericRecord> gpudb::AggregateUnpivotResponse::data |
Definition at line 443 of file aggregate_unpivot.h.
bool gpudb::AggregateUnpivotResponse::hasMoreRecords |
Definition at line 445 of file aggregate_unpivot.h.
std::string gpudb::AggregateUnpivotResponse::responseSchemaStr |
Definition at line 442 of file aggregate_unpivot.h.
std::string gpudb::AggregateUnpivotResponse::tableName |
Definition at line 441 of file aggregate_unpivot.h.
int64_t gpudb::AggregateUnpivotResponse::totalNumberOfRecords |
Definition at line 444 of file aggregate_unpivot.h.