Commit 985795bd authored by unknown's avatar unknown

ndb - minor fix to unhandled error, already in 5.1 [ auto-incr ]


sql/ha_ndbcluster.cc:
  minor fix to unhandled error, already in 5.1
parent 534c5532
......@@ -3056,7 +3056,8 @@ void ha_ndbcluster::info(uint flag)
(ulong) err.code, err.message);
auto_increment_value= ~(Uint64)0;
}
auto_increment_value= (ulonglong)auto_increment_value64;
else
auto_increment_value= (ulonglong)auto_increment_value64;
}
}
DBUG_VOID_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