summaryrefslogtreecommitdiff
path: root/Docs
diff options
context:
space:
mode:
authorunknown <serg@serg.mysql.com>2001-11-22 22:50:41 +0100
committerunknown <serg@serg.mysql.com>2001-11-22 22:50:41 +0100
commit84f725b224ef86d88426deba22dcb3feb4c62629 (patch)
treec3ccff6bc797773526bcc60bcbf3df1071668d43 /Docs
parent79fcf7766dfbb2621b8024cd54b709a3438774f6 (diff)
downloadmariadb-git-84f725b224ef86d88426deba22dcb3feb4c62629.tar.gz
ft_dump re-enabled, manual fixes
Docs/manual.texi: misc. changes, ft-boolean WARNING myisam/Makefile.am: ft_dump enabled myisam/ft_dump.c: updated to new fulltext code
Diffstat (limited to 'Docs')
-rw-r--r--Docs/manual.texi21
1 files changed, 13 insertions, 8 deletions
diff --git a/Docs/manual.texi b/Docs/manual.texi
index e5fa59f4f65..564f3cb47c7 100644
--- a/Docs/manual.texi
+++ b/Docs/manual.texi
@@ -33861,18 +33861,18 @@ to the word, not prepended.
And here are some examples:
@table @code
-@item ``apple banana''
+@item apple banana
find rows that contain at least one of these words.
-@item ``+apple +juice''
+@item +apple +juice
... both words
-@item ``+apple macintosh''
+@item +apple macintosh
... word ``apple'', but rank it higher if it also contain ``macintosh''
-@item ``+apple -macintosh''
+@item +apple -macintosh
... word ``apple'' but not ``macintosh''
-@item ``+gates +(>hell <bill)''
+@item +gates +(>hell <bill)
... ``hell'' and ``gates'', or ``bill'' and ``gates'' (in any
order), but rank ``gates to hell'' higher than ``bill gates''.
-@item ``apple*''
+@item apple*
... ``apple'', ``apples'', ``applesause'', and ``applet''
@end table
@@ -33882,7 +33882,6 @@ order), but rank ``gates to hell'' higher than ``bill gates''.
* Fulltext TODO:: Full-text Search TODO
@end menu
-
@node Fulltext Restrictions, Fulltext Fine-tuning, Fulltext Search, Fulltext Search
@subsection Fulltext Restrictions
@@ -45844,12 +45843,18 @@ Our TODO section contains what we plan to have in 4.0. @xref{TODO MySQL 4.0}.
@itemize @bullet
@item
+Added @file{myisam/ft_dump} utility for low-level inspection
+of @code{FULLTEXT} indexes.
+@item
Fixed bug in @code{DELETE ... WHERE ... MATCH ...}
@item
Added support for @code{MATCH ... AGAINST(... IN BOOLEAN MODE)}.
+@strong{Note: you have to rebuild your tables with
+@code{ALTER TABLE tablename TYPE=MyISAM} to be
+able to use boolean fulltext search}.
@item
@code{LOCATE()} and @code{INSTR()} are case sensitive if neither
-argument is a binary string. binary strings.
+argument is a binary string.
@item
Fixed core dump bug in @code{UPDATE ... ORDER BY }.
@item