GPUdb C++ API
Version 7.0.19.0
|
A set of input parameters for const. More...
#include <gpudb/protocol/aggregate_convex_hull.h>
Public Member Functions | |
AggregateConvexHullRequest () | |
Constructs an AggregateConvexHullRequest object with default parameter values. 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 |
std::string | xColumnName |
std::string | yColumnName |
std::map< std::string, std::string > | options |
A set of input parameters for const.
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 parameter values.
Definition at line 26 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. It cannot be a collection. |
[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. |
Definition at line 50 of file aggregate_convex_hull.h.
std::map<std::string, std::string> gpudb::AggregateConvexHullRequest::options |
Definition at line 61 of file aggregate_convex_hull.h.
std::string gpudb::AggregateConvexHullRequest::tableName |
Definition at line 58 of file aggregate_convex_hull.h.
std::string gpudb::AggregateConvexHullRequest::xColumnName |
Definition at line 59 of file aggregate_convex_hull.h.
std::string gpudb::AggregateConvexHullRequest::yColumnName |
Definition at line 60 of file aggregate_convex_hull.h.