mirror of
https://github.com/MariaDB/server.git
synced 2026-05-14 19:07:15 +02:00
Fix for bug#18598 ndb_partition_list
This commit is contained in:
parent
d163e78160
commit
fa24633f6b
2 changed files with 1 additions and 2 deletions
|
|
@ -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
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue