OmniSciDB  72c90bc290
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Parser::RestoreTableStmt Class Reference

#include <ParserNode.h>

+ Inheritance diagram for Parser::RestoreTableStmt:
+ Collaboration diagram for Parser::RestoreTableStmt:

Public Member Functions

 RestoreTableStmt (const rapidjson::Value &payload)
 
void execute (const Catalog_Namespace::SessionInfo &session, bool read_only_mode) override
 
- Public Member Functions inherited from Parser::DumpRestoreTableStmtBase
 DumpRestoreTableStmtBase (const rapidjson::Value &payload, const bool is_restore)
 
CompressionType defaultCompression (bool is_restore)
 
CompressionType validateCompression (const std::string &compression, const bool is_restore)
 
std::string tarCompressionStr (CompressionType compression, const bool is_restore)
 
const std::string * getTable () const
 
const std::string * getPath () const
 
const CompressionType getCompression () const
 
- Public Member Functions inherited from Parser::DDLStmt
void setColumnDescriptor (ColumnDescriptor &cd, const ColumnDef *coldef)
 
- Public Member Functions inherited from Parser::Node
virtual ~Node ()
 

Additional Inherited Members

- Public Types inherited from Parser::DumpRestoreTableStmtBase
enum  CompressionType { CompressionType::kGZIP, CompressionType::kLZ4, CompressionType::kNONE }
 
- Protected Attributes inherited from Parser::DumpRestoreTableStmtBase
std::unique_ptr< std::string > table_
 
std::unique_ptr< std::string > path_
 
CompressionType compression_
 
TableArchiverS3Options s3_options_
 

Detailed Description

Definition at line 1449 of file ParserNode.h.

Constructor & Destructor Documentation

Parser::RestoreTableStmt::RestoreTableStmt ( const rapidjson::Value &  payload)

Definition at line 7218 of file ParserNode.cpp.

7219  : DumpRestoreTableStmtBase(payload, true) {}
DumpRestoreTableStmtBase(const rapidjson::Value &payload, const bool is_restore)

Member Function Documentation

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

Implements Parser::DDLStmt.

Definition at line 7221 of file ParserNode.cpp.

References Catalog_Namespace::SessionInfo::checkDBAccessPrivileges(), Parser::DumpRestoreTableStmtBase::compression_, AccessPrivileges::CREATE_TABLE, Catalog_Namespace::SessionInfo::getCatalog(), Parser::DumpRestoreTableStmtBase::path_, TableArchiver::restoreTable(), Parser::DumpRestoreTableStmtBase::s3_options_, Parser::DumpRestoreTableStmtBase::table_, TableDBObjectType, and Parser::DumpRestoreTableStmtBase::tarCompressionStr().

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

7222  {
7223  if (read_only_mode) {
7224  throw std::runtime_error("RESTORE TABLE invalid in read only mode.");
7225  }
7226  auto& catalog = session.getCatalog();
7227  const TableDescriptor* td = catalog.getMetadataForTable(*table_, false);
7228  if (td) {
7229  // TODO: v1.0 simply throws to avoid accidentally overwrite target table.
7230  // Will add a REPLACE TABLE to explictly replace target table.
7231  // catalog.restoreTable(session, td, *path, compression_);
7232  // TODO (yoonmin): if the above feature is delivered, we have to invalidate cached
7233  // items for the table
7234  throw std::runtime_error("Table " + *table_ + " exists.");
7235  } else {
7236  // check access privileges
7239  throw std::runtime_error("Table " + *table_ +
7240  " will not be restored. User has no create privileges.");
7241  }
7242  TableArchiver table_archiver(&catalog);
7243  table_archiver.restoreTable(
7244  session, *table_, *path_, tarCompressionStr(compression_, true), s3_options_);
7245  }
7246 }
std::string tarCompressionStr(CompressionType compression, const bool is_restore)
TableArchiverS3Options s3_options_
Definition: ParserNode.h:1435
std::unique_ptr< std::string > table_
Definition: ParserNode.h:1432
static const AccessPrivileges CREATE_TABLE
Definition: DBObject.h:158
std::unique_ptr< std::string > path_
Definition: ParserNode.h:1433
Catalog & getCatalog() const
Definition: SessionInfo.h:75
bool checkDBAccessPrivileges(const DBObjectType &permissionType, const AccessPrivileges &privs, const std::string &objectName="") const
Definition: SessionInfo.cpp:24

+ Here is the call graph for this function:

+ Here is the caller graph for this function:


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