mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Bug #50271: Debug output of JOIN structures is garbled
sql/sql_test.cc: Assemble results of all the calls to full_name() first, in order not to garble the tabular output.
This commit is contained in:
@ -168,6 +168,21 @@ TEST_join(JOIN *join)
|
|||||||
uint i,ref;
|
uint i,ref;
|
||||||
DBUG_ENTER("TEST_join");
|
DBUG_ENTER("TEST_join");
|
||||||
|
|
||||||
|
/*
|
||||||
|
Assemble results of all the calls to full_name() first,
|
||||||
|
in order not to garble the tabular output below.
|
||||||
|
*/
|
||||||
|
String ref_key_parts[MAX_TABLES];
|
||||||
|
for (i= 0; i < join->tables; i++)
|
||||||
|
{
|
||||||
|
JOIN_TAB *tab= join->join_tab + i;
|
||||||
|
for (ref= 0; ref < tab->ref.key_parts; ref++)
|
||||||
|
{
|
||||||
|
ref_key_parts[i].append(tab->ref.items[ref]->full_name());
|
||||||
|
ref_key_parts[i].append(" ");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
DBUG_LOCK_FILE;
|
DBUG_LOCK_FILE;
|
||||||
VOID(fputs("\nInfo about JOIN\n",DBUG_FILE));
|
VOID(fputs("\nInfo about JOIN\n",DBUG_FILE));
|
||||||
for (i=0 ; i < join->tables ; i++)
|
for (i=0 ; i < join->tables ; i++)
|
||||||
@ -199,13 +214,8 @@ TEST_join(JOIN *join)
|
|||||||
}
|
}
|
||||||
if (tab->ref.key_parts)
|
if (tab->ref.key_parts)
|
||||||
{
|
{
|
||||||
VOID(fputs(" refs: ",DBUG_FILE));
|
fprintf(DBUG_FILE,
|
||||||
for (ref=0 ; ref < tab->ref.key_parts ; ref++)
|
" refs: %s\n", ref_key_parts[i].ptr());
|
||||||
{
|
|
||||||
Item *item=tab->ref.items[ref];
|
|
||||||
fprintf(DBUG_FILE,"%s ", item->full_name());
|
|
||||||
}
|
|
||||||
VOID(fputc('\n',DBUG_FILE));
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
DBUG_UNLOCK_FILE;
|
DBUG_UNLOCK_FILE;
|
||||||
|
Reference in New Issue
Block a user