summaryrefslogtreecommitdiff
path: root/myisam
diff options
context:
space:
mode:
authorunknown <serg@serg.mysql.com>2001-01-27 13:32:29 +0100
committerunknown <serg@serg.mysql.com>2001-01-27 13:32:29 +0100
commitdb47a46bedaceb51c591d615b9ebaeabe4c2528f (patch)
treefd7e918c309953040686e618fb2e2d899fc11600 /myisam
parentd9d879feeafb713abd58add7e0ab930478e1dab6 (diff)
downloadmariadb-git-db47a46bedaceb51c591d615b9ebaeabe4c2528f.tar.gz
logging_ok Logging to logging@openlogging.org accepted
mi_check.c fix for empty FULLTEXT index manual.texi fulltext finetuning 50% limit issue modified Docs/manual.texi: fulltext finetuning 50% limit issue modified myisam/mi_check.c: fix for empty FULLTEXT index BitKeeper/etc/logging_ok: Logging to logging@openlogging.org accepted
Diffstat (limited to 'myisam')
-rw-r--r--myisam/mi_check.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/myisam/mi_check.c b/myisam/mi_check.c
index ee9e3387119..037f66c54e5 100644
--- a/myisam/mi_check.c
+++ b/myisam/mi_check.c
@@ -376,7 +376,7 @@ int chk_key(MI_CHECK *param, register MI_INFO *info)
if ((!(param->testflag & T_SILENT)))
printf ("- check data record references index: %d\n",key+1);
if (share->state.key_root[key] == HA_OFFSET_ERROR &&
- info->state->records == 0)
+ (info->state->records == 0 || keyinfo->flag & HA_FULLTEXT))
continue;
if (!_mi_fetch_keypage(info,keyinfo,share->state.key_root[key],info->buff,
0))