Commit fa24633f authored by unknown's avatar unknown
Browse files

Fix for bug#18598 ndb_partition_list

parent d163e781
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -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
+1 −1
Original line number Diff line number Diff line
@@ -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
      {