Author: jstephens
Date: 2011-01-26 16:44:49 +0100 (Wed, 26 Jan 2011)
New Revision: 24892
Log:
Fixes Docs BUG#59744 (--transaction-isolation and tx_isolation)
Modified:
trunk/dynamic-docs/command-optvars/mysqld.xml
trunk/refman-5.0/dba-mysqld-server-core.xml
trunk/refman-5.1/dba-mysqld-server-core.xml
trunk/refman-5.5/dba-mysqld-server-core.xml
trunk/refman-5.6/dba-mysqld-server-core.xml
trunk/refman-6.0/dba-mysqld-server-core.xml
Modified: trunk/dynamic-docs/command-optvars/mysqld.xml
===================================================================
--- trunk/dynamic-docs/command-optvars/mysqld.xml 2011-01-26 15:26:53 UTC (rev 24891)
+++ trunk/dynamic-docs/command-optvars/mysqld.xml 2011-01-26 15:44:49 UTC (rev 24892)
Changed blocks: 1, Lines Added: 1, Lines Deleted: 1; 558 bytes
@@ -24689,7 +24689,7 @@
</shortdescription>
<types>
- <optype class="cmdline" format="--transaction-isolation=name"/>
+ <optype class="cmdline" format="--transaction-isolation=name" setvar="tx_isolation"/>
<optype class="mycnf"/>
</types>
Modified: trunk/refman-5.0/dba-mysqld-server-core.xml
===================================================================
--- trunk/refman-5.0/dba-mysqld-server-core.xml 2011-01-26 15:26:53 UTC (rev 24891)
+++ trunk/refman-5.0/dba-mysqld-server-core.xml 2011-01-26 15:44:49 UTC (rev 24892)
Changed blocks: 2, Lines Added: 14, Lines Deleted: 0; 1149 bytes
@@ -2783,6 +2783,13 @@
<literal role="isolevel">SERIALIZABLE</literal>. See
<xref linkend="set-transaction"/>.
</para>
+
+ <para>
+ The default transaction isolation level can also be set in the
+ running server using <literal role="stmt">SET
+ TRANSACTION</literal> or by setting the
+ <literal role="sysvar">tx_isolation</literal> system variable.
+ </para>
</listitem>
<listitem>
@@ -9548,6 +9555,13 @@
Any unique prefix of a valid value may be used to set the
value of this variable.
</para>
+
+ <para>
+ The default transactional isolation level can also be set at
+ startup using the
+ <option role="mysqld">--transaction-isolation</option> server
+ option.
+ </para>
</listitem>
<listitem>
Modified: trunk/refman-5.1/dba-mysqld-server-core.xml
===================================================================
--- trunk/refman-5.1/dba-mysqld-server-core.xml 2011-01-26 15:26:53 UTC (rev 24891)
+++ trunk/refman-5.1/dba-mysqld-server-core.xml 2011-01-26 15:44:49 UTC (rev 24892)
Changed blocks: 2, Lines Added: 14, Lines Deleted: 0; 1151 bytes
@@ -3268,6 +3268,13 @@
<literal role="isolevel">SERIALIZABLE</literal>. See
<xref linkend="set-transaction"/>.
</para>
+
+ <para>
+ The default transaction isolation level can also be set in the
+ running server using <literal role="stmt">SET
+ TRANSACTION</literal> or by setting the
+ <literal role="sysvar">tx_isolation</literal> system variable.
+ </para>
</listitem>
<listitem>
@@ -10755,6 +10762,13 @@
Any unique prefix of a valid value may be used to set the
value of this variable.
</para>
+
+ <para>
+ The default transactional isolation level can also be set at
+ startup using the
+ <option role="mysqld">--transaction-isolation</option> server
+ option.
+ </para>
</listitem>
<listitem>
Modified: trunk/refman-5.5/dba-mysqld-server-core.xml
===================================================================
--- trunk/refman-5.5/dba-mysqld-server-core.xml 2011-01-26 15:26:53 UTC (rev 24891)
+++ trunk/refman-5.5/dba-mysqld-server-core.xml 2011-01-26 15:44:49 UTC (rev 24892)
Changed blocks: 2, Lines Added: 19, Lines Deleted: 0; 1239 bytes
@@ -3298,6 +3298,13 @@
<literal role="isolevel">SERIALIZABLE</literal>. See
<xref linkend="set-transaction"/>.
</para>
+
+ <para>
+ The default transaction isolation level can also be set in the
+ running server using <literal role="stmt">SET
+ TRANSACTION</literal> or by setting the
+ <literal role="sysvar">tx_isolation</literal> system variable.
+ </para>
</listitem>
<listitem>
@@ -10902,6 +10909,18 @@
<programlisting>
SET tx_isolation = 'READ-COMMITTED';
</programlisting>
+
+ <para>
+ Any unique prefix of a valid value may be used to set the
+ value of this variable.
+ </para>
+
+ <para>
+ The default transactional isolation level can also be set at
+ startup using the
+ <option role="mysqld">--transaction-isolation</option> server
+ option.
+ </para>
</listitem>
<listitem>
Modified: trunk/refman-5.6/dba-mysqld-server-core.xml
===================================================================
--- trunk/refman-5.6/dba-mysqld-server-core.xml 2011-01-26 15:26:53 UTC (rev 24891)
+++ trunk/refman-5.6/dba-mysqld-server-core.xml 2011-01-26 15:44:49 UTC (rev 24892)
Changed blocks: 2, Lines Added: 19, Lines Deleted: 0; 1239 bytes
@@ -3087,6 +3087,13 @@
<literal role="isolevel">SERIALIZABLE</literal>. See
<xref linkend="set-transaction"/>.
</para>
+
+ <para>
+ The default transaction isolation level can also be set in the
+ running server using <literal role="stmt">SET
+ TRANSACTION</literal> or by setting the
+ <literal role="sysvar">tx_isolation</literal> system variable.
+ </para>
</listitem>
<listitem>
@@ -10645,6 +10652,18 @@
<programlisting>
SET tx_isolation = 'READ-COMMITTED';
</programlisting>
+
+ <para>
+ Any unique prefix of a valid value may be used to set the
+ value of this variable.
+ </para>
+
+ <para>
+ The default transactional isolation level can also be set at
+ startup using the
+ <option role="mysqld">--transaction-isolation</option> server
+ option.
+ </para>
</listitem>
<listitem>
Modified: trunk/refman-6.0/dba-mysqld-server-core.xml
===================================================================
--- trunk/refman-6.0/dba-mysqld-server-core.xml 2011-01-26 15:26:53 UTC (rev 24891)
+++ trunk/refman-6.0/dba-mysqld-server-core.xml 2011-01-26 15:44:49 UTC (rev 24892)
Changed blocks: 2, Lines Added: 19, Lines Deleted: 0; 1239 bytes
@@ -3461,6 +3461,13 @@
<literal role="isolevel">SERIALIZABLE</literal>. See
<xref linkend="set-transaction"/>.
</para>
+
+ <para>
+ The default transaction isolation level can also be set in the
+ running server using <literal role="stmt">SET
+ TRANSACTION</literal> or by setting the
+ <literal role="sysvar">tx_isolation</literal> system variable.
+ </para>
</listitem>
<listitem>
@@ -11557,6 +11564,18 @@
<programlisting>
SET tx_isolation = 'READ-COMMITTED';
</programlisting>
+
+ <para>
+ Any unique prefix of a valid value may be used to set the
+ value of this variable.
+ </para>
+
+ <para>
+ The default transactional isolation level can also be set at
+ startup using the
+ <option role="mysqld">--transaction-isolation</option> server
+ option.
+ </para>
</listitem>
<listitem>
| Thread |
|---|
| • svn commit - mysqldoc@docsrva: r24892 - in trunk: dynamic-docs/command-optvars refman-5.0 refman-5.1 refman-5.5 refman-5.6 refman-6.0 | jon.stephens | 26 Jan |