diff options
author | unknown <monty@donna.mysql.com> | 2000-10-17 05:29:56 +0300 |
---|---|---|
committer | unknown <monty@donna.mysql.com> | 2000-10-17 05:29:56 +0300 |
commit | 08bb74b631c5b405b0a6cad155f6abc06a5fbf51 (patch) | |
tree | b1301e0cd3ae889563b5899a0126e60d45721835 /Docs/manual.texi | |
parent | 6842cd1c059c53c44b8342e73ee031bf0a345b13 (diff) | |
download | mariadb-git-08bb74b631c5b405b0a6cad155f6abc06a5fbf51.tar.gz |
Fixes for automatic repair
Docs/manual.texi:
Clarifications
myisam/mi_check.c:
Cleanup
myisam/myisamdef.h:
Header file fix
sql/ha_myisam.cc:
Fix for repair
sql/sql_base.cc:
Fix for repair
Diffstat (limited to 'Docs/manual.texi')
-rw-r--r-- | Docs/manual.texi | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/Docs/manual.texi b/Docs/manual.texi index 7d60130e819..81939e8317a 100644 --- a/Docs/manual.texi +++ b/Docs/manual.texi @@ -16319,7 +16319,8 @@ Version 3.22. @code{ADDDATE()} and @code{SUBDATE()} are synonyms for @code{DATE_ADD()} and @code{DATE_SUB()}. In @strong{MySQL} Version 3.23, you can use @code{+} and @code{-} instead of -@code{DATE_ADD()} and @code{DATE_SUB()}. (See example) +@code{DATE_ADD()} and @code{DATE_SUB()} if the expression on the right side is +a date or datetime column. (See example) @code{date} is a @code{DATETIME} or @code{DATE} value specifying the starting date. @code{expr} is an expression specifying the interval value to be added @@ -20221,7 +20222,9 @@ this join type is good. @item range Only rows that are in a given range will be retrieved, using an index to -select the rows. The @code{ref} column indicates which index is used. +select the rows. The @code{key} column indicates which index is used. +The @code{key_len} contains the longest key part that was used. +The @code{ref} column will be NULL for this type. @item index This is the same as @code{ALL}, except that only the index tree is |