Commit 59350e4f authored by unknown's avatar unknown

ndb - bug#21755

  table/index (es) need special treatment...


storage/ndb/src/kernel/blocks/dbdict/Dbdict.cpp:
  table/index (es) need special treatment...
parent 5a14e303
......@@ -2819,8 +2819,10 @@ void Dbdict::checkSchemaStatus(Signal* signal)
continue;
case SchemaFile::ADD_STARTED: jam();
case SchemaFile::DROP_TABLE_STARTED: jam();
ndbrequire(false);
return;
ndbrequire(DictTabInfo::isTable(newEntry->m_tableType) ||
DictTabInfo::isIndex(newEntry->m_tableType));
newEntry->m_tableState = SchemaFile::INIT;
continue;
case SchemaFile::TABLE_ADD_COMMITTED: jam();
case SchemaFile::ALTER_TABLE_COMMITTED: jam();
if (DictTabInfo::isIndex(newEntry->m_tableType) ||
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment