URL: http://<db.host>:<db.port>/create/union
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.
Input Parameter Description
| Name | Type | Description | ||||||||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| table_name | string | 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 | array of strings | 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 | array of arrays of strings | The list of columns from each of the corresponding input tables. | ||||||||||||||||||||||||||||||||||||||||||||||||
| output_column_names | array of strings | The list of names of the columns to be stored in the output table. | ||||||||||||||||||||||||||||||||||||||||||||||||
| options | map of string to strings | Optional parameters. The default value is an empty map ( {} ).
|
Output Parameter Description
The GPUdb server embeds the endpoint response inside a standard response structure which contains status information and the actual response to the query. Here is a description of the various fields of the wrapper:
| Name | Type | Description | |||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| status | String | 'OK' or 'ERROR' | |||||||||||||||
| message | String | Empty if success or an error message | |||||||||||||||
| data_type | String | 'create_union_response' or 'none' in case of an error | |||||||||||||||
| data | String | Empty string | |||||||||||||||
| data_str | JSON or String | This embedded JSON represents the result of the /create/union endpoint:
Empty string in case of an error. |