Kinetica C# API  Version 6.0.1.0
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Pages
ColumnProperty.cs
Go to the documentation of this file.
1 /*
2  * This file was autogenerated by the Kinetica schema processor.
3  *
4  * DO NOT EDIT DIRECTLY.
5  */
6 
7 
8 namespace kinetica
9 {
10 
12  public struct ColumnProperty
13  {
14 
17  public const string DATA = "data";
18 
22  public const string TEXT_SEARCH = "text_search";
23 
29  public const string STORE_ONLY = "store_only";
30 
42  public const string DISK_OPTIMIZED = "disk_optimized";
43 
49  public const string TIMESTAMP = "timestamp";
50 
57  public const string DECIMAL = "decimal";
58 
63  public const string DATE = "date";
64 
69  public const string TIME = "time";
70 
75  public const string CHAR1 = "char1";
76 
81  public const string CHAR2 = "char2";
82 
87  public const string CHAR4 = "char4";
88 
93  public const string CHAR8 = "char8";
94 
99  public const string CHAR16 = "char16";
100 
105  public const string CHAR32 = "char32";
106 
111  public const string CHAR64 = "char64";
112 
117  public const string CHAR128 = "char128";
118 
123  public const string CHAR256 = "char256";
124 
128  public const string INT8 = "int8";
129 
133  public const string INT16 = "int16";
134 
139  public const string IPV4 = "ipv4";
140 
143  public const string PRIMARY_KEY = "primary_key";
144 
147  public const string SHARD_KEY = "shard_key";
148 
161  public const string NULLABLE = "nullable";
162  } // end struct ColumnProperty
163 
164 
165 
166 } // end namespace kinetica
const string DISK_OPTIMIZED
Works in conjunction with the 'data' property for string columns.
const string CHAR1
This property provides optimized memory, disk and query performance for string columns.
const string TEXT_SEARCH
Valid only for 'string' columns.
const string INT16
This property provides optimized memory and query performance for int columns.
const string PRIMARY_KEY
This property indicates that this column will be part of (or the entire) primary key.
const string CHAR128
This property provides optimized memory, disk and query performance for string columns.
Column properties used for Kinetica types.
const string TIMESTAMP
Valid only for 'long' columns.
const string CHAR16
This property provides optimized memory, disk and query performance for string columns.
const string CHAR64
This property provides optimized memory, disk and query performance for string columns.
const string CHAR4
This property provides optimized memory, disk and query performance for string columns.
const string CHAR2
This property provides optimized memory, disk and query performance for string columns.
const string DATE
Valid only for 'string' columns.
const string CHAR8
This property provides optimized memory, disk and query performance for string columns.
const string DECIMAL
Valid only for 'string' columns.
const string STORE_ONLY
Persist the column value but do not make it available to queries (e.g.
const string CHAR32
This property provides optimized memory, disk and query performance for string columns.
const string IPV4
This property provides optimized memory, disk and query performance for string columns representing I...
const string CHAR256
This property provides optimized memory, disk and query performance for string columns.
const string SHARD_KEY
This property indicates that this column will be part of (or the entire) shard key.
const string INT8
This property provides optimized memory and query performance for int columns.
const string TIME
Valid only for 'string' columns.
const string NULLABLE
This property indicates that this column is nullable.
const string DATA
Default property for all numeric and string type columns; makes the column available for GPU queries...