mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 12:02:42 +01:00
fixed bug #2762 "grammar error in myisam/mi_check.c"
This commit is contained in:
parent
cf2ecf3702
commit
ca9f94190d
1 changed files with 3 additions and 1 deletions
|
@ -115,7 +115,9 @@ int chk_status(MI_CHECK *param, register MI_INFO *info)
|
|||
/* Don't count this as a real warning, as check can correct this ! */
|
||||
uint save=param->warning_printed;
|
||||
mi_check_print_warning(param,
|
||||
"%d clients is using or hasn't closed the table properly",
|
||||
share->state.open_count==1 ?
|
||||
"%d client is using or hasn't closed the table properly" :
|
||||
"%d clients are using or haven't closed the table properly",
|
||||
share->state.open_count);
|
||||
/* If this will be fixed by the check, forget the warning */
|
||||
if (param->testflag & T_UPDATE_STATE)
|
||||
|
|
Loading…
Reference in a new issue