7 using System.Collections.Generic;
98 public const string TRUE =
"true";
99 public const string FALSE =
"false";
174 public IDictionary<string, string>
options {
get; set; } =
new Dictionary<string, string>();
247 IDictionary<string, string>
options = null)
249 this.table_name = table_name ??
"";
250 this.view_name = view_name ??
"";
251 this.column_name = column_name ??
"";
254 this.options =
options ??
new Dictionary<string, string>();
302 public IDictionary<string, string>
info {
get; set; } =
new Dictionary<string, string>();
const string QUALIFIED_VIEW_NAME
The fully qualified name of the view (i.e.
string column_name
Name of a column on which the operation would be applied.
IDictionary< string, string > options
Optional parameters.
string view_name
If provided, then this will be the name of the view containing the results, in [schema_name.
long count
The number of records passing the range filter.
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 ...
double lower_bound
Value of the lower bound (inclusive).
A set of parameters for Kinetica.filterByRange(string,string,string,double,double,IDictionary{string, string}).
A set of results returned by Kinetica.filterByRange(string,string,string,double,double,IDictionary{string, string}).
string table_name
Name of the table on which the filter by range operation will be performed, in [schema_name.
KineticaData - class to help with Avro Encoding for Kinetica
FilterByRangeRequest(string table_name, string view_name, string column_name, double lower_bound, double upper_bound, IDictionary< string, string > options=null)
Constructs a FilterByRangeRequest object with the specified parameters.
const string COLLECTION_NAME
[DEPRECATED–please specify the containing schema for the view as part of view_name and use Kinetica...
FilterByRangeRequest()
Constructs a FilterByRangeRequest object with default parameters.
double upper_bound
Value of the upper bound (inclusive).