Kinetica   C#   API  Version 7.2.3.0
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 namespace kinetica
10 {
26  {
30  public struct Options
31  {
46  public const string CREATE_TEMP_TABLE = "create_temp_table";
47 
48  public const string TRUE = "true";
49  public const string FALSE = "false";
50 
58  public const string COLLECTION_NAME = "collection_name";
59  } // end struct Options
60 
66  public string table_name { get; set; }
67 
76  public string view_name { get; set; } = "";
77 
80  public string column_name { get; set; }
81 
83  public double lower_bound { get; set; }
84 
86  public double upper_bound { get; set; }
87 
127  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
128 
131  public FilterByRangeRequest() { }
132 
196  string view_name,
197  string column_name,
198  double lower_bound,
199  double upper_bound,
200  IDictionary<string, string> options = null)
201  {
202  this.table_name = table_name ?? "";
203  this.view_name = view_name ?? "";
204  this.column_name = column_name ?? "";
205  this.lower_bound = lower_bound;
206  this.upper_bound = upper_bound;
207  this.options = options ?? new Dictionary<string, string>();
208  } // end constructor
209  } // end class FilterByRangeRequest
210 
215  {
219  public struct Info
220  {
223  public const string QUALIFIED_VIEW_NAME = "qualified_view_name";
224  } // end struct Info
225 
227  public long count { get; set; }
228 
240  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
241  } // end class FilterByRangeResponse
242 } // end namespace kinetica
const string QUALIFIED_VIEW_NAME
The fully qualified name of the view (i.e.
A set of string constants for the parameter options.
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.
A set of string constants for the parameter info.
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.
A set of results returned by Kinetica.filterByRange.
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).