createSchema
Creates a SQL-style schema. Schemas are containers for tables and views. Multiple tables and views can be defined with the same name in different schemas.Parameters:request-Requestobject containing the parameters for the operation.Returns:Responseobject containing the results of the operation.Throws:GPUdbException- if an error occurs during the operation.createSchema
public CreateSchemaResponse createSchema(String schemaName, Map<String, String> options) throws GPUdbException Creates a SQL-style schema. Schemas are containers for tables and views. Multiple tables and views can be defined with the same name in different schemas.Parameters:schemaName- Name of the schema to be created. Has the same naming restrictions as tables.options- Optional parameters.NO_ERROR_IF_EXISTS: IfTRUE, prevents an error from occurring if the schema already exists. Supported values:The default value isFALSE.
Map.Returns:Responseobject containing the results of the operation.Throws:GPUdbException- if an error occurs during the operation.