GPUdb C++ API
Version 5.2.0.0
|
A set of input parameters for showTablesByType(const ShowTablesByTypeRequest&) const. More...
#include <gpudb/protocol/show_tables_by_type.h>
Public Member Functions | |
ShowTablesByTypeRequest () | |
Constructs a ShowTablesByTypeRequest object with default parameter values. More... | |
ShowTablesByTypeRequest (const std::string &typeId, const std::string &label, const std::map< std::string, std::string > &options) | |
Constructs a ShowTablesByTypeRequest object with the specified parameters. More... | |
Public Attributes | |
std::string | typeId |
std::string | label |
std::map< std::string, std::string > | options |
A set of input parameters for showTablesByType(const ShowTablesByTypeRequest&) const.
Gets names of the tables from GPUdb based on the type information. Each table in GPUdb has a particular type. This type is made out of the type label, schema of the table and the semantic type of the table. This function allows a look up of the existing tables based on full or partial type information. The operation is synchronous.
Definition at line 22 of file show_tables_by_type.h.
|
inline |
Constructs a ShowTablesByTypeRequest object with default parameter values.
Definition at line 29 of file show_tables_by_type.h.
|
inline |
Constructs a ShowTablesByTypeRequest object with the specified parameters.
[in] | typeId | Type id returned by a call to /create/type. |
[in] | label | Optional user supplied label which can be used instead of the type_id to retrieve all tables with the given label. |
[in] | options | Optional parameters. Default value is an empty std::map. |
Definition at line 48 of file show_tables_by_type.h.
std::string gpudb::ShowTablesByTypeRequest::label |
Definition at line 56 of file show_tables_by_type.h.
std::map<std::string, std::string> gpudb::ShowTablesByTypeRequest::options |
Definition at line 57 of file show_tables_by_type.h.
std::string gpudb::ShowTablesByTypeRequest::typeId |
Definition at line 55 of file show_tables_by_type.h.