Skip to main content

A set of parameters for Kinetica.createUnion. More…

Inheritance diagram for kinetica.CreateUnionRequest:
Collaboration diagram for kinetica.CreateUnionRequest:

Classes

struct  Options
 A set of string constants for the parameter CreateUnionRequest.options. More…
 

Public Member Functions

 CreateUnionRequest ()
 Constructs a CreateUnionRequest object with default parameters.
 
 CreateUnionRequest (string table_name, IList< string > table_names, IList< IList< string > > input_column_names, IList< string > output_column_names, IDictionary< string, string > options=null)
 Constructs a CreateUnionRequest object with the specified parameters.
 
 CreateUnionRequest ()
 Constructs a CreateUnionRequest object with default parameters.
 
 CreateUnionRequest (string table_name, IList< string > table_names, IList< IList< string > > input_column_names, IList< string > output_column_names, IDictionary< string, string > options=null)
 Constructs a CreateUnionRequest object with the specified parameters.
 
 Public Member Functions inherited from kinetica.KineticaData
 KineticaData (KineticaType type)
 Constructor from Kinetica Type.
 
 KineticaData (System.Type type=null)
 Default constructor, with optional System.Type.
 
object Get (int fieldPos)
 Retrieve a specific property from this object.
 
void Put (int fieldPos, object fieldValue)
 Write a specific property to this object.
 
 KineticaData (KineticaType type)
 Constructor from Kinetica Type.
 
 KineticaData (System.Type type=null)
 Default constructor, with optional System.Type.
 
object Get (int fieldPos)
 Retrieve a specific property from this object.
 
void Put (int fieldPos, object fieldValue)
 Write a specific property to this object.
 

Properties

string table_name [get, set]
 Name of the table to be created, in [schema_name.
 
IList< string > table_names = new List<string>() [get, set]
 The list of table names to merge, in [schema_name.
 
IList< IList< string > > input_column_names = new List<IList<string>>() [get, set]
 The list of columns from each of the corresponding input tables.
 
IList< string > output_column_names = new List<string>() [get, set]
 The list of names of the columns to be stored in the output table.
 
IDictionary< string, string > options = new Dictionary<string, string>() [get, set]
 Optional parameters.
 
 Properties inherited from kinetica.KineticaData
Schema Schema [get]
 Avro Schema for this class.
 

Additional Inherited Members

 Static Public Member Functions inherited from kinetica.KineticaData
static ? RecordSchema SchemaFromType (System.Type t, KineticaType? ktype=null)
 Create an Avro Schema from a System.Type and a KineticaType.
 
static ? RecordSchema SchemaFromType (System.Type t, KineticaType? ktype=null)
 Create an Avro Schema from a System.Type and a KineticaType.
 

Detailed Description

A set of parameters for Kinetica.createUnion.

Merges data from one or more tables with comparable data types into a new table.

The following merges are supported:

UNION (DISTINCT/ALL) - For data set union details and examples, see Union. For limitations, see Union Limitations and Cautions.

INTERSECT (DISTINCT/ALL) - For data set intersection details and examples, see Intersect. For limitations, see Intersect Limitations.

EXCEPT (DISTINCT/ALL) - For data set subtraction details and examples, see Except. For limitations, see Except Limitations.

Definition at line 31 of file CreateUnion.cs.

Constructor & Destructor Documentation

◆ CreateUnionRequest() [1/4]

kinetica.CreateUnionRequest.CreateUnionRequest ()
inline

Constructs a CreateUnionRequest object with default parameters.

Definition at line 766 of file CreateUnion.cs.

◆ CreateUnionRequest() [2/4]

kinetica.CreateUnionRequest.CreateUnionRequest (stringtable_name,
IList< string >table_names,
IList< IList< string > >input_column_names,
IList< string >output_column_names,
IDictionary< string, string >options = null )
inline

Constructs a CreateUnionRequest object with the specified parameters.

Parameters
table_nameName of the table to be created, in [schema_name.]table_name format, using standard name resolution rules and meeting table naming criteria.
table_namesThe list of table names to merge, in [schema_name.]table_name format, using standard name resolution rules. Must contain the names of one or more existing tables.
input_column_namesThe list of columns from each of the corresponding input tables.
output_column_namesThe list of names of the columns to be stored in the output table.
optionsOptional parameters.The default value is an empty Dictionary.

Definition at line 1134 of file CreateUnion.cs.

◆ CreateUnionRequest() [3/4]

kinetica.CreateUnionRequest.CreateUnionRequest ()
inline

Constructs a CreateUnionRequest object with default parameters.

Definition at line 766 of file CreateUnion.cs.

◆ CreateUnionRequest() [4/4]

kinetica.CreateUnionRequest.CreateUnionRequest (stringtable_name,
IList< string >table_names,
IList< IList< string > >input_column_names,
IList< string >output_column_names,
IDictionary< string, string >options = null )
inline

Constructs a CreateUnionRequest object with the specified parameters.

Parameters
table_nameName of the table to be created, in [schema_name.]table_name format, using standard name resolution rules and meeting table naming criteria.
table_namesThe list of table names to merge, in [schema_name.]table_name format, using standard name resolution rules. Must contain the names of one or more existing tables.
input_column_namesThe list of columns from each of the corresponding input tables.
output_column_namesThe list of names of the columns to be stored in the output table.
optionsOptional parameters.The default value is an empty Dictionary.

Definition at line 1134 of file CreateUnion.cs.

Property Documentation

◆ input_column_names

IList< IList< string > > kinetica.CreateUnionRequest.input_column_names = new List<IList<string>>()
getset

The list of columns from each of the corresponding input tables.

Definition at line 405 of file CreateUnion.cs.

◆ options

IDictionary< string, string > kinetica.CreateUnionRequest.options = new Dictionary<string, string>()
getset

Optional parameters.

The default value is an empty Dictionary.

Definition at line 762 of file CreateUnion.cs.

◆ output_column_names

IList< string > kinetica.CreateUnionRequest.output_column_names = new List<string>()
getset

The list of names of the columns to be stored in the output table.

Definition at line 409 of file CreateUnion.cs.

◆ table_name

string kinetica.CreateUnionRequest.table_name
getset

Name of the table to be created, in [schema_name.

]table_name format, using standard name resolution rules and meeting table naming criteria.

Definition at line 393 of file CreateUnion.cs.

◆ table_names

IList< string > kinetica.CreateUnionRequest.table_names = new List<string>()
getset

The list of table names to merge, in [schema_name.

]table_name format, using standard name resolution rules.

Must contain the names of one or more existing tables.

Definition at line 401 of file CreateUnion.cs.


The documentation for this class was generated from the following files: