diff options
Diffstat (limited to 'innobase/pars/pars0opt.c')
-rw-r--r-- | innobase/pars/pars0opt.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/innobase/pars/pars0opt.c b/innobase/pars/pars0opt.c index 51aaf02b736..88022e2efe1 100644 --- a/innobase/pars/pars0opt.c +++ b/innobase/pars/pars0opt.c @@ -1242,9 +1242,10 @@ opt_print_query_plan( } fputs("Table ", stderr); - dict_index_name_print(stderr, plan->index); + dict_index_name_print(stderr, NULL, plan->index); fprintf(stderr,"; exact m. %lu, match %lu, end conds %lu\n", - plan->n_exact_match, n_fields, - UT_LIST_GET_LEN(plan->end_conds)); + (unsigned long) plan->n_exact_match, + (unsigned long) n_fields, + (unsigned long) UT_LIST_GET_LEN(plan->end_conds)); } } |