7 using System.Collections.Generic;
33 public const string OFFSET =
"offset";
41 public const string LIMIT =
"limit";
79 public const string TRUE =
"true";
80 public const string FALSE =
"false";
150 public IDictionary<string, string>
field_map {
get;
set; } =
new Dictionary<string, string>();
288 public IDictionary<string, string>
options {
get;
set; } =
new Dictionary<string, string>();
455 IDictionary<string, string>
options =
null)
459 this.field_map =
field_map ??
new Dictionary<string, string>();
474 public IDictionary<string, string>
info {
get;
set; } =
new Dictionary<string, string>();
string source_table_name
The source table name to get records from, in [schema_name.
const string IGNORE_EXISTING_PK
Specifies the record collision error-suppression policy for inserting source table records (specified...
const string UPDATE_ON_EXISTING_PK
Specifies the record collision policy for inserting source table records (specified by source_table_n...
A set of string constants for the parameter options.
A set of parameters for Kinetica.appendRecords.
const string ORDER_BY
Comma-separated list of the columns to be sorted by from source table (specified by source_table_name...
AppendRecordsRequest()
Constructs an AppendRecordsRequest object with default parameters.
const string TRUNCATE_STRINGS
If set to TRUE, it allows inserting longer strings into smaller charN string columns by truncating th...
IDictionary< string, string > field_map
Contains the mapping of column names from the target table (specified by table_name) as the keys,...
string table_name
The table name for the records to be appended, in [schema_name.
A set of results returned by Kinetica.appendRecords.
IDictionary< string, string > options
Optional parameters.
IDictionary< string, string > info
Additional information.
const string OFFSET
A positive integer indicating the number of initial results to skip from source_table_name.
KineticaData - class to help with Avro Encoding for Kinetica
const string LIMIT
A positive integer indicating the maximum number of results to be returned from source_table_name.
const string EXPRESSION
Optional filter expression to apply to the source_table_name.
AppendRecordsRequest(string table_name, string source_table_name, IDictionary< string, string > field_map, IDictionary< string, string > options=null)
Constructs an AppendRecordsRequest object with the specified parameters.