Kinetica   C#   API  Version 7.2.3.1
FilterByStringRequest.Mode Struct Reference

A set of string constants for the parameter mode. More...

Public Attributes

const string SEARCH = "search"
 Full text search query with wildcards and boolean operators. More...
 
const string EQUALS = "equals"
 Exact whole-string match (accelerated). More...
 
const string CONTAINS = "contains"
 Partial substring match (not accelerated). More...
 
const string STARTS_WITH = "starts_with"
 Strings that start with the given expression (not accelerated). More...
 
const string REGEX = "regex"
 Full regular expression search (not accelerated). More...
 

Detailed Description

A set of string constants for the parameter mode.

The string filtering mode to apply. See below for details.

Definition at line 28 of file FilterByString.cs.

Member Data Documentation

◆ CONTAINS

const string FilterByStringRequest.Mode.CONTAINS = "contains"

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 43 of file FilterByString.cs.

◆ EQUALS

const string FilterByStringRequest.Mode.EQUALS = "equals"

Exact whole-string match (accelerated).

Definition at line 38 of file FilterByString.cs.

◆ REGEX

const string FilterByStringRequest.Mode.REGEX = "regex"

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 55 of file FilterByString.cs.

◆ SEARCH

const string FilterByStringRequest.Mode.SEARCH = "search"

Full text search query with wildcards and boolean operators.

Note that for this mode, no column can be specified in column_names; all string columns of the table that have text search enabled will be searched.

Definition at line 35 of file FilterByString.cs.

◆ STARTS_WITH

const string FilterByStringRequest.Mode.STARTS_WITH = "starts_with"

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 49 of file FilterByString.cs.


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