GPUdb C++ API  Version 7.2.2.4
gpudb::AggregateConvexHullRequest Struct Reference

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...
 

Detailed Description

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.

Constructor & Destructor Documentation

◆ AggregateConvexHullRequest() [1/2]

gpudb::AggregateConvexHullRequest::AggregateConvexHullRequest ( )
inline

Constructs an AggregateConvexHullRequest object with default parameters.

Definition at line 25 of file aggregate_convex_hull.h.

◆ AggregateConvexHullRequest() [2/2]

gpudb::AggregateConvexHullRequest::AggregateConvexHullRequest ( const std::string &  tableName_,
const std::string &  xColumnName_,
const std::string &  yColumnName_,
const std::map< std::string, std::string > &  options_ 
)
inline

Constructs an AggregateConvexHullRequest object with the specified parameters.

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.

Member Data Documentation

◆ options

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.

◆ tableName

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.

◆ xColumnName

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.

◆ yColumnName

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.


The documentation for this struct was generated from the following file: