Fixed typo in debug printout

This commit is contained in:
mskold@mysql.com 2006-03-14 15:43:28 +01:00
parent a73e81898d
commit 7e7a78911a

View file

@ -3348,7 +3348,7 @@ void ha_ndbcluster::position(const byte *record)
// If table has user defined partition save the partition id as well
if(m_use_partition_function)
{
DBUG_PRINT("info", ("Saving partition id %u in %u", m_part_id));
DBUG_PRINT("info", ("Saving partition id %u", m_part_id));
key_length= ref_length - sizeof(m_part_id);
memcpy(ref+key_length, (void *)&m_part_id, sizeof(m_part_id));
}