Merge lp:~hrvojem/percona-server/rn-5.6.21-70.1-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: 698
Proposed branch: lp:~hrvojem/percona-server/rn-5.6.21-70.1-5.6
Merge into: lp:percona-server/5.6
Diff against target: 364 lines (+75/-37)
4 files modified
doc/source/conf.py (+1/-1)
doc/source/release-notes/Percona-Server-5.6.21-70.1.rst (+25/-0)
doc/source/release-notes/release-notes_index.rst (+1/-0)
doc/source/upstream-bug-fixes.rst (+48/-36)
To merge this branch: bzr merge lp:~hrvojem/percona-server/rn-5.6.21-70.1-5.6
Reviewer Review Type Date Requested Status
Laurynas Biveinis (community) Approve
Review via email: mp+242352@code.launchpad.net
To post a comment you must log in.
Revision history for this message
Laurynas Biveinis (laurynas-biveinis) wrote :

Needs upstream bug list update

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-10-29 18:21:06 +0000
+++ doc/source/conf.py 2014-11-23 09:53:47 +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.21-70.0'57release = '5.6.21-70.1'
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
=== added file 'doc/source/release-notes/Percona-Server-5.6.21-70.1.rst'
--- doc/source/release-notes/Percona-Server-5.6.21-70.1.rst 1970-01-01 00:00:00 +0000
+++ doc/source/release-notes/Percona-Server-5.6.21-70.1.rst 2014-11-23 09:53:47 +0000
@@ -0,0 +1,25 @@
1.. rn:: 5.6.21-70.1
2
3==============================
4 |Percona Server| 5.6.21-70.1
5==============================
6
7Percona is glad to announce the release of |Percona Server| 5.6.21-70.1 on November 24th, 2014 (Downloads are available `here <http://www.percona.com/downloads/Percona-Server-5.6/Percona-Server-5.6.21-70.1/>`_ and from the :doc:`Percona Software Repositories </installation>`).
8
9Based on `MySQL 5.6.21 <http://dev.mysql.com/doc/relnotes/mysql/5.6/en/news-5-6-21.html>`_, including all the bug fixes in it, |Percona Server| 5.6.21-70.1 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.21-70.1 milestone at Launchpad <https://launchpad.net/percona-server/+milestone/5.6.21-70.1>`_.
10
11
12Bugs Fixed
13==========
14
15 A slave replicating in RBR mode would crash, if a table definition between master and slave differs with an allowed conversion, and the binary log contains a table map event followed by two row log events. This bug is an upstream regression introduced by a fix for bug :mysqlbug:`72610`. Bug fixed :bug:`1380010`.
16
17 An incorrect source code function attribute would cause MySQL to crash on an InnoDB row write, if compiled with a recent GCC with certain compilation options. Bug fixed :bug:`1390695` (upstream :mysqlbug:`74842`).
18
19 MTR tests for :ref:`response_time_distribution` were not packaged in binary packages. Bug fixed :bug:`1387170`.
20
21 The RPM packages provided for *CentOS* 5 were built using a debugging information format which is not supported in the ``gdb`` version included with *CentOS* 5.10. Bug fixed :bug:`1388972`.
22
23 A session on a server in mixed mode binlogging would switch to row-based binlogging whenever a temporary table was created and then queried. This switch would last until the session end or until all temporary tables in the session were dropped. This was unnecessarily restrictive and has been fixed so that only the statements involving temporary tables were logged in the row-based format whereas the rest of the statements would continue to use the statement-based logging. Bug fixed :bug:`1313901` (upstream :mysqlbug:`72475`).
24
25Other bugs fixed: :bug:`1387227`, and :bug:`1388001`.
026
=== modified file 'doc/source/release-notes/release-notes_index.rst'
--- doc/source/release-notes/release-notes_index.rst 2014-10-29 18:21:06 +0000
+++ doc/source/release-notes/release-notes_index.rst 2014-11-23 09:53:47 +0000
@@ -6,6 +6,7 @@
6 :maxdepth: 16 :maxdepth: 1
7 :glob:7 :glob:
88
9 Percona-Server-5.6.21-70.1
9 Percona-Server-5.6.21-70.010 Percona-Server-5.6.21-70.0
10 Percona-Server-5.6.21-69.011 Percona-Server-5.6.21-69.0
11 Percona-Server-5.6.20-68.012 Percona-Server-5.6.20-68.0
1213
=== modified file 'doc/source/upstream-bug-fixes.rst'
--- doc/source/upstream-bug-fixes.rst 2014-10-29 18:21:06 +0000
+++ doc/source/upstream-bug-fixes.rst 2014-11-23 09:53:47 +0000
@@ -5,33 +5,45 @@
5=============================================================5=============================================================
66
7+-------------------------------------------------------------------------------------------------------------+7+-------------------------------------------------------------------------------------------------------------+
8|:Upstream bug: :mysqlbug:`72475` - Binlog events with binlog_format=MIXED are unconditionally logged in ROW..|
9|:Launchpad bug: :bug:`1313901` |
10|:Upstream state: Verified (checked on 2014-11-23) |
11|:Fix Released: :rn:`5.6.21-70.1` |
12|:Upstream fix: N/A |
13+-------------------------------------------------------------------------------------------------------------+
14|:Upstream bug: :mysqlbug:`74842` - Incorrect attribute((nonnull)) for btr_cur_ins_lock_and_undo callees |
15|:Launchpad bug: :bug:`1390695` |
16|:Upstream state: Open (checked on 2014-11-23) |
17|:Fix Released: :rn:`5.6.21-70.1` |
18|:Upstream fix: N/A |
19+-------------------------------------------------------------------------------------------------------------+
8|:Upstream bug: :mysqlbug:`74440` - mysql_install_db not handling mysqld startup failure |20|:Upstream bug: :mysqlbug:`74440` - mysql_install_db not handling mysqld startup failure |
9|:Launchpad bug: :bug:`1382782` |21|:Launchpad bug: :bug:`1382782` |
10|:Upstream state: Verified (checked on 2014-10-28) |22|:Upstream state: Verified (checked on 2014-11-23) |
11|:Fix Released: :rn:`5.6.21-70.0` |23|:Fix Released: :rn:`5.6.21-70.0` |
12|:Upstream fix: N/A |24|:Upstream fix: N/A |
13+-------------------------------------------------------------------------------------------------------------+25+-------------------------------------------------------------------------------------------------------------+
14|:Upstream bug: :mysqlbug:`73066` - Replication stall with multi-threaded replication |26|:Upstream bug: :mysqlbug:`73066` - Replication stall with multi-threaded replication |
15|:Launchpad bug: :bug:`1331586` |27|:Launchpad bug: :bug:`1331586` |
16|:Upstream state: Verified (checked on 2014-10-28) |28|:Upstream state: Verified (checked on 2014-11-23) |
17|:Fix Released: :rn:`5.6.21-70.0` |29|:Fix Released: :rn:`5.6.21-70.0` |
18|:Upstream fix: N/A |30|:Upstream fix: N/A |
19+-------------------------------------------------------------------------------------------------------------+31+-------------------------------------------------------------------------------------------------------------+
20|:Upstream bug: :mysqlbug:`71091` - CSV engine does not properly process ``""``, in quotes |32|:Upstream bug: :mysqlbug:`71091` - CSV engine does not properly process ``""``, in quotes |
21|:Launchpad bug: :bug:`1316042` |33|:Launchpad bug: :bug:`1316042` |
22|:Upstream state: Verified (checked on 2014-10-28) |34|:Upstream state: Verified (checked on 2014-11-23) |
23|:Fix Released: :rn:`5.6.21-70.0` |35|:Fix Released: :rn:`5.6.21-70.0` |
24|:Upstream fix: N/A |36|:Upstream fix: N/A |
25+-------------------------------------------------------------------------------------------------------------+37+-------------------------------------------------------------------------------------------------------------+
26|:Upstream bug: :mysqlbug:`70860` - --tc-heuristic-recover option values are broken |38|:Upstream bug: :mysqlbug:`70860` - --tc-heuristic-recover option values are broken |
27|:Launchpad bug: :bug:`1334330` |39|:Launchpad bug: :bug:`1334330` |
28|:Upstream state: Verified (checked on 2014-10-28) |40|:Upstream state: Verified (checked on 2014-11-23) |
29|:Fix Released: :rn:`5.6.20-68.0` |41|:Fix Released: :rn:`5.6.20-68.0` |
30|:Upstream fix: N/A |42|:Upstream fix: N/A |
31+-------------------------------------------------------------------------------------------------------------+43+-------------------------------------------------------------------------------------------------------------+
32|:Upstream bug: :mysqlbug:`73418` - Add --manual-lldb option to mysql-test-run.pl |44|:Upstream bug: :mysqlbug:`73418` - Add --manual-lldb option to mysql-test-run.pl |
33|:Launchpad bug: :bug:`1328482` |45|:Launchpad bug: :bug:`1328482` |
34|:Upstream state: Verified (checked on 2014-10-28) |46|:Upstream state: Verified (checked on 2014-11-23) |
35|:Fix Released: :rn:`5.6.20-68.0` |47|:Fix Released: :rn:`5.6.20-68.0` |
36|:Upstream fix: N/A |48|:Upstream fix: N/A |
37+-------------------------------------------------------------------------------------------------------------+49+-------------------------------------------------------------------------------------------------------------+
@@ -49,13 +61,13 @@
49+-------------------------------------------------------------------------------------------------------------+61+-------------------------------------------------------------------------------------------------------------+
50|:Upstream bug: :mysqlbug:`72615` - MTR --mysqld=--default-storage-engine=foo incompatible w/ dynamically... |62|:Upstream bug: :mysqlbug:`72615` - MTR --mysqld=--default-storage-engine=foo incompatible w/ dynamically... |
51|:Launchpad bug: :bug:`1318537` |63|:Launchpad bug: :bug:`1318537` |
52|:Upstream state: Verified (checked on 2014-10-28) |64|:Upstream state: Verified (checked on 2014-11-23) |
53|:Fix Released: :rn:`5.6.17-66.0` |65|:Fix Released: :rn:`5.6.17-66.0` |
54|:Upstream fix: N/A |66|:Upstream fix: N/A |
55+-------------------------------------------------------------------------------------------------------------+67+-------------------------------------------------------------------------------------------------------------+
56|:Upstream bug: :mysqlbug:`72163` - Rev 5774 broke rpl_plugin_load |68|:Upstream bug: :mysqlbug:`72163` - Rev 5774 broke rpl_plugin_load |
57|:Launchpad bug: :bug:`1299688` |69|:Launchpad bug: :bug:`1299688` |
58|:Upstream state: Verified (checked on 2014-10-28) |70|:Upstream state: Verified (checked on 2014-11-23) |
59|:Fix Released: :rn:`5.6.17-65.0` |71|:Fix Released: :rn:`5.6.17-65.0` |
60|:Upstream fix: N/A |72|:Upstream fix: N/A |
61+-------------------------------------------------------------------------------------------------------------+73+-------------------------------------------------------------------------------------------------------------+
@@ -73,19 +85,19 @@
73+-------------------------------------------------------------------------------------------------------------+85+-------------------------------------------------------------------------------------------------------------+
74|:Upstream bug: :mysqlbug:`71374` - Slave IO thread won't attempt auto reconnect to the master/error-code 1159|86|:Upstream bug: :mysqlbug:`71374` - Slave IO thread won't attempt auto reconnect to the master/error-code 1159|
75|:Launchpad bug: :bug:`1268729` |87|:Launchpad bug: :bug:`1268729` |
76|:Upstream state: Verified (checked on 2014-10-28) |88|:Upstream state: Verified (checked on 2014-11-23) |
77|:Fix Released: :rn:`5.6.16-64.1` |89|:Fix Released: :rn:`5.6.16-64.1` |
78|:Upstream fix: N/A |90|:Upstream fix: N/A |
79+-------------------------------------------------------------------------------------------------------------+91+-------------------------------------------------------------------------------------------------------------+
80|:Upstream bug: :mysqlbug:`71988` - page_cleaner: aggressive background flushing |92|:Upstream bug: :mysqlbug:`71988` - page_cleaner: aggressive background flushing |
81|:Launchpad bug: :bug:`1238039` |93|:Launchpad bug: :bug:`1238039` |
82|:Upstream state: Verified (checked on 2014-10-28) |94|:Upstream state: Verified (checked on 2014-11-23) |
83|:Fix Released: :rn:`5.6.16-64.0` |95|:Fix Released: :rn:`5.6.16-64.0` |
84|:Upstream fix: N/A |96|:Upstream fix: N/A |
85+-------------------------------------------------------------------------------------------------------------+97+-------------------------------------------------------------------------------------------------------------+
86|:Upstream bug: :mysqlbug:`71624` - printf size_t results in a fatal warning in 32-bit debug builds |98|:Upstream bug: :mysqlbug:`71624` - printf size_t results in a fatal warning in 32-bit debug builds |
87|:Launchpad bug: :bug:`1277505` |99|:Launchpad bug: :bug:`1277505` |
88|:Upstream state: Can't repeat (checked on 2014-10-28) |100|:Upstream state: Can't repeat (checked on 2014-11-23) |
89|:Fix Released: :rn:`5.6.16-64.0` |101|:Fix Released: :rn:`5.6.16-64.0` |
90|:Upstream fix: N/A |102|:Upstream fix: N/A |
91+-------------------------------------------------------------------------------------------------------------+103+-------------------------------------------------------------------------------------------------------------+
@@ -127,13 +139,13 @@
127+-------------------------------------------------------------------------------------------------------------+139+-------------------------------------------------------------------------------------------------------------+
128|:Upstream bug: :mysqlbug:`71270` - Failures to end bulk insert for partitioned tables handled incorrectly |140|:Upstream bug: :mysqlbug:`71270` - Failures to end bulk insert for partitioned tables handled incorrectly |
129|:Launchpad bug: :bug:`1204871` |141|:Launchpad bug: :bug:`1204871` |
130|:Upstream state: Verified (checked on 2014-10-28) |142|:Upstream state: Verified (checked on 2014-11-23) |
131|:Fix Released: :rn:`5.6.16-64.0` |143|:Fix Released: :rn:`5.6.16-64.0` |
132|:Upstream fix: N/A |144|:Upstream fix: N/A |
133+-------------------------------------------------------------------------------------------------------------+145+-------------------------------------------------------------------------------------------------------------+
134|:Upstream bug: :mysqlbug:`71217` - Threadpool - add thd_wait_begin/thd_wait_end to the network IO functions |146|:Upstream bug: :mysqlbug:`71217` - Threadpool - add thd_wait_begin/thd_wait_end to the network IO functions |
135|:Launchpad bug: :bug:`1159743` |147|:Launchpad bug: :bug:`1159743` |
136|:Upstream state: Open (checked on 2014-10-28) |148|:Upstream state: Open (checked on 2014-11-23) |
137|:Fix Released: :rn:`5.6.15-63.0` |149|:Fix Released: :rn:`5.6.15-63.0` |
138|:Upstream fix: N/A |150|:Upstream fix: N/A |
139+-------------------------------------------------------------------------------------------------------------+151+-------------------------------------------------------------------------------------------------------------+
@@ -151,7 +163,7 @@
151+-------------------------------------------------------------------------------------------------------------+163+-------------------------------------------------------------------------------------------------------------+
152|:Upstream bug: :mysqlbug:`71411` - buf_flush_LRU() does not return correct number in case of compressed pages|164|:Upstream bug: :mysqlbug:`71411` - buf_flush_LRU() does not return correct number in case of compressed pages|
153|:Launchpad bug: :bug:`1231918` |165|:Launchpad bug: :bug:`1231918` |
154|:Upstream state: Verified (checked on 2014-10-28) |166|:Upstream state: Verified (checked on 2014-11-23) |
155|:Fix Released: :rn:`5.6.13-61.0` |167|:Fix Released: :rn:`5.6.13-61.0` |
156|:Upstream fix: N/A |168|:Upstream fix: N/A |
157+-------------------------------------------------------------------------------------------------------------+169+-------------------------------------------------------------------------------------------------------------+
@@ -163,7 +175,7 @@
163+-------------------------------------------------------------------------------------------------------------+175+-------------------------------------------------------------------------------------------------------------+
164|:Upstream bug: :mysqlbug:`70490` - Suppression is too strict on some systems |176|:Upstream bug: :mysqlbug:`70490` - Suppression is too strict on some systems |
165|:Launchpad bug: :bug:`1205196` |177|:Launchpad bug: :bug:`1205196` |
166|:Upstream state: No Feedback (checked on 2014-10-28) |178|:Upstream state: No Feedback (checked on 2014-11-23) |
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+-------------------------------------------------------------------------------------------------------------+
@@ -175,7 +187,7 @@
175+-------------------------------------------------------------------------------------------------------------+187+-------------------------------------------------------------------------------------------------------------+
176|:Upstream bug: :mysqlbug:`70500` - Page cleaner should perform LRU flushing regardless of server activity |188|:Upstream bug: :mysqlbug:`70500` - Page cleaner should perform LRU flushing regardless of server activity |
177|:Launchpad bug: :bug:`1234562` |189|:Launchpad bug: :bug:`1234562` |
178|:Upstream state: Open (checked on 2014-10-28) |190|:Upstream state: Open (checked on 2014-11-23) |
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+-------------------------------------------------------------------------------------------------------------+
@@ -193,25 +205,25 @@
193+-------------------------------------------------------------------------------------------------------------+205+-------------------------------------------------------------------------------------------------------------+
194|:Upstream bug: :mysqlbug:`68481` - InnoDB LRU flushing for MySQL 5.6 needs work |206|:Upstream bug: :mysqlbug:`68481` - InnoDB LRU flushing for MySQL 5.6 needs work |
195|:Launchpad bug: :bug:`1232406` |207|:Launchpad bug: :bug:`1232406` |
196|:Upstream state: Verified (checked on 2014-10-28) |208|:Upstream state: Verified (checked on 2014-11-23) |
197|:Fix Released: :rn:`5.6.13-61.0` |209|:Fix Released: :rn:`5.6.13-61.0` |
198|:Upstream fix: N/A |210|:Upstream fix: N/A |
199+-------------------------------------------------------------------------------------------------------------+211+-------------------------------------------------------------------------------------------------------------+
200|:Upstream bug: :mysqlbug:`70453` - Add hard timeouts to page cleaner flushes |212|:Upstream bug: :mysqlbug:`70453` - Add hard timeouts to page cleaner flushes |
201|:Launchpad bug: :bug:`1232101` |213|:Launchpad bug: :bug:`1232101` |
202|:Upstream state: Verified (checked on 2014-10-28) |214|:Upstream state: Verified (checked on 2014-11-23) |
203|:Fix Released: :rn:`5.6.13-61.0` |215|:Fix Released: :rn:`5.6.13-61.0` |
204|:Upstream fix: N/A |216|:Upstream fix: N/A |
205+-------------------------------------------------------------------------------------------------------------+217+-------------------------------------------------------------------------------------------------------------+
206|:Upstream bug: :mysqlbug:`69170` - buf_flush_LRU is lazy |218|:Upstream bug: :mysqlbug:`69170` - buf_flush_LRU is lazy |
207|:Launchpad bug: :bug:`1231918` |219|:Launchpad bug: :bug:`1231918` |
208|:Upstream state: Verified (checked on 2014-10-28) |220|:Upstream state: Verified (checked on 2014-11-23) |
209|:Fix Released: :rn:`5.6.13-61.0` |221|:Fix Released: :rn:`5.6.13-61.0` |
210|:Upstream fix: N/A |222|:Upstream fix: N/A |
211+-------------------------------------------------------------------------------------------------------------+223+-------------------------------------------------------------------------------------------------------------+
212|:Upstream bug: :mysqlbug:`68555` - thread convoys from log_checkpoint_margin with innodb_buffer_pool_inst... |224|:Upstream bug: :mysqlbug:`68555` - thread convoys from log_checkpoint_margin with innodb_buffer_pool_inst... |
213|:Launchpad bug: :bug:`1236884` |225|:Launchpad bug: :bug:`1236884` |
214|:Upstream state: Verified (checked on 2014-10-28) |226|:Upstream state: Verified (checked on 2014-11-23) |
215|:Fix Released: :rn:`5.6.13-61.0` |227|:Fix Released: :rn:`5.6.13-61.0` |
216|:Upstream fix: N/A |228|:Upstream fix: N/A |
217+-------------------------------------------------------------------------------------------------------------+229+-------------------------------------------------------------------------------------------------------------+
@@ -241,7 +253,7 @@
241+-------------------------------------------------------------------------------------------------------------+253+-------------------------------------------------------------------------------------------------------------+
242|:Upstream bug: :mysqlbug:`62018` - innodb adaptive hash index mutex contention |254|:Upstream bug: :mysqlbug:`62018` - innodb adaptive hash index mutex contention |
243|:Launchpad bug: :bug:`1216804` |255|:Launchpad bug: :bug:`1216804` |
244|:Upstream state: Verified (checked on 2014-10-28) |256|:Upstream state: Verified (checked on 2014-11-23) |
245|:Fix Released: :rn:`5.6.13-60.6` |257|:Fix Released: :rn:`5.6.13-60.6` |
246|:Upstream fix: N/A |258|:Upstream fix: N/A |
247+-------------------------------------------------------------------------------------------------------------+259+-------------------------------------------------------------------------------------------------------------+
@@ -259,13 +271,13 @@
259+-------------------------------------------------------------------------------------------------------------+271+-------------------------------------------------------------------------------------------------------------+
260|:Upstream bug: :mysqlbug:`42415` - UPDATE/DELETE with LIMIT clause unsafe for SBL even with ORDER BY PK ... |272|:Upstream bug: :mysqlbug:`42415` - UPDATE/DELETE with LIMIT clause unsafe for SBL even with ORDER BY PK ... |
261|:Launchpad bug: :bug:`1132194` |273|:Launchpad bug: :bug:`1132194` |
262|:Upstream state: Verified (checked on 2014-10-28) |274|:Upstream state: Verified (checked on 2014-11-23) |
263|:Fix Released: :rn:`5.6.13-60.5` |275|:Fix Released: :rn:`5.6.13-60.5` |
264|:Upstream fix: N/A |276|:Upstream fix: N/A |
265+-------------------------------------------------------------------------------------------------------------+277+-------------------------------------------------------------------------------------------------------------+
266|:Upstream bug: :mysqlbug:`69639` - mysql failed to build with dtrace Sun D 1.11 |278|:Upstream bug: :mysqlbug:`69639` - mysql failed to build with dtrace Sun D 1.11 |
267|:Launchpad bug: :bug:`1196460` |279|:Launchpad bug: :bug:`1196460` |
268|:Upstream state: Open (checked on 2014-10-28) |280|:Upstream state: Open (checked on 2014-11-23) |
269|:Fix Released: :rn:`5.6.13-60.5` |281|:Fix Released: :rn:`5.6.13-60.5` |
270|:Upstream fix: N/A |282|:Upstream fix: N/A |
271+-------------------------------------------------------------------------------------------------------------+283+-------------------------------------------------------------------------------------------------------------+
@@ -283,7 +295,7 @@
283+-------------------------------------------------------------------------------------------------------------+295+-------------------------------------------------------------------------------------------------------------+
284|:Upstream bug: :mysqlbug:`69856` - mysql_install_db does not function properly in 5.6 for debug builds |296|:Upstream bug: :mysqlbug:`69856` - mysql_install_db does not function properly in 5.6 for debug builds |
285|:Launchpad bug: :bug:`1179359` |297|:Launchpad bug: :bug:`1179359` |
286|:Upstream state: Verified (checked on 2014-10-28) |298|:Upstream state: Verified (checked on 2014-11-23) |
287|:Fix Released: :rn:`5.6.12-60.4` |299|:Fix Released: :rn:`5.6.12-60.4` |
288|:Upstream fix: N/A |300|:Upstream fix: N/A |
289+-------------------------------------------------------------------------------------------------------------+301+-------------------------------------------------------------------------------------------------------------+
@@ -295,7 +307,7 @@
295+-------------------------------------------------------------------------------------------------------------+307+-------------------------------------------------------------------------------------------------------------+
296|:Upstream bug: :mysqlbug:`71183` - os_file_fsync() should handle fsync() returning EINTR |308|:Upstream bug: :mysqlbug:`71183` - os_file_fsync() should handle fsync() returning EINTR |
297|:Launchpad bug: :bug:`1262651` |309|:Launchpad bug: :bug:`1262651` |
298|:Upstream state: Verified (checked on 2014-10-28) |310|:Upstream state: Verified (checked on 2014-11-23) |
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+-------------------------------------------------------------------------------------------------------------+
@@ -325,7 +337,7 @@
325+-------------------------------------------------------------------------------------------------------------+337+-------------------------------------------------------------------------------------------------------------+
326|:Upstream bug: :mysqlbug:`68714` - Remove literal statement digest values from perfschema tests |338|:Upstream bug: :mysqlbug:`68714` - Remove literal statement digest values from perfschema tests |
327|:Launchpad bug: :bug:`1157078` |339|:Launchpad bug: :bug:`1157078` |
328|:Upstream state: Verified (checked on 2014-10-28) |340|:Upstream state: Verified (checked on 2014-11-23) |
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+-------------------------------------------------------------------------------------------------------------+
@@ -349,13 +361,13 @@
349+-------------------------------------------------------------------------------------------------------------+361+-------------------------------------------------------------------------------------------------------------+
350|:Upstream bug: :mysqlbug:`68970` - fsp_reserve_free_extents switches from small to big tblspace handling ... |362|:Upstream bug: :mysqlbug:`68970` - fsp_reserve_free_extents switches from small to big tblspace handling ... |
351|:Launchpad bug: :bug:`1169494` |363|:Launchpad bug: :bug:`1169494` |
352|:Upstream state: Verified (checked on 2014-10-28) |364|:Upstream state: Verified (checked on 2014-11-23) |
353|:Fix Released: :rn:`5.6.11-60.3` |365|:Fix Released: :rn:`5.6.11-60.3` |
354|:Upstream fix: N/A |366|:Upstream fix: N/A |
355+-------------------------------------------------------------------------------------------------------------+367+-------------------------------------------------------------------------------------------------------------+
356|:Upstream bug: :mysqlbug:`68713` - create_duplicate_weedout_tmp_table() leaves key_part_flag uninitialized |368|:Upstream bug: :mysqlbug:`68713` - create_duplicate_weedout_tmp_table() leaves key_part_flag uninitialized |
357|:Launchpad bug: :bug:`1157037` |369|:Launchpad bug: :bug:`1157037` |
358|:Upstream state: Verified (checked on 2014-10-28) |370|:Upstream state: Verified (checked on 2014-11-23) |
359|:Fix Released: :rn:`5.6.11-60.3` |371|:Fix Released: :rn:`5.6.11-60.3` |
360|:Upstream fix: N/A |372|:Upstream fix: N/A |
361+-------------------------------------------------------------------------------------------------------------+373+-------------------------------------------------------------------------------------------------------------+
@@ -367,13 +379,13 @@
367+-------------------------------------------------------------------------------------------------------------+379+-------------------------------------------------------------------------------------------------------------+
368|:Upstream bug: :mysqlbug:`68999` - SSL_OP_NO_COMPRESSION not defined |380|:Upstream bug: :mysqlbug:`68999` - SSL_OP_NO_COMPRESSION not defined |
369|:Launchpad bug: :bug:`1183610` |381|:Launchpad bug: :bug:`1183610` |
370|:Upstream state: No Feedback (checked on 2014-10-28) |382|:Upstream state: No Feedback (checked on 2014-11-23) |
371|:Fix Released: :rn:`5.6.11-60.3` |383|:Fix Released: :rn:`5.6.11-60.3` |
372|:Upstream fix: N/A |384|:Upstream fix: N/A |
373+-------------------------------------------------------------------------------------------------------------+385+-------------------------------------------------------------------------------------------------------------+
374|:Upstream bug: :mysqlbug:`68845` - Unnecessary log_sys->mutex reacquisition in mtr_log_reserve_and_write() |386|:Upstream bug: :mysqlbug:`68845` - Unnecessary log_sys->mutex reacquisition in mtr_log_reserve_and_write() |
375|:Launchpad bug: :bug:`1163439` |387|:Launchpad bug: :bug:`1163439` |
376|:Upstream state: Verified (checked on 2014-10-28) |388|:Upstream state: Verified (checked on 2014-11-23) |
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+-------------------------------------------------------------------------------------------------------------+
@@ -403,7 +415,7 @@
403+-------------------------------------------------------------------------------------------------------------+415+-------------------------------------------------------------------------------------------------------------+
404|:Upstream bug: :mysqlbug:`68476` - Suboptimal code in my_strnxfrm_simple() |416|:Upstream bug: :mysqlbug:`68476` - Suboptimal code in my_strnxfrm_simple() |
405|:Launchpad bug: :bug:`1132350` |417|:Launchpad bug: :bug:`1132350` |
406|:Upstream state: Verified (checked on 2014-10-28) |418|:Upstream state: Verified (checked on 2014-11-23) |
407|:Fix Released: :rn:`5.6.11-60.3` |419|:Fix Released: :rn:`5.6.11-60.3` |
408|:Upstream fix: N/A |420|:Upstream fix: N/A |
409+-------------------------------------------------------------------------------------------------------------+421+-------------------------------------------------------------------------------------------------------------+
@@ -463,7 +475,7 @@
463+-------------------------------------------------------------------------------------------------------------+475+-------------------------------------------------------------------------------------------------------------+
464|:Upstream bug: :mysqlbug:`61178` - Incorrect implementation of intersect(ulonglong) in non-optimized Bitmap..|476|:Upstream bug: :mysqlbug:`61178` - Incorrect implementation of intersect(ulonglong) in non-optimized Bitmap..|
465|:Launchpad bug: :bug:`1042517` |477|:Launchpad bug: :bug:`1042517` |
466|:Upstream state: Verified (checked on 2014-10-28) |478|:Upstream state: Verified (checked on 2014-11-23) |
467|:Fix Released: :rn:`5.6.11-60.3` |479|:Fix Released: :rn:`5.6.11-60.3` |
468|:Upstream fix: N/A |480|:Upstream fix: N/A |
469+-------------------------------------------------------------------------------------------------------------+481+-------------------------------------------------------------------------------------------------------------+
@@ -475,7 +487,7 @@
475+-------------------------------------------------------------------------------------------------------------+487+-------------------------------------------------------------------------------------------------------------+
476|:Upstream bug: :mysqlbug:`64800` - mysqldump with --include-master-host-port putting quotes around port no. | 488|:Upstream bug: :mysqlbug:`64800` - mysqldump with --include-master-host-port putting quotes around port no. |
477|:Launchpad bug: :bug:`1013432` |489|:Launchpad bug: :bug:`1013432` |
478|:Upstream state: Verified (checked on 2014-10-28) |490|:Upstream state: Verified (checked on 2014-11-23) |
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+-------------------------------------------------------------------------------------------------------------+
@@ -505,13 +517,13 @@
505+-------------------------------------------------------------------------------------------------------------+517+-------------------------------------------------------------------------------------------------------------+
506|:Upstream bug: :mysqlbug:`25007` - memory tables with dynamic rows format |518|:Upstream bug: :mysqlbug:`25007` - memory tables with dynamic rows format |
507|:Launchpad bug: :bug:`1148822` |519|:Launchpad bug: :bug:`1148822` |
508|:Upstream state: Verified (checked on 2014-10-28) |520|:Upstream state: Verified (checked on 2014-11-23) |
509|:Fix Released: :rn:`5.6.11-60.3` |521|:Fix Released: :rn:`5.6.11-60.3` |
510|:Upstream fix: N/A |522|:Upstream fix: N/A |
511+-------------------------------------------------------------------------------------------------------------+523+-------------------------------------------------------------------------------------------------------------+
512|:Upstream bug: :mysqlbug:`61595` - mysql-test/include/wait_for_slave_param.inc timeout logic is incorrect |524|:Upstream bug: :mysqlbug:`61595` - mysql-test/include/wait_for_slave_param.inc timeout logic is incorrect |
513|:Launchpad bug: :bug:`800035` |525|:Launchpad bug: :bug:`800035` |
514|:Upstream state: Verified (checked on 2014-10-28) |526|:Upstream state: Verified (checked on 2014-11-23) |
515|:Fix Released: :rn:`5.6.11-60.3` |527|:Fix Released: :rn:`5.6.11-60.3` |
516|:Upstream fix: N/A |528|:Upstream fix: N/A |
517+-------------------------------------------------------------------------------------------------------------+529+-------------------------------------------------------------------------------------------------------------+
@@ -535,13 +547,13 @@
535+-------------------------------------------------------------------------------------------------------------+547+-------------------------------------------------------------------------------------------------------------+
536|:Upstream bug: :mysqlbug:`20001` - Support for temp-tables in INFORMATION_SCHEMA |548|:Upstream bug: :mysqlbug:`20001` - Support for temp-tables in INFORMATION_SCHEMA |
537|:Launchpad bug: N/A |549|:Launchpad bug: N/A |
538|:Upstream state: Verified (checked on 2014-10-28) |550|:Upstream state: Verified (checked on 2014-11-23) |
539|:Fix Released: :rn:`5.6.5-60.0` |551|:Fix Released: :rn:`5.6.5-60.0` |
540|:Upstream fix: N/A |552|:Upstream fix: N/A |
541+-------------------------------------------------------------------------------------------------------------+553+-------------------------------------------------------------------------------------------------------------+
542|:Upstream bug: :mysqlbug:`69146` - Optimization in buf_pool_get_oldest_modification if srv_buf_pool_instances|554|:Upstream bug: :mysqlbug:`69146` - Optimization in buf_pool_get_oldest_modification if srv_buf_pool_instances|
543|:Launchpad bug: :bug:`1176496` |555|:Launchpad bug: :bug:`1176496` |
544|:Upstream state: Verified (checked on 2014-10-28) |556|:Upstream state: Verified (checked on 2014-11-23) |
545|:Fix Released: :rn:`5.6.5-60.0` |557|:Fix Released: :rn:`5.6.5-60.0` |
546|:Upstream fix: N/A |558|:Upstream fix: N/A |
547+-------------------------------------------------------------------------------------------------------------+559+-------------------------------------------------------------------------------------------------------------+

Subscribers

People subscribed via source and target branches