Kinetica C# API
Version 7.1.10.0
|
A set of parameters for Kinetica.filterByRange(string,string,string,double,double,IDictionary{string, string}). More...
Classes | |
struct | Options |
Optional parameters. More... | |
Public Member Functions | |
FilterByRangeRequest () | |
Constructs a FilterByRangeRequest object with default parameters. More... | |
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. More... | |
![]() | |
KineticaData (KineticaType type) | |
Constructor from Kinetica Type More... | |
KineticaData (System.Type type=null) | |
Default constructor, with optional System.Type More... | |
object | Get (int fieldPos) |
Retrieve a specific property from this object More... | |
void | Put (int fieldPos, object fieldValue) |
Write a specific property to this object More... | |
Properties | |
string | table_name [get, set] |
Name of the table on which the filter by range operation will be performed, in [schema_name. More... | |
string | view_name [get, set] |
If provided, then this will be the name of the view containing the results, in [schema_name. More... | |
string | column_name = "" [get, set] |
Name of a column on which the operation would be applied. More... | |
double | lower_bound [get, set] |
Value of the lower bound (inclusive). More... | |
double | upper_bound [get, set] |
Value of the upper bound (inclusive). More... | |
IDictionary< string, string > | options [get, set] |
Optional parameters. More... | |
![]() | |
Schema | Schema [get] |
Avro Schema for this class More... | |
Additional Inherited Members | |
![]() | |
static RecordSchema | SchemaFromType (System.Type t, KineticaType ktype=null) |
Create an Avro Schema from a System.Type and a KineticaType. More... | |
A set of parameters for Kinetica.filterByRange(string,string,string,double,double,IDictionary{string, string}).
Calculates which objects from a table have a column that is within the given bounds. An object from the table identified by table_name is added to the view view_name if its column is within [lower_bound, upper_bound] (inclusive). The operation is synchronous. The response provides a count of the number of objects which passed the bound filter. Although this functionality can also be accomplished with the standard filter function, it is more efficient.
For track objects, the count reflects how many points fall within the given bounds (which may not include all the track points of any given track).
Definition at line 34 of file FilterByRange.cs.
|
inline |
Constructs a FilterByRangeRequest object with default parameters.
Definition at line 179 of file FilterByRange.cs.
|
inline |
Constructs a FilterByRangeRequest object with the specified parameters.
table_name | Name of the table on which the filter by range operation will be performed, in [schema_name.]table_name format, using standard name resolution rules. Must be an existing table. |
view_name | If provided, then this will be the name of the view containing the results, in [schema_name.]view_name format, using standard name resolution rules and meeting table naming criteria. Must not be an already existing table or view. The default value is ''. |
column_name | Name of a column on which the operation would be applied. |
lower_bound | Value of the lower bound (inclusive). |
upper_bound | Value of the upper bound (inclusive). |
options | Optional parameters.
|
Definition at line 242 of file FilterByRange.cs.
|
getset |
Name of a column on which the operation would be applied.
Definition at line 129 of file FilterByRange.cs.
|
getset |
Value of the lower bound (inclusive).
Definition at line 132 of file FilterByRange.cs.
|
getset |
Optional parameters.
The default value is an empty Dictionary.
Definition at line 174 of file FilterByRange.cs.
|
getset |
Name of the table on which the filter by range operation will be performed, in [schema_name.
]table_name format, using standard name resolution rules. Must be an existing table.
Definition at line 116 of file FilterByRange.cs.
|
getset |
Value of the upper bound (inclusive).
Definition at line 135 of file FilterByRange.cs.
|
getset |
If provided, then this will be the name of the view containing the results, in [schema_name.
]view_name format, using standard name resolution rules and meeting table naming criteria. Must not be an already existing table or view. The default value is ''.
Definition at line 125 of file FilterByRange.cs.