Author: paul
Date: 2006-01-03 21:37:47 +0100 (Tue, 03 Jan 2006)
New Revision: 653
Log:
r5780@frost: paul | 2006-01-03 12:06:43 -0600
5.1 roadmap tweaks.
Modified:
trunk/
trunk/refman-5.1/introduction.xml
trunk/refman-common/news-5.1.xml
Property changes on: trunk
___________________________________________________________________
Name: svk:merge
- b5ec3a16-e900-0410-9ad2-d183a3acac99:/mysqldoc-local/mysqldoc/trunk:5777
bf112a9c-6c03-0410-a055-ad865cd57414:/mysqldoc-local/mysqldoc/trunk:1848
+ b5ec3a16-e900-0410-9ad2-d183a3acac99:/mysqldoc-local/mysqldoc/trunk:5780
bf112a9c-6c03-0410-a055-ad865cd57414:/mysqldoc-local/mysqldoc/trunk:1848
Modified: trunk/refman-5.1/introduction.xml
===================================================================
--- trunk/refman-5.1/introduction.xml 2006-01-03 19:10:49 UTC (rev 652)
+++ trunk/refman-5.1/introduction.xml 2006-01-03 20:37:47 UTC (rev 653)
@@ -391,7 +391,8 @@
<listitem>
<para>
- <emphasis role="bold">Partitioning</emphasis>: allows
+ <emphasis role="bold">Partitioning</emphasis>: This capability
+enables
distributing portions of individual tables across a
filesystem, according to rules which can be set when the
table is created. In effect, different portions of a table
@@ -405,17 +406,17 @@
<listitem>
<para>
- <emphasis role="bold">Plugin API</emphasis>: MySQL 5.1 will
- add support for a very flexible plugin API that will allow
- the loading and unloading of various components at runtime,
+ <emphasis role="bold">Plugin API</emphasis>: MySQL 5.1
+ adds support for a very flexible plugin API that enables
+ loading and unloading of various components at runtime,
without restarting the server. While the work on this is not
- finished yet, <emphasis>pluggable full-text
+ finished yet, <emphasis>plugin full-text
parsers</emphasis> are a first step in this direction. This
allows users to implement their own input filter on the
indexed text, enabling full-text search capability on
- arbitrary data like PDF files or other document formats. A
+ arbitrary data such as PDF files or other document formats. A
pre-parser full-text plugin performs the actual parsing and
- extraction of the text and hands it over to the builtin
+ extraction of the text and hands it over to the built-in
MySQL full-text search. (Author: Sergey Vojtovich)
</para>
</listitem>
@@ -446,8 +447,7 @@
<listitem>
<para>
- <literal>SET <replaceable>instance_name</replaceable>.
- <replaceable>option_name</replaceable>=<replaceable>option_value</replaceable></literal>
+ <literal>SET <replaceable>instance_name</replaceable>.<replaceable>option_name</replaceable>=<replaceable>option_value</replaceable></literal>
sets an option to the specified value and writes it to
the config file See
<xref linkend="instance-manager"/>, for more details
Modified: trunk/refman-common/news-5.1.xml
===================================================================
--- trunk/refman-common/news-5.1.xml 2006-01-03 19:10:49 UTC (rev 652)
+++ trunk/refman-common/news-5.1.xml 2006-01-03 20:37:47 UTC (rev 653)
@@ -36,8 +36,9 @@
For a full list of changes, please refer to the changelog sections
for each individual 5.1.x release.
</para>
-
+
<section id="news-5-1-5">
+
<title>&title-news-5-1-5;</title>
<remark role="note">
@@ -51,8 +52,9 @@
<para>
Functionality added or changed:
</para>
-
+
<itemizedlist>
+
<listitem>
<para>
Two new Hungarian collations are included:
@@ -63,13 +65,15 @@
contractions; this issue will be fixed in a future release.
</para>
</listitem>
+
</itemizedlist>
-
+
<para>
Bugs fixed:
</para>
-
+
<itemizedlist>
+
<listitem>
<para>
Attempting to insert into a table partitioned by
@@ -77,17 +81,16 @@
of the table's partition definitions resulted in a server
crash. In such cases, <command>mysqld</command> now returns
<errortext>ERROR 1500 (HY000): Table has no partition for
- value <replaceable>v</replaceable></errortext>, where
+ value <replaceable>v</replaceable></errortext>, where
<replaceable>v</replaceable> is the out-of-range value. (Bug
- #15819)
+ #15819)
</para>
</listitem>
+
</itemizedlist>
-
-
+
</section>
-
-
+
<section id="news-5-1-4">
<title>&title-news-5-1-4;</title>
@@ -105,7 +108,7 @@
</para>
<itemizedlist>
-
+
<listitem>
<para>
It is now possible to build the server such that
@@ -152,7 +155,7 @@
</para>
<itemizedlist>
-
+
<listitem>
<para>
<literal>BDB</literal>: A <literal>DELETE</literal>,
@@ -162,7 +165,7 @@
#15536)
</para>
</listitem>
-
+
<listitem>
<para>
A left join on a column that having a <literal>NULL</literal>
@@ -175,9 +178,9 @@
It was not possible to reorganize a partition reusing a
discarded partition name.
</para>
-
+
<para>
- Now, for example, you can create a table such as this one:
+ Now, for example, you can create a table such as this one:
</para>
<programlisting>
@@ -188,24 +191,24 @@
PARTITION p2 VALUES LESS THAN MAXVALUE
);
</programlisting>
-
+
<para>
and then repartition it as shown here:
</para>
-
+
<programlisting>
ALTER TABLE t1 REORGANIZE PARTITION p2 INTO (
PARTITION p2 VALUES LESS THAN (30)
);
</programlisting>
-
+
<para>
Previously, attempting to do so would produce the error
<errortext>All partitions must have unique names in the
- table</errortext>. (Bug #15521)
+ table</errortext>. (Bug #15521)
</para>
</listitem>
-
+
<listitem>
<para>
<literal>NDB Cluster</literal>: The <option>--ndb</option>
@@ -405,18 +408,18 @@
<listitem>
<para>
- <emphasis role="bold">Plugin API</emphasis>: MySQL 5.1 will
- add support for a very flexible plugin API that will allow the
- loading and unloading of various components at runtime,
- without restarting the server. While the work on this is not
- finished yet, <emphasis>pluggable full-text parsers</emphasis>
- are a first step in this direction. This allows users to
- implement their own input filter on the indexed text, enabling
- full-text search capability on arbitrary data like PDF files
- or other document formats. A pre-parser full-text plugin
- performs the actual parsing and extraction of the text and
- hands it over to the builtin MySQL full-text search. (Author:
- Sergey Vojtovich)
+ <emphasis role="bold">Plugin API</emphasis>: MySQL 5.1 adds
+ support for a very flexible plugin API that enables loading
+ and unloading of various components at runtime, without
+ restarting the server. While the work on this is not finished
+ yet, <emphasis>plugin full-text parsers</emphasis> are a first
+ step in this direction. This allows users to implement their
+ own input filter on the indexed text, enabling full-text
+ search capability on arbitrary data such as PDF files or other
+ document formats. A pre-parser full-text plugin performs the
+ actual parsing and extraction of the text and hands it over to
+ the built-in MySQL full-text search. (Author: Sergey
+ Vojtovich)
</para>
<para>
@@ -522,23 +525,22 @@
</listitem>
</itemizedlist>
-
+
<para>
Bugs fixed:
</para>
-
+
<itemizedlist>
-
+
<listitem>
<para>
Set functions could not be aggregated in outer subqueries.
(Bug #12762)
</para>
</listitem>
-
+
</itemizedlist>
-
-
+
</section>
<section id="news-5-1-2">
| Thread |
|---|
| • svn commit - mysqldoc@docsrva: r653 - in trunk: . refman-5.1 refman-common | paul | 3 Jan |