Kinetica C# API  Version 6.1.0.0
FilterByTable.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 
29  {
30 
126  public struct Options
127  {
128 
144  public const string FILTER_MODE = "filter_mode";
145  public const string IN_TABLE = "in_table";
146  public const string NOT_IN_TABLE = "not_in_table";
147 
163  public const string MODE = "mode";
164  public const string NORMAL = "normal";
165  public const string SPATIAL = "spatial";
166 
169  public const string BUFFER = "buffer";
170 
188  public const string BUFFER_METHOD = "buffer_method";
189 
191  public const string GEOS = "geos";
192 
195  public const string MAX_PARTITION_SIZE = "max_partition_size";
196 
199  public const string MAX_PARTITION_SCORE = "max_partition_score";
200 
203  public const string X_COLUMN_NAME = "x_column_name";
204 
207  public const string Y_COLUMN_NAME = "y_column_name";
208  } // end struct Options
209 
210 
213  public string table_name { get; set; }
214 
219  public string view_name { get; set; } = "";
220 
224  public string column_name { get; set; }
225 
229  public string source_table_name { get; set; }
230 
238  public string source_table_column_name { get; set; }
239 
333  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
334 
335 
338  public FilterByTableRequest() { }
339 
458  string view_name,
459  string column_name,
460  string source_table_name,
462  IDictionary<string, string> options = null)
463  {
464  this.table_name = table_name ?? "";
465  this.view_name = view_name ?? "";
466  this.column_name = column_name ?? "";
467  this.source_table_name = source_table_name ?? "";
468  this.source_table_column_name = source_table_column_name ?? "";
469  this.options = options ?? new Dictionary<string, string>();
470  } // end constructor
471 
472  } // end class FilterByTableRequest
473 
474 
475 
480  {
481 
488  public long count { get; set; }
489 
490  } // end class FilterByTableResponse
491 
492 
493 
494 
495 } // end namespace kinetica
IDictionary< string, string > options
Optional parameters.
FilterByTableRequest()
Constructs a FilterByTableRequest object with default parameters.
string source_table_name
Name of the table whose data will be compared against in the table called .
const string BUFFER
Buffer size, in meters.
string source_table_column_name
Name of the column in the whose values will be used as the filter for table .
const string FILTER_MODE
String indicating the filter mode, either in_table or not_in_table.
const string MAX_PARTITION_SIZE
Maximum number of points in a partition.
string view_name
If provided, then this will be the name of the view containing the results.
const string MODE
Mode - should be either spatial or normal.
const string X_COLUMN_NAME
Name of column containing x value of point being filtered in spatial mode.
A set of results returned by Kinetica.filterByTable(string,string,string,string,string,IDictionary<string, string>).
string table_name
Name of the table whose data will be filtered.
FilterByTableRequest(string table_name, string view_name, string column_name, string source_table_name, string source_table_column_name, IDictionary< string, string > options=null)
Constructs a FilterByTableRequest object with the specified parameters.
string column_name
Name of the column by whose value the data will be filtered from the table designated by ...
const string GEOS
Use geos 1 edge per corner algorithm
const string Y_COLUMN_NAME
Name of column containing y value of point being filtered in spatial mode.
const string MAX_PARTITION_SCORE
Maximum number of points * edges in a partition.
const string BUFFER_METHOD
Method used to buffer polygons.
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
A set of parameters for Kinetica.filterByTable(string,string,string,string,string,IDictionary<string, string>).