7 using System.Collections.Generic;
106 public const string TRUE =
"true";
107 public const string FALSE =
"false";
124 public const string TTL =
"ttl";
198 public IDictionary<string, string>
options {
get; set; } =
new Dictionary<string, string>();
278 IDictionary<string, string>
options = null)
280 this.table_name = table_name ??
"";
281 this.view_name = view_name ??
"";
282 this.expression = expression ??
"";
283 this.options =
options ??
new Dictionary<string, string>();
331 public IDictionary<string, string>
info {
get; set; } =
new Dictionary<string, string>();
const string COLLECTION_NAME
[DEPRECATED–please specify the containing schema for the view as part of view_name and use Kinetica...
FilterRequest()
Constructs a FilterRequest object with default parameters.
string view_name
If provided, then this will be the name of the view containing the results, in [schema_name.
const string VIEW_ID
view this filtered-view is part of.
IDictionary< string, string > options
Optional parameters.
const string QUALIFIED_VIEW_NAME
The fully qualified name of the view (i.e.
FilterRequest(string table_name, string view_name, string expression, IDictionary< string, string > options=null)
Constructs a FilterRequest object with the specified parameters.
const string TTL
Sets the TTL of the view specified in view_name.
IDictionary< string, string > info
Additional information.
const string CREATE_TEMP_TABLE
If true, a unique temporary table name will be generated in the sys_temp schema and used in place of ...
A set of parameters for Kinetica.filter(string,string,string,IDictionary{string, string}).
A set of results returned by Kinetica.filter(string,string,string,IDictionary{string, string}).
long count
The number of records that matched the given select expression.
KineticaData - class to help with Avro Encoding for Kinetica
string expression
The select expression to filter the specified table.
string table_name
Name of the table to filter, in [schema_name.