7 using System.Collections.Generic;
181 public const string MODE =
"mode";
209 public const string GEOS =
"geos";
366 public IDictionary<string, string>
options {
get; set; } =
new Dictionary<string, string>();
507 IDictionary<string, string>
options = null)
509 this.table_name = table_name ??
"";
510 this.view_name = view_name ??
"";
511 this.column_name = column_name ??
"";
512 this.source_table_name = source_table_name ??
"";
513 this.source_table_column_name = source_table_column_name ??
"";
514 this.options =
options ??
new Dictionary<string, string>();
536 public IDictionary<string, string>
info {
get; set; } =
new Dictionary<string, string>();
IDictionary< string, string > options
Optional parameters.
FilterByTableRequest()
Constructs a FilterByTableRequest object with default parameters.
const string COLLECTION_NAME
Name of a collection which is to contain the newly created view.
string source_table_name
Name of the table whose data will be compared against in the table called .
long count
The number of records in that have values matching values in .
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 NOT_IN_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.
IDictionary< string, string > info
Additional information.
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
A set of parameters for Kinetica.filterByTable(string,string,string,string,string,IDictionary{string, string}).