◆ createTable() [1/4]
| CreateTableResponse gpudb::GPUdb::createTable | ( | const CreateTableRequest & | request_ | ) | const |
Creates a new table with the given type (definition of columns).
The type is specified in typeId as either a numerical type ID (as returned by createType) or as a list of columns, each specified as a list of the column name, data type, and any column attributes.
Example of a type definition with some parameters:
Each column definition consists of the column name (which should meet the standard column naming criteria), the column’s specific type (int, long, float, double, string, bytes, or any of the properties map values from createType), and any data handling, data key, or data replacement properties.
A table may optionally be designated to use a replicated distribution scheme, or be assigned: foreign keys to other tables, a partitioning scheme, and/or a tier strategy.
| [in] | request_ | Request object containing the parameters for the operation. |
◆ createTable() [2/4]
| CreateTableResponse & gpudb::GPUdb::createTable | ( | const CreateTableRequest & | request_, |
| CreateTableResponse & | response_ ) const |
Creates a new table with the given type (definition of columns).
The type is specified in typeId as either a numerical type ID (as returned by createType) or as a list of columns, each specified as a list of the column name, data type, and any column attributes.
Example of a type definition with some parameters:
Each column definition consists of the column name (which should meet the standard column naming criteria), the column’s specific type (int, long, float, double, string, bytes, or any of the properties map values from createType), and any data handling, data key, or data replacement properties.
A table may optionally be designated to use a replicated distribution scheme, or be assigned: foreign keys to other tables, a partitioning scheme, and/or a tier strategy.
◆ createTable() [3/4]
| CreateTableResponse gpudb::GPUdb::createTable | ( | const std::string & | tableName, |
| const std::string & | typeId, | ||
| const std::map< std::string, std::string > & | options ) const |
Creates a new table with the given type (definition of columns).
The type is specified in typeId as either a numerical type ID (as returned by createType) or as a list of columns, each specified as a list of the column name, data type, and any column attributes.
Example of a type definition with some parameters:
Each column definition consists of the column name (which should meet the standard column naming criteria), the column’s specific type (int, long, float, double, string, bytes, or any of the properties map values from createType), and any data handling, data key, or data replacement properties.
A table may optionally be designated to use a replicated distribution scheme, or be assigned: foreign keys to other tables, a partitioning scheme, and/or a tier strategy.
| [in] | tableName | Name of the table to be created, in [schema_name.]table_name format, using standard name resolution rules and meeting table naming criteria. Error for requests with existing table of the same name and type ID may be suppressed by using the no_error_if_exists option. |
| [in] | typeId | The type for the table, specified as either an existing table’s numerical type ID (as returned by createType) or a type definition (as described above). |
| [in] | options | Optional parameters.
|
◆ createTable() [4/4]
| CreateTableResponse & gpudb::GPUdb::createTable | ( | const std::string & | tableName, |
| const std::string & | typeId, | ||
| const std::map< std::string, std::string > & | options, | ||
| CreateTableResponse & | response_ ) const |
Creates a new table with the given type (definition of columns).
The type is specified in typeId as either a numerical type ID (as returned by createType) or as a list of columns, each specified as a list of the column name, data type, and any column attributes.
Example of a type definition with some parameters:
Each column definition consists of the column name (which should meet the standard column naming criteria), the column’s specific type (int, long, float, double, string, bytes, or any of the properties map values from createType), and any data handling, data key, or data replacement properties.
A table may optionally be designated to use a replicated distribution scheme, or be assigned: foreign keys to other tables, a partitioning scheme, and/or a tier strategy.
| [in] | tableName | Name of the table to be created, in [schema_name.]table_name format, using standard name resolution rules and meeting table naming criteria. Error for requests with existing table of the same name and type ID may be suppressed by using the no_error_if_exists option. |
| [in] | typeId | The type for the table, specified as either an existing table’s numerical type ID (as returned by createType) or a type definition (as described above). |
| [in] | options | Optional parameters.
|
| [out] | response_ | Response object containing the results of the operation. |