A set of string constants for the parameter FilterByStringRequest.mode. More…
Static Public Attributes | |
| const string | SEARCH = “search” |
| Full text search query with wildcards and boolean operators. | |
| const string | EQUALS = “equals” |
| Exact whole-string match (accelerated). | |
| const string | CONTAINS = “contains” |
| Partial substring match (not accelerated). | |
| const string | STARTS_WITH = “starts_with” |
| Strings that start with the given expression (not accelerated). | |
| const string | REGEX = “regex” |
| Full regular expression search (not accelerated). | |
Detailed Description
A set of string constants for the parameter FilterByStringRequest.mode.
The string filtering mode to apply. See below for details.
Definition at line 28 of file FilterByString.cs.
Member Data Documentation
◆ CONTAINS
| static |
Partial substring match (not accelerated).
If the column is a string type (non-charN) and the number of records is too large, it will return 0.
Definition at line 44 of file FilterByString.cs.
◆ EQUALS
| static |
Exact whole-string match (accelerated).
Definition at line 39 of file FilterByString.cs.
◆ REGEX
| static |
Full regular expression search (not accelerated).
If the column is a string type (non-charN) and the number of records is too large, it will return 0.
Definition at line 56 of file FilterByString.cs.
◆ SEARCH
| static |
Full text search query with wildcards and boolean operators.
Note that for this mode, no column can be specified in FilterByStringRequest.column_names; all string columns of the table that have text search enabled will be searched.
Definition at line 36 of file FilterByString.cs.
◆ STARTS_WITH
| static |
Strings that start with the given expression (not accelerated).
If the column is a string type (non-charN) and the number of records is too large, it will return 0.
Definition at line 50 of file FilterByString.cs.
The documentation for this struct was generated from the following files:
- _build/public-os_ubuntu24.04-arch_amd64-cc_gcc_13.3.0/install/Kinetica/Protocol/FilterByString.cs
- Kinetica/Protocol/FilterByString.cs