Commit 65f21e21 authored by pekka@mysql.com's avatar pekka@mysql.com

ndb - compile fix for Solaris 10 AMD64 -max GCC [ ulonglong != Uint64 ] v5.1

parent e929e28c
...@@ -3546,14 +3546,17 @@ void ha_ndbcluster::info(uint flag) ...@@ -3546,14 +3546,17 @@ void ha_ndbcluster::info(uint flag)
Ndb *ndb= get_ndb(); Ndb *ndb= get_ndb();
Ndb_tuple_id_range_guard g(m_share); Ndb_tuple_id_range_guard g(m_share);
Uint64 auto_increment_value64;
if (ndb->readAutoIncrementValue(m_table, g.range, if (ndb->readAutoIncrementValue(m_table, g.range,
auto_increment_value) == -1) auto_increment_value64) == -1)
{ {
const NdbError err= ndb->getNdbError(); const NdbError err= ndb->getNdbError();
sql_print_error("Error %lu in readAutoIncrementValue(): %s", sql_print_error("Error %lu in readAutoIncrementValue(): %s",
(ulong) err.code, err.message); (ulong) err.code, err.message);
auto_increment_value= ~(Uint64)0; auto_increment_value= ~(Uint64)0;
} }
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