7 using System.Collections.Generic;
235 public const string TRUE =
"true";
236 public const string FALSE =
"false";
240 public const string LIMIT =
"limit";
280 public const string TTL =
"ttl";
503 public IDictionary<string, string>
options {
get;
set; } =
new Dictionary<string, string>();
683 IDictionary<string, string>
options = null)
685 this.table_name = table_name ??
"";
686 this.projection_name = projection_name ??
"";
687 this.column_names = column_names ??
new List<string>();
688 this.
options = options ??
new Dictionary<string, string>();
const string ORDER_BY
Comma-separated list of the columns to be sorted by; e.g.
CreateProjectionRequest(string table_name, string projection_name, IList< string > column_names, IDictionary< string, string > options=null)
Constructs a CreateProjectionRequest object with the specified parameters.
const string PERSIST
If true, then the projection specified in projection_name will be persisted and will not expire unles...
const string EXPRESSION
An optional filter expression to be applied to the source table prior to the projection.
string projection_name
Name of the projection to be created.
IList< string > column_names
List of columns from to be included in the projection.
const string LIMIT
The number of records to keep.
IDictionary< string, string > options
Optional parameters.
A set of results returned by Kinetica.createProjection(string,string,IList<string>,IDictionary<string, string>).
CreateProjectionRequest()
Constructs a CreateProjectionRequest object with default parameters.
const string SHARD_KEY
Comma-separated list of the columns to be sharded on; e.g.
A set of parameters for Kinetica.createProjection(string,string,IList<string>,IDictionary<string, string>).
const string TTL
Sets the TTL of the projection specified in projection_name.
const string COLLECTION_NAME
Name of a collection to which the projection is to be assigned as a child.
const string MATERIALIZE_ON_GPU
If true then the columns of the projection will be cached on the GPU.
KineticaData - class to help with Avro Encoding for Kinetica
const string CHUNK_SIZE
Indicates the chunk size to be used for this table.
const string PRESERVE_DICT_ENCODING
If true, then columns that were dict encoded in the source table will be dict encoded in the projecti...
string table_name
Name of the existing table on which the projection is to be applied.
const string VIEW_ID
view this projection is part of.
const string CREATE_INDEXES
Comma-separated list of columns on which to create indexes on the output table.
const string IS_REPLICATED
If true then the projection will be replicated even if the source table is not.