diff options
author | monty@donna.mysql.com <> | 2000-10-24 02:39:54 +0300 |
---|---|---|
committer | monty@donna.mysql.com <> | 2000-10-24 02:39:54 +0300 |
commit | a67ff1bf0800746d474f44b5886461fbf8fa4781 (patch) | |
tree | 73129936be11d0b1bee843a961a70f81aeae1a6b /myisam | |
parent | 634b93850edbc1273fbb7312130636532b99dcd1 (diff) | |
download | mariadb-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.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)); } } |