GPUdb C++ API
Version 7.2.2.4
|
A set of parameters for GPUdb::dropDatasource. More...
#include <gpudb/protocol/drop_datasource.h>
Public Member Functions | |
DropDatasourceRequest () | |
Constructs a DropDatasourceRequest object with default parameters. More... | |
DropDatasourceRequest (const std::string &name_, const std::map< std::string, std::string > &options_) | |
Constructs a DropDatasourceRequest object with the specified parameters. More... | |
Public Attributes | |
std::string | name |
Name of the data source to be dropped. More... | |
std::map< std::string, std::string > | options |
Optional parameters. More... | |
A set of parameters for GPUdb::dropDatasource.
Drops an existing data source. Any external tables that depend on the data source must be dropped before it can be dropped.
Definition at line 20 of file drop_datasource.h.
|
inline |
Constructs a DropDatasourceRequest object with default parameters.
Definition at line 25 of file drop_datasource.h.
|
inline |
Constructs a DropDatasourceRequest object with the specified parameters.
[in] | name_ | Name of the data source to be dropped. Must be an existing data source. |
[in] | options_ | Optional parameters. The default value is an empty map. |
Definition at line 40 of file drop_datasource.h.
std::string gpudb::DropDatasourceRequest::name |
Name of the data source to be dropped.
Must be an existing data source.
Definition at line 50 of file drop_datasource.h.
std::map<std::string, std::string> gpudb::DropDatasourceRequest::options |
Optional parameters.
The default value is an empty map.
Definition at line 55 of file drop_datasource.h.