summaryrefslogtreecommitdiff
path: root/myisam
diff options
context:
space:
mode:
authormonty@donna.mysql.com <>2000-10-24 02:39:54 +0300
committermonty@donna.mysql.com <>2000-10-24 02:39:54 +0300
commita67ff1bf0800746d474f44b5886461fbf8fa4781 (patch)
tree73129936be11d0b1bee843a961a70f81aeae1a6b /myisam
parent634b93850edbc1273fbb7312130636532b99dcd1 (diff)
downloadmariadb-git-a67ff1bf0800746d474f44b5886461fbf8fa4781.tar.gz
Update of interface for BDB tables.
Fixed bug in SHOW CREATE TABLE
Diffstat (limited to 'myisam')
-rw-r--r--myisam/mi_check.c4
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));
}
}