GPUdb C++ API  Version 7.0.19.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
gpudb::LockTableRequest Struct Reference

A set of input parameters for const. More...

#include <gpudb/protocol/lock_table.h>

Public Member Functions

 LockTableRequest ()
 Constructs a LockTableRequest object with default parameter values. 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
 
std::string lockType
 
std::map< std::string,
std::string > 
options
 

Detailed Description

A set of input parameters for const.

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 24 of file lock_table.h.

Constructor & Destructor Documentation

gpudb::LockTableRequest::LockTableRequest ( )
inline

Constructs a LockTableRequest object with default parameter values.

Definition at line 30 of file lock_table.h.

gpudb::LockTableRequest::LockTableRequest ( const std::string &  tableName_,
const std::string &  lockType_,
const std::map< std::string, std::string > &  options_ 
)
inline

Constructs a LockTableRequest object with the specified parameters.

Parameters
[in]tableName_Name of the table to be locked. It must be a currently existing table, collection, 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. The default value is gpudb::lock_table_status.
[in]options_Optional parameters.

Definition at line 63 of file lock_table.h.

Member Data Documentation

std::string gpudb::LockTableRequest::lockType

Definition at line 71 of file lock_table.h.

std::map<std::string, std::string> gpudb::LockTableRequest::options

Definition at line 72 of file lock_table.h.

std::string gpudb::LockTableRequest::tableName

Definition at line 70 of file lock_table.h.


The documentation for this struct was generated from the following file: