Kinetica C# API
Version 6.2.0.1
|
A set of parameters for Kinetica.createUnion(string,IList<string>,IList<IList<string>>,IList<string>,IDictionary<string, string>). More...
Classes | |
struct | Options |
Optional parameters. 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 kinetica.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. More... | |
IList< string > | table_names [get, set] |
The list of table names to merge. More... | |
IList< IList< string > > | input_column_names = new List<string>() [get, set] |
The list of columns from each of the corresponding input tables. More... | |
IList< string > | output_column_names = new List<IList<string>>() [get, set] |
The list of names of the columns to be stored in the output table. More... | |
IDictionary< string, string > | options = new List<string>() [get, set] |
Optional parameters. More... | |
Properties inherited from kinetica.KineticaData | |
Schema | Schema [get] |
Avro Schema for this class More... | |
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. More... | |
A set of parameters for Kinetica.createUnion(string,IList<string>,IList<IList<string>>,IList<string>,IDictionary<string, string>).
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.
MERGE VIEWS - For a given set of filtered views on a single table, creates a single filtered view containing all of the unique records across all of the given filtered data sets.
Non-charN 'string' and 'bytes' column types cannot be merged, nor can columns marked as store-only.
Definition at line 48 of file CreateUnion.cs.
|
inline |
Constructs a CreateUnionRequest object with default parameters.
Definition at line 616 of file CreateUnion.cs.
|
inline |
Constructs a CreateUnionRequest object with the specified parameters.
table_name | Name of the table to be created. Has the same naming restrictions as tables. |
table_names | The list of table names to merge. Must contain the names of one or more existing tables. |
input_column_names | The list of columns from each of the corresponding input tables. |
output_column_names | The list of names of the columns to be stored in the output table. |
options | Optional parameters.
|
Definition at line 803 of file CreateUnion.cs.
|
getset |
The list of columns from each of the corresponding input tables.
Definition at line 433 of file CreateUnion.cs.
|
getset |
Optional parameters.
The default value is an empty Dictionary.
Definition at line 611 of file CreateUnion.cs.
|
getset |
The list of names of the columns to be stored in the output table.
Definition at line 437 of file CreateUnion.cs.
|
getset |
Name of the table to be created.
Has the same naming restrictions as tables.
Definition at line 425 of file CreateUnion.cs.
|
getset |
The list of table names to merge.
Must contain the names of one or more existing tables.
Definition at line 429 of file CreateUnion.cs.