diff options
author | unknown <jcole@tetra.spaceapes.com> | 2001-10-17 18:49:39 -0500 |
---|---|---|
committer | unknown <jcole@tetra.spaceapes.com> | 2001-10-17 18:49:39 -0500 |
commit | 0d864fd6c477e55cee0f846edd59a81f48bf9f51 (patch) | |
tree | a37cae4416595257170221a475f04fe76d2e17fb | |
parent | 29a2fdd68c8db3eb1cdf683fa3df94d372f4262f (diff) | |
download | mariadb-git-0d864fd6c477e55cee0f846edd59a81f48bf9f51.tar.gz |
Small fixes.
Docs/Support/docbook-fixup.pl:
Changed Appendix killing list.
Docs/manual.texi:
Misplaced ChangeLog entry. (Thanks nickg!)
-rwxr-xr-x | Docs/Support/docbook-fixup.pl | 4 | ||||
-rw-r--r-- | Docs/manual.texi | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/Docs/Support/docbook-fixup.pl b/Docs/Support/docbook-fixup.pl index 81f1466fb06..111118c9cb5 100755 --- a/Docs/Support/docbook-fixup.pl +++ b/Docs/Support/docbook-fixup.pl @@ -29,8 +29,8 @@ print STDERR "Adding PARA inside ENTRY...\n"; $data =~ s{<entry>(.+?)</entry>} {<entry><para>$1</para></entry>}gs; -@apx = ("Users", "MySQL-customer-usage", "Credits", "News", - "Porting", "GPL-license", "LGPL-license", "Placeholder"); +@apx = ("Users", "MySQL-customer-usage", "News", + "GPL-license", "LGPL-license"); foreach $apx (@apx) { print STDERR "Removing appendix $apx...\n"; diff --git a/Docs/manual.texi b/Docs/manual.texi index 2386792ed12..0e76b3e1f2e 100644 --- a/Docs/manual.texi +++ b/Docs/manual.texi @@ -47409,6 +47409,9 @@ Our TODO section contains what we plan to have in 4.0. @xref{TODO MySQL 4.0}. Added boolean fulltext search code. It should be considered early alpha. @item +Added variables @code{ft_min_word_len}, @code{ft_max_word_len}, and +@code{ft_max_word_len_for_sort}. +@item Added documentation for @code{libmysqld}, the embedded MySQL server library. Also added example programs (a @code{mysql} client and @code{mysqltest} test program) which use @code{libmysqld}. @@ -47899,9 +47902,6 @@ Fixed a bug when using @code{HEAP} tables with @code{LIKE}. @item Added @code{--mysql-version} to @code{safe_mysqld} @item -Added variables @code{ft_min_word_len}, @code{ft_max_word_len}, and -@code{ft_max_word_len_for_sort}. -@item Changed @code{INNOBASE} to @code{InnoDB} (because the @code{INNOBASE} name was already used). All @code{configure} options and @code{mysqld} start options are now using @code{innodb} instead of @code{innobase}. This |