OmniSciDB  a5dc49c757
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Parser::TruncateTableStmt Class Reference

#include <ParserNode.h>

+ Inheritance diagram for Parser::TruncateTableStmt:
+ Collaboration diagram for Parser::TruncateTableStmt:

Public Member Functions

 TruncateTableStmt (std::string *tab)
 
 TruncateTableStmt (const rapidjson::Value &payload)
 
const std::string * get_table () const
 
void execute (const Catalog_Namespace::SessionInfo &session, bool read_only_mode) override
 
- Public Member Functions inherited from Parser::DDLStmt
void setColumnDescriptor (ColumnDescriptor &cd, const ColumnDef *coldef)
 
- Public Member Functions inherited from Parser::Node
virtual ~Node ()
 

Private Attributes

std::unique_ptr< std::string > table_
 

Detailed Description

Definition at line 1227 of file ParserNode.h.

Constructor & Destructor Documentation

Parser::TruncateTableStmt::TruncateTableStmt ( std::string *  tab)
inline

Definition at line 1229 of file ParserNode.h.

1229 : table_(tab) {}
std::unique_ptr< std::string > table_
Definition: ParserNode.h:1236
Parser::TruncateTableStmt::TruncateTableStmt ( const rapidjson::Value &  payload)

Definition at line 4949 of file ParserNode.cpp.

References CHECK, json_str(), and table_.

4949  {
4950  CHECK(payload.HasMember("tableName"));
4951  table_ = std::make_unique<std::string>(json_str(payload["tableName"]));
4952 }
std::unique_ptr< std::string > table_
Definition: ParserNode.h:1236
const std::string json_str(const rapidjson::Value &obj) noexcept
Definition: JsonAccessors.h:46
#define CHECK(condition)
Definition: Logger.h:291

+ Here is the call graph for this function:

Member Function Documentation

void Parser::TruncateTableStmt::execute ( const Catalog_Namespace::SessionInfo session,
bool  read_only_mode 
)
overridevirtual

Implements Parser::DDLStmt.

Definition at line 4954 of file ParserNode.cpp.

References Executor::clearExternalCaches(), Catalog_Namespace::SessionInfo::get_currentUser(), Catalog_Namespace::SessionInfo::getCatalog(), legacylockmgr::getExecuteReadLock(), lockmgr::TableLockMgrImpl< TableDataLockMgr >::getReadLockForTable(), lockmgr::TableLockMgrImpl< TableDataLockMgr >::getWriteLockForTable(), lockmgr::instance(), TableDescriptor::isView, DBObject::loadKey(), DBObject::setPrivileges(), table_, TableDBObjectType, AccessPrivileges::TRUNCATE_TABLE, Catalog_Namespace::UserMetadata::userLoggable(), and foreign_storage::validate_non_foreign_table_write().

Referenced by heavydb.cursor.Cursor::executemany().

4955  {
4956  if (read_only_mode) {
4957  throw std::runtime_error("TRUNCATE TABLE invalid in read only mode.");
4958  }
4959  const auto execute_read_lock = legacylockmgr::getExecuteReadLock();
4960  auto& catalog = session.getCatalog();
4961  const auto td_with_lock =
4963  catalog, *table_, true);
4964  const auto td = td_with_lock();
4965  if (!td) {
4966  throw std::runtime_error("Table " + *table_ + " does not exist.");
4967  }
4968 
4969  // check access privileges
4970  std::vector<DBObject> privObjects;
4971  DBObject dbObject(*table_, TableDBObjectType);
4972  dbObject.loadKey(catalog);
4973  dbObject.setPrivileges(AccessPrivileges::TRUNCATE_TABLE);
4974  privObjects.push_back(dbObject);
4975  if (!SysCatalog::instance().checkPrivileges(session.get_currentUser(), privObjects)) {
4976  throw std::runtime_error("Table " + *table_ + " will not be truncated. User " +
4977  session.get_currentUser().userLoggable() +
4978  " has no proper privileges.");
4979  }
4980 
4981  if (td->isView) {
4982  throw std::runtime_error(*table_ + " is a view. Cannot Truncate.");
4983  }
4985 
4986  // invalidate cached item
4987  {
4988  auto table_data_read_lock =
4990  Executor::clearExternalCaches(false, td, catalog.getCurrentDB().dbId);
4991  }
4992 
4993  auto table_data_write_lock =
4995  catalog.truncateTable(td);
4996 }
void validate_non_foreign_table_write(const TableDescriptor *table_descriptor)
Definition: FsiUtils.h:22
auto getExecuteReadLock()
static const AccessPrivileges TRUNCATE_TABLE
Definition: DBObject.h:164
std::unique_ptr< std::string > table_
Definition: ParserNode.h:1236
static WriteLock getWriteLockForTable(const Catalog_Namespace::Catalog &cat, const std::string &table_name)
Catalog & getCatalog() const
Definition: SessionInfo.h:75
T & instance()
Definition: LockMgr.cpp:101
static void clearExternalCaches(bool for_update, const TableDescriptor *td, const int current_db_id)
Definition: Execute.h:438
std::string userLoggable() const
Definition: SysCatalog.cpp:158
const UserMetadata & get_currentUser() const
Definition: SessionInfo.h:88
static ReadLock getReadLockForTable(Catalog_Namespace::Catalog &cat, const std::string &table_name)

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

const std::string* Parser::TruncateTableStmt::get_table ( ) const
inline

Definition at line 1231 of file ParserNode.h.

References table_.

1231 { return table_.get(); }
std::unique_ptr< std::string > table_
Definition: ParserNode.h:1236

Member Data Documentation

std::unique_ptr<std::string> Parser::TruncateTableStmt::table_
private

Definition at line 1236 of file ParserNode.h.

Referenced by execute(), get_table(), and TruncateTableStmt().


The documentation for this class was generated from the following files: