GPUdb C++ API
Version 7.2.2.4
|
A set of parameters for GPUdb::lockTable. More...
#include <gpudb/protocol/lock_table.h>
Public Member Functions | |
LockTableRequest () | |
Constructs a LockTableRequest object with default parameters. More... | |
LockTableRequest (const std::string &tableName_, const std::string &lockType_, const std::map< std::string, std::string > &options_) | |
Constructs a LockTableRequest object with the specified parameters. More... | |
Public Attributes | |
std::string | tableName |
Name of the table to be locked, in [ schema_name. ]table_name format, using standard name resolution rules. More... | |
std::string | lockType |
The type of lock being applied to the table. More... | |
std::map< std::string, std::string > | options |
Optional parameters. More... | |
A set of parameters for GPUdb::lockTable.
Manages global access to a table's data. By default a table has a lockType of read_write, indicating all operations are permitted. A user may request a read_only or a write_only lock, after which only read or write operations, respectively, are permitted on the table until the lock is removed. When lockType is no_access then no operations are permitted on the table. The lock status can be queried by setting lockType to status.
Definition at line 26 of file lock_table.h.
|
inline |
Constructs a LockTableRequest object with default parameters.
Definition at line 31 of file lock_table.h.
|
inline |
Constructs a LockTableRequest object with the specified parameters.
[in] | tableName_ | Name of the table to be locked, in [schema_name.]table_name format, using standard name resolution rules. It must be a currently existing table or view. |
[in] | lockType_ | The type of lock being applied to the table. Setting it to status will return the current lock status of the table without changing it. Supported values:
|
[in] | options_ | Optional parameters. The default value is an empty map. |
Definition at line 74 of file lock_table.h.
std::string gpudb::LockTableRequest::lockType |
The type of lock being applied to the table.
Setting it to status will return the current lock status of the table without changing it. Supported values:
The default value is lock_table_status.
Definition at line 110 of file lock_table.h.
std::map<std::string, std::string> gpudb::LockTableRequest::options |
Optional parameters.
The default value is an empty map.
Definition at line 115 of file lock_table.h.
std::string gpudb::LockTableRequest::tableName |
Name of the table to be locked, in [ schema_name. ]table_name format, using standard name resolution rules.
It must be a currently existing table or view.
Definition at line 88 of file lock_table.h.