◆ filter() [1/4]
| FilterResponse gpudb::GPUdb::filter | ( | const FilterRequest & | request_ | ) | const |
Filters data based on the specified expression.
The results are stored in a result set with the given viewName.
For details see Expressions.
The response message contains the number of points for which the expression evaluated to be true, which is equivalent to the size of the result view.
| [in] | request_ | Request object containing the parameters for the operation. |
◆ filter() [2/4]
| FilterResponse & gpudb::GPUdb::filter | ( | const FilterRequest & | request_, |
| FilterResponse & | response_ ) const |
Filters data based on the specified expression.
The results are stored in a result set with the given viewName.
For details see Expressions.
The response message contains the number of points for which the expression evaluated to be true, which is equivalent to the size of the result view.
◆ filter() [3/4]
| FilterResponse gpudb::GPUdb::filter | ( | const std::string & | tableName, |
| const std::string & | viewName, | ||
| const std::string & | expression, | ||
| const std::map< std::string, std::string > & | options ) const |
Filters data based on the specified expression.
The results are stored in a result set with the given viewName.
For details see Expressions.
The response message contains the number of points for which the expression evaluated to be true, which is equivalent to the size of the result view.
| [in] | tableName | Name of the table to filter, in [schema_name.]table_name format, using standard name resolution rules. This may be the name of a table or a view (when chaining queries). |
| [in] | viewName | If 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] | expression | The select expression to filter the specified table. For details see Expressions. |
| [in] | options | Optional parameters.
|
◆ filter() [4/4]
| FilterResponse & gpudb::GPUdb::filter | ( | const std::string & | tableName, |
| const std::string & | viewName, | ||
| const std::string & | expression, | ||
| const std::map< std::string, std::string > & | options, | ||
| FilterResponse & | response_ ) const |
Filters data based on the specified expression.
The results are stored in a result set with the given viewName.
For details see Expressions.
The response message contains the number of points for which the expression evaluated to be true, which is equivalent to the size of the result view.
| [in] | tableName | Name of the table to filter, in [schema_name.]table_name format, using standard name resolution rules. This may be the name of a table or a view (when chaining queries). |
| [in] | viewName | If 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] | expression | The select expression to filter the specified table. For details see Expressions. |
| [in] | options | Optional parameters.
|
| [out] | response_ | Response object containing the results of the operation. |