Author: jstephens
Date: 2006-12-22 05:11:03 +0100 (Fri, 22 Dec 2006)
New Revision: 4333
Log:
Merging recent bugfix reports and other changes to telcos branch.
Modified:
branches/telcos/gui-common/installation-all.xml
branches/telcos/refman-5.1/language-structure.xml
branches/telcos/refman-5.1/news-5.1.xml
branches/telcos/xsl.d/count-remark.xsl
Modified: branches/telcos/gui-common/installation-all.xml
===================================================================
--- branches/telcos/gui-common/installation-all.xml 2006-12-22 03:51:03 UTC (rev 4332)
+++ branches/telcos/gui-common/installation-all.xml 2006-12-22 04:11:03 UTC (rev 4333)
Changed blocks: 6, Lines Added: 28, Lines Deleted: 3; 2144 bytes
@@ -31,6 +31,14 @@
is 5.0 update 8.
</para>
+ <para>
+ Regardless of platform, a working, current
+ <literal>OpenGL</literal> installation is required by the
&workbench;.
+ To find out more about <literal>OpenGL</literal>
+ got to <ulink url="http://www.opengl.org/">www.opengl.org</ulink>. The
+ installation of OpenGL is beyond the scope of this document.
+ </para>
+
</section>
<!-- Introduction -->
@@ -159,6 +167,12 @@
Unix-like operating systems.
</para>
+ <note>
+ <para>
+ Currently, the &migration_toolkit; is not available for Linux.
+ </para>
+ </note>
+
<section>
<title>Installing the Generic Tarball</title>
@@ -228,7 +242,7 @@
<programlisting>
shell> yast2 -i gtkmm24 gtkhtml2
- </programlisting>
+</programlisting>
<note>
<para>
@@ -262,7 +276,7 @@
<programlisting>
shell> rpm -iv mysql-*.rpm
- </programlisting>
+</programlisting>
<para>
If you are upgrading to a newer version of &gui_tools; type:
@@ -325,7 +339,7 @@
<title>Installing Under Mac OS X</title>
<para>
- To install MySQL Administrator under Mac OS X, double-click the
+ To install &gui_tools; under Mac OS X, double-click the
downloaded <literal>.dmg</literal> file and wait for it to be
opened and attached. Once a window containing the &gui_tools;
icon pops up, drag it to your Applications folder — or any
@@ -336,6 +350,17 @@
Once the copy is complete, you may eject the disk image.
</para>
+ <para>
+ The minimum
+ supported version is Mac OS X 10.4.
+ </para>
+
+ <note>
+ <para>
+ Currently, the &migration_toolkit; is not available for Mac OS X.
+ </para>
+ </note>
+
</section>
</chapter>
Modified: branches/telcos/refman-5.1/language-structure.xml
===================================================================
--- branches/telcos/refman-5.1/language-structure.xml 2006-12-22 03:51:03 UTC (rev 4332)
+++ branches/telcos/refman-5.1/language-structure.xml 2006-12-22 04:11:03 UTC (rev 4333)
Changed blocks: 3, Lines Added: 26, Lines Deleted: 13; 3561 bytes
@@ -1633,26 +1633,39 @@
</para>
<para>
- If an identifier is a reserved word, you must quote it as
- described in <xref linkend="identifiers"/>. Exception: A word that
- follows a period in a qualified name must be an identifier, so it
- need not be quoted even if it is reserved.
+ Reserved words are permitted as identifiers if you quote them as
+ described in <xref linkend="identifiers"/>:
</para>
+<programlisting>
+mysql> <userinput>CREATE TABLE interval (begin INT, end
INT);</userinput>
+ERROR 1064 (42000): You have an error in your SQL syntax; check
+the manual that corresponds to your MySQL server version for
+the right syntax to use near 'interval (begin INT, end INT)'
+
+mysql> <userinput>CREATE TABLE `interval` (begin INT, end
INT);</userinput>
+Query OK, 0 rows affected (0.01 sec)
+</programlisting>
+
<para>
+ Exception: A word that follows a period in a qualified name must
+ be an identifier, so it need not be quoted even if it is reserved.
+ </para>
+
+ <para>
Function names are permitted as identifiers. For example,
<literal>ABS</literal> is acceptable as a column name. However, by
default, no whitespace is allowed in function invocations between
the function name and the following
‘<literal>(</literal>’ character. This requirement
- allows a function call to be distinguished from a reference to a
- non-function call.
+ enables the parser to distinguish whether the name is used in a
+ function call or in non-function context.
</para>
<para>
- A side effect of this behavior is that omitting a space in some
- contexts causes an identifier to be interpreted as a function
- name. For example, this statement is legal:
+ A side effect of this requirement is that omitting a space in some
+ contexts causes the parser to interpret an identifier as a
+ function name. For example, this statement is legal:
</para>
<programlisting>
@@ -1660,7 +1673,7 @@
</programlisting>
<para>
- But omitting the space after <literal>abs</literal> causes a
+ But omitting the space after <literal>abs</literal> results in a
syntax error because the statement then appears to invoke the
<literal>ABS()</literal> function:
</para>
@@ -1684,14 +1697,14 @@
<para>
The words in the following table are explicitly reserved in MySQL
- ¤t-series;. At some point, you might update to a higher
+ ¤t-series;. At some point, you might upgrade to a higher
version, so it's a good idea to have a look at future reserved
words, too. You can find these in the manuals that cover higher
versions of MySQL. Most of the words in the table are forbidden by
standard SQL as column or table names (for example,
<literal>GROUP</literal>). A few are reserved because MySQL needs
- them and (currently) uses a <command>yacc</command> parser. A
- reserved word can be used as an identifier if you quote it.
+ them and uses a <command>yacc</command> parser. A reserved word
+ can be used as an identifier if you quote it.
</para>
<xi:include href="reservedwords.xml"
xmlns:xi="http://www.w3.org/2001/XInclude"/>
Modified: branches/telcos/refman-5.1/news-5.1.xml
===================================================================
--- branches/telcos/refman-5.1/news-5.1.xml 2006-12-22 03:51:03 UTC (rev 4332)
+++ branches/telcos/refman-5.1/news-5.1.xml 2006-12-22 04:11:03 UTC (rev 4333)
Changed blocks: 5, Lines Added: 45, Lines Deleted: 11; 3222 bytes
@@ -38,16 +38,7 @@
<title>Changes in release MySQL 5.1.14/NDB-6.1.0-beta (20 December
2006)</title>
- <remark>
- 1. ABOVE, REPLACE major-minor-version WITH SOMETHING LIKE 5-1-10
- AND REPLACE major.minor.version WITH SOMETHING LIKE 5.1.10.
- </remark>
-
<para role="release-level">
- <remark>
- 2. SELECT ONE OF THE FOLLOWING SENTENCES.
- </remark>
-
This is a new Beta development release, fixing recently discovered
bugs.
</para>
@@ -272,7 +263,7 @@
can invoke the function using
<literal><replaceable>db_name</replaceable>.<replaceable>func_name</replaceable>()</literal>
syntax. However, the server now generates a warning in this
- case. (Bug #22619)
+ case. (Bug #22619, Bug#18239)
</para>
<para>
@@ -445,6 +436,31 @@
</para>
<itemizedlist>
+
+ <listitem>
+ <para>
+ <literal>NDB Cluster</literal>: Sudden disconnection of an SQL
+ or data node could lead to shutdown of data nodes with the
+ error <errortext>failed ndbrequire</errortext>. (Bug #24447)
+ </para>
+ </listitem>
+
+ <listitem>
+ <para>
+ <literal>NDB Cluster</literal>: Different error messages were
+ returned for similar cases involving failure to allocate
+ memory for Cluster operations. (Bug #19203)
+ </para>
+ </listitem>
+
+ <listitem>
+ <para>
+ <literal>NDB Cluster</literal>: Some values of
+ <literal>MaxNoOfTriggers</literal> could cause the server to
+ become inaccessible following startup of of the data nodes.
+ (Bug #19454)
+ </para>
+ </listitem>
<listitem>
<para>
@@ -660,6 +676,24 @@
<listitem>
<para>
+ The stack size for NetWare binaries was increased to 128KB to
+ prevent problems caused by insufficient stack size. (Bug
+ #23504)
+ </para>
+ </listitem>
+
+ <listitem>
+ <para>
+ Attempting to use a view containing <literal>DEFINER</literal>
+ information for a non-existent user resulted in an error
+ message that revealed the definer account. Now the definer is
+ revealed only to superusers. Other users receive only an
+ <literal>access denied</literal> message. (Bug #17254)
+ </para>
+ </listitem>
+
+ <listitem>
+ <para>
The size of <literal>MEMORY</literal> tables and internal
temporary tables was limited to 4GB on 64-bit Windows systems.
(Bug #24052)
@@ -690,7 +724,7 @@
<literal>CREATE FUNCTION X()</literal> and <literal>CREATE
FUNCTION Y()</literal> failed with a syntax error instead of
warning the user that these function names are already used
- (for GIS functions). (Bug #21015)
+ (for GIS functions). (Bug #21025)
</para>
</listitem>
Modified: branches/telcos/xsl.d/count-remark.xsl
===================================================================
--- branches/telcos/xsl.d/count-remark.xsl 2006-12-22 03:51:03 UTC (rev 4332)
+++ branches/telcos/xsl.d/count-remark.xsl 2006-12-22 04:11:03 UTC (rev 4333)
Changed blocks: 1, Lines Added: 1, Lines Deleted: 1; 470 bytes
@@ -19,7 +19,7 @@
the command line.
-->
-<xsl:stylesheet version="1.1"
+<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:exslt="http://exslt.org/common">
| Thread |
|---|
| • svn commit - mysqldoc@docsrva: r4333 - in branches/telcos: gui-common refman-5.1 xsl.d | jon | 22 Dec |