Merge lp:~hrvojem/percona-server/rn-5.6.22-72.0-5.6 into lp:percona-server/5.6

Proposed by Hrvoje Matijakovic
Status: Merged
Approved by: Laurynas Biveinis
Approved revision: no longer in the source branch.
Merged at revision: 737
Proposed branch: lp:~hrvojem/percona-server/rn-5.6.22-72.0-5.6
Merge into: lp:percona-server/5.6
Diff against target: 705 lines (+280/-46)
10 files modified
doc/source/conf.py (+1/-1)
doc/source/diagnostics/innodb_show_status.rst (+0/-2)
doc/source/diagnostics/response_time_distribution.rst (+43/-1)
doc/source/flexibility/online_gtid_deployment.rst (+69/-0)
doc/source/index.rst (+1/-0)
doc/source/release-notes/Percona-Server-5.6.22-72.0.rst (+32/-0)
doc/source/release-notes/release-notes_index.rst (+1/-0)
doc/source/tokudb/removing_tokudb.rst (+29/-1)
doc/source/tokudb/tokudb_installation.rst (+59/-2)
doc/source/upstream-bug-fixes.rst (+45/-39)
To merge this branch: bzr merge lp:~hrvojem/percona-server/rn-5.6.22-72.0-5.6
Reviewer Review Type Date Requested Status
Laurynas Biveinis (community) Approve
Review via email: mp+248785@code.launchpad.net
To post a comment you must log in.
Revision history for this message
Laurynas Biveinis (laurynas-biveinis) :
review: Needs Fixing
Revision history for this message
Laurynas Biveinis (laurynas-biveinis) wrote :

What about upstream bug list update? Please also see the diff comments.

review: Needs Fixing
Revision history for this message
Laurynas Biveinis (laurynas-biveinis) :
review: Needs Fixing
Revision history for this message
Laurynas Biveinis (laurynas-biveinis) :
review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'doc/source/conf.py'
--- doc/source/conf.py 2015-01-12 08:11:31 +0000
+++ doc/source/conf.py 2015-02-06 14:22:58 +0000
@@ -54,7 +54,7 @@
54# The short X.Y version.54# The short X.Y version.
55version = '5.6'55version = '5.6'
56# The full version, including alpha/beta/rc tags.56# The full version, including alpha/beta/rc tags.
57release = '5.6.22-71.0'57release = '5.6.22-72.0'
5858
59# The language for content autogenerated by Sphinx. Refer to documentation59# The language for content autogenerated by Sphinx. Refer to documentation
60# for a list of supported languages.60# for a list of supported languages.
6161
=== modified file 'doc/source/diagnostics/innodb_show_status.rst'
--- doc/source/diagnostics/innodb_show_status.rst 2014-12-01 07:53:48 +0000
+++ doc/source/diagnostics/innodb_show_status.rst 2015-02-06 14:22:58 +0000
@@ -8,8 +8,6 @@
88
9This feature modified the ``SHOW ENGINE INNODB STATUS`` command as follows:9This feature modified the ``SHOW ENGINE INNODB STATUS`` command as follows:
1010
11 * ``TRANSACTION`` section was moved to the end of the output, so that important information is not overlooked when the there is a large amount of it.
12
13 * Added two variables to control ``SHOW ENGINE INNODB STATUS`` information presented (bugfix for `#29123 <http://bugs.mysql.com/bug.php?id=29123>`_):11 * Added two variables to control ``SHOW ENGINE INNODB STATUS`` information presented (bugfix for `#29123 <http://bugs.mysql.com/bug.php?id=29123>`_):
1412
15 * :variable:`innodb_show_verbose_locks` - Whether to show records locked13 * :variable:`innodb_show_verbose_locks` - Whether to show records locked
1614
=== modified file 'doc/source/diagnostics/response_time_distribution.rst'
--- doc/source/diagnostics/response_time_distribution.rst 2014-12-01 07:53:48 +0000
+++ doc/source/diagnostics/response_time_distribution.rst 2015-02-06 14:22:58 +0000
@@ -69,6 +69,19 @@
6969
70 * 1 query with 10.000000 < query execution time < = 100.0000 seconds; total execution time of the 1 query = 55.937094 seconds70 * 1 query with 10.000000 < query execution time < = 100.0000 seconds; total execution time of the 1 query = 55.937094 seconds
7171
72.. _rtd_rw_split:
73
74Logging the queries in separate ``READ`` and ``WRITE`` tables
75=============================================================
76
77.. note::
78
79 This feature is considered **BETA** quality.
80
81|Percona Server| :rn:`5.6.22-72.0` is now able to log the queries response times into separate ``READ`` and ``WRITE`` ``INFORMATION_SCHEMA`` tables. The two new tables are named :table:`QUERY_RESPONSE_TIME_READ` and :table:`QUERY_RESPONSE_TIME_WRITE` respectively. The decision on whether a query is a ``read`` or a ``write`` is based on the type of the command. Thus, for example, an ``UPDATE ... WHERE <condition>`` is always logged as a ``write`` query even if ``<condition>`` is always false and thus no actual writes happen during its execution.
82
83Following SQL commands will be considered as ``WRITE`` queries and will be logged into the :table:`QUERY_RESPONSE_TIME_WRITE` table: ``CREATE_TABLE``, ``CREATE_INDEX``, ``ALTER_TABLE``, ``TRUNCATE``, ``DROP_TABLE``, ``LOAD``, ``CREATE_DB``, ``DROP_DB``, ``ALTER_DB``, ``RENAME_TABLE``, ``DROP_INDEX``, ``CREATE_VIEW``, ``DROP_VIEW``, ``CREATE_TRIGGER``, ``DROP_TRIGGER``, ``CREATE_EVENT``, ``ALTER_EVENT``, ``DROP_EVENT``, ``UPDATE``, ``UPDATE_MULTI``, ``INSERT``, ``INSERT_SELECT``, ``DELETE``, ``DELETE_MULTI``, ``REPLACE``, ``REPLACE_SELECT``, ``CREATE_USER``, ``RENAME_USER``, ``DROP_USER``, ``ALTER_USER``, ``GRANT``, ``REVOKE``, ``REVOKE_ALL``, ``OPTIMIZE``, ``CREATE_FUNCTION``, ``CREATE_PROCEDURE``, ``CREATE_SPFUNCTION``, ``DROP_PROCEDURE``, ``DROP_FUNCTION``, ``ALTER_PROCEDURE``, ``ALTER_FUNCTION``, ``INSTALL_PLUGIN``, and ``UNINSTALL_PLUGIN``. Commands not listed here are considered as ``READ`` queries and will be logged into the :table:`QUERY_RESPONSE_TIME_READ` table.
84
72Installing the plugins85Installing the plugins
73======================86======================
7487
@@ -86,6 +99,18 @@
8699
87This plugin provides the interface (:table:`QUERY_RESPONSE_TIME`) to output gathered statistics.100This plugin provides the interface (:table:`QUERY_RESPONSE_TIME`) to output gathered statistics.
88101
102.. code-block:: mysql
103
104 mysql> INSTALL PLUGIN QUERY_RESPONSE_TIME_READ SONAME 'query_response_time.so';
105
106This plugin provides the interface (:table:`QUERY_RESPONSE_TIME_READ`) to output gathered statistics. **NOTE:** Available in |Percona Server| :rn:`5.6.22-72.0` or later.
107
108.. code-block:: mysql
109
110 mysql> INSTALL PLUGIN QUERY_RESPONSE_TIME_WRITE SONAME 'query_response_time.so';
111
112This plugin provides the interface (:table:`QUERY_RESPONSE_TIME_WRITE`) to output gathered statistics. **NOTE:** Available in |Percona Server| :rn:`5.6.22-72.0` or later.
113
89You can check if plugins are installed correctly by running:114You can check if plugins are installed correctly by running:
90115
91.. code-block:: mysql116.. code-block:: mysql
@@ -95,6 +120,8 @@
95 ...120 ...
96 | QUERY_RESPONSE_TIME | ACTIVE | INFORMATION SCHEMA | query_response_time.so | GPL |121 | QUERY_RESPONSE_TIME | ACTIVE | INFORMATION SCHEMA | query_response_time.so | GPL |
97 | QUERY_RESPONSE_TIME_AUDIT | ACTIVE | AUDIT | query_response_time.so | GPL |122 | QUERY_RESPONSE_TIME_AUDIT | ACTIVE | AUDIT | query_response_time.so | GPL |
123 | QUERY_RESPONSE_TIME_READ | ACTIVE | INFORMATION SCHEMA | query_response_time.so | GPL |
124 | QUERY_RESPONSE_TIME_WRITE | ACTIVE | INFORMATION SCHEMA | query_response_time.so | GPL |
98 +-----------------------------+----------+--------------------+------------------------+---------+125 +-----------------------------+----------+--------------------+------------------------+---------+
99126
100Usage127Usage
@@ -147,7 +174,7 @@
147174
148``FLUSH`` does two things:175``FLUSH`` does two things:
149176
150 * Clears the collected times from the :table:`QUERY_RESPONSE_TIME` table177 * Clears the collected times from the :table:`QUERY_RESPONSE_TIME`, :table:`QUERY_RESPONSE_TIME_READ`, and :table:`QUERY_RESPONSE_TIME_WRITE` tables
151178
152 * Reads the value of :variable:`query_response_time_range_base` and uses it to set the range base for the table179 * Reads the value of :variable:`query_response_time_range_base` and uses it to set the range base for the table
153180
@@ -169,6 +196,9 @@
169 * :rn:`5.6.21-69.0`:196 * :rn:`5.6.21-69.0`:
170 Feature ported from |Percona Server| 5.5 as a plugin197 Feature ported from |Percona Server| 5.5 as a plugin
171198
199 * :rn:`5.6.22-72.0`:
200 Implemented query logging based on ``READ`` and ``WRITE`` queries.
201
172System Variables202System Variables
173================203================
174204
@@ -224,3 +254,15 @@
224 :column INT(11) COUNT: Number of queries with execution times that fell into that interval254 :column INT(11) COUNT: Number of queries with execution times that fell into that interval
225 :column VARCHAR TOTAL: Total execution time of the queries 255 :column VARCHAR TOTAL: Total execution time of the queries
226256
257.. table:: INFORMATION_SCHEMA.QUERY_RESPONSE_TIME_READ
258
259 :column VARCHAR TIME: Interval range in which the query occurred
260 :column INT(11) COUNT: Number of queries with execution times that fell into that interval
261 :column VARCHAR TOTAL: Total execution time of the queries
262
263.. table:: INFORMATION_SCHEMA.QUERY_RESPONSE_TIME_WRITE
264
265 :column VARCHAR TIME: Interval range in which the query occurred
266 :column INT(11) COUNT: Number of queries with execution times that fell into that interval
267 :column VARCHAR TOTAL: Total execution time of the queries
268
227269
=== added file 'doc/source/flexibility/online_gtid_deployment.rst'
--- doc/source/flexibility/online_gtid_deployment.rst 1970-01-01 00:00:00 +0000
+++ doc/source/flexibility/online_gtid_deployment.rst 2015-02-06 14:22:58 +0000
@@ -0,0 +1,69 @@
1.. _online_gtid_deployment:
2
3========================
4 Online GTID deployment
5========================
6
7|Percona Server| now supports Online GTID deployment. This enables GTID to be deployed on existing replication setups without making the master read-only and stopping all the slaves. This feature was ported from the *Facebook* branch. Before this feature was implemented deploying the GTID replication on already existing replication setups required making a master :variable:`read_only`, shutting down all |MySQL| instances in the replica set simultaneously at the same position, enabling the :variable:`gtid_mode` variable in :file:`my.cnf`, and then starting all of the instances.
8
9With :variable:`gtid_deployment_step` enabled, a host cannot generate GTID values on its own, but if GTID logged events are received through replication stream from master, they will be logged.
10
11Performing the online GTID deployment
12=====================================
13
14The online GTID deployment procedure can be done with the following steps:
15
161) replicas: :variable:`gtid_mode` = ``ON`` and :variable:`gtid_deployment_step` = ``ON``
17
18 master: :variable:`gtid_mode` = ``OFF`` and :variable:`gtid_deployment_step` = ``OFF``
19
20On each replica, one at a time, restart the |MySQL| server to enable :variable:`gtid_mode` and :variable:`gtid_deployment_step`. Afterward, we are in a state where every replica has :variable:`gtid_mode` set to ``ON`` and :variable:`gtid_deployment_step` set to ``ON``, but the master still has :variable:`gtid_mode` set to ``OFF`` and :variable:`gtid_deployment_step` set to ``OFF``. **NOTE:** in order to successfully restart the slaves :variable:`enforce-gtid-consistency` needs to be enabled as well.
21
222) new master: :variable:`gtid_mode` = ``ON`` and :variable:`gtid_deployment_step` = ``OFF``
23
24 rest of the replicas: :variable:`gtid_mode` = ``ON`` and :variable:`gtid_deployment_step` = ``ON``
25
26 old master: :variable:`gtid_mode` = ``OFF`` and :variable:`gtid_deployment_step` = ``OFF``
27
28Perform a master promotion as normal, i.e. set the :variable:`gtid_mode` to ``ON`` and :variable:`gtid_deployment_step` to ``OFF``, re-pointing the replicas and original master to the new master. The original master's replication will intentionally break when started, since it still has the variable :variable:`gtid_mode` set to ``OFF`` and :variable:`gtid_deployment_step` to ``OFF``.
29
303) new master: :variable:`gtid_mode` = ``ON`` and :variable:`gtid_deployment_step` = ``OFF``
31
32 rest of the replicas: :variable:`gtid_mode` = ``ON``
33
34 old master: :variable:`gtid_mode` = ``ON``
35
36Restart the original master to enable :variable:`gtid_mode`. It will now be able to replicate from the new master, and the entire replica set now has :variable:`gtid_mode` set to ``ON``. You can now set the :variable:`gtid_deployment_step` to ``OFF``.
37
38Version Specific Information
39============================
40
41 * :rn:`5.6.22-72.0`:
42 Feature ported from the *Facebook* `branch <https://github.com/facebook/mysql-5.6>`_
43
44System Variables
45================
46
47.. variable:: gtid_deployment_step
48
49 :version 5.6.22-72.0: Introduced.
50 :cli: Yes
51 :conf: Yes
52 :scope: Global
53 :dyn: Yes
54 :default: OFF
55
56When this variable is enabled, a host cannot generate GTIDs on its own, but if GTID logged events are received through replication stream from the master, they will be logged.
57
58The conditions for dynamic switching the :variable:`gtid_deployment_step` off are the same as for `read_only <http://dev.mysql.com/doc/refman/5.6/en/server-system-variables.html#sysvar_read_only>`_ variable:
59
60 1) If you attempt to enable :variable:`gtid_deployment_step` while you have any explicit locks (acquired with ``LOCK TABLES``) or have a pending transaction, an error occurs.
61
62 2) If you attempt to enable :variable:`gtid_deployment_step` while other clients hold explicit table locks or have pending transactions, the attempt blocks until the locks are released and the transactions end. While the attempt to enable :variable:`gtid_deployment_step` is pending, requests by other clients for table locks or to begin transactions also block until :variable:`gtid_deployment_step` has been set.
63
64Related Reading
65===============
66
67 * `Lessons from Deploying MySQL GTID at Scale <https://www.facebook.com/notes/mysql-at-facebook/lessons-from-deploying-mysql-gtid-at-scale/10152252699590933>`_
68 * |MySQL| `GTID documentation <https://dev.mysql.com/doc/refman/5.6/en/replication-gtids.html>`_
69
070
=== modified file 'doc/source/index.rst'
--- doc/source/index.rst 2015-01-09 15:11:15 +0000
+++ doc/source/index.rst 2015-02-06 14:22:58 +0000
@@ -94,6 +94,7 @@
94 flexibility/slowlog_rotation94 flexibility/slowlog_rotation
95 flexibility/mysqlbinlog_change_db95 flexibility/mysqlbinlog_change_db
96 flexibility/csv_engine_mode96 flexibility/csv_engine_mode
97 flexibility/online_gtid_deployment
9798
98Reliability Improvements99Reliability Improvements
99========================100========================
100101
=== added file 'doc/source/release-notes/Percona-Server-5.6.22-72.0.rst'
--- doc/source/release-notes/Percona-Server-5.6.22-72.0.rst 1970-01-01 00:00:00 +0000
+++ doc/source/release-notes/Percona-Server-5.6.22-72.0.rst 2015-02-06 14:22:58 +0000
@@ -0,0 +1,32 @@
1.. rn:: 5.6.22-72.0
2
3==============================
4 |Percona Server| 5.6.22-72.0
5==============================
6
7Percona is glad to announce the release of |Percona Server| 5.6.22-72.0 on February 6th, 2015 (Downloads are available `here <http://www.percona.com/downloads/Percona-Server-5.6/Percona-Server-5.6.22-72.0/>`_ and from the :doc:`Percona Software Repositories </installation>`).
8
9Based on `MySQL 5.6.22 <http://dev.mysql.com/doc/relnotes/mysql/5.6/en/news-5-6-22.html>`_, including all the bug fixes in it, |Percona Server| 5.6.22-72.0 is the current GA release in the |Percona Server| 5.6 series. All of |Percona|'s software is open-source and free, all the details of the release can be found in the `5.6.22-72.0 milestone at Launchpad <https://launchpad.net/percona-server/+milestone/5.6.22-72.0>`_.
10
11New Features
12============
13
14 |Percona Server| is now able to log the query's response times into :ref:`separate <rtd_rw_split>` ``READ`` and ``WRITE`` ``INFORMATION_SCHEMA`` tables. Two new ``INFORMATION_SCHEMA`` tables :table:`QUERY_RESPONSE_TIME_READ` and :table:`QUERY_RESPONSE_TIME_WRITE` have been implemented for ``READ`` and ``WRITE`` queries correspondingly.
15
16 New ``ps_tokudb_admin`` script has been implemented to make the TokuDB Storage engine installation :ref:`easier <tokudb_quick_install>`.
17
18 |Percona Server| now supports :ref:`online_gtid_deployment`. This enables GTID to be deployed on existing replication setups without making the master ``read-only`` and stopping all the slaves. This feature was ported from the Facebook `branch <https://github.com/facebook/mysql-5.6>`_.
19
20Bugs Fixed
21==========
22
23 ``SET STATEMENT ... FOR <statement>`` would crash the server if it could not execute the ``<statement>`` due to: 1) if the ``<statement>`` was Read-Write in a Read-Only transaction (bug :bug:`1387951`), 2) if the ``<statement>`` needed to re-open an already open temporary table and would fail to do so (bug :bug:`1412423`), 3) if the ``<statement>`` needed to commit implicitly the ongoing transaction and the implicit commit would fail (bug :bug:`1418049`).
24
25 TokuDB storage engine would fail to load after the upgrade on *CentOS* 5 and 6. Bug fixed :bug:`1413956`.
26
27 Fixed a potential low-probability crash in |XtraDB| linear read-ahead code. Bug fixed :bug:`1417953`.
28
29 Setting the :variable:`max_statement_time` per query had no effect. Bug fixed :bug:`1376934`.
30
31Other bugs fixed: :bug:`1407941`, :bug:`1415843` (upstream :mysqlbug:`75642`).
32
033
=== modified file 'doc/source/release-notes/release-notes_index.rst'
--- doc/source/release-notes/release-notes_index.rst 2015-01-12 08:11:31 +0000
+++ doc/source/release-notes/release-notes_index.rst 2015-02-06 14:22:58 +0000
@@ -6,6 +6,7 @@
6 :maxdepth: 16 :maxdepth: 1
7 :glob:7 :glob:
88
9 Percona-Server-5.6.22-72.0
9 Percona-Server-5.6.22-71.010 Percona-Server-5.6.22-71.0
10 Percona-Server-5.6.21-70.111 Percona-Server-5.6.21-70.1
11 Percona-Server-5.6.21-70.012 Percona-Server-5.6.21-70.0
1213
=== modified file 'doc/source/tokudb/removing_tokudb.rst'
--- doc/source/tokudb/removing_tokudb.rst 2014-10-10 09:34:04 +0000
+++ doc/source/tokudb/removing_tokudb.rst 2015-02-06 14:22:58 +0000
@@ -22,7 +22,35 @@
22Removing the plugins22Removing the plugins
23--------------------23--------------------
2424
25Storage engine requires manual removal: 25If you're using |Percona Server| :rn:`5.6.22-72.0` or later you can use the ``ps_tokudb_admin`` script to remove the plugins:
26
27.. code-block:: bash
28
29 ps_tokudb_admin --disable -uroot -pPassw0rd
30
31Script output should look like this:
32
33.. code-block:: bash
34
35 Checking if Percona server is running with jemalloc enabled...
36 >> Percona server is running with jemalloc enabled.
37
38 Checking transparent huge pages status on the system...
39 >> Transparent huge pages are currently disabled on the system.
40
41 Checking if thp-setting=never option is already set in config file...
42 >> Option thp-setting=never is set in the config file.
43
44 Checking TokuDB plugin status...
45 >> TokuDB plugin is installed.
46
47 Removing thp-setting=never option from /etc/mysql/my.cnf
48 >> Successfuly removed thp-setting=never option from /etc/mysql/my.cnf
49
50 Uninstalling TokuDB plugin...
51 >> Successfuly uninstalled TokuDB plugin.
52
53Prior to |Percona Server| :rn:`5.6.22-72.0` TokuDB storage engine requires manual removal:
2654
27.. code-block:: mysql55.. code-block:: mysql
2856
2957
=== modified file 'doc/source/tokudb/tokudb_installation.rst'
--- doc/source/tokudb/tokudb_installation.rst 2014-09-22 13:27:26 +0000
+++ doc/source/tokudb/tokudb_installation.rst 2015-02-06 14:22:58 +0000
@@ -71,11 +71,66 @@
7171
72 root@wheezy:~# apt-get install percona-server-tokudb-5.672 root@wheezy:~# apt-get install percona-server-tokudb-5.6
7373
74.. _tokudb_quick_install:
7475
75Enabling the TokuDB Storage Engine76Enabling the TokuDB Storage Engine
76==================================77==================================
7778
78This storage engine requires manual installation if there is a root password already set up during the new installation or upgrade. 79Once the TokuDB server package has been installed following output will be shown:
80
81.. code-block:: bash
82
83 * This release of Percona Server is distributed with TokuDB storage engine.
84 * Run the following script to enable the TokuDB storage engine in Percona Server:
85
86 ps_tokudb_admin --enable -u <mysql_admin_user> -p[mysql_admin_pass] [-S <socket>] [-h <host> -P <port>]
87
88 * See http://www.percona.com/doc/percona-server/5.6/tokudb/tokudb_installation.html for more installation details
89
90 * See http://www.percona.com/doc/percona-server/5.6/tokudb/tokudb_intro.html for an introduction to TokuDB
91
92|Percona Server| :rn:`5.6.22-72.0` has implemented ``ps_tokudb_admin`` script to make the enabling the TokuDB storage engine easier. This script will automatically disable Transparent huge pages, if they're enabled, and install the TokuDB storage engine with all the required plugins. After you run the script with required parameters:
93
94.. code-block:: bash
95
96 ps_tokudb_admin --enable -uroot -pPassw0rd
97
98Following output will be displayed:
99
100.. code-block:: bash
101
102 Checking if Percona server is running with jemalloc enabled...
103 >> Percona server is running with jemalloc enabled.
104
105 Checking transparent huge pages status on the system...
106 >> Transparent huge pages are currently disabled on the system.
107
108 Checking if thp-setting=never option is already set in config file...
109 >> Option thp-setting=never is not set in the config file.
110 >> (needed only if THP is not disabled permanently on the system)
111
112 Checking TokuDB plugin status...
113 >> TokuDB plugin is not installed.
114
115 Adding thp-setting=never option into /etc/mysql/my.cnf
116 >> Successfuly added thp-setting=never option into /etc/mysql/my.cnf
117
118 Installing TokuDB engine...
119 >> Successfuly installed TokuDB plugin.
120
121If the script returns no errors, TokuDB storage engine should be successfully enabled on your server. You can check it out by running:
122
123.. code-block:: mysql
124
125 mysql> SHOW ENGINES;
126 ...
127 | TokuDB | YES | Tokutek TokuDB Storage Engine with Fractal Tree(tm) Technology | YES | YES | YES |
128 ...
129
130Enabling the TokuDB Storage Engine Manually
131===========================================
132
133If you're running |Percona Server| :rn:`5.6.22-71.0` this storage engine requires manual installation.
79134
80.. code-block:: mysql135.. code-block:: mysql
81136
@@ -122,7 +177,7 @@
122 +------------------+177 +------------------+
123 | @@tokudb_version |178 | @@tokudb_version |
124 +------------------+179 +------------------+
125 | tokudb-7.1.7-rc7 |180 | tokudb-7.5.4 |
126 +------------------+181 +------------------+
127 1 row in set (0.00 sec)182 1 row in set (0.00 sec)
128183
@@ -139,6 +194,8 @@
139 TokuDB storage engine available as a separate |Percona Server| package.194 TokuDB storage engine available as a separate |Percona Server| package.
140 * :rn:`5.6.19-67.0`195 * :rn:`5.6.19-67.0`
141 TokuDB storage engine is considered GA quality.196 TokuDB storage engine is considered GA quality.
197 * :rn:`5.6.22-72.0`
198 Implemented ``ps_tokudb_admin`` script to make the installation :ref:`easier <tokudb_quick_install>`
142199
143200
144Other Reading201Other Reading
145202
=== modified file 'doc/source/upstream-bug-fixes.rst'
--- doc/source/upstream-bug-fixes.rst 2015-01-12 08:11:31 +0000
+++ doc/source/upstream-bug-fixes.rst 2015-02-06 14:22:58 +0000
@@ -5,9 +5,15 @@
5=============================================================5=============================================================
66
7+-------------------------------------------------------------------------------------------------------------+7+-------------------------------------------------------------------------------------------------------------+
8|:Upstream bug: :mysqlbug:`75642` - Extend valid range of dummy certificates ni mysql-test/std_data |
9|:Launchpad bug: :bug:`1415843` |
10|:Upstream state: Verified (checked on 2015-02-06) |
11|:Fix Released: :rn:`5.6.22-72.0` |
12|:Upstream fix: N/A |
13+-------------------------------------------------------------------------------------------------------------+
8|:Upstream bug: :mysqlbug:`73979` - wrong stack size calculation leads to stack overflow in pinbox allocator |14|:Upstream bug: :mysqlbug:`73979` - wrong stack size calculation leads to stack overflow in pinbox allocator |
9|:Launchpad bug: :bug:`1351148` |15|:Launchpad bug: :bug:`1351148` |
10|:Upstream state: In Progress (checked on 2015-01-12) |16|:Upstream state: In Progress (checked on 2015-02-06) |
11|:Fix Released: :rn:`5.6.22-71.0` |17|:Fix Released: :rn:`5.6.22-71.0` |
12|:Upstream fix: N/A |18|:Upstream fix: N/A |
13+-------------------------------------------------------------------------------------------------------------+19+-------------------------------------------------------------------------------------------------------------+
@@ -19,49 +25,49 @@
19+-------------------------------------------------------------------------------------------------------------+25+-------------------------------------------------------------------------------------------------------------+
20|:Upstream bug: :mysqlbug:`57430` - query optimizer does not pick covering index for some "order by" queries |26|:Upstream bug: :mysqlbug:`57430` - query optimizer does not pick covering index for some "order by" queries |
21|:Launchpad bug: :bug:`1394967` |27|:Launchpad bug: :bug:`1394967` |
22|:Upstream state: Verified (checked on 2015-01-12) |28|:Upstream state: Verified (checked on 2015-02-06) |
23|:Fix Released: :rn:`5.6.22-71.0` |29|:Fix Released: :rn:`5.6.22-71.0` |
24|:Upstream fix: N/A |30|:Upstream fix: N/A |
25+-------------------------------------------------------------------------------------------------------------+31+-------------------------------------------------------------------------------------------------------------+
26|:Upstream bug: :mysqlbug:`74987` - mtr failure on Ubuntu Utopic, mysqlhotcopy fails with wrong error(255) |32|:Upstream bug: :mysqlbug:`74987` - mtr failure on Ubuntu Utopic, mysqlhotcopy fails with wrong error(255) |
27|:Launchpad bug: :bug:`1396330` |33|:Launchpad bug: :bug:`1396330` |
28|:Upstream state: Verified (checked on 2015-01-12) |34|:Upstream state: Verified (checked on 2015-02-06) |
29|:Fix Released: :rn:`5.6.22-71.0` |35|:Fix Released: :rn:`5.6.22-71.0` |
30|:Upstream fix: N/A |36|:Upstream fix: N/A |
31+-------------------------------------------------------------------------------------------------------------+37+-------------------------------------------------------------------------------------------------------------+
32|:Upstream bug: :mysqlbug:`75189` - engines suite tests depending on InnoDB implementation details |38|:Upstream bug: :mysqlbug:`75189` - engines suite tests depending on InnoDB implementation details |
33|:Launchpad bug: :bug:`1401776` |39|:Launchpad bug: :bug:`1401776` |
34|:Upstream state: Verified (checked on 2015-01-12) |40|:Upstream state: Verified (checked on 2015-02-06) |
35|:Fix Released: :rn:`5.6.22-71.0` |41|:Fix Released: :rn:`5.6.22-71.0` |
36|:Upstream fix: N/A |42|:Upstream fix: N/A |
37+-------------------------------------------------------------------------------------------------------------+43+-------------------------------------------------------------------------------------------------------------+
38|:Upstream bug: :mysqlbug:`72475` - Binlog events with binlog_format=MIXED are unconditionally logged in ROW..|44|:Upstream bug: :mysqlbug:`72475` - Binlog events with binlog_format=MIXED are unconditionally logged in ROW..|
39|:Launchpad bug: :bug:`1313901` |45|:Launchpad bug: :bug:`1313901` |
40|:Upstream state: Verified (checked on 2015-01-12) |46|:Upstream state: Verified (checked on 2015-02-06) |
41|:Fix Released: :rn:`5.6.21-70.1` |47|:Fix Released: :rn:`5.6.21-70.1` |
42|:Upstream fix: N/A |48|:Upstream fix: N/A |
43+-------------------------------------------------------------------------------------------------------------+49+-------------------------------------------------------------------------------------------------------------+
44|:Upstream bug: :mysqlbug:`74842` - Incorrect attribute((nonnull)) for btr_cur_ins_lock_and_undo callees |50|:Upstream bug: :mysqlbug:`74842` - Incorrect attribute((nonnull)) for btr_cur_ins_lock_and_undo callees |
45|:Launchpad bug: :bug:`1390695` |51|:Launchpad bug: :bug:`1390695` |
46|:Upstream state: Open (checked on 2015-01-12) |52|:Upstream state: Open (checked on 2015-02-06) |
47|:Fix Released: :rn:`5.6.21-70.1` |53|:Fix Released: :rn:`5.6.21-70.1` |
48|:Upstream fix: N/A |54|:Upstream fix: N/A |
49+-------------------------------------------------------------------------------------------------------------+55+-------------------------------------------------------------------------------------------------------------+
50|:Upstream bug: :mysqlbug:`74440` - mysql_install_db not handling mysqld startup failure |56|:Upstream bug: :mysqlbug:`74440` - mysql_install_db not handling mysqld startup failure |
51|:Launchpad bug: :bug:`1382782` |57|:Launchpad bug: :bug:`1382782` |
52|:Upstream state: Verified (checked on 2015-01-12) |58|:Upstream state: Verified (checked on 2015-02-06) |
53|:Fix Released: :rn:`5.6.21-70.0` |59|:Fix Released: :rn:`5.6.21-70.0` |
54|:Upstream fix: N/A |60|:Upstream fix: N/A |
55+-------------------------------------------------------------------------------------------------------------+61+-------------------------------------------------------------------------------------------------------------+
56|:Upstream bug: :mysqlbug:`73066` - Replication stall with multi-threaded replication |62|:Upstream bug: :mysqlbug:`73066` - Replication stall with multi-threaded replication |
57|:Launchpad bug: :bug:`1331586` |63|:Launchpad bug: :bug:`1331586` |
58|:Upstream state: Verified (checked on 2015-01-12) |64|:Upstream state: Verified (checked on 2015-02-06) |
59|:Fix Released: :rn:`5.6.21-70.0` |65|:Fix Released: :rn:`5.6.21-70.0` |
60|:Upstream fix: N/A |66|:Upstream fix: N/A |
61+-------------------------------------------------------------------------------------------------------------+67+-------------------------------------------------------------------------------------------------------------+
62|:Upstream bug: :mysqlbug:`71091` - CSV engine does not properly process ``""``, in quotes |68|:Upstream bug: :mysqlbug:`71091` - CSV engine does not properly process ``""``, in quotes |
63|:Launchpad bug: :bug:`1316042` |69|:Launchpad bug: :bug:`1316042` |
64|:Upstream state: Verified (checked on 2015-01-12) |70|:Upstream state: Verified (checked on 2015-02-06) |
65|:Fix Released: :rn:`5.6.21-70.0` |71|:Fix Released: :rn:`5.6.21-70.0` |
66|:Upstream fix: N/A |72|:Upstream fix: N/A |
67+-------------------------------------------------------------------------------------------------------------+73+-------------------------------------------------------------------------------------------------------------+
@@ -73,7 +79,7 @@
73+-------------------------------------------------------------------------------------------------------------+79+-------------------------------------------------------------------------------------------------------------+
74|:Upstream bug: :mysqlbug:`73418` - Add --manual-lldb option to mysql-test-run.pl |80|:Upstream bug: :mysqlbug:`73418` - Add --manual-lldb option to mysql-test-run.pl |
75|:Launchpad bug: :bug:`1328482` |81|:Launchpad bug: :bug:`1328482` |
76|:Upstream state: Verified (checked on 2015-01-12) |82|:Upstream state: Verified (checked on 2015-02-06) |
77|:Fix Released: :rn:`5.6.20-68.0` |83|:Fix Released: :rn:`5.6.20-68.0` |
78|:Upstream fix: N/A |84|:Upstream fix: N/A |
79+-------------------------------------------------------------------------------------------------------------+85+-------------------------------------------------------------------------------------------------------------+
@@ -91,13 +97,13 @@
91+-------------------------------------------------------------------------------------------------------------+97+-------------------------------------------------------------------------------------------------------------+
92|:Upstream bug: :mysqlbug:`72615` - MTR --mysqld=--default-storage-engine=foo incompatible w/ dynamically... |98|:Upstream bug: :mysqlbug:`72615` - MTR --mysqld=--default-storage-engine=foo incompatible w/ dynamically... |
93|:Launchpad bug: :bug:`1318537` |99|:Launchpad bug: :bug:`1318537` |
94|:Upstream state: Verified (checked on 2015-01-12) |100|:Upstream state: Verified (checked on 2015-02-06) |
95|:Fix Released: :rn:`5.6.17-66.0` |101|:Fix Released: :rn:`5.6.17-66.0` |
96|:Upstream fix: N/A |102|:Upstream fix: N/A |
97+-------------------------------------------------------------------------------------------------------------+103+-------------------------------------------------------------------------------------------------------------+
98|:Upstream bug: :mysqlbug:`72163` - Rev 5774 broke rpl_plugin_load |104|:Upstream bug: :mysqlbug:`72163` - Rev 5774 broke rpl_plugin_load |
99|:Launchpad bug: :bug:`1299688` |105|:Launchpad bug: :bug:`1299688` |
100|:Upstream state: Verified (checked on 2015-01-12) |106|:Upstream state: Verified (checked on 2015-02-06) |
101|:Fix Released: :rn:`5.6.17-65.0` |107|:Fix Released: :rn:`5.6.17-65.0` |
102|:Upstream fix: N/A |108|:Upstream fix: N/A |
103+-------------------------------------------------------------------------------------------------------------+109+-------------------------------------------------------------------------------------------------------------+
@@ -115,19 +121,19 @@
115+-------------------------------------------------------------------------------------------------------------+121+-------------------------------------------------------------------------------------------------------------+
116|:Upstream bug: :mysqlbug:`71374` - Slave IO thread won't attempt auto reconnect to the master/error-code 1159|122|:Upstream bug: :mysqlbug:`71374` - Slave IO thread won't attempt auto reconnect to the master/error-code 1159|
117|:Launchpad bug: :bug:`1268729` |123|:Launchpad bug: :bug:`1268729` |
118|:Upstream state: Verified (checked on 2015-01-12) |124|:Upstream state: Verified (checked on 2015-02-06) |
119|:Fix Released: :rn:`5.6.16-64.1` |125|:Fix Released: :rn:`5.6.16-64.1` |
120|:Upstream fix: N/A |126|:Upstream fix: N/A |
121+-------------------------------------------------------------------------------------------------------------+127+-------------------------------------------------------------------------------------------------------------+
122|:Upstream bug: :mysqlbug:`71988` - page_cleaner: aggressive background flushing |128|:Upstream bug: :mysqlbug:`71988` - page_cleaner: aggressive background flushing |
123|:Launchpad bug: :bug:`1238039` |129|:Launchpad bug: :bug:`1238039` |
124|:Upstream state: Verified (checked on 2015-01-12) |130|:Upstream state: Verified (checked on 2015-02-06) |
125|:Fix Released: :rn:`5.6.16-64.0` |131|:Fix Released: :rn:`5.6.16-64.0` |
126|:Upstream fix: N/A |132|:Upstream fix: N/A |
127+-------------------------------------------------------------------------------------------------------------+133+-------------------------------------------------------------------------------------------------------------+
128|:Upstream bug: :mysqlbug:`71624` - printf size_t results in a fatal warning in 32-bit debug builds |134|:Upstream bug: :mysqlbug:`71624` - printf size_t results in a fatal warning in 32-bit debug builds |
129|:Launchpad bug: :bug:`1277505` |135|:Launchpad bug: :bug:`1277505` |
130|:Upstream state: Can't repeat (checked on 2015-01-12) |136|:Upstream state: Can't repeat (checked on 2015-02-06) |
131|:Fix Released: :rn:`5.6.16-64.0` |137|:Fix Released: :rn:`5.6.16-64.0` |
132|:Upstream fix: N/A |138|:Upstream fix: N/A |
133+-------------------------------------------------------------------------------------------------------------+139+-------------------------------------------------------------------------------------------------------------+
@@ -169,13 +175,13 @@
169+-------------------------------------------------------------------------------------------------------------+175+-------------------------------------------------------------------------------------------------------------+
170|:Upstream bug: :mysqlbug:`71270` - Failures to end bulk insert for partitioned tables handled incorrectly |176|:Upstream bug: :mysqlbug:`71270` - Failures to end bulk insert for partitioned tables handled incorrectly |
171|:Launchpad bug: :bug:`1204871` |177|:Launchpad bug: :bug:`1204871` |
172|:Upstream state: Verified (checked on 2015-01-12) |178|:Upstream state: Verified (checked on 2015-02-06) |
173|:Fix Released: :rn:`5.6.16-64.0` |179|:Fix Released: :rn:`5.6.16-64.0` |
174|:Upstream fix: N/A |180|:Upstream fix: N/A |
175+-------------------------------------------------------------------------------------------------------------+181+-------------------------------------------------------------------------------------------------------------+
176|:Upstream bug: :mysqlbug:`71217` - Threadpool - add thd_wait_begin/thd_wait_end to the network IO functions |182|:Upstream bug: :mysqlbug:`71217` - Threadpool - add thd_wait_begin/thd_wait_end to the network IO functions |
177|:Launchpad bug: :bug:`1159743` |183|:Launchpad bug: :bug:`1159743` |
178|:Upstream state: Open (checked on 2015-01-12) |184|:Upstream state: Open (checked on 2015-02-06) |
179|:Fix Released: :rn:`5.6.15-63.0` |185|:Fix Released: :rn:`5.6.15-63.0` |
180|:Upstream fix: N/A |186|:Upstream fix: N/A |
181+-------------------------------------------------------------------------------------------------------------+187+-------------------------------------------------------------------------------------------------------------+
@@ -193,7 +199,7 @@
193+-------------------------------------------------------------------------------------------------------------+199+-------------------------------------------------------------------------------------------------------------+
194|:Upstream bug: :mysqlbug:`71411` - buf_flush_LRU() does not return correct number in case of compressed pages|200|:Upstream bug: :mysqlbug:`71411` - buf_flush_LRU() does not return correct number in case of compressed pages|
195|:Launchpad bug: :bug:`1231918` |201|:Launchpad bug: :bug:`1231918` |
196|:Upstream state: Verified (checked on 2015-01-12) |202|:Upstream state: Verified (checked on 2015-02-06) |
197|:Fix Released: :rn:`5.6.13-61.0` |203|:Fix Released: :rn:`5.6.13-61.0` |
198|:Upstream fix: N/A |204|:Upstream fix: N/A |
199+-------------------------------------------------------------------------------------------------------------+205+-------------------------------------------------------------------------------------------------------------+
@@ -205,7 +211,7 @@
205+-------------------------------------------------------------------------------------------------------------+211+-------------------------------------------------------------------------------------------------------------+
206|:Upstream bug: :mysqlbug:`70490` - Suppression is too strict on some systems |212|:Upstream bug: :mysqlbug:`70490` - Suppression is too strict on some systems |
207|:Launchpad bug: :bug:`1205196` |213|:Launchpad bug: :bug:`1205196` |
208|:Upstream state: No Feedback (checked on 2015-01-12) |214|:Upstream state: No Feedback (checked on 2015-02-06) |
209|:Fix Released: :rn:`5.6.13-61.0` |215|:Fix Released: :rn:`5.6.13-61.0` |
210|:Upstream fix: N/A |216|:Upstream fix: N/A |
211+-------------------------------------------------------------------------------------------------------------+217+-------------------------------------------------------------------------------------------------------------+
@@ -217,7 +223,7 @@
217+-------------------------------------------------------------------------------------------------------------+223+-------------------------------------------------------------------------------------------------------------+
218|:Upstream bug: :mysqlbug:`70500` - Page cleaner should perform LRU flushing regardless of server activity |224|:Upstream bug: :mysqlbug:`70500` - Page cleaner should perform LRU flushing regardless of server activity |
219|:Launchpad bug: :bug:`1234562` |225|:Launchpad bug: :bug:`1234562` |
220|:Upstream state: Verified (checked on 2015-01-12) |226|:Upstream state: Verified (checked on 2015-02-06) |
221|:Fix Released: :rn:`5.6.13-61.0` |227|:Fix Released: :rn:`5.6.13-61.0` |
222|:Upstream fix: N/A |228|:Upstream fix: N/A |
223+-------------------------------------------------------------------------------------------------------------+229+-------------------------------------------------------------------------------------------------------------+
@@ -235,25 +241,25 @@
235+-------------------------------------------------------------------------------------------------------------+241+-------------------------------------------------------------------------------------------------------------+
236|:Upstream bug: :mysqlbug:`68481` - InnoDB LRU flushing for MySQL 5.6 needs work |242|:Upstream bug: :mysqlbug:`68481` - InnoDB LRU flushing for MySQL 5.6 needs work |
237|:Launchpad bug: :bug:`1232406` |243|:Launchpad bug: :bug:`1232406` |
238|:Upstream state: Verified (checked on 2015-01-12) |244|:Upstream state: Verified (checked on 2015-02-06) |
239|:Fix Released: :rn:`5.6.13-61.0` |245|:Fix Released: :rn:`5.6.13-61.0` |
240|:Upstream fix: N/A |246|:Upstream fix: N/A |
241+-------------------------------------------------------------------------------------------------------------+247+-------------------------------------------------------------------------------------------------------------+
242|:Upstream bug: :mysqlbug:`70453` - Add hard timeouts to page cleaner flushes |248|:Upstream bug: :mysqlbug:`70453` - Add hard timeouts to page cleaner flushes |
243|:Launchpad bug: :bug:`1232101` |249|:Launchpad bug: :bug:`1232101` |
244|:Upstream state: Verified (checked on 2015-01-12) |250|:Upstream state: Verified (checked on 2015-02-06) |
245|:Fix Released: :rn:`5.6.13-61.0` |251|:Fix Released: :rn:`5.6.13-61.0` |
246|:Upstream fix: N/A |252|:Upstream fix: N/A |
247+-------------------------------------------------------------------------------------------------------------+253+-------------------------------------------------------------------------------------------------------------+
248|:Upstream bug: :mysqlbug:`69170` - buf_flush_LRU is lazy |254|:Upstream bug: :mysqlbug:`69170` - buf_flush_LRU is lazy |
249|:Launchpad bug: :bug:`1231918` |255|:Launchpad bug: :bug:`1231918` |
250|:Upstream state: Verified (checked on 2015-01-12) |256|:Upstream state: Verified (checked on 2015-02-06) |
251|:Fix Released: :rn:`5.6.13-61.0` |257|:Fix Released: :rn:`5.6.13-61.0` |
252|:Upstream fix: N/A |258|:Upstream fix: N/A |
253+-------------------------------------------------------------------------------------------------------------+259+-------------------------------------------------------------------------------------------------------------+
254|:Upstream bug: :mysqlbug:`68555` - thread convoys from log_checkpoint_margin with innodb_buffer_pool_inst... |260|:Upstream bug: :mysqlbug:`68555` - thread convoys from log_checkpoint_margin with innodb_buffer_pool_inst... |
255|:Launchpad bug: :bug:`1236884` |261|:Launchpad bug: :bug:`1236884` |
256|:Upstream state: Verified (checked on 2015-01-12) |262|:Upstream state: Verified (checked on 2015-02-06) |
257|:Fix Released: :rn:`5.6.13-61.0` |263|:Fix Released: :rn:`5.6.13-61.0` |
258|:Upstream fix: N/A |264|:Upstream fix: N/A |
259+-------------------------------------------------------------------------------------------------------------+265+-------------------------------------------------------------------------------------------------------------+
@@ -283,7 +289,7 @@
283+-------------------------------------------------------------------------------------------------------------+289+-------------------------------------------------------------------------------------------------------------+
284|:Upstream bug: :mysqlbug:`62018` - innodb adaptive hash index mutex contention |290|:Upstream bug: :mysqlbug:`62018` - innodb adaptive hash index mutex contention |
285|:Launchpad bug: :bug:`1216804` |291|:Launchpad bug: :bug:`1216804` |
286|:Upstream state: Verified (checked on 2015-01-12) |292|:Upstream state: Verified (checked on 2015-02-06) |
287|:Fix Released: :rn:`5.6.13-60.6` |293|:Fix Released: :rn:`5.6.13-60.6` |
288|:Upstream fix: N/A |294|:Upstream fix: N/A |
289+-------------------------------------------------------------------------------------------------------------+295+-------------------------------------------------------------------------------------------------------------+
@@ -301,13 +307,13 @@
301+-------------------------------------------------------------------------------------------------------------+307+-------------------------------------------------------------------------------------------------------------+
302|:Upstream bug: :mysqlbug:`42415` - UPDATE/DELETE with LIMIT clause unsafe for SBL even with ORDER BY PK ... |308|:Upstream bug: :mysqlbug:`42415` - UPDATE/DELETE with LIMIT clause unsafe for SBL even with ORDER BY PK ... |
303|:Launchpad bug: :bug:`1132194` |309|:Launchpad bug: :bug:`1132194` |
304|:Upstream state: Verified (checked on 2015-01-12) |310|:Upstream state: Verified (checked on 2015-02-06) |
305|:Fix Released: :rn:`5.6.13-60.5` |311|:Fix Released: :rn:`5.6.13-60.5` |
306|:Upstream fix: N/A |312|:Upstream fix: N/A |
307+-------------------------------------------------------------------------------------------------------------+313+-------------------------------------------------------------------------------------------------------------+
308|:Upstream bug: :mysqlbug:`69639` - mysql failed to build with dtrace Sun D 1.11 |314|:Upstream bug: :mysqlbug:`69639` - mysql failed to build with dtrace Sun D 1.11 |
309|:Launchpad bug: :bug:`1196460` |315|:Launchpad bug: :bug:`1196460` |
310|:Upstream state: Open (checked on 2015-01-12) |316|:Upstream state: Open (checked on 2015-02-06) |
311|:Fix Released: :rn:`5.6.13-60.5` |317|:Fix Released: :rn:`5.6.13-60.5` |
312|:Upstream fix: N/A |318|:Upstream fix: N/A |
313+-------------------------------------------------------------------------------------------------------------+319+-------------------------------------------------------------------------------------------------------------+
@@ -325,7 +331,7 @@
325+-------------------------------------------------------------------------------------------------------------+331+-------------------------------------------------------------------------------------------------------------+
326|:Upstream bug: :mysqlbug:`69856` - mysql_install_db does not function properly in 5.6 for debug builds |332|:Upstream bug: :mysqlbug:`69856` - mysql_install_db does not function properly in 5.6 for debug builds |
327|:Launchpad bug: :bug:`1179359` |333|:Launchpad bug: :bug:`1179359` |
328|:Upstream state: Verified (checked on 2015-01-12) |334|:Upstream state: Verified (checked on 2015-02-06) |
329|:Fix Released: :rn:`5.6.12-60.4` |335|:Fix Released: :rn:`5.6.12-60.4` |
330|:Upstream fix: N/A |336|:Upstream fix: N/A |
331+-------------------------------------------------------------------------------------------------------------+337+-------------------------------------------------------------------------------------------------------------+
@@ -337,7 +343,7 @@
337+-------------------------------------------------------------------------------------------------------------+343+-------------------------------------------------------------------------------------------------------------+
338|:Upstream bug: :mysqlbug:`71183` - os_file_fsync() should handle fsync() returning EINTR |344|:Upstream bug: :mysqlbug:`71183` - os_file_fsync() should handle fsync() returning EINTR |
339|:Launchpad bug: :bug:`1262651` |345|:Launchpad bug: :bug:`1262651` |
340|:Upstream state: Verified (checked on 2015-01-12) |346|:Upstream state: Verified (checked on 2015-02-06) |
341|:Fix Released: :rn:`5.6.11-60.3` |347|:Fix Released: :rn:`5.6.11-60.3` |
342|:Upstream fix: N/A |348|:Upstream fix: N/A |
343+-------------------------------------------------------------------------------------------------------------+349+-------------------------------------------------------------------------------------------------------------+
@@ -367,7 +373,7 @@
367+-------------------------------------------------------------------------------------------------------------+373+-------------------------------------------------------------------------------------------------------------+
368|:Upstream bug: :mysqlbug:`68714` - Remove literal statement digest values from perfschema tests |374|:Upstream bug: :mysqlbug:`68714` - Remove literal statement digest values from perfschema tests |
369|:Launchpad bug: :bug:`1157078` |375|:Launchpad bug: :bug:`1157078` |
370|:Upstream state: Verified (checked on 2015-01-12) |376|:Upstream state: Verified (checked on 2015-02-06) |
371|:Fix Released: :rn:`5.6.11-60.3` |377|:Fix Released: :rn:`5.6.11-60.3` |
372|:Upstream fix: N/A |378|:Upstream fix: N/A |
373+-------------------------------------------------------------------------------------------------------------+379+-------------------------------------------------------------------------------------------------------------+
@@ -397,7 +403,7 @@
397+-------------------------------------------------------------------------------------------------------------+403+-------------------------------------------------------------------------------------------------------------+
398|:Upstream bug: :mysqlbug:`68713` - create_duplicate_weedout_tmp_table() leaves key_part_flag uninitialized |404|:Upstream bug: :mysqlbug:`68713` - create_duplicate_weedout_tmp_table() leaves key_part_flag uninitialized |
399|:Launchpad bug: :bug:`1157037` |405|:Launchpad bug: :bug:`1157037` |
400|:Upstream state: Verified (checked on 2015-01-12) |406|:Upstream state: Verified (checked on 2015-02-06) |
401|:Fix Released: :rn:`5.6.11-60.3` |407|:Fix Released: :rn:`5.6.11-60.3` |
402|:Upstream fix: N/A |408|:Upstream fix: N/A |
403+-------------------------------------------------------------------------------------------------------------+409+-------------------------------------------------------------------------------------------------------------+
@@ -409,13 +415,13 @@
409+-------------------------------------------------------------------------------------------------------------+415+-------------------------------------------------------------------------------------------------------------+
410|:Upstream bug: :mysqlbug:`68999` - SSL_OP_NO_COMPRESSION not defined |416|:Upstream bug: :mysqlbug:`68999` - SSL_OP_NO_COMPRESSION not defined |
411|:Launchpad bug: :bug:`1183610` |417|:Launchpad bug: :bug:`1183610` |
412|:Upstream state: No Feedback (checked on 2015-01-12) |418|:Upstream state: No Feedback (checked on 2015-02-06) |
413|:Fix Released: :rn:`5.6.11-60.3` |419|:Fix Released: :rn:`5.6.11-60.3` |
414|:Upstream fix: N/A |420|:Upstream fix: N/A |
415+-------------------------------------------------------------------------------------------------------------+421+-------------------------------------------------------------------------------------------------------------+
416|:Upstream bug: :mysqlbug:`68845` - Unnecessary log_sys->mutex reacquisition in mtr_log_reserve_and_write() |422|:Upstream bug: :mysqlbug:`68845` - Unnecessary log_sys->mutex reacquisition in mtr_log_reserve_and_write() |
417|:Launchpad bug: :bug:`1163439` |423|:Launchpad bug: :bug:`1163439` |
418|:Upstream state: Verified (checked on 2015-01-12) |424|:Upstream state: Verified (checked on 2015-02-06) |
419|:Fix Released: :rn:`5.6.11-60.3` |425|:Fix Released: :rn:`5.6.11-60.3` |
420|:Upstream fix: N/A |426|:Upstream fix: N/A |
421+-------------------------------------------------------------------------------------------------------------+427+-------------------------------------------------------------------------------------------------------------+
@@ -505,7 +511,7 @@
505+-------------------------------------------------------------------------------------------------------------+511+-------------------------------------------------------------------------------------------------------------+
506|:Upstream bug: :mysqlbug:`61178` - Incorrect implementation of intersect(ulonglong) in non-optimized Bitmap..|512|:Upstream bug: :mysqlbug:`61178` - Incorrect implementation of intersect(ulonglong) in non-optimized Bitmap..|
507|:Launchpad bug: :bug:`1042517` |513|:Launchpad bug: :bug:`1042517` |
508|:Upstream state: Verified (checked on 2015-01-12) |514|:Upstream state: Verified (checked on 2015-02-06) |
509|:Fix Released: :rn:`5.6.11-60.3` |515|:Fix Released: :rn:`5.6.11-60.3` |
510|:Upstream fix: N/A |516|:Upstream fix: N/A |
511+-------------------------------------------------------------------------------------------------------------+517+-------------------------------------------------------------------------------------------------------------+
@@ -517,7 +523,7 @@
517+-------------------------------------------------------------------------------------------------------------+523+-------------------------------------------------------------------------------------------------------------+
518|:Upstream bug: :mysqlbug:`64800` - mysqldump with --include-master-host-port putting quotes around port no. | 524|:Upstream bug: :mysqlbug:`64800` - mysqldump with --include-master-host-port putting quotes around port no. |
519|:Launchpad bug: :bug:`1013432` |525|:Launchpad bug: :bug:`1013432` |
520|:Upstream state: Verified (checked on 2015-01-12) |526|:Upstream state: Verified (checked on 2015-02-06) |
521|:Fix Released: :rn:`5.6.11-60.3` |527|:Fix Released: :rn:`5.6.11-60.3` |
522|:Upstream fix: N/A |528|:Upstream fix: N/A |
523+-------------------------------------------------------------------------------------------------------------+529+-------------------------------------------------------------------------------------------------------------+
@@ -547,13 +553,13 @@
547+-------------------------------------------------------------------------------------------------------------+553+-------------------------------------------------------------------------------------------------------------+
548|:Upstream bug: :mysqlbug:`25007` - memory tables with dynamic rows format |554|:Upstream bug: :mysqlbug:`25007` - memory tables with dynamic rows format |
549|:Launchpad bug: :bug:`1148822` |555|:Launchpad bug: :bug:`1148822` |
550|:Upstream state: Verified (checked on 2015-01-12) |556|:Upstream state: Verified (checked on 2015-02-06) |
551|:Fix Released: :rn:`5.6.11-60.3` |557|:Fix Released: :rn:`5.6.11-60.3` |
552|:Upstream fix: N/A |558|:Upstream fix: N/A |
553+-------------------------------------------------------------------------------------------------------------+559+-------------------------------------------------------------------------------------------------------------+
554|:Upstream bug: :mysqlbug:`61595` - mysql-test/include/wait_for_slave_param.inc timeout logic is incorrect |560|:Upstream bug: :mysqlbug:`61595` - mysql-test/include/wait_for_slave_param.inc timeout logic is incorrect |
555|:Launchpad bug: :bug:`800035` |561|:Launchpad bug: :bug:`800035` |
556|:Upstream state: Verified (checked on 2015-01-12) |562|:Upstream state: Verified (checked on 2015-02-06) |
557|:Fix Released: :rn:`5.6.11-60.3` |563|:Fix Released: :rn:`5.6.11-60.3` |
558|:Upstream fix: N/A |564|:Upstream fix: N/A |
559+-------------------------------------------------------------------------------------------------------------+565+-------------------------------------------------------------------------------------------------------------+
@@ -577,13 +583,13 @@
577+-------------------------------------------------------------------------------------------------------------+583+-------------------------------------------------------------------------------------------------------------+
578|:Upstream bug: :mysqlbug:`20001` - Support for temp-tables in INFORMATION_SCHEMA |584|:Upstream bug: :mysqlbug:`20001` - Support for temp-tables in INFORMATION_SCHEMA |
579|:Launchpad bug: N/A |585|:Launchpad bug: N/A |
580|:Upstream state: Verified (checked on 2015-01-12) |586|:Upstream state: Verified (checked on 2015-02-06) |
581|:Fix Released: :rn:`5.6.5-60.0` |587|:Fix Released: :rn:`5.6.5-60.0` |
582|:Upstream fix: N/A |588|:Upstream fix: N/A |
583+-------------------------------------------------------------------------------------------------------------+589+-------------------------------------------------------------------------------------------------------------+
584|:Upstream bug: :mysqlbug:`69146` - Optimization in buf_pool_get_oldest_modification if srv_buf_pool_instances|590|:Upstream bug: :mysqlbug:`69146` - Optimization in buf_pool_get_oldest_modification if srv_buf_pool_instances|
585|:Launchpad bug: :bug:`1176496` |591|:Launchpad bug: :bug:`1176496` |
586|:Upstream state: Verified (checked on 2015-01-12) |592|:Upstream state: Verified (checked on 2015-02-06) |
587|:Fix Released: :rn:`5.6.5-60.0` |593|:Fix Released: :rn:`5.6.5-60.0` |
588|:Upstream fix: N/A |594|:Upstream fix: N/A |
589+-------------------------------------------------------------------------------------------------------------+595+-------------------------------------------------------------------------------------------------------------+

Subscribers

People subscribed via source and target branches