GPUdb C++ API
Version 7.2.2.4
|
A set of parameters for GPUdb::aggregateConvexHull. More...
#include <gpudb/protocol/aggregate_convex_hull.h>
Public Member Functions | |
AggregateConvexHullRequest () | |
Constructs an AggregateConvexHullRequest object with default parameters. More... | |
AggregateConvexHullRequest (const std::string &tableName_, const std::string &xColumnName_, const std::string &yColumnName_, const std::map< std::string, std::string > &options_) | |
Constructs an AggregateConvexHullRequest object with the specified parameters. More... | |
Public Attributes | |
std::string | tableName |
Name of table on which the operation will be performed. More... | |
std::string | xColumnName |
Name of the column containing the x coordinates of the points for the operation being performed. More... | |
std::string | yColumnName |
Name of the column containing the y coordinates of the points for the operation being performed. More... | |
std::map< std::string, std::string > | options |
Optional parameters. More... | |
A set of parameters for GPUdb::aggregateConvexHull.
Calculates and returns the convex hull for the values in a table specified by tableName.
Definition at line 19 of file aggregate_convex_hull.h.
|
inline |
Constructs an AggregateConvexHullRequest object with default parameters.
Definition at line 25 of file aggregate_convex_hull.h.
|
inline |
Constructs an AggregateConvexHullRequest object with the specified parameters.
[in] | tableName_ | Name of 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] | xColumnName_ | Name of the column containing the x coordinates of the points for the operation being performed. |
[in] | yColumnName_ | Name of the column containing the y coordinates of the points for the operation being performed. |
[in] | options_ | Optional parameters. The default value is an empty map. |
Definition at line 52 of file aggregate_convex_hull.h.
std::map<std::string, std::string> gpudb::AggregateConvexHullRequest::options |
Optional parameters.
The default value is an empty map.
Definition at line 83 of file aggregate_convex_hull.h.
std::string gpudb::AggregateConvexHullRequest::tableName |
Name of 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 66 of file aggregate_convex_hull.h.
std::string gpudb::AggregateConvexHullRequest::xColumnName |
Name of the column containing the x coordinates of the points for the operation being performed.
Definition at line 72 of file aggregate_convex_hull.h.
std::string gpudb::AggregateConvexHullRequest::yColumnName |
Name of the column containing the y coordinates of the points for the operation being performed.
Definition at line 78 of file aggregate_convex_hull.h.