Commit 746bd620 authored by unknown's avatar unknown

Fix compiler warning/crash(ds20)


ndb/src/kernel/blocks/dbdict/Dbdict.cpp:
  Moved ndbrequire and break down one line, to avoid warnings and compiler crash
parent 20ad25de
...@@ -2245,9 +2245,9 @@ void Dbdict::checkSchemaStatus(Signal* signal) ...@@ -2245,9 +2245,9 @@ void Dbdict::checkSchemaStatus(Signal* signal)
restartCreateTab(signal, tableId, oldEntry, false); restartCreateTab(signal, tableId, oldEntry, false);
return; return;
}//if }//if
ndbrequire(ok);
break;
} }
ndbrequire(ok);
break;
} }
case SchemaFile::DROP_TABLE_STARTED: case SchemaFile::DROP_TABLE_STARTED:
jam(); jam();
......
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