Author: mcbrown
Date: 2007-09-14 11:11:48 +0200 (Fri, 14 Sep 2007)
New Revision: 7853
Log:
Documenting Docs Bugs:
Bug #21696
Bug #28797
Bug #30934
Modified:
trunk/refman-4.1/replication.xml
trunk/refman-4.1/sql-syntax.xml
trunk/refman-5.0/installing.xml
trunk/refman-5.0/news-5.0.xml
trunk/refman-5.0/releasenotes-es-5.0.xml
trunk/refman-5.0/replication-configuration.xml
trunk/refman-5.0/sql-syntax.xml
trunk/refman-5.1/installing.xml
trunk/refman-5.1/news-5.1.xml
trunk/refman-5.1/replication-configuration.xml
trunk/refman-5.1/sql-syntax.xml
trunk/refman-5.2/installing.xml
trunk/refman-5.2/replication-configuration.xml
trunk/refman-5.2/replication-implementation.xml
trunk/refman-5.2/replication-notes.xml
trunk/refman-5.2/replication.xml
trunk/refman-5.2/sql-syntax.xml
trunk/refman-common/news-codbc-core.xml
trunk/refman-common/news-mysql-proxy.xml
Modified: trunk/refman-4.1/replication.xml
===================================================================
--- trunk/refman-4.1/replication.xml 2007-09-14 08:15:41 UTC (rev 7852)
+++ trunk/refman-4.1/replication.xml 2007-09-14 09:11:48 UTC (rev 7853)
Changed blocks: 1, Lines Added: 7, Lines Deleted: 0; 717 bytes
@@ -1089,6 +1089,13 @@
->
<userinput>MASTER_LOG_POS=<replaceable>recorded_log_position</replaceable>;</userinput>
</programlisting>
+ <note>
+ <para>
+ Replication cannot use Unix socket files. You must be able
+ to connect to the master MySQL server using TCP/IP.
+ </para>
+ </note>
+
<para>
The following table shows the maximum allowable length for the
string-valued options:
Modified: trunk/refman-4.1/sql-syntax.xml
===================================================================
--- trunk/refman-4.1/sql-syntax.xml 2007-09-14 08:15:41 UTC (rev 7852)
+++ trunk/refman-4.1/sql-syntax.xml 2007-09-14 09:11:48 UTC (rev 7853)
Changed blocks: 1, Lines Added: 8, Lines Deleted: 2; 989 bytes
@@ -18991,10 +18991,16 @@
address) of the master host and its TCP/IP port. Note that if
<literal>MASTER_HOST</literal> is equal to
<literal>localhost</literal>, then, like in other parts of
- MySQL, the port number might be ignored (if Unix socket files
- can be used, for example).
+ MySQL, the port number might be ignored.
</para>
+ <note>
+ <para>
+ Replication cannot use Unix socket files. You must be able
+ to connect to the master MySQL server using TCP/IP.
+ </para>
+ </note>
+
<para>
If you specify <literal>MASTER_HOST</literal> or
<literal>MASTER_PORT</literal>, the slave assumes that the
Modified: trunk/refman-5.0/installing.xml
===================================================================
--- trunk/refman-5.0/installing.xml 2007-09-14 08:15:41 UTC (rev 7852)
+++ trunk/refman-5.0/installing.xml 2007-09-14 09:11:48 UTC (rev 7853)
Changed blocks: 2, Lines Added: 96, Lines Deleted: 1; 3850 bytes
@@ -382,7 +382,9 @@
<para>
In the Windows MySQL distribution,
<literal>mysqld.exe</literal> is by default compiled with
- support for trace files.
+ support for trace files. See also
+ <xref
+ linkend="making-trace-files"/>.
</para>
</section>
@@ -468,6 +470,99 @@
</section>
+ <section id="making-windows-dumps">
+
+ <title>Using <filename>pdb</filename> to create a Windows
crashdump</title>
+
+ <para>
+ Starting with MySQL 5.0.24 the Program Database files
+ (extension <filename>pdb</filename>) are included in the
+ Noinstall distribution of MySQL. These files provide
+ information for debugging your MySQL installation in the event
+ of a problem.
+ </para>
+
+ <para>
+ The PDB file contains more detailed information about
+ <literal>mysqld</literal> and other tools that enables more
+ detailed trace and dump files to be created. You can use these
+ with Dr Watson, <command>WinDbg</command> and Visual Studio to
+ debug <command>mysqld</command>.
+ </para>
+
+ <para>
+ For more information on PDB files, see
+ <ulink
+ url="http://support.microsoft.com/kb/121366/">Microsoft
+ Knowledge Base Article 121366</ulink>. For more information on
+ the debugging options available, see
+ <ulink
+ url="http://www.microsoft.com/whdc/devtools/debugging/default.mspx">Debugging
+ Tools for Windows</ulink>.
+ </para>
+
+ <para>
+ Dr Watson is installed with all Windows distributions, but if
+ you have installed Windows development tools, Dr Watson may
+ have been replaced with WinDbg, the debugger included with
+ Visual Studio, or the debugging tools provided with Borland or
+ Delphi.
+ </para>
+
+ <para>
+ To generate a crash file using Dr Watson, follow these steps:
+ </para>
+
+ <orderedlist>
+
+ <listitem>
+ <para>
+ Start Dr Watson by running <command>drwtsn32.exe</command>
+ interactively using the <option>-i</option> option:
+ </para>
+
+<programlisting>C:\> drwtsn32 -i</programlisting>
+ </listitem>
+
+ <listitem>
+ <para>
+ Set the <guilabel>Log File Path</guilabel> to the
+ directory where you want to store trace files.
+ </para>
+ </listitem>
+
+ <listitem>
+ <para>
+ Make sure <guilabel>Dump All Thread Contexts</guilabel>
+ and <guilabel>Append To Existing Log File</guilabel>.
+ </para>
+ </listitem>
+
+ <listitem>
+ <para>
+ Uncheck <guilabel>Dump Sumbol Table</guilabel>,
+ <guilabel>Visual Notification</guilabel>, <guilabel>Sound
+ Notification</guilabel> and <guilabel>Create Crash Dump
+ File</guilabel>.
+ </para>
+ </listitem>
+
+ <listitem>
+ <para>
+ Set the <guilabel>Number of Instructions</guilabel> to a
+ suitable value to capture enough calls in the stacktrace.
+ A value of at 25 should be enough.
+ </para>
+ </listitem>
+
+ </orderedlist>
+
+ <para>
+ Note that the file generated can be very large.
+ </para>
+
+ </section>
+
<section id="using-gdb-on-mysqld">
<title>Debugging <command>mysqld</command> under
<command>gdb</command></title>
Modified: trunk/refman-5.0/news-5.0.xml
===================================================================
--- trunk/refman-5.0/news-5.0.xml 2007-09-14 08:15:41 UTC (rev 7852)
+++ trunk/refman-5.0/news-5.0.xml 2007-09-14 09:11:48 UTC (rev 7853)
Changed blocks: 1, Lines Added: 10, Lines Deleted: 0; 694 bytes
@@ -2787,6 +2787,16 @@
</para>
</listitem>
+ <listitem>
+ <para>
+ Program Database files (extension <filename>pdf</filename>)
+ are now included by default in Windows distributions. These
+ can be used to help diagnose problems with
+ <command>mysqld</command> and other tools. See
+ <xref linkend="debugging-server"/>.
+ </para>
+ </listitem>
+
</itemizedlist>
<para>
Modified: trunk/refman-5.0/releasenotes-es-5.0.xml
===================================================================
--- trunk/refman-5.0/releasenotes-es-5.0.xml 2007-09-14 08:15:41 UTC (rev 7852)
+++ trunk/refman-5.0/releasenotes-es-5.0.xml 2007-09-14 09:11:48 UTC (rev 7853)
Changed blocks: 1, Lines Added: 7, Lines Deleted: 0; 522 bytes
@@ -141,6 +141,13 @@
</para>
</listitem>
+ <listitem>
+ <para>
+ The <literal>EXAMPLE</literal> storage engine is now enabled
+ by default.
+ </para>
+ </listitem>
+
</itemizedlist>
<para>
Modified: trunk/refman-5.0/replication-configuration.xml
===================================================================
--- trunk/refman-5.0/replication-configuration.xml 2007-09-14 08:15:41 UTC (rev 7852)
+++ trunk/refman-5.0/replication-configuration.xml 2007-09-14 09:11:48 UTC (rev 7853)
Changed blocks: 1, Lines Added: 7, Lines Deleted: 0; 741 bytes
@@ -1179,6 +1179,13 @@
->
<userinput>MASTER_LOG_POS=<replaceable>recorded_log_position</replaceable>;</userinput>
</programlisting>
+ <note>
+ <para>
+ Replication cannot use Unix socket files. You must be able to
+ connect to the master MySQL server using TCP/IP.
+ </para>
+ </note>
+
<para>
The following table shows the maximum allowable length for the
string-valued options:
Modified: trunk/refman-5.0/sql-syntax.xml
===================================================================
--- trunk/refman-5.0/sql-syntax.xml 2007-09-14 08:15:41 UTC (rev 7852)
+++ trunk/refman-5.0/sql-syntax.xml 2007-09-14 09:11:48 UTC (rev 7853)
Changed blocks: 1, Lines Added: 8, Lines Deleted: 2; 989 bytes
@@ -22027,10 +22027,16 @@
address) of the master host and its TCP/IP port. Note that if
<literal>MASTER_HOST</literal> is equal to
<literal>localhost</literal>, then, like in other parts of
- MySQL, the port number might be ignored (if Unix socket files
- can be used, for example).
+ MySQL, the port number might be ignored.
</para>
+ <note>
+ <para>
+ Replication cannot use Unix socket files. You must be able
+ to connect to the master MySQL server using TCP/IP.
+ </para>
+ </note>
+
<para>
If you specify <literal>MASTER_HOST</literal> or
<literal>MASTER_PORT</literal>, the slave assumes that the
Modified: trunk/refman-5.1/installing.xml
===================================================================
--- trunk/refman-5.1/installing.xml 2007-09-14 08:15:41 UTC (rev 7852)
+++ trunk/refman-5.1/installing.xml 2007-09-14 09:11:48 UTC (rev 7853)
Changed blocks: 1, Lines Added: 93, Lines Deleted: 0; 3548 bytes
@@ -18598,6 +18598,99 @@
</section>
+ <section id="making-windows-dumps">
+
+ <title>Using <filename>pdb</filename> to create a Windows
crashdump</title>
+
+ <para>
+ Starting with MySQL 5.1.12 the Program Database files
+ (extension <filename>pdb</filename>) are included in the
+ Noinstall distribution of MySQL. These files provide
+ information for debugging your MySQL installation in the event
+ of a problem.
+ </para>
+
+ <para>
+ The PDB file contains more detailed information about
+ <literal>mysqld</literal> and other tools that enables more
+ detailed trace and dump files to be created. You can use these
+ with Dr Watson, <command>WinDbg</command> and Visual Studio to
+ debug <command>mysqld</command>.
+ </para>
+
+ <para>
+ For more information on PDB files, see
+ <ulink
+ url="http://support.microsoft.com/kb/121366/">Microsoft
+ Knowledge Base Article 121366</ulink>. For more information on
+ the debugging options available, see
+ <ulink
+
url="http://www.microsoft.com/whdc/devtools/debugging/default.mspx">Debugging
+ Tools for Windows</ulink>.
+ </para>
+
+ <para>
+ Dr Watson is installed with all Windows distributions, but if
+ you have installed Windows development tools, Dr Watson may
+ have been replaced with WinDbg, the debugger included with
+ Visual Studio, or the debugging tools provided with Borland or
+ Delphi.
+ </para>
+
+ <para>
+ To generate a crash file using Dr Watson, follow these steps:
+ </para>
+
+ <orderedlist>
+
+ <listitem>
+ <para>
+ Start Dr Watson by running <command>drwtsn32.exe</command>
+ interactively using the <option>-i</option> option:
+ </para>
+
+<programlisting>C:\> drwtsn32 -i</programlisting>
+ </listitem>
+
+ <listitem>
+ <para>
+ Set the <guilabel>Log File Path</guilabel> to the
+ directory where you want to store trace files.
+ </para>
+ </listitem>
+
+ <listitem>
+ <para>
+ Make sure <guilabel>Dump All Thread Contexts</guilabel>
+ and <guilabel>Append To Existing Log File</guilabel>.
+ </para>
+ </listitem>
+
+ <listitem>
+ <para>
+ Uncheck <guilabel>Dump Sumbol Table</guilabel>,
+ <guilabel>Visual Notification</guilabel>, <guilabel>Sound
+ Notification</guilabel> and <guilabel>Create Crash Dump
+ File</guilabel>.
+ </para>
+ </listitem>
+
+ <listitem>
+ <para>
+ Set the <guilabel>Number of Instructions</guilabel> to a
+ suitable value to capture enough calls in the stacktrace.
+ A value of at 25 should be enough.
+ </para>
+ </listitem>
+
+ </orderedlist>
+
+ <para>
+ Note that the file generated can be very large.
+ </para>
+
+ </section>
+
<section id="using-gdb-on-mysqld">
<title>Debugging <command>mysqld</command> under
<command>gdb</command></title>
Modified: trunk/refman-5.1/news-5.1.xml
===================================================================
--- trunk/refman-5.1/news-5.1.xml 2007-09-14 08:15:41 UTC (rev 7852)
+++ trunk/refman-5.1/news-5.1.xml 2007-09-14 09:11:48 UTC (rev 7853)
Changed blocks: 1, Lines Added: 10, Lines Deleted: 0; 696 bytes
@@ -17553,6 +17553,16 @@
</para>
</listitem>
+ <listitem>
+ <para>
+ Program Database files (extension <filename>pdf</filename>)
+ are now included by default in Windows distributions. These
+ can be used to help diagnose problems with
+ <command>mysqld</command> and other tools. See
+ <xref linkend="debugging-server"/>.
+ </para>
+ </listitem>
+
</itemizedlist>
<para>
Modified: trunk/refman-5.1/replication-configuration.xml
===================================================================
--- trunk/refman-5.1/replication-configuration.xml 2007-09-14 08:15:41 UTC (rev 7852)
+++ trunk/refman-5.1/replication-configuration.xml 2007-09-14 09:11:48 UTC (rev 7853)
Changed blocks: 1, Lines Added: 7, Lines Deleted: 0; 741 bytes
@@ -1192,6 +1192,13 @@
->
<userinput>MASTER_LOG_POS=<replaceable>recorded_log_position</replaceable>;</userinput>
</programlisting>
+ <note>
+ <para>
+ Replication cannot use Unix socket files. You must be able to
+ connect to the master MySQL server using TCP/IP.
+ </para>
+ </note>
+
<para>
The following table shows the maximum allowable length for the
string-valued options:
Modified: trunk/refman-5.1/sql-syntax.xml
===================================================================
--- trunk/refman-5.1/sql-syntax.xml 2007-09-14 08:15:41 UTC (rev 7852)
+++ trunk/refman-5.1/sql-syntax.xml 2007-09-14 09:11:48 UTC (rev 7853)
Changed blocks: 1, Lines Added: 8, Lines Deleted: 2; 989 bytes
@@ -24358,10 +24358,16 @@
address) of the master host and its TCP/IP port. Note that if
<literal>MASTER_HOST</literal> is equal to
<literal>localhost</literal>, then, like in other parts of
- MySQL, the port number might be ignored (if Unix socket files
- can be used, for example).
+ MySQL, the port number might be ignored.
</para>
+ <note>
+ <para>
+ Replication cannot use Unix socket files. You must be able
+ to connect to the master MySQL server using TCP/IP.
+ </para>
+ </note>
+
<para>
If you specify <literal>MASTER_HOST</literal> or
<literal>MASTER_PORT</literal>, the slave assumes that the
Modified: trunk/refman-5.2/installing.xml
===================================================================
--- trunk/refman-5.2/installing.xml 2007-09-14 08:15:41 UTC (rev 7852)
+++ trunk/refman-5.2/installing.xml 2007-09-14 09:11:48 UTC (rev 7853)
Changed blocks: 2, Lines Added: 102, Lines Deleted: 2; 4135 bytes
@@ -4152,8 +4152,8 @@
<para>
For expert advice on the start-up options appropriate to your
- circumstances, subscribe to the MySQL Enterprise Monitor.
- For more information see
+ circumstances, subscribe to the MySQL Enterprise Monitor. For
+ more information see
<ulink url="&base-url-enterprise;advisors.html"/>.
</para>
@@ -18484,6 +18484,106 @@
</section>
+ <section id="making-windows-dumps">
+
+ <title>Using <filename>pdb</filename> to create a Windows
crashdump</title>
+
+ <para>
+ Program Database files (extension <filename>pdb</filename>)
+ are included in the Noinstall distribution of MySQL. These
+ files provide information for debugging your MySQL
+ installation in the event of a problem.
+ </para>
+
+ <para>
+ The PDB file contains more detailed information about
+ <literal>mysqld</literal> and other tools that enables more
+ detailed trace and dump files to be created. You can use these
+ with Dr Watson, <command>WinDbg</command> and Visual Studio to
+ debug <command>mysqld</command>.
+ </para>
+
+ <para>
+ For more information on PDB files, see
+ <ulink
+ url="http://support.microsoft.com/kb/121366/">Microsoft
+ Knowledge Base Article 121366</ulink>. For more information on
+ the debugging options available, see
+ <ulink
+
url="http://www.microsoft.com/whdc/devtools/debugging/default.mspx">Debugging
+ Tools for Windows</ulink>.
+ </para>
+
+ <para>
+ Dr Watson is installed with all Windows distributions, but if
+ you have installed Windows development tools, Dr Watson may
+ have been replaced with WinDbg, the debugger included with
+ Visual Studio, or the debugging tools provided with Borland or
+ Delphi.
+ </para>
+
+ <para>
+ To generate a crash file using Dr Watson, follow these steps:
+ </para>
+
+ <orderedlist>
+
+ <listitem>
+ <para>
+ Start Dr Watson by running <command>drwtsn32.exe</command>
+ interactively using the <option>-i</option> option:
+ </para>
+
+<programlisting>C:\> drwtsn32 -i</programlisting>
+ </listitem>
+
+ <listitem>
+ <para>
+ Set the <guilabel>Log File Path</guilabel> to the
+ directory where you want to store trace files.
+ </para>
+ </listitem>
+
+ <listitem>
+ <para>
+ Make sure <guilabel>Dump All Thread Contexts</guilabel>
+ and <guilabel>Append To Existing Log File</guilabel>.
+ </para>
+ </listitem>
+
+ <listitem>
+ <para>
+ Uncheck <guilabel>Dump Sumbol Table</guilabel>,
+ <guilabel>Visual Notification</guilabel>, <guilabel>Sound
+ Notification</guilabel> and <guilabel>Create Crash Dump
+ File</guilabel>.
+ </para>
+ </listitem>
+
+ <listitem>
+ <para>
+ Set the <guilabel>Number of Instructions</guilabel> to a
+ suitable value to capture enough calls in the stacktrace.
+ A value of at 25 should be enough.
+ </para>
+ </listitem>
+
+ </orderedlist>
+
+ <caution>
+ <para>
+ Note that the file generated can be very large.
+ </para>
+ </caution>
+
+ <para>
+ The dump file generated can be used within Microsoft Visual
+ Studio to debug the application and determine what caused the
+ problem.
+ </para>
+
+ </section>
+
<section id="using-gdb-on-mysqld">
<title>Debugging <command>mysqld</command> under
<command>gdb</command></title>
Modified: trunk/refman-5.2/replication-configuration.xml
===================================================================
--- trunk/refman-5.2/replication-configuration.xml 2007-09-14 08:15:41 UTC (rev 7852)
+++ trunk/refman-5.2/replication-configuration.xml 2007-09-14 09:11:48 UTC (rev 7853)
Changed blocks: 2, Lines Added: 9, Lines Deleted: 3; 1152 bytes
@@ -1190,6 +1190,13 @@
->
<userinput>MASTER_LOG_POS=<replaceable>recorded_log_position</replaceable>;</userinput>
</programlisting>
+ <note>
+ <para>
+ Replication cannot use Unix socket files. You must be able to
+ connect to the master MySQL server using TCP/IP.
+ </para>
+ </note>
+
<para>
The following table shows the maximum allowable length for the
string-valued options:
@@ -2834,9 +2841,8 @@
<para>
For regular reports regarding the status of your slaves,
- subscribe to the MySQL Enterprise Monitor.
- For more information see
- <ulink url="&base-url-enterprise;advisors.html"/>.
+ subscribe to the MySQL Enterprise Monitor. For more information
+ see <ulink url="&base-url-enterprise;advisors.html"/>.
</para>
</formalpara>
Modified: trunk/refman-5.2/replication-implementation.xml
===================================================================
--- trunk/refman-5.2/replication-implementation.xml 2007-09-14 08:15:41 UTC (rev 7852)
+++ trunk/refman-5.2/replication-implementation.xml 2007-09-14 09:11:48 UTC (rev 7853)
Changed blocks: 1, Lines Added: 1, Lines Deleted: 2; 602 bytes
@@ -107,8 +107,7 @@
<para>
For constant monitoring of the status of slaves subscribe to the
- MySQL Enterprise Monitor. For more
- information see
+ MySQL Enterprise Monitor. For more information see
<ulink url="&base-url-enterprise;advisors.html"/>.
</para>
Modified: trunk/refman-5.2/replication-notes.xml
===================================================================
--- trunk/refman-5.2/replication-notes.xml 2007-09-14 08:15:41 UTC (rev 7852)
+++ trunk/refman-5.2/replication-notes.xml 2007-09-14 09:11:48 UTC (rev 7853)
Changed blocks: 1, Lines Added: 2, Lines Deleted: 2; 626 bytes
@@ -1002,8 +1002,8 @@
<para>
For instant notification when a slave thread terminates
- subscribe to the MySQL Enterprise Monitor.
- For more information see
+ subscribe to the MySQL Enterprise Monitor. For more
+ information see
<ulink url="&base-url-enterprise;advisors.html"/>.
</para>
Modified: trunk/refman-5.2/replication.xml
===================================================================
--- trunk/refman-5.2/replication.xml 2007-09-14 08:15:41 UTC (rev 7852)
+++ trunk/refman-5.2/replication.xml 2007-09-14 09:11:48 UTC (rev 7853)
Changed blocks: 1, Lines Added: 3, Lines Deleted: 3; 724 bytes
@@ -158,9 +158,9 @@
<title>MySQL Enterprise</title>
<para>
- The MySQL Enterprise Monitor provides
- numerous advisors that provide immediate feedback about
- replication-related problems. For more information see,
+ The MySQL Enterprise Monitor provides numerous advisors that
+ provide immediate feedback about replication-related problems. For
+ more information see,
<ulink url="&base-url-enterprise;advisors.html"/>.
</para>
Modified: trunk/refman-5.2/sql-syntax.xml
===================================================================
--- trunk/refman-5.2/sql-syntax.xml 2007-09-14 08:15:41 UTC (rev 7852)
+++ trunk/refman-5.2/sql-syntax.xml 2007-09-14 09:11:48 UTC (rev 7853)
Changed blocks: 1, Lines Added: 8, Lines Deleted: 2; 989 bytes
@@ -24778,10 +24778,16 @@
address) of the master host and its TCP/IP port. Note that if
<literal>MASTER_HOST</literal> is equal to
<literal>localhost</literal>, then, like in other parts of
- MySQL, the port number might be ignored (if Unix socket files
- can be used, for example).
+ MySQL, the port number might be ignored.
</para>
+ <note>
+ <para>
+ Replication cannot use Unix socket files. You must be able
+ to connect to the master MySQL server using TCP/IP.
+ </para>
+ </note>
+
<para>
If you specify <literal>MASTER_HOST</literal> or
<literal>MASTER_PORT</literal>, the slave assumes that the
Modified: trunk/refman-common/news-codbc-core.xml
===================================================================
--- trunk/refman-common/news-codbc-core.xml 2007-09-14 08:15:41 UTC (rev 7852)
+++ trunk/refman-common/news-codbc-core.xml 2007-09-14 09:11:48 UTC (rev 7853)
Changed blocks: 1, Lines Added: 3, Lines Deleted: 3; 606 bytes
@@ -15,11 +15,11 @@
<remark role="dynamic-dependency-list"/>
<section id="myodbc-news-5.1.0">
-
+
<title condition="dynamic:changelog:vertitle" role="5.1.0:connector-odbc:all"/>
-
+
<para condition="dynamic:changelog:entrylist" role="5.1.0:connector-odbc:all"/>
-
+
</section>
<section id="myodbc-news-5.0.12">
Modified: trunk/refman-common/news-mysql-proxy.xml
===================================================================
--- trunk/refman-common/news-mysql-proxy.xml 2007-09-14 08:15:41 UTC (rev 7852)
+++ trunk/refman-common/news-mysql-proxy.xml 2007-09-14 09:11:48 UTC (rev 7853)
Changed blocks: 11, Lines Added: 43, Lines Deleted: 27; 6185 bytes
@@ -21,7 +21,8 @@
<listitem>
<para>
- Added <option>--no-daemon</option> and
<option>--pid-file</option>.
+ Added <option>--no-daemon</option> and
+ <option>--pid-file</option>.
</para>
</listitem>
@@ -45,15 +46,16 @@
<listitem>
<para>
- Added hooks for <function>read_auth()</function>,
<function>read_handshake()</function> and
+ Added hooks for <function>read_auth()</function>,
+ <function>read_handshake()</function> and
<function>read_auth_result()</function>.
</para>
</listitem>
<listitem>
<para>
- Added support in <function>read_query_result()</function> to
overwrite the
- result-set.
+ Added support in <function>read_query_result()</function> to
+ overwrite the result-set.
</para>
</listitem>
@@ -77,9 +79,11 @@
<listitem>
<para>
- Added handling of <literal>proxy.connection.backend_ndx</literal>
in
+ Added handling of
+ <literal>proxy.connection.backend_ndx</literal> in
<function>connect_server()</function> and
- <function>read_query()</function> to support read/write splitting.
+ <function>read_query()</function> to support read/write
+ splitting.
</para>
</listitem>
@@ -95,25 +99,29 @@
<listitem>
<para>
- Fixed check for <literal>glib2</literal> to require at least 2.6.0.
+ Fixed check for <literal>glib2</literal> to require at least
+ 2.6.0.
</para>
</listitem>
<listitem>
<para>
- Fixed mem-leak with <literal>proxy.response.*</literal> is used.
+ Fixed mem-leak with <literal>proxy.response.*</literal> is
+ used.
</para>
</listitem>
<listitem>
<para>
- Fixed handling of (SQL) <literal>NULL</literal> in result-sets.
+ Fixed handling of (SQL) <literal>NULL</literal> in
+ result-sets.
</para>
</listitem>
<listitem>
<para>
- Fixed <literal>inj.resultset.affected_rows</literal> on
<literal>SELECT</literal> queries.
+ Fixed <literal>inj.resultset.affected_rows</literal> on
+ <literal>SELECT</literal> queries.
</para>
</listitem>
@@ -138,20 +146,23 @@
<listitem>
<para>
- Fixed crash if <literal>proxy.connection</literal> is used in
<function>connect_server()</function>.
+ Fixed crash if <literal>proxy.connection</literal> is used in
+ <function>connect_server()</function>.
</para>
</listitem>
<listitem>
<para>
- Fixed connection-stalling if
<function>read_query_result()</function> throws an
+ Fixed connection-stalling if
+ <function>read_query_result()</function> throws an
<function>assert()</function>ion.
</para>
</listitem>
<listitem>
<para>
- Fixed assertion at <literal>COM_SHUTDOWN</literal>. (Bug #29719)
+ Fixed assertion at <literal>COM_SHUTDOWN</literal>. (Bug
+ #29719)
</para>
</listitem>
@@ -164,8 +175,8 @@
<listitem>
<para>
- Fixed assertion on result-packets like <literal>[ field-len | fields |
- EOF | ERR ]</literal>. (Bug #29732)
+ Fixed assertion on result-packets like <literal>[ field-len |
+ fields | EOF | ERR ]</literal>. (Bug #29732)
</para>
</listitem>
@@ -177,7 +188,8 @@
<listitem>
<para>
- Fixed assertion on <literal>COM_BINLOG_DUMP</literal>. (Bug #29764)
+ Fixed assertion on <literal>COM_BINLOG_DUMP</literal>. (Bug
+ #29764)
</para>
</listitem>
@@ -215,8 +227,8 @@
<listitem>
<para>
- Added missing dependency to <literal>libmysqlclient-dev</literal>
to the INSTALL
- file.
+ Added missing dependency to
+ <literal>libmysqlclient-dev</literal> to the INSTALL file.
</para>
</listitem>
@@ -228,14 +240,15 @@
<listitem>
<para>
- Added <literal>inj.query_time</literal> and
<literal>inj.response_time</literal> into the lua
- scripts.
+ Added <literal>inj.query_time</literal> and
+ <literal>inj.response_time</literal> into the lua scripts.
</para>
</listitem>
<listitem>
<para>
- Added <literal>resultset.affected_rows</literal> and
<literal>resultset.insert_id</literal>.
+ Added <literal>resultset.affected_rows</literal> and
+ <literal>resultset.insert_id</literal>.
</para>
</listitem>
@@ -247,7 +260,8 @@
<listitem>
<para>
- Changed <option>--proxy.profiling</option> to
<option>--proxy-skip-profiling</option>.
+ Changed <option>--proxy.profiling</option> to
+ <option>--proxy-skip-profiling</option>.
</para>
</listitem>
@@ -261,21 +275,23 @@
<listitem>
<para>
- Fixed assertion when <function>read_query_result()</function> is
not provided when
- <literal>PROXY_SEND_QUERY</literal> is used.
+ Fixed assertion when <function>read_query_result()</function>
+ is not provided when <literal>PROXY_SEND_QUERY</literal> is
+ used.
</para>
</listitem>
<listitem>
<para>
- Fixed warning if <function>connect_server()</function> is not
provided.
+ Fixed warning if <function>connect_server()</function> is not
+ provided.
</para>
</listitem>
<listitem>
<para>
- Fixed handling of duplicate ERR on
<literal>COM_CHANGE_USER</literal> in MySQL
- 5.1.18+.
+ Fixed handling of duplicate ERR on
+ <literal>COM_CHANGE_USER</literal> in MySQL 5.1.18+.
</para>
</listitem>
| Thread |
|---|
| • svn commit - mysqldoc@docsrva: r7853 - in trunk: refman-4.1 refman-5.0 refman-5.1 refman-5.2 refman-common | mcbrown | 14 Sep |