Commit 5decbb53 authored by unknown's avatar unknown

phrase search is documented

parent 862769a3
...@@ -36183,6 +36183,9 @@ others, but will not be excluded altogether, as it would be with the ...@@ -36183,6 +36183,9 @@ others, but will not be excluded altogether, as it would be with the
@item * @item *
An asterisk is the truncation operator. Unlike the other operators, it An asterisk is the truncation operator. Unlike the other operators, it
should be @strong{appended} to the word, not prepended. should be @strong{appended} to the word, not prepended.
@item "
The phrase, that is enclosed in double quotes @code{"}, matches only
rows that contain this phrase @strong{literally, as it was typed}.
@end table @end table
And here are some examples: And here are some examples:
...@@ -36191,16 +36194,18 @@ And here are some examples: ...@@ -36191,16 +36194,18 @@ And here are some examples:
@item apple banana @item apple banana
find rows that contain at least one of these words. find rows that contain at least one of these words.
@item +apple +juice @item +apple +juice
... both words ... both words.
@item +apple macintosh @item +apple macintosh
... word ``apple'', but rank it higher if it also contain ``macintosh'' ... word ``apple'', but rank it higher if it also contain ``macintosh''.
@item +apple -macintosh @item +apple -macintosh
... word ``apple'' but not ``macintosh'' ... word ``apple'' but not ``macintosh''.
@item +apple +(>pie <strudel) @item +apple +(>pie <strudel)
... ``apple'' and ``pie'', or ``apple'' and ``strudel'' (in any ... ``apple'' and ``pie'', or ``apple'' and ``strudel'' (in any
order), but rank ``apple pie'' higher than ``apple strudel''. order), but rank ``apple pie'' higher than ``apple strudel''.
@item apple* @item apple*
... ``apple'', ``apples'', ``applesauce'', and ``applet'' ... ``apple'', ``apples'', ``applesauce'', and ``applet''.
@item "some words"
... ``some words of wisdom'', but not ``some noise words''.
@end table @end table
@menu @menu
...@@ -48918,6 +48923,8 @@ Our TODO section contains what we plan to have in 4.0. @xref{TODO MySQL 4.0}. ...@@ -48918,6 +48923,8 @@ Our TODO section contains what we plan to have in 4.0. @xref{TODO MySQL 4.0}.
@itemize @bullet @itemize @bullet
@item @item
Boolean fulltext search now supports "phrase searches".
@item
Memory allocation strategy for 'root memory' changed. Block size now grows Memory allocation strategy for 'root memory' changed. Block size now grows
with number of allocated blocks. with number of allocated blocks.
@item @item
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment