Fix version numbers: MySQL 5.6.4 was m7. 5.6.5 is m8 and the first version suitable.

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@324243 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Ulf Wendel 2012-03-14 15:35:35 +00:00
parent 7a5f25215b
commit 902cbcc2df
4 changed files with 9 additions and 10 deletions

View file

@ -168,7 +168,7 @@
</listitem>
<listitem>
<para>
Support for built-in global transaction identifier feature of MySQL 5.6.4-m8 or newer.
Support for built-in global transaction identifier feature of MySQL 5.6.5-m8 or newer.
</para>
</listitem>
<listitem>

View file

@ -80,7 +80,7 @@
</listitem>
<listitem>
<para>
Support for built-in global transaction identifier feature of MySQL 5.6.4-m8 or newer.
Support for built-in global transaction identifier feature of MySQL 5.6.5-m8 or newer.
</para>
</listitem>
</itemizedlist>

View file

@ -1135,7 +1135,7 @@ version = 5.6.2-m5-log
as of PHP 5.4.0. Please, see also <link linkend="mysqlnd-ms.transaction">Transaction handling</link>.
</para>
<para>
As of MySQL 5.6.4-m8 the MySQL server features built-in global transaction identifiers.
As of MySQL 5.6.5-m8 the MySQL server features built-in global transaction identifiers.
The MySQL built-in global transaction ID feature is supported by PECL/mysqlnd_ms 1.3.0-alpha or
later. Neither are client-side transaction boundary monitoring nor any setup
activities required if using the server feature.
@ -1220,7 +1220,7 @@ version = 5.6.2-m5-log
<emphasis role="bold">Using server-side global transaction identifier</emphasis>
</para>
<para>
Starting with PECL/mysqlnd_ms 1.3.0-alpha the MySQL 5.6.4-m8 or newer built-in global
Starting with PECL/mysqlnd_ms 1.3.0-alpha the MySQL 5.6.5-m8 or newer built-in global
transaction identifier feature is supported. Use of the server feature lifts
all of the above listed limitations. Please, see the MySQL Reference Manual
for limitations and preconditions for using server built-in global transaction

View file

@ -1103,14 +1103,14 @@ PHP Warning: mysqli::query(): (mysqlnd_ms) No connection selected by the last f
Use it with asynchronous clusters such as classical MySQL replication.
</para>
<para>
As of MySQL 5.6.4-m8 the MySQL server features built-in global transaction identifiers.
As of MySQL 5.6.5-m8 the MySQL server features built-in global transaction identifiers.
The MySQL built-in global transaction ID feature is supported by PECL/mysqlnd_ms 1.3.0-alpha or
later.
</para>
</note>
<para>
PECL/mysqlnd_ms can either use its own global transaction ID emulation or the
global transaction ID feature built-in to MySQL 5.6.4-m8 or later. From a developer
global transaction ID feature built-in to MySQL 5.6.5-m8 or later. From a developer
perspective the client-side and server-side approach offer the same features with
regards to service levels provided by PECL/mysqlnd_ms. Their differences
are discussed in the <link linkend="mysqlnd-ms.gtid">concepts section</link>.
@ -1455,7 +1455,7 @@ var_dump($res->fetch_assoc());
<emphasis role="bold">Use of the server-side global transaction ID feature</emphasis>
</para>
<para>
Starting with MySQL 5.6.4-m8 the MySQL Replication system features server-side
Starting with MySQL 5.6.5-m8 the MySQL Replication system features server-side
global transaction IDs. Transaction identifiers are automatically generated and
maintained by the server. Users do not need to take care of maintaining them.
There is no need to setup any tables in advance, or for setting
@ -1466,7 +1466,7 @@ var_dump($res->fetch_assoc());
session consistency when reading from MySQL Replication slaves. The algorithm
works as described above. Different SQL statements must be configured for
<literal>fetch_last_gtid</literal> and <literal>check_for_gtid</literal>.
The statements are given below. Please note, MySQL 5.6.4-m8 is a development
The statements are given below. Please note, MySQL 5.6.5-m8 is a development
version. Details of the server implementation may change in the future and require
adoption of the SQL statements shown.
</para>
@ -1481,7 +1481,7 @@ var_dump($res->fetch_assoc());
</para>
<para>
<example>
<title>Plugin config: using MySQL 5.6.4-m8 built-in GTID feature</title>
<title>Plugin config: using MySQL 5.6.5-m8 built-in GTID feature</title>
<programlisting role="ini">
<![CDATA[
{
@ -1509,7 +1509,6 @@ var_dump($res->fetch_assoc());
</programlisting>
</example>
</para>
</section>
</chapter>
<!-- Keep this comment at the end of the file