OmniSciDB  a5dc49c757
 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 5550 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().

5551  {
5552  if (read_only_mode) {
5553  throw std::runtime_error("DROP COLUMN invalid in read only mode.");
5554  }
5555  // TODO: Review add and drop column implementation
5556  const auto execute_write_lock = legacylockmgr::getExecuteWriteLock();
5557  auto& catalog = session.getCatalog();
5558  const auto td_with_lock =
5560  catalog, *table_, true);
5561  const auto td = td_with_lock();
5562  if (!td) {
5563  throw std::runtime_error("Table " + *table_ + " does not exist.");
5564  }
5566  if (td->isView) {
5567  throw std::runtime_error("Dropping a column from a view is not supported.");
5568  }
5569  if (table_is_temporary(td)) {
5570  throw std::runtime_error(
5571  "Dropping a column from a temporary table is not yet supported.");
5572  }
5573 
5574  check_alter_table_privilege(session, td);
5575 
5576  for (const auto& column : columns_) {
5577  if (nullptr == catalog.getMetadataForColumn(td->tableId, *column)) {
5578  throw std::runtime_error("Column " + *column + " does not exist.");
5579  }
5580  }
5581 
5582  if (td->nColumns <= (td->hasDeletedCol ? 3 : 2)) {
5583  throw std::runtime_error("Table " + *table_ + " has only one column.");
5584  }
5585 
5586  // invalidate cached item
5587  Executor::clearExternalCaches(false, td, catalog.getCurrentDB().dbId);
5588 
5589  catalog.getSqliteConnector().query("BEGIN TRANSACTION");
5590  try {
5591  std::vector<int> columnIds;
5592  for (const auto& column : columns_) {
5593  ColumnDescriptor cd = *catalog.getMetadataForColumn(td->tableId, *column);
5594  if (td->nShards > 0 && td->shardedColumnId == cd.columnId) {
5595  throw std::runtime_error("Dropping sharding column " + cd.columnName +
5596  " is not supported.");
5597  }
5598  catalog.dropColumn(*td, cd);
5599  columnIds.push_back(cd.columnId);
5600  for (int i = 0; i < cd.columnType.get_physical_cols(); i++) {
5601  const auto pcd = catalog.getMetadataForColumn(td->tableId, cd.columnId + i + 1);
5602  CHECK(pcd);
5603  catalog.dropColumn(*td, *pcd);
5604  columnIds.push_back(cd.columnId + i + 1);
5605  }
5606  }
5607 
5608  for (auto shard : catalog.getPhysicalTablesDescriptors(td)) {
5609  shard->fragmenter->dropColumns(columnIds);
5610  }
5611  // if test forces to rollback
5613  throw std::runtime_error("lol!");
5614  }
5615  catalog.rollLegacy(true);
5616  if (td->persistenceLevel == Data_Namespace::MemoryLevel::DISK_LEVEL) {
5617  catalog.resetTableEpochFloor(td->tableId);
5618  catalog.checkpoint(td->tableId);
5619  }
5620  catalog.getSqliteConnector().query("END TRANSACTION");
5621  } catch (...) {
5622  catalog.setForReload(td->tableId);
5623  catalog.rollLegacy(false);
5624  catalog.getSqliteConnector().query("ROLLBACK TRANSACTION");
5625  throw;
5626  }
5627 }
std::list< std::unique_ptr< std::string > > columns_
Definition: ParserNode.h:1393
int get_physical_cols() const
Definition: sqltypes.h:432
specifies the content in-memory of a row in the column metadata table
bool g_test_drop_column_rollback
Definition: ParserNode.cpp:80
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: