Kinetica   C#   API  Version 7.2.3.1
CreateUnionRequest Class Reference

A set of parameters for Kinetica.createUnion. More...

+ Inheritance diagram for CreateUnionRequest:
+ Collaboration diagram for CreateUnionRequest:

Classes

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

Public Member Functions

 CreateUnionRequest ()
 Constructs a CreateUnionRequest object with default parameters. More...
 
 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. More...
 
- Public Member Functions inherited from KineticaData
 KineticaData (KineticaType type)
 Constructor from Kinetica Type More...
 
 KineticaData (System.Type type=null)
 Default constructor, with optional System.Type More...
 
object Get (int fieldPos)
 Retrieve a specific property from this object More...
 
void Put (int fieldPos, object fieldValue)
 Write a specific property to this object More...
 

Properties

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

Additional Inherited Members

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

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/2]

CreateUnionRequest.CreateUnionRequest ( )
inline

Constructs a CreateUnionRequest object with default parameters.

Definition at line 647 of file CreateUnion.cs.

◆ CreateUnionRequest() [2/2]

CreateUnionRequest.CreateUnionRequest ( string  table_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 957 of file CreateUnion.cs.

Property Documentation

◆ input_column_names

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

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

Definition at line 348 of file CreateUnion.cs.

◆ options

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

Optional parameters.

The default value is an empty Dictionary.

Definition at line 643 of file CreateUnion.cs.

◆ output_column_names

IList<string> 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 352 of file CreateUnion.cs.

◆ table_name

string 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 336 of file CreateUnion.cs.

◆ table_names

IList<string> 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 344 of file CreateUnion.cs.


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