mirror of
https://github.com/MariaDB/server.git
synced 2025-02-01 03:21:53 +01:00
key_map is class for now => can't be printed directly
(found during BUG#1708 investigation)
This commit is contained in:
parent
3e10f80682
commit
cac0c0ae6e
1 changed files with 3 additions and 2 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Reference in a new issue