diff options
author | Vicențiu Ciorbaru <vicentiu@mariadb.org> | 2016-06-13 23:32:50 +0300 |
---|---|---|
committer | Vicențiu Ciorbaru <vicentiu@mariadb.org> | 2016-06-14 19:17:29 +0300 |
commit | 1bf25092cbf700049b16f556980c84a9674a811f (patch) | |
tree | 850aab5c3ec95f3fb25585043e83daab408ac355 /storage/maria | |
parent | 2b47832a2d261dbaf735b26e796aa126bccafb20 (diff) | |
download | mariadb-git-1bf25092cbf700049b16f556980c84a9674a811f.tar.gz |
MDEV-10162: Update repair testcase
Diffstat (limited to 'storage/maria')
-rw-r--r-- | storage/maria/ma_sort.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/storage/maria/ma_sort.c b/storage/maria/ma_sort.c index ea2b61b358a..4f092b17037 100644 --- a/storage/maria/ma_sort.c +++ b/storage/maria/ma_sort.c @@ -377,7 +377,7 @@ static my_bool _ma_thr_find_all_keys_exec(MARIA_SORT_PARAM* sort_param) keys < maxbuffer) { _ma_check_print_error(sort_param->sort_info->param, - "aria_sort_buffer_size is too small"); + "aria_sort_buffer_size is too small."); goto err; } } @@ -407,11 +407,7 @@ static my_bool _ma_thr_find_all_keys_exec(MARIA_SORT_PARAM* sort_param) { /* purecov: begin inspected */ _ma_check_print_error(sort_param->sort_info->param, - "aria_sort_buffer_size is too small. Current " - "aria_sort_buffer_size: %llu rows: %llu " - "sort_length: %u", - (ulonglong) sort_param->sortbuff_size, - (ulonglong) idx, sort_length); + "aria_sort_buffer_size is too small."); my_errno= ENOMEM; goto err; /* purecov: end inspected */ |