7 using System.Collections.Generic;
99 public const string TRUE =
"true";
100 public const string FALSE =
"false";
180 public IDictionary<string, string>
options {
get; set; } =
new Dictionary<string, string>();
254 IDictionary<string, string>
options = null)
256 this.table_name = table_name ??
"";
257 this.view_name = view_name ??
"";
259 this._value = _value ?? 0;
260 this.value_str = value_str ??
"";
261 this.column_name = column_name ??
"";
262 this.options =
options ??
new Dictionary<string, string>();
310 public IDictionary<string, string>
info {
get; set; } =
new Dictionary<string, string>();
string column_name
Name of a column on which the filter by value would be applied.
const string COLLECTION_NAME
[DEPRECATED–please specify the containing schema for the view as part of view_name and use Kinetica...
long count
The number of records passing the value filter.
string value_str
The string value to search for.
FilterByValueRequest()
Constructs a FilterByValueRequest object with default parameters.
double _value
The value to search for.
A set of results returned by Kinetica.filterByValue(string,string,bool,double,string,string,IDictionary{string, string}).
const string QUALIFIED_VIEW_NAME
The fully qualified name of the view (i.e.
IDictionary< string, string > options
Optional parameters.
IDictionary< string, string > info
Additional information.
A set of parameters for Kinetica.filterByValue(string,string,bool,double,string,string,IDictionary{string, string}).
bool is_string
Indicates whether the value being searched for is string or numeric.
string table_name
Name of an existing table on which to perform the calculation, in [schema_name.
FilterByValueRequest(string table_name, string view_name, bool is_string, double?_value, string value_str, string column_name, IDictionary< string, string > options=null)
Constructs a FilterByValueRequest object with the specified parameters.
string view_name
If provided, then this will be the name of the view containing the results, in [schema_name.
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 ...
KineticaData - class to help with Avro Encoding for Kinetica