Merge lp:~hrvojem/percona-server/rn-5.5.39-36.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: 655
Proposed branch: lp:~hrvojem/percona-server/rn-5.5.39-36.0-5.6
Merge into: lp:percona-server/5.6
Diff against target: 586 lines (+188/-50)
6 files modified
doc/source/conf.py (+1/-1)
doc/source/management/audit_log_plugin.rst (+81/-9)
doc/source/release-notes/Percona-Server-5.6.20-68.0.rst (+48/-0)
doc/source/release-notes/release-notes_index.rst (+1/-0)
doc/source/reliability/show_slave_status_nolock.rst (+8/-3)
doc/source/upstream-bug-fixes.rst (+49/-37)
To merge this branch: bzr merge lp:~hrvojem/percona-server/rn-5.5.39-36.0-5.6
Reviewer Review Type Date Requested Status
Laurynas Biveinis (community) Approve
Review via email: mp+232668@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) :
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 2014-07-30 10:26:11 +0000
+++ doc/source/conf.py 2014-08-29 10:14:25 +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.19-67.0'57release = '5.6.20-68.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/management/audit_log_plugin.rst'
--- doc/source/management/audit_log_plugin.rst 2014-05-06 12:43:39 +0000
+++ doc/source/management/audit_log_plugin.rst 2014-08-29 10:14:25 +0000
@@ -4,7 +4,7 @@
4 Audit Log Plugin4 Audit Log Plugin
5==================5==================
66
7Percona Audit Log Plugin provides monitoring and logging of connection and query activity that were performed on specific server. Information about the activity will be stored in the XML log file where each event will have its ``NAME`` field, it's own unique ``RECORD_ID`` field and a ``TIMESTAMP`` field. This implementation is alternative to the `MySQL Enterprise Audit Log Plugin <dev.mysql.com/doc/refman/5.5/en/audit-log-plugin.html>`_7Percona Audit Log Plugin provides monitoring and logging of connection and query activity that were performed on specific server. Information about the activity will be stored in the XML log file where each event will have its ``NAME`` field, its own unique ``RECORD_ID`` field and a ``TIMESTAMP`` field. This implementation is alternative to the `MySQL Enterprise Audit Log Plugin <dev.mysql.com/doc/refman/5.6/en/audit-log-plugin.html>`_
88
9Audit Log plugin produces the log of following events:9Audit Log plugin produces the log of following events:
1010
@@ -40,7 +40,7 @@
40 "DB"=""40 "DB"=""
41 />41 />
4242
43* **Query** - Additional fields for this event are: ``COMMAND_CLASS`` (values come from the ``com_status_vars`` array in the :file:`sql/mysqld.cc`` file in a MySQL source distribution. Examples are ``select``, ``alter_table", "create_table", etc.), ``CONNECTION_ID``, ``STATUS`` (indicates error when non-zero), ``SQLTEXT`` (text of SQL-statement, statements are rewritten to exclude passwords by default, this can be changed by :option:`--log-raw` option ), ``USER``, ``HOST``, ``OS_USER``, ``IP``. Possible values for the ``NAME`` name field for this event are ``Query``, ``Prepare``, ``Execute``, ``Change user``, etc.43* **Query** - Additional fields for this event are: ``COMMAND_CLASS`` (values come from the ``com_status_vars`` array in the :file:`sql/mysqld.cc`` file in a MySQL source distribution. Examples are ``select``, ``alter_table``, ``create_table``, etc.), ``CONNECTION_ID``, ``STATUS`` (indicates error when non-zero), ``SQLTEXT`` (text of SQL-statement), ``USER``, ``HOST``, ``OS_USER``, ``IP``. Possible values for the ``NAME`` name field for this event are ``Query``, ``Prepare``, ``Execute``, ``Change user``, etc.
4444
45Example of the Query event: :: 45Example of the Query event: ::
4646
@@ -87,7 +87,7 @@
87Log Format87Log Format
88==========88==========
8989
90Audit log plugin supports two formats. In one format (``OLD``) log record properties are saved as XML attributes and in the other (``NEW``) log recored properties are saved as XML tags. Audit log format can be set up with the :variable:`audit_log_format` variable.90The audit log plugin supports four log formats: ``OLD``, ``NEW``, ``JSON``, and ``CSV``. ``OLD`` and ``NEW`` formats are based on XML, where the former outputs log record properties as XML attributes and the latter as XML tags. Information logged is the same in all four formats. The log format choice is controlled by :variable:`audit_log_format` variable.
9191
92Example of the ``OLD`` format: ::92Example of the ``OLD`` format: ::
9393
@@ -122,6 +122,25 @@
122 <DB></DB>122 <DB></DB>
123 </AUDIT_RECORD>123 </AUDIT_RECORD>
124124
125Example of the ``JSON`` format: ::
126
127 {"audit_record":{"name":"Query","record":"4707_2014-08-27T10:43:52","timestamp":"2014-08-27T10:44:19 UTC","command_class":"show_databases","connection_id":"37","status":0,"sqltext":"show databases","user":"root[root] @ localhost []","host":"localhost","os_user":"","ip":""}}
128
129Example of the ``CSV`` format: ::
130
131 "Query","49284_2014-08-27T10:47:11","2014-08-27T10:47:23 UTC","show_databases","37",0,"show databases","root[root] @ localhost []","localhost","",""
132
133.. _streaming_to_syslog:
134
135Streaming the audit log to syslog
136=================================
137
138Ability to stream the audit log to `syslog <http://www.syslog.org/>`_ was implemented in |Percona Server| :rn:`5.6.20-68.0`. To stream the audit log to syslog you'll need to set :variable:`audit_log_handler` variable to ``SYSLOG``. To control the syslog file handler, the following variables can be used: :variable:`audit_log_syslog_ident`, :variable:`audit_log_syslog_facility`, and :variable:`audit_log_syslog_priority` These variables have the same meaning as appropriate parameters described in the `syslog(3) manual <http://linux.die.net/man/3/syslog>`_.
139
140.. note::
141
142 Variables: :variable:`audit_log_strategy`, :variable:`audit_log_buffer_size`, :variable:`audit_log_rotate_on_size`, :variable:`audit_log_rotations` have effect only with ``FILE`` handler.
143
125System Variables144System Variables
126================145================
127146
@@ -142,6 +161,8 @@
142* ``SEMISYNCHRONOUS`` - log directly to file, do not flush and sync every event161* ``SEMISYNCHRONOUS`` - log directly to file, do not flush and sync every event
143* ``SYNCHRONOUS`` - log directly to file, flush and sync every event162* ``SYNCHRONOUS`` - log directly to file, flush and sync every event
144163
164This variable has effect only when :variable:`audit_log_handler` is set to ``FILE``.
165
145.. variable:: audit_log_file166.. variable:: audit_log_file
146167
147 :version 5.6.17-65.0: Implemented168 :version 5.6.17-65.0: Implemented
@@ -173,19 +194,20 @@
173 :vartype: Numeric194 :vartype: Numeric
174 :default: 4096195 :default: 4096
175196
176This variable can be used to specify the size of memory buffer used for logging, used when :variable:`audit_log_strategy` variable is set to ``ASYNCHRONOUS`` or ``PERFORMANCE`` values.197This variable can be used to specify the size of memory buffer used for logging, used when :variable:`audit_log_strategy` variable is set to ``ASYNCHRONOUS`` or ``PERFORMANCE`` values. This variable has effect only when :variable:`audit_log_handler` is set to ``FILE``.
177198
178.. variable:: audit_log_format199.. variable:: audit_log_format
179200
180 :version 5.6.17-65.0: Implemented201 :version 5.6.17-65.0: Original implementation
202 :version 5.6.20-68.0: Implemented support for ``CSV`` and ``JSON`` log formats
181 :cli: Yes203 :cli: Yes
182 :scope: Global204 :scope: Global
183 :dyn: No 205 :dyn: No
184 :vartype: String206 :vartype: String
185 :default: OLD207 :default: OLD
186 :allowed values: ``OLD``, ``NEW``208 :allowed values: ``OLD``, ``NEW``, ``CSV``, ``JSON``
187209
188This variable is used to specify the audit log format. When this variable is set to ``OLD`` information will be logged as XML attributes, and when is set to ``NEW`` it will be logged as XML tags.210This variable is used to specify the audit log format. The audit log plugin supports four log formats: ``OLD``, ``NEW``, ``JSON``, and ``CSV``. ``OLD`` and ``NEW`` formats are based on XML, where the former outputs log record properties as XML attributes and the latter as XML tags. Information logged is the same in all four formats.
189211
190.. variable:: audit_log_policy212.. variable:: audit_log_policy
191213
@@ -213,7 +235,7 @@
213 :vartype: Numeric235 :vartype: Numeric
214 :default: 0 (don't rotate the log file)236 :default: 0 (don't rotate the log file)
215237
216This variable is used to specify the size of the audit log file. When this size is reached log will get rotated. Old log can be found in the same directory, audit log sequential number will be appended to the name specified in the :variable:`audit_log_file` variable.238This variable is used to specify the maximum audit log file size. Upon reaching this size the log will be rotated. The rotated log files will be present in the same same directory as the current log file. A sequence number will be appended to the log file name upon rotation. This variable has effect only when :variable:`audit_log_handler` is set to ``FILE``.
217 239
218.. variable:: audit_log_rotations240.. variable:: audit_log_rotations
219241
@@ -224,11 +246,61 @@
224 :vartype: Numeric246 :vartype: Numeric
225 :default: 0 247 :default: 0
226248
227This variable is used to specify how many log files should be kept when :variable:`audit_log_rotate_on_size` variable is set to non-zero value.249This variable is used to specify how many log files should be kept when :variable:`audit_log_rotate_on_size` variable is set to non-zero value. This variable has effect only when :variable:`audit_log_handler` is set to ``FILE``.
250
251.. variable:: audit_log_handler
252
253 :version 5.6.20-68.0: Implemented
254 :cli: Yes
255 :scope: Global
256 :dyn: No
257 :vartype: String
258 :default: FILE
259 :allowed values: ``FILE``, ``SYSLOG``
260
261This variable is used to configure where the audit log will be written. If it is set to ``FILE``, the log will be written into a file specified by :variable:`audit_log_file` variable. If it is set to ``SYSLOG``, the audit log will be written to syslog.
262
263.. variable:: audit_log_syslog_ident
264
265 :version 5.6.20-68.0: Implemented
266 :cli: Yes
267 :scope: Global
268 :dyn: No
269 :vartype: String
270 :default: percona-audit
271
272This variable is used to specify the ``ident`` value for syslog. This variable has the same meaning as the appropriate parameter described in the `syslog(3) manual <http://linux.die.net/man/3/syslog>`_.
273
274.. variable:: audit_log_syslog_facility
275
276 :version 5.6.20-68.0: Implemented
277 :cli: Yes
278 :scope: Global
279 :dyn: No
280 :vartype: String
281 :default: LOG_USER
282
283This variable is used to specify the ``facility`` value for syslog. This variable has the same meaning as the appropriate parameter described in the `syslog(3) manual <http://linux.die.net/man/3/syslog>`_.
284
285.. variable:: audit_log_syslog_priority
286
287 :version 5.6.20-68.0: Implemented
288 :cli: Yes
289 :scope: Global
290 :dyn: No
291 :vartype: String
292 :default: LOG_INFO
293
294This variable is used to specify the ``priority`` value for syslog. This variable has the same meaning as the appropriate parameter described in the `syslog(3) manual <http://linux.die.net/man/3/syslog>`_.
228295
229Version Specific Information296Version Specific Information
230============================297============================
231298
232 * :rn:`5.6.17-65.0`299 * :rn:`5.6.17-65.0`
233 Audit Log plugin has been implemented in |Percona Server|.300 Audit Log plugin has been implemented in |Percona Server|.
301 * :rn:`5.6.20-68.0`
302 |Percona Server| :ref:`audit_log_plugin` now supports ``JSON`` and ``CSV`` log formats.
303 * :rn:`5.6.20-68.0`
304 |Percona Server| :ref:`audit_log_plugin` now supports :ref:`streaming the audit log to syslog <streaming_to_syslog>`.
234305
306
235307
=== added file 'doc/source/release-notes/Percona-Server-5.6.20-68.0.rst'
--- doc/source/release-notes/Percona-Server-5.6.20-68.0.rst 1970-01-01 00:00:00 +0000
+++ doc/source/release-notes/Percona-Server-5.6.20-68.0.rst 2014-08-29 10:14:25 +0000
@@ -0,0 +1,48 @@
1.. rn:: 5.6.20-68.0
2
3==============================
4 |Percona Server| 5.6.20-68.0
5==============================
6
7Percona is glad to announce the release of |Percona Server| 5.6.20-68.0 on August 29th, 2014 (Downloads are available `here <http://www.percona.com/downloads/Percona-Server-5.6/Percona-Server-5.6.20-68.0/>`_ and from the :doc:`Percona Software Repositories </installation>`).
8
9Based on `MySQL 5.6.20 <http://dev.mysql.com/doc/relnotes/mysql/5.6/en/news-5-6-20.html>`_, including all the bug fixes in it, |Percona Server| 5.6.20-68.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.20-68.0 milestone at Launchpad <https://launchpad.net/percona-server/+milestone/5.6.20-68.0>`_.
10
11
12New Features
13============
14
15 |Percona Server| has implemented the |MySQL| 5.7 ``SHOW SLAVE STATUS NONBLOCKING`` syntax for :ref:`show_slave_status_nolock` feature. The existing ``SHOW SLAVE STATUS NOLOCK`` is kept as a deprecated alias and will be removed in |Percona Server| 5.7. There were no functional changes for the feature.
16
17 |Percona Server| :ref:`audit_log_plugin` now supports ``JSON`` and ``CSV`` formats. The format choice is controlled by :variable:`audit_log_format` variable.
18
19 |Percona Server| :ref:`audit_log_plugin` now supports :ref:`streaming the audit log to syslog <streaming_to_syslog>`.
20
21 TokuDB storage engine package has been updated to version 7.1.8.
22
23Bugs Fixed
24==========
25
26 Querying :table:`INNODB_CHANGED_PAGES` with a range condition ``START_LSN > x AND END_LSN < y`` would lead to a server crash if the range was empty with x greater than y. Bug fixed :bug:`1202252` (*Jan Lindström* and *Sergei Petrunia*).
27
28 SQL statements of other connections were missing in the output of ``SHOW ENGINE INNODB STATUS``, in ``LATEST DETECTED DEADLOCK`` and ``TRANSACTIONS`` sections. This bug was introduced by :ref:`statement_timeout` patch in |Percona Server| :rn:`5.6.13-61.0`. Bug fixed :bug:`1328824`.
29
30 Some of TokuDB distribution files were missing in the TokuDB binary tarball. Bug fixed :bug:`1338945`.
31
32 With :ref:`changed_page_tracking` feature enabled, queries from the :table:`INNODB_CHANGED_PAGES` could read the bitmap data whose write was in still progress. This would cause the query to fail with an ``ER_CANT_FIND_SYSTEM_REC`` and a warning printed to the server error log. The workaround is to add an appropriate ``END_LSN``-limiting condition to the query. Bug fixed :bug:`1193332`.
33
34 ``mysqld-debug`` was missing from *Debian* packages. This regression was introduced in |Percona Server| :rn:`5.6.16-64.0`. Bug fixed :bug:`1290087`.
35
36 Fixed a memory leak in :ref:`slowlog_rotation`. Bug fixed :bug:`1314138`.
37
38 The audit log plugin would write log with XML syntax errors when ``OLD`` and ``NEW`` formats were used. Bug fixed :bug:`1320879`.
39
40 Combination of :ref:`log_archiving`, :ref:`changed_page_tracking`, and small |InnoDB| logs could hang the server on the bootstrap shutdown. Bug fixed :bug:`1326379`.
41
42 :option:`--tc-heuristic-recover` option values were broken. Bug fixed :bug:`1334330` (upstream :mysqlbug:`70860`).
43
44 If the bitmap directory has a bitmap file sequence with a start LSN of one file less than a start LSN of the previous file, a debug build would assert when queries were run on :table:`INNODB_CHANGED_PAGES` table. Bug fixed :bug:`1342494`.
45
46Other bugs fixed: :bug:`1337247`, :bug:`1350386`, :bug:`1208371`, :bug:`1261341`, :bug:`1151723`, :bug:`1182050`, :bug:`1182068`, :bug:`1182072`, :bug:`1184287`, :bug:`1280875`, :bug:`1338937`, :bug:`1334743`, :bug:`1349394`, :bug:`1182046`, :bug:`1182049`, and :bug:`1328482` (upstream :mysqlbug:`73418`).
47
48
049
=== modified file 'doc/source/release-notes/release-notes_index.rst'
--- doc/source/release-notes/release-notes_index.rst 2014-08-22 13:31:49 +0000
+++ doc/source/release-notes/release-notes_index.rst 2014-08-29 10:14:25 +0000
@@ -6,6 +6,7 @@
6 :maxdepth: 16 :maxdepth: 1
7 :glob:7 :glob:
88
9 Percona-Server-5.6.20-68.0
9 Percona-Server-5.6.19-67.010 Percona-Server-5.6.19-67.0
10 Percona-Server-5.6.17-66.011 Percona-Server-5.6.17-66.0
11 Percona-Server-5.6.17-65.012 Percona-Server-5.6.17-65.0
1213
=== modified file 'doc/source/reliability/show_slave_status_nolock.rst'
--- doc/source/reliability/show_slave_status_nolock.rst 2014-02-05 15:41:41 +0000
+++ doc/source/reliability/show_slave_status_nolock.rst 2014-08-29 10:14:25 +0000
@@ -10,16 +10,21 @@
1010
11This features modifies the ``SHOW SLAVE STATUS`` syntax to allow: ::11This features modifies the ``SHOW SLAVE STATUS`` syntax to allow: ::
1212
13 SHOW SLAVE STATUS NOLOCK13 SHOW SLAVE STATUS NONBLOCKING
1414
15This will display the slave's status as if there were no lock, allowing the user to detect and understand the situation that is occurring.15This will display the slave's status as if there were no lock, allowing the user to detect and understand the situation that is occurring.
1616
17.. note:: 17.. note::
1818
19 The information given when ``NOLOCK`` is used may be slightly inconsistent with the actual situation while the lock is being held.19 The information given when ``NONBLOCKING`` is used may be slightly inconsistent with the actual situation while the lock is being held.
2020
21.. note::
22
23 |Percona Server| originally used ``SHOW SLAVE STATUS NOLOCK`` syntax for this feature. As of :rn:`5.6.20-68.0` release, |Percona Server| implements ``SHOW SLAVE STATUS NONBLOCKING`` syntax, which comes from |MySQL| 5.7. The ``NOLOCK`` one has been deprecated and will be removed in |Percona Server| 5.7.
2124
22Version Specific Information25Version Specific Information
23============================26============================
2427
25 * :rn:`5.6.11-60.3`: Feature ported from |Percona Server| 5.5.28 * :rn:`5.6.11-60.3`: Feature ported from |Percona Server| 5.5.
29
30 * :rn:`5.6.20-68.0`: |Percona Server| implemented the ``NONBLOCKING`` syntax from |MySQL| 5.7 and deprecated the ``NOLOCK`` syntax.
2631
=== modified file 'doc/source/upstream-bug-fixes.rst'
--- doc/source/upstream-bug-fixes.rst 2014-08-22 13:31:49 +0000
+++ doc/source/upstream-bug-fixes.rst 2014-08-29 10:14:25 +0000
@@ -5,33 +5,45 @@
5=============================================================5=============================================================
66
7+-------------------------------------------------------------------------------------------------------------+7+-------------------------------------------------------------------------------------------------------------+
8|:Upstream bug: :mysqlbug:`70860` - --tc-heuristic-recover option values are broken |
9|:Launchpad bug: :bug:`1334330` |
10|:Upstream state: Open (checked on 2014-08-29) |
11|:Fix Released: :rn:`5.6.20-68.0` |
12|:Upstream fix: N/A |
13+-------------------------------------------------------------------------------------------------------------+
14|:Upstream bug: :mysqlbug:`73418` - Add --manual-lldb option to mysql-test-run.pl |
15|:Launchpad bug: :bug:`1328482` |
16|:Upstream state: Verified (checked on 2014-08-29) |
17|:Fix Released: :rn:`5.6.20-68.0` |
18|:Upstream fix: N/A |
19+-------------------------------------------------------------------------------------------------------------+
8|:Upstream bug: :mysqlbug:`67806` - Multiple user level lock per connection |20|:Upstream bug: :mysqlbug:`67806` - Multiple user level lock per connection |
9|:Launchpad bug: N/A ` |21|:Launchpad bug: N/A ` |
10|:Upstream state: Verified (checked on 2014-06-27) |22|:Upstream state: Verified (checked on 2014-08-29) |
11|:Fix Released: :rn:`5.6.19-67.0` |23|:Fix Released: :rn:`5.6.19-67.0` |
12|:Upstream fix: N/A |24|:Upstream fix: N/A |
13+-------------------------------------------------------------------------------------------------------------+25+-------------------------------------------------------------------------------------------------------------+
14|:Upstream bug: :mysqlbug:`1118` - Allow multiple concurrent locks with GET_LOCK() |26|:Upstream bug: :mysqlbug:`1118` - Allow multiple concurrent locks with GET_LOCK() |
15|:Launchpad bug: N/A |27|:Launchpad bug: N/A |
16|:Upstream state: Verified (checked on 2014-06-27) |28|:Upstream state: Verified (checked on 2014-08-29) |
17|:Fix Released: :rn:`5.6.19-67.0` |29|:Fix Released: :rn:`5.6.19-67.0` |
18|:Upstream fix: N/A |30|:Upstream fix: N/A |
19+-------------------------------------------------------------------------------------------------------------+31+-------------------------------------------------------------------------------------------------------------+
20|:Upstream bug: :mysqlbug:`72615` - MTR --mysqld=--default-storage-engine=foo incompatible w/ dynamically... |32|:Upstream bug: :mysqlbug:`72615` - MTR --mysqld=--default-storage-engine=foo incompatible w/ dynamically... |
21|:Launchpad bug: :bug:`1318537` |33|:Launchpad bug: :bug:`1318537` |
22|:Upstream state: Verified (checked on 2014-06-27) |34|:Upstream state: Verified (checked on 2014-08-29) |
23|:Fix Released: :rn:`5.6.17-66.0` |35|:Fix Released: :rn:`5.6.17-66.0` |
24|:Upstream fix: N/A |36|:Upstream fix: N/A |
25+-------------------------------------------------------------------------------------------------------------+37+-------------------------------------------------------------------------------------------------------------+
26|:Upstream bug: :mysqlbug:`72163` - Rev 5774 broke rpl_plugin_load |38|:Upstream bug: :mysqlbug:`72163` - Rev 5774 broke rpl_plugin_load |
27|:Launchpad bug: :bug:`1299688` |39|:Launchpad bug: :bug:`1299688` |
28|:Upstream state: Verified (checked on 2014-06-27) |40|:Upstream state: Verified (checked on 2014-08-29) |
29|:Fix Released: :rn:`5.6.17-65.0` |41|:Fix Released: :rn:`5.6.17-65.0` |
30|:Upstream fix: N/A |42|:Upstream fix: N/A |
31+-------------------------------------------------------------------------------------------------------------+43+-------------------------------------------------------------------------------------------------------------+
32|:Upstream bug: :mysqlbug:`60782` - Audit plugin API: no MYSQL_AUDIT_GENERAL_LOG notifications with general...|44|:Upstream bug: :mysqlbug:`60782` - Audit plugin API: no MYSQL_AUDIT_GENERAL_LOG notifications with general...|
33|:Launchpad bug: :bug:`1182535` |45|:Launchpad bug: :bug:`1182535` |
34|:Upstream state: Verified (checked on 2014-06-27) |46|:Upstream state: Closed |
35|:Fix Released: :rn:`5.6.17-65.0` |47|:Fix Released: :rn:`5.6.17-65.0` |
36|:Upstream fix: N/A |48|:Upstream fix: N/A |
37+-------------------------------------------------------------------------------------------------------------+49+-------------------------------------------------------------------------------------------------------------+
@@ -43,19 +55,19 @@
43+-------------------------------------------------------------------------------------------------------------+55+-------------------------------------------------------------------------------------------------------------+
44|:Upstream bug: :mysqlbug:`71374` - Slave IO thread won't attempt auto reconnect to the master/error-code 1159|56|:Upstream bug: :mysqlbug:`71374` - Slave IO thread won't attempt auto reconnect to the master/error-code 1159|
45|:Launchpad bug: :bug:`1268729` |57|:Launchpad bug: :bug:`1268729` |
46|:Upstream state: Verified (checked on 2014-06-27) |58|:Upstream state: Verified (checked on 2014-08-29) |
47|:Fix Released: :rn:`5.6.16-64.1` |59|:Fix Released: :rn:`5.6.16-64.1` |
48|:Upstream fix: N/A |60|:Upstream fix: N/A |
49+-------------------------------------------------------------------------------------------------------------+61+-------------------------------------------------------------------------------------------------------------+
50|:Upstream bug: :mysqlbug:`71988` - page_cleaner: aggressive background flushing |62|:Upstream bug: :mysqlbug:`71988` - page_cleaner: aggressive background flushing |
51|:Launchpad bug: :bug:`1238039` |63|:Launchpad bug: :bug:`1238039` |
52|:Upstream state: Verified (checked on 2014-06-27) |64|:Upstream state: Verified (checked on 2014-08-29) |
53|:Fix Released: :rn:`5.6.16-64.0` |65|:Fix Released: :rn:`5.6.16-64.0` |
54|:Upstream fix: N/A |66|:Upstream fix: N/A |
55+-------------------------------------------------------------------------------------------------------------+67+-------------------------------------------------------------------------------------------------------------+
56|:Upstream bug: :mysqlbug:`71624` - printf size_t results in a fatal warning in 32-bit debug builds |68|:Upstream bug: :mysqlbug:`71624` - printf size_t results in a fatal warning in 32-bit debug builds |
57|:Launchpad bug: :bug:`1277505` |69|:Launchpad bug: :bug:`1277505` |
58|:Upstream state: Can't repeat (checked on 2014-06-27) |70|:Upstream state: Can't repeat (checked on 2014-08-29) |
59|:Fix Released: :rn:`5.6.16-64.0` |71|:Fix Released: :rn:`5.6.16-64.0` |
60|:Upstream fix: N/A |72|:Upstream fix: N/A |
61+-------------------------------------------------------------------------------------------------------------+73+-------------------------------------------------------------------------------------------------------------+
@@ -97,13 +109,13 @@
97+-------------------------------------------------------------------------------------------------------------+109+-------------------------------------------------------------------------------------------------------------+
98|:Upstream bug: :mysqlbug:`71270` - Failures to end bulk insert for partitioned tables handled incorrectly |110|:Upstream bug: :mysqlbug:`71270` - Failures to end bulk insert for partitioned tables handled incorrectly |
99|:Launchpad bug: :bug:`1204871` |111|:Launchpad bug: :bug:`1204871` |
100|:Upstream state: Verified (checked on 2014-06-27) |112|:Upstream state: Verified (checked on 2014-08-29) |
101|:Fix Released: :rn:`5.6.16-64.0` |113|:Fix Released: :rn:`5.6.16-64.0` |
102|:Upstream fix: N/A |114|:Upstream fix: N/A |
103+-------------------------------------------------------------------------------------------------------------+115+-------------------------------------------------------------------------------------------------------------+
104|:Upstream bug: :mysqlbug:`71217` - Threadpool - add thd_wait_begin/thd_wait_end to the network IO functions |116|:Upstream bug: :mysqlbug:`71217` - Threadpool - add thd_wait_begin/thd_wait_end to the network IO functions |
105|:Launchpad bug: :bug:`1159743` |117|:Launchpad bug: :bug:`1159743` |
106|:Upstream state: Open (checked on 2014-06-27) |118|:Upstream state: Open (checked on 2014-08-29) |
107|:Fix Released: :rn:`5.6.15-63.0` |119|:Fix Released: :rn:`5.6.15-63.0` |
108|:Upstream fix: N/A |120|:Upstream fix: N/A |
109+-------------------------------------------------------------------------------------------------------------+121+-------------------------------------------------------------------------------------------------------------+
@@ -121,7 +133,7 @@
121+-------------------------------------------------------------------------------------------------------------+133+-------------------------------------------------------------------------------------------------------------+
122|:Upstream bug: :mysqlbug:`71411` - buf_flush_LRU() does not return correct number in case of compressed pages|134|:Upstream bug: :mysqlbug:`71411` - buf_flush_LRU() does not return correct number in case of compressed pages|
123|:Launchpad bug: :bug:`1231918` |135|:Launchpad bug: :bug:`1231918` |
124|:Upstream state: Verified (checked on 2014-06-27) |136|:Upstream state: Verified (checked on 2014-08-29) |
125|:Fix Released: :rn:`5.6.13-61.0` |137|:Fix Released: :rn:`5.6.13-61.0` |
126|:Upstream fix: N/A |138|:Upstream fix: N/A |
127+-------------------------------------------------------------------------------------------------------------+139+-------------------------------------------------------------------------------------------------------------+
@@ -133,7 +145,7 @@
133+-------------------------------------------------------------------------------------------------------------+145+-------------------------------------------------------------------------------------------------------------+
134|:Upstream bug: :mysqlbug:`70490` - Suppression is too strict on some systems |146|:Upstream bug: :mysqlbug:`70490` - Suppression is too strict on some systems |
135|:Launchpad bug: :bug:`1205196` |147|:Launchpad bug: :bug:`1205196` |
136|:Upstream state: No Feedback (checked on 2014-06-27) |148|:Upstream state: No Feedback (checked on 2014-08-29) |
137|:Fix Released: :rn:`5.6.13-61.0` |149|:Fix Released: :rn:`5.6.13-61.0` |
138|:Upstream fix: N/A |150|:Upstream fix: N/A |
139+-------------------------------------------------------------------------------------------------------------+151+-------------------------------------------------------------------------------------------------------------+
@@ -145,7 +157,7 @@
145+-------------------------------------------------------------------------------------------------------------+157+-------------------------------------------------------------------------------------------------------------+
146|:Upstream bug: :mysqlbug:`70500` - Page cleaner should perform LRU flushing regardless of server activity |158|:Upstream bug: :mysqlbug:`70500` - Page cleaner should perform LRU flushing regardless of server activity |
147|:Launchpad bug: :bug:`1234562` |159|:Launchpad bug: :bug:`1234562` |
148|:Upstream state: Open (checked on 2014-06-27) |160|:Upstream state: Open (checked on 2014-08-29) |
149|:Fix Released: :rn:`5.6.13-61.0` |161|:Fix Released: :rn:`5.6.13-61.0` |
150|:Upstream fix: N/A |162|:Upstream fix: N/A |
151+-------------------------------------------------------------------------------------------------------------+163+-------------------------------------------------------------------------------------------------------------+
@@ -163,31 +175,31 @@
163+-------------------------------------------------------------------------------------------------------------+175+-------------------------------------------------------------------------------------------------------------+
164|:Upstream bug: :mysqlbug:`68481` - InnoDB LRU flushing for MySQL 5.6 needs work |176|:Upstream bug: :mysqlbug:`68481` - InnoDB LRU flushing for MySQL 5.6 needs work |
165|:Launchpad bug: :bug:`1232406` |177|:Launchpad bug: :bug:`1232406` |
166|:Upstream state: Verified (checked on 2014-06-27) |178|:Upstream state: Verified (checked on 2014-08-29) |
167|:Fix Released: :rn:`5.6.13-61.0` |179|:Fix Released: :rn:`5.6.13-61.0` |
168|:Upstream fix: N/A |180|:Upstream fix: N/A |
169+-------------------------------------------------------------------------------------------------------------+181+-------------------------------------------------------------------------------------------------------------+
170|:Upstream bug: :mysqlbug:`70453` - Add hard timeouts to page cleaner flushes |182|:Upstream bug: :mysqlbug:`70453` - Add hard timeouts to page cleaner flushes |
171|:Launchpad bug: :bug:`1232101` |183|:Launchpad bug: :bug:`1232101` |
172|:Upstream state: Verified (checked on 2014-06-27) |184|:Upstream state: Verified (checked on 2014-08-29) |
173|:Fix Released: :rn:`5.6.13-61.0` |185|:Fix Released: :rn:`5.6.13-61.0` |
174|:Upstream fix: N/A |186|:Upstream fix: N/A |
175+-------------------------------------------------------------------------------------------------------------+187+-------------------------------------------------------------------------------------------------------------+
176|:Upstream bug: :mysqlbug:`69170` - buf_flush_LRU is lazy |188|:Upstream bug: :mysqlbug:`69170` - buf_flush_LRU is lazy |
177|:Launchpad bug: :bug:`1231918` |189|:Launchpad bug: :bug:`1231918` |
178|:Upstream state: Verified (checked on 2014-06-27) |190|:Upstream state: Verified (checked on 2014-08-29) |
179|:Fix Released: :rn:`5.6.13-61.0` |191|:Fix Released: :rn:`5.6.13-61.0` |
180|:Upstream fix: N/A |192|:Upstream fix: N/A |
181+-------------------------------------------------------------------------------------------------------------+193+-------------------------------------------------------------------------------------------------------------+
182|:Upstream bug: :mysqlbug:`68555` - thread convoys from log_checkpoint_margin with innodb_buffer_pool_inst... |194|:Upstream bug: :mysqlbug:`68555` - thread convoys from log_checkpoint_margin with innodb_buffer_pool_inst... |
183|:Launchpad bug: :bug:`1236884` |195|:Launchpad bug: :bug:`1236884` |
184|:Upstream state: Verified (checked on 2014-06-27) |196|:Upstream state: Verified (checked on 2014-08-29) |
185|:Fix Released: :rn:`5.6.13-61.0` |197|:Fix Released: :rn:`5.6.13-61.0` |
186|:Upstream fix: N/A |198|:Upstream fix: N/A |
187+-------------------------------------------------------------------------------------------------------------+199+-------------------------------------------------------------------------------------------------------------+
188|:Upstream bug: :mysqlbug:`70228` - Is buf_LRU_free_page() really supposed to make non-zip block sticky at ...|200|:Upstream bug: :mysqlbug:`70228` - Is buf_LRU_free_page() really supposed to make non-zip block sticky at ...|
189|:Launchpad bug: :bug:`1220544` |201|:Launchpad bug: :bug:`1220544` |
190|:Upstream state: Verified (checked on 2014-06-27) |202|:Upstream state: Verified (checked on 2014-08-29) |
191|:Fix Released: :rn:`5.6.13-60.6` |203|:Fix Released: :rn:`5.6.13-60.6` |
192|:Upstream fix: N/A |204|:Upstream fix: N/A |
193+-------------------------------------------------------------------------------------------------------------+205+-------------------------------------------------------------------------------------------------------------+
@@ -205,13 +217,13 @@
205+-------------------------------------------------------------------------------------------------------------+217+-------------------------------------------------------------------------------------------------------------+
206|:Upstream bug: :mysqlbug:`70216` - Unnecessary overhead from persistent adaptive hash index latches |218|:Upstream bug: :mysqlbug:`70216` - Unnecessary overhead from persistent adaptive hash index latches |
207|:Launchpad bug: :bug:`1218347` |219|:Launchpad bug: :bug:`1218347` |
208|:Upstream state: Verified (checked on 2014-06-27) |220|:Upstream state: Verified (checked on 2014-08-29) |
209|:Fix Released: :rn:`5.6.13-60.6` |221|:Fix Released: :rn:`5.6.13-60.6` |
210|:Upstream fix: N/A |222|:Upstream fix: N/A |
211+-------------------------------------------------------------------------------------------------------------+223+-------------------------------------------------------------------------------------------------------------+
212|:Upstream bug: :mysqlbug:`62018` - innodb adaptive hash index mutex contention |224|:Upstream bug: :mysqlbug:`62018` - innodb adaptive hash index mutex contention |
213|:Launchpad bug: :bug:`1216804` |225|:Launchpad bug: :bug:`1216804` |
214|:Upstream state: Verified (checked on 2014-06-27) |226|:Upstream state: Verified (checked on 2014-08-29) |
215|:Fix Released: :rn:`5.6.13-60.6` |227|:Fix Released: :rn:`5.6.13-60.6` |
216|:Upstream fix: N/A |228|:Upstream fix: N/A |
217+-------------------------------------------------------------------------------------------------------------+229+-------------------------------------------------------------------------------------------------------------+
@@ -229,13 +241,13 @@
229+-------------------------------------------------------------------------------------------------------------+241+-------------------------------------------------------------------------------------------------------------+
230|:Upstream bug: :mysqlbug:`42415` - UPDATE/DELETE with LIMIT clause unsafe for SBL even with ORDER BY PK ... |242|:Upstream bug: :mysqlbug:`42415` - UPDATE/DELETE with LIMIT clause unsafe for SBL even with ORDER BY PK ... |
231|:Launchpad bug: :bug:`1132194` |243|:Launchpad bug: :bug:`1132194` |
232|:Upstream state: Verified (checked on 2014-06-27) |244|:Upstream state: Verified (checked on 2014-08-29) |
233|:Fix Released: :rn:`5.6.13-60.5` |245|:Fix Released: :rn:`5.6.13-60.5` |
234|:Upstream fix: N/A |246|:Upstream fix: N/A |
235+-------------------------------------------------------------------------------------------------------------+247+-------------------------------------------------------------------------------------------------------------+
236|:Upstream bug: :mysqlbug:`69639` - mysql failed to build with dtrace Sun D 1.11 |248|:Upstream bug: :mysqlbug:`69639` - mysql failed to build with dtrace Sun D 1.11 |
237|:Launchpad bug: :bug:`1196460` |249|:Launchpad bug: :bug:`1196460` |
238|:Upstream state: Open (checked on 2014-06-27) |250|:Upstream state: Open (checked on 2014-08-29) |
239|:Fix Released: :rn:`5.6.13-60.5` |251|:Fix Released: :rn:`5.6.13-60.5` |
240|:Upstream fix: N/A |252|:Upstream fix: N/A |
241+-------------------------------------------------------------------------------------------------------------+253+-------------------------------------------------------------------------------------------------------------+
@@ -253,7 +265,7 @@
253+-------------------------------------------------------------------------------------------------------------+265+-------------------------------------------------------------------------------------------------------------+
254|:Upstream bug: :mysqlbug:`69856` - mysql_install_db does not function properly in 5.6 for debug builds |266|:Upstream bug: :mysqlbug:`69856` - mysql_install_db does not function properly in 5.6 for debug builds |
255|:Launchpad bug: :bug:`1179359` |267|:Launchpad bug: :bug:`1179359` |
256|:Upstream state: Verified (checked on 2014-06-27) |268|:Upstream state: Verified (checked on 2014-08-29) |
257|:Fix Released: :rn:`5.6.12-60.4` |269|:Fix Released: :rn:`5.6.12-60.4` |
258|:Upstream fix: N/A |270|:Upstream fix: N/A |
259+-------------------------------------------------------------------------------------------------------------+271+-------------------------------------------------------------------------------------------------------------+
@@ -265,7 +277,7 @@
265+-------------------------------------------------------------------------------------------------------------+277+-------------------------------------------------------------------------------------------------------------+
266|:Upstream bug: :mysqlbug:`71183` - os_file_fsync() should handle fsync() returning EINTR |278|:Upstream bug: :mysqlbug:`71183` - os_file_fsync() should handle fsync() returning EINTR |
267|:Launchpad bug: :bug:`1262651` |279|:Launchpad bug: :bug:`1262651` |
268|:Upstream state: Verified (checked on 2014-06-27) |280|:Upstream state: Verified (checked on 2014-08-29) |
269|:Fix Released: :rn:`5.6.11-60.3` |281|:Fix Released: :rn:`5.6.11-60.3` |
270|:Upstream fix: N/A |282|:Upstream fix: N/A |
271+-------------------------------------------------------------------------------------------------------------+283+-------------------------------------------------------------------------------------------------------------+
@@ -295,7 +307,7 @@
295+-------------------------------------------------------------------------------------------------------------+307+-------------------------------------------------------------------------------------------------------------+
296|:Upstream bug: :mysqlbug:`68714` - Remove literal statement digest values from perfschema tests |308|:Upstream bug: :mysqlbug:`68714` - Remove literal statement digest values from perfschema tests |
297|:Launchpad bug: :bug:`1157078` |309|:Launchpad bug: :bug:`1157078` |
298|:Upstream state: Verified (checked on 2014-06-27) |310|:Upstream state: Verified (checked on 2014-08-29) |
299|:Fix Released: :rn:`5.6.11-60.3` |311|:Fix Released: :rn:`5.6.11-60.3` |
300|:Upstream fix: N/A |312|:Upstream fix: N/A |
301+-------------------------------------------------------------------------------------------------------------+313+-------------------------------------------------------------------------------------------------------------+
@@ -319,13 +331,13 @@
319+-------------------------------------------------------------------------------------------------------------+331+-------------------------------------------------------------------------------------------------------------+
320|:Upstream bug: :mysqlbug:`68970` - fsp_reserve_free_extents switches from small to big tblspace handling ... |332|:Upstream bug: :mysqlbug:`68970` - fsp_reserve_free_extents switches from small to big tblspace handling ... |
321|:Launchpad bug: :bug:`1169494` |333|:Launchpad bug: :bug:`1169494` |
322|:Upstream state: Verified (checked on 2014-06-27) |334|:Upstream state: Verified (checked on 2014-08-29) |
323|:Fix Released: :rn:`5.6.11-60.3` |335|:Fix Released: :rn:`5.6.11-60.3` |
324|:Upstream fix: N/A |336|:Upstream fix: N/A |
325+-------------------------------------------------------------------------------------------------------------+337+-------------------------------------------------------------------------------------------------------------+
326|:Upstream bug: :mysqlbug:`68713` - create_duplicate_weedout_tmp_table() leaves key_part_flag uninitialized |338|:Upstream bug: :mysqlbug:`68713` - create_duplicate_weedout_tmp_table() leaves key_part_flag uninitialized |
327|:Launchpad bug: :bug:`1157037` |339|:Launchpad bug: :bug:`1157037` |
328|:Upstream state: Verified (checked on 2014-06-27) |340|:Upstream state: Verified (checked on 2014-08-29) |
329|:Fix Released: :rn:`5.6.11-60.3` |341|:Fix Released: :rn:`5.6.11-60.3` |
330|:Upstream fix: N/A |342|:Upstream fix: N/A |
331+-------------------------------------------------------------------------------------------------------------+343+-------------------------------------------------------------------------------------------------------------+
@@ -337,13 +349,13 @@
337+-------------------------------------------------------------------------------------------------------------+349+-------------------------------------------------------------------------------------------------------------+
338|:Upstream bug: :mysqlbug:`68999` - SSL_OP_NO_COMPRESSION not defined |350|:Upstream bug: :mysqlbug:`68999` - SSL_OP_NO_COMPRESSION not defined |
339|:Launchpad bug: :bug:`1183610` |351|:Launchpad bug: :bug:`1183610` |
340|:Upstream state: No Feedback (checked on 2014-06-27) |352|:Upstream state: No Feedback (checked on 2014-08-29) |
341|:Fix Released: :rn:`5.6.11-60.3` |353|:Fix Released: :rn:`5.6.11-60.3` |
342|:Upstream fix: N/A |354|:Upstream fix: N/A |
343+-------------------------------------------------------------------------------------------------------------+355+-------------------------------------------------------------------------------------------------------------+
344|:Upstream bug: :mysqlbug:`68845` - Unnecessary log_sys->mutex reacquisition in mtr_log_reserve_and_write() |356|:Upstream bug: :mysqlbug:`68845` - Unnecessary log_sys->mutex reacquisition in mtr_log_reserve_and_write() |
345|:Launchpad bug: :bug:`1163439` |357|:Launchpad bug: :bug:`1163439` |
346|:Upstream state: Verified (checked on 2014-06-27) |358|:Upstream state: Verified (checked on 2014-08-29) |
347|:Fix Released: :rn:`5.6.11-60.3` |359|:Fix Released: :rn:`5.6.11-60.3` |
348|:Upstream fix: N/A |360|:Upstream fix: N/A |
349+-------------------------------------------------------------------------------------------------------------+361+-------------------------------------------------------------------------------------------------------------+
@@ -373,7 +385,7 @@
373+-------------------------------------------------------------------------------------------------------------+385+-------------------------------------------------------------------------------------------------------------+
374|:Upstream bug: :mysqlbug:`68476` - Suboptimal code in my_strnxfrm_simple() |386|:Upstream bug: :mysqlbug:`68476` - Suboptimal code in my_strnxfrm_simple() |
375|:Launchpad bug: :bug:`1132350` |387|:Launchpad bug: :bug:`1132350` |
376|:Upstream state: Verified (checked on 2014-06-27) |388|:Upstream state: Verified (checked on 2014-08-29) |
377|:Fix Released: :rn:`5.6.11-60.3` |389|:Fix Released: :rn:`5.6.11-60.3` |
378|:Upstream fix: N/A |390|:Upstream fix: N/A |
379+-------------------------------------------------------------------------------------------------------------+391+-------------------------------------------------------------------------------------------------------------+
@@ -433,7 +445,7 @@
433+-------------------------------------------------------------------------------------------------------------+445+-------------------------------------------------------------------------------------------------------------+
434|:Upstream bug: :mysqlbug:`61178` - Incorrect implementation of intersect(ulonglong) in non-optimized Bitmap..|446|:Upstream bug: :mysqlbug:`61178` - Incorrect implementation of intersect(ulonglong) in non-optimized Bitmap..|
435|:Launchpad bug: :bug:`1042517` |447|:Launchpad bug: :bug:`1042517` |
436|:Upstream state: Verified (checked on 2014-06-27) |448|:Upstream state: Verified (checked on 2014-08-29) |
437|:Fix Released: :rn:`5.6.11-60.3` |449|:Fix Released: :rn:`5.6.11-60.3` |
438|:Upstream fix: N/A |450|:Upstream fix: N/A |
439+-------------------------------------------------------------------------------------------------------------+451+-------------------------------------------------------------------------------------------------------------+
@@ -445,7 +457,7 @@
445+-------------------------------------------------------------------------------------------------------------+457+-------------------------------------------------------------------------------------------------------------+
446|:Upstream bug: :mysqlbug:`64800` - mysqldump with --include-master-host-port putting quotes around port no. | 458|:Upstream bug: :mysqlbug:`64800` - mysqldump with --include-master-host-port putting quotes around port no. |
447|:Launchpad bug: :bug:`1013432` |459|:Launchpad bug: :bug:`1013432` |
448|:Upstream state: Verified (checked on 2014-06-27) |460|:Upstream state: Verified (checked on 2014-08-29) |
449|:Fix Released: :rn:`5.6.11-60.3` |461|:Fix Released: :rn:`5.6.11-60.3` |
450|:Upstream fix: N/A |462|:Upstream fix: N/A |
451+-------------------------------------------------------------------------------------------------------------+463+-------------------------------------------------------------------------------------------------------------+
@@ -475,13 +487,13 @@
475+-------------------------------------------------------------------------------------------------------------+487+-------------------------------------------------------------------------------------------------------------+
476|:Upstream bug: :mysqlbug:`25007` - memory tables with dynamic rows format |488|:Upstream bug: :mysqlbug:`25007` - memory tables with dynamic rows format |
477|:Launchpad bug: N/A |489|:Launchpad bug: N/A |
478|:Upstream state: Verified (checked on 2014-06-27) |490|:Upstream state: Verified (checked on 2014-08-29) |
479|:Fix Released: :rn:`5.6.11-60.3` |491|:Fix Released: :rn:`5.6.11-60.3` |
480|:Upstream fix: N/A |492|:Upstream fix: N/A |
481+-------------------------------------------------------------------------------------------------------------+493+-------------------------------------------------------------------------------------------------------------+
482|:Upstream bug: :mysqlbug:`61595` - mysql-test/include/wait_for_slave_param.inc timeout logic is incorrect |494|:Upstream bug: :mysqlbug:`61595` - mysql-test/include/wait_for_slave_param.inc timeout logic is incorrect |
483|:Launchpad bug: :bug:`800035` |495|:Launchpad bug: :bug:`800035` |
484|:Upstream state: Verified (checked on 2014-06-27) |496|:Upstream state: Verified (checked on 2014-08-29) |
485|:Fix Released: :rn:`5.6.11-60.3` |497|:Fix Released: :rn:`5.6.11-60.3` |
486|:Upstream fix: N/A |498|:Upstream fix: N/A |
487+-------------------------------------------------------------------------------------------------------------+499+-------------------------------------------------------------------------------------------------------------+
@@ -493,7 +505,7 @@
493+-------------------------------------------------------------------------------------------------------------+505+-------------------------------------------------------------------------------------------------------------+
494|:Upstream bug: :mysqlbug:`68116` - InnoDB monitor may hit an assertion error in buf_page_get_gen in debug ...|506|:Upstream bug: :mysqlbug:`68116` - InnoDB monitor may hit an assertion error in buf_page_get_gen in debug ...|
495|:Launchpad bug: :bug:`1100178` |507|:Launchpad bug: :bug:`1100178` |
496|:Upstream state: Verified (checked on 2014-06-27) |508|:Upstream state: Verified (checked on 2014-08-29) |
497|:Fix Released: :rn:`5.6.10-60.2` |509|:Fix Released: :rn:`5.6.10-60.2` |
498|:Upstream fix: N/A |510|:Upstream fix: N/A |
499+-------------------------------------------------------------------------------------------------------------+511+-------------------------------------------------------------------------------------------------------------+
@@ -505,13 +517,13 @@
505+-------------------------------------------------------------------------------------------------------------+517+-------------------------------------------------------------------------------------------------------------+
506|:Upstream bug: :mysqlbug:`20001` - Support for temp-tables in INFORMATION_SCHEMA |518|:Upstream bug: :mysqlbug:`20001` - Support for temp-tables in INFORMATION_SCHEMA |
507|:Launchpad bug: N/A |519|:Launchpad bug: N/A |
508|:Upstream state: Verified (checked on 2014-06-27) |520|:Upstream state: Verified (checked on 2014-08-29) |
509|:Fix Released: :rn:`5.6.5-60.0` |521|:Fix Released: :rn:`5.6.5-60.0` |
510|:Upstream fix: N/A |522|:Upstream fix: N/A |
511+-------------------------------------------------------------------------------------------------------------+523+-------------------------------------------------------------------------------------------------------------+
512|:Upstream bug: :mysqlbug:`69146` - Optimization in buf_pool_get_oldest_modification if srv_buf_pool_instances|524|:Upstream bug: :mysqlbug:`69146` - Optimization in buf_pool_get_oldest_modification if srv_buf_pool_instances|
513|:Launchpad bug: :bug:`1176496` |525|:Launchpad bug: :bug:`1176496` |
514|:Upstream state: Verified (checked on 2014-06-27) |526|:Upstream state: Verified (checked on 2014-08-29) |
515|:Fix Released: :rn:`5.6.5-60.0` |527|:Fix Released: :rn:`5.6.5-60.0` |
516|:Upstream fix: N/A |528|:Upstream fix: N/A |
517+-------------------------------------------------------------------------------------------------------------+529+-------------------------------------------------------------------------------------------------------------+

Subscribers

People subscribed via source and target branches