mirror of
https://github.com/MariaDB/server.git
synced 2025-11-10 23:02:54 +03:00
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
This commit is contained in:
@@ -5,3 +5,4 @@ tim@cane.mysql.fi
|
|||||||
serg@donna.mysql.com
|
serg@donna.mysql.com
|
||||||
jcole@tetra.spaceapes.com
|
jcole@tetra.spaceapes.com
|
||||||
paul@central.snake.net
|
paul@central.snake.net
|
||||||
|
serg@serg.mysql.com
|
||||||
|
|||||||
@@ -38725,7 +38725,7 @@ your @code{FULLTEXT} indexes.
|
|||||||
@end example
|
@end example
|
||||||
line in @code{myisam/ftdefs.h} to
|
line in @code{myisam/ftdefs.h} to
|
||||||
@example
|
@example
|
||||||
#define GWS_IN_USE GWS_IDF
|
#define GWS_IN_USE GWS_FREQ
|
||||||
@end example
|
@end example
|
||||||
and recompile @strong{MySQL}.
|
and recompile @strong{MySQL}.
|
||||||
There is no need to rebuild the indexes though.
|
There is no need to rebuild the indexes though.
|
||||||
|
|||||||
@@ -376,7 +376,7 @@ int chk_key(MI_CHECK *param, register MI_INFO *info)
|
|||||||
if ((!(param->testflag & T_SILENT)))
|
if ((!(param->testflag & T_SILENT)))
|
||||||
printf ("- check data record references index: %d\n",key+1);
|
printf ("- check data record references index: %d\n",key+1);
|
||||||
if (share->state.key_root[key] == HA_OFFSET_ERROR &&
|
if (share->state.key_root[key] == HA_OFFSET_ERROR &&
|
||||||
info->state->records == 0)
|
(info->state->records == 0 || keyinfo->flag & HA_FULLTEXT))
|
||||||
continue;
|
continue;
|
||||||
if (!_mi_fetch_keypage(info,keyinfo,share->state.key_root[key],info->buff,
|
if (!_mi_fetch_keypage(info,keyinfo,share->state.key_root[key],info->buff,
|
||||||
0))
|
0))
|
||||||
|
|||||||
Reference in New Issue
Block a user