◆ filterByString() [1/4]
| FilterByStringResponse gpudb::GPUdb::filterByString | ( | const FilterByStringRequest & | request_ | ) | const |
Calculates which objects from a table or view match a string expression for the given string columns.
Setting case_sensitive can modify case sensitivity in matching for all modes except search. For search mode details and limitations, see Full Text Search.
| [in] | request_ | Request object containing the parameters for the operation. |
◆ filterByString() [2/4]
| FilterByStringResponse & gpudb::GPUdb::filterByString | ( | const FilterByStringRequest & | request_, |
| FilterByStringResponse & | response_ ) const |
Calculates which objects from a table or view match a string expression for the given string columns.
Setting case_sensitive can modify case sensitivity in matching for all modes except search. For search mode details and limitations, see Full Text Search.
◆ filterByString() [3/4]
| FilterByStringResponse gpudb::GPUdb::filterByString | ( | const std::string & | tableName, |
| const std::string & | viewName, | ||
| const std::string & | expression, | ||
| const std::string & | mode, | ||
| const std::vector< std::string > & | columnNames, | ||
| const std::map< std::string, std::string > & | options ) const |
Calculates which objects from a table or view match a string expression for the given string columns.
Setting case_sensitive can modify case sensitivity in matching for all modes except search. For search mode details and limitations, see Full Text Search.
| [in] | tableName | Name of the table on which the filter operation will be performed, in [schema_name.]table_name format, using standard name resolution rules. Must be an existing table or view. |
| [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 expression with which to filter the table. |
| [in] | mode | The string filtering mode to apply. See below for details. Supported values:
|
| [in] | columnNames | List of columns on which to apply the filter. Ignored for search mode. |
| [in] | options | Optional parameters.
|
◆ filterByString() [4/4]
| FilterByStringResponse & gpudb::GPUdb::filterByString | ( | const std::string & | tableName, |
| const std::string & | viewName, | ||
| const std::string & | expression, | ||
| const std::string & | mode, | ||
| const std::vector< std::string > & | columnNames, | ||
| const std::map< std::string, std::string > & | options, | ||
| FilterByStringResponse & | response_ ) const |
Calculates which objects from a table or view match a string expression for the given string columns.
Setting case_sensitive can modify case sensitivity in matching for all modes except search. For search mode details and limitations, see Full Text Search.
| [in] | tableName | Name of the table on which the filter operation will be performed, in [schema_name.]table_name format, using standard name resolution rules. Must be an existing table or view. |
| [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 expression with which to filter the table. |
| [in] | mode | The string filtering mode to apply. See below for details. Supported values:
|
| [in] | columnNames | List of columns on which to apply the filter. Ignored for search mode. |
| [in] | options | Optional parameters.
|
| [out] | response_ | Response object containing the results of the operation. |