7 using System.Collections.Generic;
51 public const string BINARY =
"binary";
52 public const string JSON =
"json";
121 public const string EXPRESSION =
"expression";
141 public const string FAST_INDEX_LOOKUP =
"fast_index_lookup";
142 public const string TRUE =
"true";
143 public const string FALSE =
"false";
147 public const string SORT_BY =
"sort_by";
165 public const string SORT_ORDER =
"sort_order";
166 public const string ASCENDING =
"ascending";
167 public const string DESCENDING =
"descending";
184 public long limit {
get;
set; } = 10000;
260 public IDictionary<string, string>
options {
get;
set; } =
new Dictionary<string, string>();
342 IDictionary<string, string>
options = null)
344 this.table_name = table_name ??
"";
442 IDictionary<string, string>
options = null)
444 this.table_name = table_name ??
"";
464 public string type_name {
get;
set; }
468 public string type_schema {
get;
set; }
473 public IList<byte[]> records_binary {
get;
set; } =
new List<byte[]>();
478 public IList<string> records_json {
get;
set; } =
new List<string>();
481 public long total_number_of_records {
get;
set; }
484 public bool has_more_records {
get;
set; }
502 public string type_name {
get;
set; }
506 public string type_schema {
get;
set; }
511 public IList<T> data {
get;
set; } =
new List<T>();
514 public long total_number_of_records {
get;
set; }
517 public bool has_more_records {
get;
set; }
string table_name
Name of the table from which the records will be fetched.
A set of results returned by Kinetica.getRecords<T>(string,long,long,IDictionary<string, string>).
GetRecordsRequest()
Constructs a GetRecordsRequest object with default parameters.
IDictionary< string, string > options
EXPRESSION: Optional filter expression to apply to the table.
GetRecordsRequest(string table_name, long offset=0, long limit=10000, string encoding=null, IDictionary< string, string > options=null)
Constructs a GetRecordsRequest object with the specified parameters.
A set of parameters for Kinetica.getRecords<T>(string,long,long,IDictionary<string, string>).
EXPRESSION: Optional filter expression to apply to the table.
GetRecordsRequest(string table_name, long offset=0, long limit=10000, IDictionary< string, string > options=null)
Constructs a GetRecordsRequest object with the specified parameters.
string encoding
Specifies the encoding for returned records.
KineticaData - class to help with Avro Encoding for Kinetica
Specifies the encoding for returned records.
long limit
A positive integer indicating the maximum number of results to be returned.
A set of results returned by Kinetica.getRecords<T>(string,long,long,IDictionary<string, string>).
long offset
A positive integer indicating the number of initial results to skip (this can be useful for paging th...