Commit 108702a3 authored by unknown's avatar unknown

ndb - bugfix to ordered index create, could show up as charset error


ndb/src/kernel/blocks/dbdict/Dbdict.cpp:
  bugfix: bad signal to ACC for ordered index
parent 87a48cdf
...@@ -4356,7 +4356,8 @@ Dbdict::execTAB_COMMITCONF(Signal* signal){ ...@@ -4356,7 +4356,8 @@ Dbdict::execTAB_COMMITCONF(Signal* signal){
lsPtr[0].p = buf; lsPtr[0].p = buf;
lsPtr[0].sz = sz; lsPtr[0].sz = sz;
// note: ACC does not reply // note: ACC does not reply
sendSignal(DBACC_REF, GSN_TC_SCHVERREQ, signal, 7, JBB, lsPtr, 1); if (tabPtr.p->isTable() || tabPtr.p->isHashIndex())
sendSignal(DBACC_REF, GSN_TC_SCHVERREQ, signal, 7, JBB, lsPtr, 1);
sendSignal(DBTC_REF, GSN_TC_SCHVERREQ, signal, 7, JBB, lsPtr, 1); sendSignal(DBTC_REF, GSN_TC_SCHVERREQ, signal, 7, JBB, lsPtr, 1);
return; return;
} }
......
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