mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 13:32:33 +01:00
Bug #26783 replication status unknown after cluster or mysqld failure
- correction, wrong datatype used
This commit is contained in:
parent
7e9df0e9b6
commit
d2bcd58e5b
1 changed files with 1 additions and 1 deletions
|
@ -4148,7 +4148,7 @@ static int ndbcluster_update_apply_status(THD *thd, int do_update)
|
|||
r|= op->writeTuple();
|
||||
DBUG_ASSERT(r == 0);
|
||||
// server_id
|
||||
r|= op->equal(0u, (Uint64)thd->server_id);
|
||||
r|= op->equal(0u, (Uint32)thd->server_id);
|
||||
DBUG_ASSERT(r == 0);
|
||||
if (!do_update)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue