key_map is class for now => can't be printed directly

(found during BUG#1708 investigation)
This commit is contained in:
bell@sanja.is.com.ua 2003-11-01 21:05:17 +02:00
parent 3e10f80682
commit cac0c0ae6e

View file

@ -164,10 +164,11 @@ TEST_join(JOIN *join)
{
JOIN_TAB *tab=join->join_tab+i;
TABLE *form=tab->table;
fprintf(DBUG_FILE,"%-16.16s type: %-7s q_keys: %4d refs: %d key: %d len: %d\n",
fprintf(DBUG_FILE,
"%-16.16s type: %-7s q_keys: %4lld refs: %d key: %d len: %d\n",
form->table_name,
join_type_str[tab->type],
tab->keys,
tab->keys.to_ulonglong(),
tab->ref.key_parts,
tab->ref.key,
tab->ref.key_length);