GPUdb C++ API
Version 7.2.2.4
|
A set of parameters for GPUdb::aggregateMinMax. More...
#include <gpudb/protocol/aggregate_min_max.h>
Public Member Functions | |
AggregateMinMaxRequest () | |
Constructs an AggregateMinMaxRequest object with default parameters. More... | |
AggregateMinMaxRequest (const std::string &tableName_, const std::string &columnName_, const std::map< std::string, std::string > &options_) | |
Constructs an AggregateMinMaxRequest object with the specified parameters. More... | |
Public Attributes | |
std::string | tableName |
Name of the table on which the operation will be performed. More... | |
std::string | columnName |
Name of a column or an expression of one or more column on which the min-max will be calculated. More... | |
std::map< std::string, std::string > | options |
Optional parameters. More... | |
A set of parameters for GPUdb::aggregateMinMax.
Calculates and returns the minimum and maximum values of a particular column in a table.
Definition at line 19 of file aggregate_min_max.h.
|
inline |
Constructs an AggregateMinMaxRequest object with default parameters.
Definition at line 24 of file aggregate_min_max.h.
|
inline |
Constructs an AggregateMinMaxRequest object with the specified parameters.
[in] | tableName_ | Name of the table on which the operation will be performed. Must be an existing table, in [schema_name.]table_name format, using standard name resolution rules. |
[in] | columnName_ | Name of a column or an expression of one or more column on which the min-max will be calculated. |
[in] | options_ | Optional parameters. The default value is an empty map. |
Definition at line 47 of file aggregate_min_max.h.
std::string gpudb::AggregateMinMaxRequest::columnName |
Name of a column or an expression of one or more column on which the min-max will be calculated.
Definition at line 66 of file aggregate_min_max.h.
std::map<std::string, std::string> gpudb::AggregateMinMaxRequest::options |
Optional parameters.
The default value is an empty map.
Definition at line 71 of file aggregate_min_max.h.
std::string gpudb::AggregateMinMaxRequest::tableName |
Name of the table on which the operation will be performed.
Must be an existing table, in [ schema_name. ]table_name format, using standard name resolution rules.
Definition at line 60 of file aggregate_min_max.h.