OmniSciDB  c1a53651b2
 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 1392 of file ParserNode.h.

Constructor & Destructor Documentation

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

Definition at line 1394 of file ParserNode.h.

References columns_.

1394  : table_(tab) {
1395  for (const auto col : *cols) {
1396  this->columns_.emplace_back(col);
1397  }
1398  delete cols;
1399  }
std::list< std::unique_ptr< std::string > > columns_
Definition: ParserNode.h:1406
std::unique_ptr< std::string > table_
Definition: ParserNode.h:1405

Member Function Documentation

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

Implements Parser::DDLStmt.

Definition at line 5214 of file ParserNode.cpp.

References CHECK, Parser::check_alter_table_privilege(), Executor::clearExternalCaches(), ColumnDescriptor::columnId, ColumnDescriptor::columnName, columns_, ColumnDescriptor::columnType, Data_Namespace::DISK_LEVEL, legacylockmgr::ExecutorOuterLock, g_test_drop_column_rollback, SQLTypeInfo::get_physical_cols(), Catalog_Namespace::SessionInfo::getCatalog(), legacylockmgr::LockMgr< MutexType, KeyType >::getMutex(), 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().

5215  {
5216  if (read_only_mode) {
5217  throw std::runtime_error("DROP COLUMN invalid in read only mode.");
5218  }
5219  // TODO: Review add and drop column implementation
5220  const auto execute_write_lock =
5224  auto& catalog = session.getCatalog();
5225  const auto td_with_lock =
5227  catalog, *table_, true);
5228  const auto td = td_with_lock();
5229  if (!td) {
5230  throw std::runtime_error("Table " + *table_ + " does not exist.");
5231  }
5233  if (td->isView) {
5234  throw std::runtime_error("Dropping a column from a view is not supported.");
5235  }
5236  if (table_is_temporary(td)) {
5237  throw std::runtime_error(
5238  "Dropping a column from a temporary table is not yet supported.");
5239  }
5240 
5241  check_alter_table_privilege(session, td);
5242 
5243  for (const auto& column : columns_) {
5244  if (nullptr == catalog.getMetadataForColumn(td->tableId, *column)) {
5245  throw std::runtime_error("Column " + *column + " does not exist.");
5246  }
5247  }
5248 
5249  if (td->nColumns <= (td->hasDeletedCol ? 3 : 2)) {
5250  throw std::runtime_error("Table " + *table_ + " has only one column.");
5251  }
5252 
5253  // invalidate cached item
5254  Executor::clearExternalCaches(false, td, catalog.getCurrentDB().dbId);
5255 
5256  catalog.getSqliteConnector().query("BEGIN TRANSACTION");
5257  try {
5258  std::vector<int> columnIds;
5259  for (const auto& column : columns_) {
5260  ColumnDescriptor cd = *catalog.getMetadataForColumn(td->tableId, *column);
5261  if (td->nShards > 0 && td->shardedColumnId == cd.columnId) {
5262  throw std::runtime_error("Dropping sharding column " + cd.columnName +
5263  " is not supported.");
5264  }
5265  catalog.dropColumn(*td, cd);
5266  columnIds.push_back(cd.columnId);
5267  for (int i = 0; i < cd.columnType.get_physical_cols(); i++) {
5268  const auto pcd = catalog.getMetadataForColumn(td->tableId, cd.columnId + i + 1);
5269  CHECK(pcd);
5270  catalog.dropColumn(*td, *pcd);
5271  columnIds.push_back(cd.columnId + i + 1);
5272  }
5273  }
5274 
5275  for (auto shard : catalog.getPhysicalTablesDescriptors(td)) {
5276  shard->fragmenter->dropColumns(columnIds);
5277  }
5278  // if test forces to rollback
5280  throw std::runtime_error("lol!");
5281  }
5282  catalog.roll(true);
5283  if (td->persistenceLevel == Data_Namespace::MemoryLevel::DISK_LEVEL) {
5284  catalog.resetTableEpochFloor(td->tableId);
5285  catalog.checkpoint(td->tableId);
5286  }
5287  catalog.getSqliteConnector().query("END TRANSACTION");
5288  } catch (...) {
5289  catalog.setForReload(td->tableId);
5290  catalog.roll(false);
5291  catalog.getSqliteConnector().query("ROLLBACK TRANSACTION");
5292  throw;
5293  }
5294 }
static std::shared_ptr< WrapperType< MutexType > > getMutex(const LockType lockType, const KeyType &key)
std::list< std::unique_ptr< std::string > > columns_
Definition: ParserNode.h:1406
int get_physical_cols() const
Definition: sqltypes.h:414
std::unique_lock< T > unique_lock
specifies the content in-memory of a row in the column metadata table
bool g_test_drop_column_rollback
Definition: ParserNode.cpp:78
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:708
#define CHECK(condition)
Definition: Logger.h:291
static void clearExternalCaches(bool for_update, const TableDescriptor *td, const int current_db_id)
Definition: Execute.h:388
SQLTypeInfo columnType
std::string columnName
std::unique_ptr< std::string > table_
Definition: ParserNode.h:1405

+ 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 1402 of file ParserNode.h.

References table_.

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

Member Data Documentation

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

Definition at line 1406 of file ParserNode.h.

Referenced by DropColumnStmt(), and execute().

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

Definition at line 1405 of file ParserNode.h.

Referenced by execute(), and get_table().


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