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

#include <ParserNode.h>

+ Inheritance diagram for Parser::DropColumnStmt:
+ Collaboration diagram for Parser::DropColumnStmt:

Public Member Functions

 DropColumnStmt (std::string *tab, std::list< std::string * > *cols)
 
void execute (const Catalog_Namespace::SessionInfo &session, bool read_only_mode) override
 
const std::string * get_table () const
 
- 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_
 
std::list< std::unique_ptr
< std::string > > 
columns_
 

Detailed Description

Definition at line 1379 of file ParserNode.h.

Constructor & Destructor Documentation

Parser::DropColumnStmt::DropColumnStmt ( std::string *  tab,
std::list< std::string * > *  cols 
)
inline

Definition at line 1381 of file ParserNode.h.

References columns_.

1381  : table_(tab) {
1382  for (const auto col : *cols) {
1383  this->columns_.emplace_back(col);
1384  }
1385  delete cols;
1386  }
std::list< std::unique_ptr< std::string > > columns_
Definition: ParserNode.h:1393
std::unique_ptr< std::string > table_
Definition: ParserNode.h:1392

Member Function Documentation

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

Implements Parser::DDLStmt.

Definition at line 5529 of file ParserNode.cpp.

References CHECK, Parser::check_alter_table_privilege(), Executor::clearExternalCaches(), ColumnDescriptor::columnId, ColumnDescriptor::columnName, columns_, ColumnDescriptor::columnType, Data_Namespace::DISK_LEVEL, g_test_drop_column_rollback, SQLTypeInfo::get_physical_cols(), Catalog_Namespace::SessionInfo::getCatalog(), legacylockmgr::getExecuteWriteLock(), TableDescriptor::hasDeletedCol, TableDescriptor::isView, TableDescriptor::nColumns, TableDescriptor::nShards, TableDescriptor::persistenceLevel, TableDescriptor::shardedColumnId, ddl_utils::TABLE, table_, table_is_temporary(), TableDescriptor::tableId, and ddl_utils::validate_table_type().

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

5530  {
5531  if (read_only_mode) {
5532  throw std::runtime_error("DROP COLUMN invalid in read only mode.");
5533  }
5534  // TODO: Review add and drop column implementation
5535  const auto execute_write_lock = legacylockmgr::getExecuteWriteLock();
5536  auto& catalog = session.getCatalog();
5537  const auto td_with_lock =
5539  catalog, *table_, true);
5540  const auto td = td_with_lock();
5541  if (!td) {
5542  throw std::runtime_error("Table " + *table_ + " does not exist.");
5543  }
5545  if (td->isView) {
5546  throw std::runtime_error("Dropping a column from a view is not supported.");
5547  }
5548  if (table_is_temporary(td)) {
5549  throw std::runtime_error(
5550  "Dropping a column from a temporary table is not yet supported.");
5551  }
5552 
5553  check_alter_table_privilege(session, td);
5554 
5555  for (const auto& column : columns_) {
5556  if (nullptr == catalog.getMetadataForColumn(td->tableId, *column)) {
5557  throw std::runtime_error("Column " + *column + " does not exist.");
5558  }
5559  }
5560 
5561  if (td->nColumns <= (td->hasDeletedCol ? 3 : 2)) {
5562  throw std::runtime_error("Table " + *table_ + " has only one column.");
5563  }
5564 
5565  // invalidate cached item
5566  Executor::clearExternalCaches(false, td, catalog.getCurrentDB().dbId);
5567 
5568  catalog.getSqliteConnector().query("BEGIN TRANSACTION");
5569  try {
5570  std::vector<int> columnIds;
5571  for (const auto& column : columns_) {
5572  ColumnDescriptor cd = *catalog.getMetadataForColumn(td->tableId, *column);
5573  if (td->nShards > 0 && td->shardedColumnId == cd.columnId) {
5574  throw std::runtime_error("Dropping sharding column " + cd.columnName +
5575  " is not supported.");
5576  }
5577  catalog.dropColumn(*td, cd);
5578  columnIds.push_back(cd.columnId);
5579  for (int i = 0; i < cd.columnType.get_physical_cols(); i++) {
5580  const auto pcd = catalog.getMetadataForColumn(td->tableId, cd.columnId + i + 1);
5581  CHECK(pcd);
5582  catalog.dropColumn(*td, *pcd);
5583  columnIds.push_back(cd.columnId + i + 1);
5584  }
5585  }
5586 
5587  for (auto shard : catalog.getPhysicalTablesDescriptors(td)) {
5588  shard->fragmenter->dropColumns(columnIds);
5589  }
5590  // if test forces to rollback
5592  throw std::runtime_error("lol!");
5593  }
5594  catalog.rollLegacy(true);
5595  if (td->persistenceLevel == Data_Namespace::MemoryLevel::DISK_LEVEL) {
5596  catalog.resetTableEpochFloor(td->tableId);
5597  catalog.checkpoint(td->tableId);
5598  }
5599  catalog.getSqliteConnector().query("END TRANSACTION");
5600  } catch (...) {
5601  catalog.setForReload(td->tableId);
5602  catalog.rollLegacy(false);
5603  catalog.getSqliteConnector().query("ROLLBACK TRANSACTION");
5604  throw;
5605  }
5606 }
std::list< std::unique_ptr< std::string > > columns_
Definition: ParserNode.h:1393
int get_physical_cols() const
Definition: sqltypes.h:430
specifies the content in-memory of a row in the column metadata table
bool g_test_drop_column_rollback
Definition: ParserNode.cpp:79
void check_alter_table_privilege(const Catalog_Namespace::SessionInfo &session, const TableDescriptor *td)
bool table_is_temporary(const TableDescriptor *const td)
Catalog & getCatalog() const
Definition: SessionInfo.h:75
void validate_table_type(const TableDescriptor *td, const TableType expected_table_type, const std::string &command)
Definition: DdlUtils.cpp:745
#define CHECK(condition)
Definition: Logger.h:291
static void clearExternalCaches(bool for_update, const TableDescriptor *td, const int current_db_id)
Definition: Execute.h:438
auto getExecuteWriteLock()
SQLTypeInfo columnType
std::string columnName
std::unique_ptr< std::string > table_
Definition: ParserNode.h:1392

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

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

Definition at line 1389 of file ParserNode.h.

References table_.

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

Member Data Documentation

std::list<std::unique_ptr<std::string> > Parser::DropColumnStmt::columns_
private

Definition at line 1393 of file ParserNode.h.

Referenced by DropColumnStmt(), and execute().

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

Definition at line 1392 of file ParserNode.h.

Referenced by execute(), and get_table().


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