GPUdb C++ API
Version 7.2.2.4
|
A set of parameters for GPUdb::dropSchema. More...
#include <gpudb/protocol/drop_schema.h>
Public Member Functions | |
DropSchemaRequest () | |
Constructs a DropSchemaRequest object with default parameters. More... | |
DropSchemaRequest (const std::string &schemaName_, const std::map< std::string, std::string > &options_) | |
Constructs a DropSchemaRequest object with the specified parameters. More... | |
Public Attributes | |
std::string | schemaName |
Name of the schema to be dropped. More... | |
std::map< std::string, std::string > | options |
Optional parameters. More... | |
A set of parameters for GPUdb::dropSchema.
Drops an existing SQL-style schema, specified in schemaName.
Definition at line 18 of file drop_schema.h.
|
inline |
Constructs a DropSchemaRequest object with default parameters.
Definition at line 23 of file drop_schema.h.
|
inline |
Constructs a DropSchemaRequest object with the specified parameters.
[in] | schemaName_ | Name of the schema to be dropped. Must be an existing schema. |
[in] | options_ | Optional parameters.
|
Definition at line 77 of file drop_schema.h.
std::map<std::string, std::string> gpudb::DropSchemaRequest::options |
Optional parameters.
The default value is an empty map.
Definition at line 119 of file drop_schema.h.
std::string gpudb::DropSchemaRequest::schemaName |
Name of the schema to be dropped.
Must be an existing schema.
Definition at line 86 of file drop_schema.h.