mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 21:12:26 +01:00
bug#10987 - rpl_ndb_bank -
Allow GET_TABINFO during BACKUP (otherwise LCP gets corrupt)
This commit is contained in:
parent
0f9efc3063
commit
8e61278077
1 changed files with 2 additions and 1 deletions
|
@ -7186,7 +7186,8 @@ void Dbdict::execGET_TABINFOREQ(Signal* signal)
|
|||
jam();
|
||||
TableRecordPtr tabPtr;
|
||||
c_tableRecordPool.getPtr(tabPtr, obj_id);
|
||||
if (tabPtr.p->tabState != TableRecord::DEFINED)
|
||||
if (tabPtr.p->tabState != TableRecord::DEFINED &&
|
||||
tabPtr.p->tabState != TableRecord::BACKUP_ONGOING)
|
||||
{
|
||||
jam();
|
||||
sendGET_TABINFOREF(signal, req, GetTabInfoRef::TableNotDefined, __LINE__);
|
||||
|
|
Loading…
Reference in a new issue