Skip to main content

◆ filterByValue() [1/4]

FilterByValueResponse gpudb::GPUdb::filterByValue (const FilterByValueRequest &request_) const

Calculates which objects from a table has a particular value for a particular column.

The input parameters provide a way to specify either a String or a Double valued column and a desired value for the column on which the filter is performed. The operation is synchronous, meaning that a response will not be returned until all the objects are fully available. The response payload provides the count of the resulting set. A new result view which satisfies the input filter restriction specification is also created with a view name passed in as part of the input payload. Although this functionality can also be accomplished with the standard filter function, it is more efficient.

Parameters
[in]request_Request object containing the parameters for the operation.
Returns
Response object containing the result of the operation.

◆ filterByValue() [2/4]

FilterByValueResponse & gpudb::GPUdb::filterByValue (const FilterByValueRequest &request_,
FilterByValueResponse &response_ ) const

Calculates which objects from a table has a particular value for a particular column.

The input parameters provide a way to specify either a String or a Double valued column and a desired value for the column on which the filter is performed. The operation is synchronous, meaning that a response will not be returned until all the objects are fully available. The response payload provides the count of the resulting set. A new result view which satisfies the input filter restriction specification is also created with a view name passed in as part of the input payload. Although this functionality can also be accomplished with the standard filter function, it is more efficient.

Parameters
[in]request_Request object containing the parameters for the operation.
[out]response_Response object containing the results of the operation.
Returns
Response object containing the result of the operation (initially passed in by reference).

◆ filterByValue() [3/4]

FilterByValueResponse gpudb::GPUdb::filterByValue (const std::string &tableName,
const std::string &viewName,
const boolisString,
const doublevalue,
const std::string &valueStr,
const std::string &columnName,
const std::map< std::string, std::string > &options ) const

Calculates which objects from a table has a particular value for a particular column.

The input parameters provide a way to specify either a String or a Double valued column and a desired value for the column on which the filter is performed. The operation is synchronous, meaning that a response will not be returned until all the objects are fully available. The response payload provides the count of the resulting set. A new result view which satisfies the input filter restriction specification is also created with a view name passed in as part of the input payload. Although this functionality can also be accomplished with the standard filter function, it is more efficient.

Parameters
[in]tableNameName of an existing table on which to perform the calculation, in [schema_name.]table_name format, using standard name resolution rules.
[in]viewNameIf provided, then this will be the name of the view containing the results, in [schema_name.]view_name format, using standard name resolution rules and meeting table naming criteria. Must not be an already existing table or view. The default value is ”.
[in]isStringIndicates whether the value being searched for is string or numeric.
[in]valueThe value to search for. The default value is 0.
[in]valueStrThe string value to search for. The default value is ”.
[in]columnNameName of a column on which the filter by value would be applied.
[in]optionsOptional parameters.The default value is an empty map.
Returns
Response object containing the result of the operation.

◆ filterByValue() [4/4]

FilterByValueResponse & gpudb::GPUdb::filterByValue (const std::string &tableName,
const std::string &viewName,
const boolisString,
const doublevalue,
const std::string &valueStr,
const std::string &columnName,
const std::map< std::string, std::string > &options,
FilterByValueResponse &response_ ) const

Calculates which objects from a table has a particular value for a particular column.

The input parameters provide a way to specify either a String or a Double valued column and a desired value for the column on which the filter is performed. The operation is synchronous, meaning that a response will not be returned until all the objects are fully available. The response payload provides the count of the resulting set. A new result view which satisfies the input filter restriction specification is also created with a view name passed in as part of the input payload. Although this functionality can also be accomplished with the standard filter function, it is more efficient.

Parameters
[in]tableNameName of an existing table on which to perform the calculation, in [schema_name.]table_name format, using standard name resolution rules.
[in]viewNameIf provided, then this will be the name of the view containing the results, in [schema_name.]view_name format, using standard name resolution rules and meeting table naming criteria. Must not be an already existing table or view. The default value is ”.
[in]isStringIndicates whether the value being searched for is string or numeric.
[in]valueThe value to search for. The default value is 0.
[in]valueStrThe string value to search for. The default value is ”.
[in]columnNameName of a column on which the filter by value would be applied.
[in]optionsOptional parameters.The default value is an empty map.
[out]response_Response object containing the results of the operation.
Returns
Response object containing the result of the operation (initially passed in by reference).