Commit 00cbeb84 authored by pekka@mysql.com's avatar pekka@mysql.com

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

parent 6ff1648d
...@@ -3056,7 +3056,8 @@ void ha_ndbcluster::info(uint flag) ...@@ -3056,7 +3056,8 @@ void ha_ndbcluster::info(uint flag)
(ulong) err.code, err.message); (ulong) err.code, err.message);
auto_increment_value= ~(Uint64)0; auto_increment_value= ~(Uint64)0;
} }
auto_increment_value= (ulonglong)auto_increment_value64; else
auto_increment_value= (ulonglong)auto_increment_value64;
} }
} }
DBUG_VOID_RETURN; 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