Kinetica C# API  Version 7.0.19.0
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Pages
CreateJoinTable.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 using System.Collections.Generic;
8 
9 
10 
11 namespace kinetica
12 {
13 
25  {
26 
93  public struct Options
94  {
95 
100  public const string COLLECTION_NAME = "collection_name";
101 
103  public const string MAX_QUERY_DIMENSIONS = "max_query_dimensions";
104 
119  public const string OPTIMIZE_LOOKUPS = "optimize_lookups";
120  public const string TRUE = "true";
121  public const string FALSE = "false";
122 
126  public const string TTL = "ttl";
127 
130  public const string VIEW_ID = "view_id";
131 
135  public const string NO_COUNT = "no_count";
136 
139  public const string CHUNK_SIZE = "chunk_size";
140  } // end struct Options
141 
142 
146  public string join_table_name { get; set; }
147 
150  public IList<string> table_names { get; set; } = new List<string>();
151 
161  public IList<string> column_names { get; set; } = new List<string>();
162 
168  public IList<string> expressions { get; set; } = new List<string>();
169 
234  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
235 
236 
240 
331  IList<string> table_names,
332  IList<string> column_names,
333  IList<string> expressions = null,
334  IDictionary<string, string> options = null)
335  {
336  this.join_table_name = join_table_name ?? "";
337  this.table_names = table_names ?? new List<string>();
338  this.column_names = column_names ?? new List<string>();
339  this.expressions = expressions ?? new List<string>();
340  this.options = options ?? new Dictionary<string, string>();
341  } // end constructor
342 
343  } // end class CreateJoinTableRequest
344 
345 
346 
351  {
352 
355  public string join_table_name { get; set; }
356 
359  public long count { get; set; }
360 
362  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
363 
364  } // end class CreateJoinTableResponse
365 
366 
367 
368 
369 } // end namespace kinetica
const string VIEW_ID
view this projection is part of.
IList< string > table_names
The list of table names composing the join.
string join_table_name
Name of the join table to be created.
const string OPTIMIZE_LOOKUPS
Use more memory to speed up the joining of tables.
const string TTL
Sets the TTL of the join table specified in join_table_name.
IList< string > expressions
An optional list of expressions to combine and filter the joined tables.
const string MAX_QUERY_DIMENSIONS
Obsolete in GPUdb v7.0
CreateJoinTableRequest()
Constructs a CreateJoinTableRequest object with default parameters.
IDictionary< string, string > options
Optional parameters.
IDictionary< string, string > info
Additional information.
const string COLLECTION_NAME
Name of a collection which is to contain the join.
A set of results returned by Kinetica.createJoinTable(string,IList{string},IList{string},IList{string},IDictionary{string, string}).
IList< string > column_names
List of member table columns or column expressions to be included in the join.
const string NO_COUNT
return a count of 0 for the join table for logging and for show_table.
long count
The number of records in the join table filtered by the given select expression.
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
CreateJoinTableRequest(string join_table_name, IList< string > table_names, IList< string > column_names, IList< string > expressions=null, IDictionary< string, string > options=null)
Constructs a CreateJoinTableRequest object with the specified parameters.
A set of parameters for Kinetica.createJoinTable(string,IList{string},IList{string},IList{string},IDictionary{string, string}).
const string CHUNK_SIZE
Maximum number of records per joined-chunk for this table.