1
0
mirror of https://github.com/MariaDB/server.git synced 2025-05-28 13:01:41 +03:00

Fix for bug#18598 ndb_partition_list

This commit is contained in:
mskold@mysql.com 2006-03-29 23:48:35 +02:00
parent 70f8b397c5
commit 8d1e56e686
2 changed files with 1 additions and 2 deletions

View File

@ -21,7 +21,6 @@ ndb_binlog_ddl_multi : Bug #18490 cluster: binlog events lost on remote mysql
ndb_cache2 : Bug #18597
ndb_gis : Bug #18600
ndb_load : Bug#17233
ndb_partition_list : Bug#18598
partition_03ndb : Bug#16385
ps_7ndb : dbug assert in RBR mode when executing test suite
#rpl_bit_npk : Bug#13418

View File

@ -3399,7 +3399,7 @@ int ha_ndbcluster::rnd_pos(byte *buf, byte *pos)
*/
DBUG_DUMP("key+part", (char *)pos, key_length);
key_length= ref_length - sizeof(m_part_id);
part_spec.start_part= part_spec.end_part= *(pos + key_length);
part_spec.start_part= part_spec.end_part= *(uint32 *)(pos + key_length);
}
else
{