GPUdb C++ API
Version 7.2.2.4
|
A set of parameters for GPUdb::showTable. More...
#include <gpudb/protocol/show_table.h>
Public Member Functions | |
ShowTableRequest () | |
Constructs a ShowTableRequest object with default parameters. More... | |
ShowTableRequest (const std::string &tableName_, const std::map< std::string, std::string > &options_) | |
Constructs a ShowTableRequest object with the specified parameters. More... | |
Public Attributes | |
std::string | tableName |
Name of the table for which to retrieve the information, in [ schema_name. ]table_name format, using standard name resolution rules. More... | |
std::map< std::string, std::string > | options |
Optional parameters. More... | |
A set of parameters for GPUdb::showTable.
Retrieves detailed information about a table, view, or schema, specified in tableName. If the supplied tableName is a schema the call can return information about either the schema itself or the tables and views it contains. If tableName is empty, information about all schemas will be returned.
If the option get_sizes is set to true, then the number of records in each table is returned (in sizes and fullSizes), along with the total number of objects across all requested tables (in totalSize and totalFullSize).
For a schema, setting the show_children option to false returns only information about the schema itself; setting show_children to true returns a list of tables and views contained in the schema, along with their corresponding detail.
To retrieve a list of every table, view, and schema in the database, set tableName to '*' and show_children to true. When doing this, the returned totalSize and totalFullSize will not include the sizes of non-base tables (e.g., filters, views, joins, etc.).
Definition at line 44 of file show_table.h.
|
inline |
Constructs a ShowTableRequest object with default parameters.
Definition at line 49 of file show_table.h.
|
inline |
Constructs a ShowTableRequest object with the specified parameters.
[in] | tableName_ | Name of the table for which to retrieve the information, in [schema_name.]table_name format, using standard name resolution rules. If blank, then returns information about all tables and views. |
[in] | options_ | Optional parameters.
|
Definition at line 194 of file show_table.h.
std::map<std::string, std::string> gpudb::ShowTableRequest::options |
Optional parameters.
The default value is an empty map.
Definition at line 303 of file show_table.h.
std::string gpudb::ShowTableRequest::tableName |
Name of the table for which to retrieve the information, in [ schema_name. ]table_name format, using standard name resolution rules.
If blank, then returns information about all tables and views.
Definition at line 207 of file show_table.h.