Commit 52f82d52 authored by unknown's avatar unknown

Bug #26783 replication status unknown after cluster or mysqld failure

- correction, wrong datatype used

parent 9f855abd
......@@ -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)
{
......
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