diff options
author | unknown <monty@donna.mysql.com> | 2000-10-24 02:39:54 +0300 |
---|---|---|
committer | unknown <monty@donna.mysql.com> | 2000-10-24 02:39:54 +0300 |
commit | 101a583f0ec7c71786817bf13705737eeedfa366 (patch) | |
tree | 73129936be11d0b1bee843a961a70f81aeae1a6b /myisam/mi_check.c | |
parent | a468c8f9a987ed919eb9883b8124b7ed58f3c943 (diff) | |
download | mariadb-git-101a583f0ec7c71786817bf13705737eeedfa366.tar.gz |
Update of interface for BDB tables.
Fixed bug in SHOW CREATE TABLE
Build-tools/mysql-copyright:
Shorter error message
Docs/manual.texi:
Update of myisamchk stuff
acinclude.m4:
Force use of Berkeley DB 3.2.3 or newer
include/m_string.h:
Changed type of arguments to bmove()
myisam/mi_check.c:
Nicer error message
mysql.proj:
Updated
sql/ha_berkeley.cc:
Use new key compare interface
sql/sql_select.cc:
Call join_free() early to free all cursors
sql/sql_show.cc:
Fixed CREATE TABLE when used with auto_increment columns
strings/bmove.c:
Changed type of arguments to bmove()
Diffstat (limited to 'myisam/mi_check.c')
-rw-r--r-- | myisam/mi_check.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/myisam/mi_check.c b/myisam/mi_check.c index 2e3df08083d..253abbbcffb 100644 --- a/myisam/mi_check.c +++ b/myisam/mi_check.c @@ -290,14 +290,14 @@ int chk_size(MI_CHECK *param, register MI_INFO *info) if (skr > size && skr != size + MEMMAP_EXTRA_MARGIN) { error=1; - mi_check_print_error(param,"Size of datafile is: %-8s Should be: %s", + mi_check_print_error(param,"Size of datafile is: %-9s Should be: %s", llstr(size,buff), llstr(skr,buff2)); param->retry_without_quick=1; /* Don't use quick repair */ } else { mi_check_print_warning(param, - "Size of datafile is: %-8s Should be: %s", + "Size of datafile is: %-9s Should be: %s", llstr(size,buff), llstr(skr,buff2)); } } |