Kinetica C# API  Version 7.1.10.0
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Pages
FilterByRange.cs
Go to the documentation of this file.
1 /*
2  * This file was autogenerated by the Kinetica schema processor.
3  *
4  * DO NOT EDIT DIRECTLY.
5  */
6 
7 using System.Collections.Generic;
8 
9 
10 
11 namespace kinetica
12 {
13 
35  {
36 
76  public struct Options
77  {
78 
97  public const string CREATE_TEMP_TABLE = "create_temp_table";
98  public const string TRUE = "true";
99  public const string FALSE = "false";
100 
107  public const string COLLECTION_NAME = "collection_name";
108  } // end struct Options
109 
110 
116  public string table_name { get; set; }
117 
125  public string view_name { get; set; } = "";
126 
129  public string column_name { get; set; }
130 
132  public double lower_bound { get; set; }
133 
135  public double upper_bound { get; set; }
136 
174  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
175 
176 
179  public FilterByRangeRequest() { }
180 
243  string view_name,
244  string column_name,
245  double lower_bound,
246  double upper_bound,
247  IDictionary<string, string> options = null)
248  {
249  this.table_name = table_name ?? "";
250  this.view_name = view_name ?? "";
251  this.column_name = column_name ?? "";
252  this.lower_bound = lower_bound;
253  this.upper_bound = upper_bound;
254  this.options = options ?? new Dictionary<string, string>();
255  } // end constructor
256 
257  } // end class FilterByRangeRequest
258 
259 
260 
265  {
266 
279  public struct Info
280  {
281 
284  public const string QUALIFIED_VIEW_NAME = "qualified_view_name";
285  } // end struct Info
286 
287 
290  public long count { get; set; }
291 
302  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
303 
304  } // end class FilterByRangeResponse
305 
306 
307 
308 
309 } // end namespace kinetica
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
Definition: KineticaData.cs:14
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).