summaryrefslogtreecommitdiff
path: root/Docs
diff options
context:
space:
mode:
authorserg@serg.mysql.com <>2002-10-03 19:12:27 +0000
committerserg@serg.mysql.com <>2002-10-03 19:12:27 +0000
commit3858bf1f8120ba1d998db4562e0c7bef0a504dbe (patch)
tree14ad7ec9cb6763b043eaf0be32bea512e8ec915d /Docs
parentb5ea7e8efff3ffd6b2b59aa4d053ee6da2aae6ff (diff)
downloadmariadb-git-3858bf1f8120ba1d998db4562e0c7bef0a504dbe.tar.gz
fixed typo: s/ft_max_word_len_sort/ft_max_word_len_for_sort/
Diffstat (limited to 'Docs')
-rw-r--r--Docs/manual.texi6
1 files changed, 3 insertions, 3 deletions
diff --git a/Docs/manual.texi b/Docs/manual.texi
index 01b9d771089..ec525bbf15a 100644
--- a/Docs/manual.texi
+++ b/Docs/manual.texi
@@ -20039,15 +20039,15 @@ The maximum length of the word to be included in a @code{FULLTEXT} index.
@strong{Note: @code{FULLTEXT} indexes must be rebuilt after changing
this variable.} (This option is new for MySQL 4.0.)
-@item @code{ft_max_word_len_sort}
+@item @code{ft_max_word_len_for_sort}
The maximum length of the word in a @code{FULLTEXT} index
to be used in fast index recreation method in @code{REPAIR},
@code{CREATE INDEX}, or @code{ALTER TABLE}. Longer words are inserted the
slow way. The rule of the thumb is as follows: with
-@code{ft_max_word_len_sort} increasing, @strong{MySQL} will create bigger
+@code{ft_max_word_len_for_sort} increasing, @strong{MySQL} will create bigger
temporary files (thus slowing the process down, due to disk I/O), and will put
fewer keys in one sort block (again, decreasing the efficiency). When
-@code{ft_max_word_len_sort} is too small, instead, @strong{MySQL} will insert a
+@code{ft_max_word_len_for_sort} is too small, instead, @strong{MySQL} will insert a
lot of words into index the slow way, but short words will be inserted very
quickly.