7 using System.Collections.Generic;
49 public const string BINARY =
"binary";
53 public const string JSON =
"json";
78 public const string TRUE =
"true";
79 public const string FALSE =
"false";
181 public const string TTL =
"ttl";
244 public long limit {
get;
set; } = -9999;
262 public string encoding {
get;
set; } = Encoding.BINARY;
458 public IDictionary<string, string>
options {
get;
set; } =
new Dictionary<string, string>();
687 IDictionary<string, string>
options =
null)
936 IDictionary<string, string>
options =
null)
991 public IDictionary<string, string>
info {
get;
set; } =
new Dictionary<string, string>();
1014 public IList<KineticaRecord>
data {
get;
set; } =
new List<KineticaRecord>();
1031 public IDictionary<string, string>
info {
get;
set; } =
new Dictionary<string, string>();
A set of string constants for the parameter encoding.
byte [] binary_encoded_response
Avro binary encoded response.
string table_name
Name of an existing table or view on which the operation will be performed, in [schema_name.
string json_encoded_response
Avro JSON encoded response.
const string TTL
Sets the TTL of the table specified in RESULT_TABLE.
IList< KineticaRecord > data
Avro binary encoded response.
KineticaData - class to help with Avro Encoding for Kinetica
IDictionary< string, string > options
Optional parameters.
A set of string constants for the parameter info.
A set of string constants for the parameter options.
const string RESULT_TABLE_PERSIST
If TRUE, then the result table specified in RESULT_TABLE will be persisted and will not expire unless...
const string EXPRESSION
Filter expression to apply to the table.
AggregateUniqueRequest()
Constructs an AggregateUniqueRequest object with default parameters.
const string QUALIFIED_RESULT_TABLE_NAME
The fully qualified name of the table (i.e.
bool has_more_records
Too many records.
const string COMPRESSION_CODEC
The default compression codec for the result table's columns.
const string CHUNK_SIZE
Indicates the number of records per chunk to be used for the result table.
const string RESULT_TABLE_GENERATE_PK
If TRUE then set a primary key for the result table.
bool has_more_records
Too many records.
string table_name
The same table name as was passed in the parameter list.
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 ...
string table_name
The same table name as was passed in the parameter list.
const string RESULT_TABLE_FORCE_REPLICATED
Force the result table to be replicated (ignores any sharding).
long offset
A positive integer indicating the number of initial results to skip (this can be useful for paging th...
string column_name
Name of the column or an expression containing one or more column names on which the unique function ...
AggregateUniqueRequest(string table_name, string column_name, long? offset=null, long? limit=null, string encoding=null, IDictionary< string, string > options=null)
Constructs an AggregateUniqueRequest object with the specified parameters.
AggregateUniqueRequest(string table_name, string column_name, long? offset=null, long? limit=null, IDictionary< string, string > options=null)
Constructs an AggregateUniqueRequest object with the specified parameters.
const string COLLECTION_NAME
[DEPRECATED–please specify the containing schema as part of RESULT_TABLE and use Kinetica....
IDictionary< string, string > info
Additional information.
const string ORDER_BY
Comma-separated list of the columns to be sorted by as well as the sort direction,...
const string CHUNK_COLUMN_MAX_MEMORY
Indicates the target maximum data size for each column in a chunk to be used for the result table.
string response_schema_str
Avro schema of binary_encoded_response or json_encoded_response.
A set of results returned by Kinetica.aggregateUnique.
const string JSON
Indicates that the returned records should be JSON-encoded.
const string QUALIFIED_RESULT_TABLE_NAME
The fully qualified name of the table (i.e.
A set of parameters for Kinetica.aggregateUnique.
const string CHUNK_MAX_MEMORY
Indicates the target maximum data size for all columns in a chunk to be used for the result table.
string encoding
Specifies the encoding for returned records.
const string BINARY
Indicates that the returned records should be binary encoded.
const string SORT_ORDER
String indicating how the returned values should be sorted.
A set of results returned by Kinetica.aggregateUnique.
const string VIEW_ID
ID of view of which the result table will be a member.
A set of string constants for the parameter info.
long limit
A positive integer indicating the maximum number of results to be returned, or END_OF_SET (-9999) to ...
const string RESULT_TABLE
The name of the table used to store the results, in [schema_name.
IDictionary< string, string > info
Additional information.