7 using System.Collections.Generic;
92 public const string TRUE =
"true";
93 public const string FALSE =
"false";
187 public IDictionary<string, string>
options {
get; set; } =
new Dictionary<string, string>();
273 IDictionary<string, string>
options = null)
275 this.table_name = table_name ??
"";
276 this.view_name = view_name ??
"";
277 this.x_column_name = x_column_name ??
"";
280 this.y_column_name = y_column_name ??
"";
283 this.options =
options ??
new Dictionary<string, string>();
330 public IDictionary<string, string>
info {
get; set; } =
new Dictionary<string, string>();
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 ...
double min_x
Lower bound for the column chosen by .
FilterByBoxRequest(string table_name, string view_name, string x_column_name, double min_x, double max_x, string y_column_name, double min_y, double max_y, IDictionary< string, string > options=null)
Constructs a FilterByBoxRequest object with the specified parameters.
IDictionary< string, string > options
Optional parameters.
string table_name
Name of the table on which the bounding box operation will be performed, in [schema_name.
double max_y
Upper bound for .
double min_y
Lower bound for .
const string QUALIFIED_VIEW_NAME
The fully qualified name of the view (i.e.
string x_column_name
Name of the column on which to perform the bounding box query.
FilterByBoxRequest()
Constructs a FilterByBoxRequest object with default parameters.
long count
The number of records passing the box filter.
A set of results returned by Kinetica.filterByBox(string,string,string,double,double,string,double,double,IDictionary{string, string}).
double max_x
Upper bound for .
const string COLLECTION_NAME
[DEPRECATED–please specify the containing schema for the view as part of view_name and use Kinetica...
IDictionary< string, string > info
Additional information.
KineticaData - class to help with Avro Encoding for Kinetica
string y_column_name
Name of a column on which to perform the bounding box query.
A set of parameters for Kinetica.filterByBox(string,string,string,double,double,string,double,double,IDictionary{string, string}).