Commit 1508bd49 authored by unknown's avatar unknown

ndb - bug#25636

  additional fix after autotest
  dont send start_fragreq to temporary tables such as ordered indexes...


storage/ndb/src/kernel/blocks/dbdih/DbdihMain.cpp:
  dont send START_FRAGREQ to temporary tables (such as ordered indexes)
parent 9ec05de3
......@@ -2832,7 +2832,9 @@ Dbdih::nr_start_fragments(Signal* signal,
return;
}//if
ptrAss(tabPtr, tabRecord);
if (tabPtr.p->tabStatus != TabRecord::TS_ACTIVE){
if (tabPtr.p->tabStatus != TabRecord::TS_ACTIVE ||
tabPtr.p->tabStorage != TabRecord::ST_NORMAL)
{
jam();
takeOverPtr.p->toCurrentFragid = 0;
takeOverPtr.p->toCurrentTabref++;
......
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