mirror of
https://github.com/MariaDB/server.git
synced 2026-05-07 23:54:31 +02:00
Backup.cpp:
bug#7660 ndb/src/kernel/blocks/backup/Backup.cpp: bug#7660
This commit is contained in:
parent
9c498652d7
commit
927eef9ea1
1 changed files with 5 additions and 1 deletions
|
|
@ -992,7 +992,11 @@ Backup::execUTIL_SEQUENCE_CONF(Signal* signal)
|
|||
}//if
|
||||
ndbrequire(ptr.p->masterData.state.getState() == DEFINING);
|
||||
|
||||
ptr.p->backupId = conf->sequenceValue[0];
|
||||
{
|
||||
Uint64 backupId;
|
||||
memcpy(&backupId,conf->sequenceValue,8);
|
||||
ptr.p->backupId= (Uint32)backupId;
|
||||
}
|
||||
ptr.p->backupKey[0] = (getOwnNodeId() << 16) | (ptr.p->backupId & 0xFFFF);
|
||||
ptr.p->backupKey[1] = NdbTick_CurrentMillisecond();
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue