7 using System.Collections.Generic;
208 public const string TRUE =
"true";
209 public const string FALSE =
"false";
297 public const string TTL =
"ttl";
489 public IDictionary<string, string>
options {
get;
set; } =
new Dictionary<string, string>();
663 IDictionary<string, string>
options = null)
665 this.table_name = table_name ??
"";
666 this.type_id = type_id ??
"";
690 public bool is_collection {
get;
set; }
const string TTL
For a table, sets the TTL of the table specified in table_name.
const string NO_ERROR_IF_EXISTS
If true, prevents an error from occurring if the table already exists and is of the given type...
string type_id
ID of a currently registered type.
const string FOREIGN_KEYS
Semicolon-separated list of foreign keys, of the format '(source_column_name [, ...]) references target_table_name(primary_key_column_name [, ...]) [as foreign_key_name]'.
const string IS_RESULT_TABLE
For a table, indicates whether the table is an in-memory table.
IDictionary< string, string > options
Optional parameters.
const string IS_REPLICATED
For a table, indicates the distribution scheme for the table's data.
const string FOREIGN_SHARD_KEY
Foreign shard key of the format 'source_column references shard_by_column from target_table(primary_k...
const string DISALLOW_HOMOGENEOUS_TABLES
For a collection, indicates whether the collection prohibits containment of multiple tables of exactl...
const string CHUNK_SIZE
Indicates the chunk size to be used for this table.
const string COLLECTION_NAME
Name of a collection which is to contain the newly created table.
A set of parameters for Kinetica.createTable(string,string,IDictionary<string, string>).
string table_name
Name of the table to be created.
CreateTableRequest()
Constructs a CreateTableRequest object with default parameters.
const string IS_COLLECTION
Indicates whether the new table to be created will be a collection.
A set of results returned by Kinetica.createTable(string,string,IDictionary<string, string>).
KineticaData - class to help with Avro Encoding for Kinetica
CreateTableRequest(string table_name, string type_id, IDictionary< string, string > options=null)
Constructs a CreateTableRequest object with the specified parameters.