Kinetica C# API
Version 7.1.10.0
|
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... | |
![]() | |
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 [get, set] |
The list of table names to merge, in [schema_name. 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... | |
![]() | |
Schema | Schema [get] |
Avro Schema for this class More... | |
Additional Inherited Members | |
![]() | |
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 660 of file CreateUnion.cs.
|
inline |
Constructs a CreateUnionRequest object with the specified parameters.
table_name | Name of the table to be created, in [schema_name.]table_name format, using standard name resolution rules and meeting table naming criteria. |
table_names | 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. |
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 866 of file CreateUnion.cs.
|
getset |
The list of columns from each of the corresponding input tables.
Definition at line 464 of file CreateUnion.cs.
|
getset |
Optional parameters.
The default value is an empty Dictionary.
Definition at line 655 of file CreateUnion.cs.
|
getset |
The list of names of the columns to be stored in the output table.
Definition at line 468 of file CreateUnion.cs.
|
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 453 of file CreateUnion.cs.
|
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 460 of file CreateUnion.cs.