diff options
author | monty@mysql.com <> | 2003-11-23 14:36:41 +0200 |
---|---|---|
committer | monty@mysql.com <> | 2003-11-23 14:36:41 +0200 |
commit | 7c725b2486de1f48f4e4e16a87b4b3cb542ab19b (patch) | |
tree | df2c427c1d086dc0727fa8656815cece6df4aeb2 /innobase/pars/pars0opt.c | |
parent | c2e44ba772b40d8d2216c36f1970e4cfc037e382 (diff) | |
download | mariadb-git-7c725b2486de1f48f4e4e16a87b4b3cb542ab19b.tar.gz |
Fixed compiler warnings from Intel compiler in Win64
Added option --max-record-length=# to myisamchk
Don't try repair twice if doing myisamchk --repair --force
Shared memory handler didn't clean up things on errors or shutdown
Diffstat (limited to 'innobase/pars/pars0opt.c')
-rw-r--r-- | innobase/pars/pars0opt.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/innobase/pars/pars0opt.c b/innobase/pars/pars0opt.c index 4faf83b47a3..9b0495a01cd 100644 --- a/innobase/pars/pars0opt.c +++ b/innobase/pars/pars0opt.c @@ -1235,7 +1235,8 @@ opt_print_query_plan( printf( "Table %s index %s; exact m. %lu, match %lu, end conds %lu\n", plan->table->name, plan->index->name, - 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)); } } |