Merge lp:~hrvojem/percona-server/rn-5.6.22-71.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: 726
Proposed branch: lp:~hrvojem/percona-server/rn-5.6.22-71.0-5.6
Merge into: lp:percona-server/5.6
Diff against target: 508 lines (+171/-43)
6 files modified
doc/source/conf.py (+1/-1)
doc/source/diagnostics/slow_extended.rst (+56/-3)
doc/source/flexibility/csv_engine_mode.rst (+2/-1)
doc/source/release-notes/Percona-Server-5.6.22-71.0.rst (+43/-0)
doc/source/release-notes/release-notes_index.rst (+1/-0)
doc/source/upstream-bug-fixes.rst (+68/-38)
To merge this branch: bzr merge lp:~hrvojem/percona-server/rn-5.6.22-71.0-5.6
Reviewer Review Type Date Requested Status
Laurynas Biveinis (community) Approve
Review via email: mp+246035@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: 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
1=== modified file 'doc/source/conf.py'
2--- doc/source/conf.py 2015-01-09 15:11:15 +0000
3+++ doc/source/conf.py 2015-01-12 08:32:12 +0000
4@@ -54,7 +54,7 @@
5 # The short X.Y version.
6 version = '5.6'
7 # The full version, including alpha/beta/rc tags.
8-release = '5.6.21-70.1'
9+release = '5.6.22-71.0'
10
11 # The language for content autogenerated by Sphinx. Refer to documentation
12 # for a list of supported languages.
13
14=== modified file 'doc/source/diagnostics/slow_extended.rst'
15--- doc/source/diagnostics/slow_extended.rst 2014-05-06 12:43:39 +0000
16+++ doc/source/diagnostics/slow_extended.rst 2015-01-12 08:32:12 +0000
17@@ -13,12 +13,13 @@
18 ============================
19
20 * :rn:`5.6.11-60.3`:
21-
22 * Feature ported from |Percona Server| 5.5.
23
24- * :rn:`5.6.13-60.4`:
25+ * :rn:`5.6.13-60.6`:
26+ * New :variable:`slow_query_log_always_write_time` variable introduced
27
28- * New :variable:`slow_query_log_always_write_time` variable introduced
29+ * :rn:`5.6.22-71.0`:
30+ * Implemented improved slow log reporting for queries in stored procedures.
31
32 Other Information
33 =================
34@@ -120,6 +121,58 @@
35
36 If ``TRUE``, statements executed by stored procedures are logged to the slow if it is open.
37
38+.. _improved_sp_reporting:
39+
40+Prior to :rn:`5.6.22-71.0` implementation of logging stored procedures was logging the stored procedure ``CALLs`` themselves along with the queries inside the procedures. This meant that some queries were counted more than once which could make tracking the bad-performing queries harder and it would cause noise in the slow query log. |Percona Server| :rn:`5.6.22-71.0` implemented improvements for logging of stored procedures to the slow query log:
41+ * Each query from a stored procedure is now logged to the slow query log individually
42+ * ``CALL`` itself isn't logged to the slow query log anymore as this would be counting twice for the same query which would lead to incorrect results
43+ * Queries that were called inside of stored procedures are annotated in the slow query log with the stored procedure name in which they run.
44+
45+Example of the improved stored procedure slow query log entry:
46+
47+.. code-block:: mysql
48+
49+ mysql> DELIMITER //
50+ mysql> CREATE PROCEDURE improved_sp_log()
51+ BEGIN
52+ SELECT * FROM City;
53+ SELECT * FROM Country;
54+ END//
55+ mysql> DELIMITER ;
56+ mysql> CALL improved_sp_log();
57+
58+When we check the slow query log after running the stored procedure ,with variable:`log_slow_sp_statements` set to ``TRUE``, it should look like this: ::
59+
60+ # Time: 150109 11:38:55
61+ # User@Host: root[root] @ localhost []
62+ # Thread_id: 40 Schema: world Last_errno: 0 Killed: 0
63+ # Query_time: 0.012989 Lock_time: 0.000033 Rows_sent: 4079 Rows_examined: 4079 Rows_affected: 0 Rows_read: 4079
64+ # Bytes_sent: 161085
65+ # Stored routine: world.improved_sp_log
66+ SET timestamp=1420803535;
67+ SELECT * FROM City;
68+ # User@Host: root[root] @ localhost []
69+ # Thread_id: 40 Schema: world Last_errno: 0 Killed: 0
70+ # Query_time: 0.001413 Lock_time: 0.000017 Rows_sent: 4318 Rows_examined: 4318 Rows_affected: 0 Rows_read: 4318
71+ # Bytes_sent: 194601
72+ # Stored routine: world.improved_sp_log
73+ SET timestamp=1420803535;
74+
75+If variable :variable:`log_slow_sp_statements` is set to ``FALSE``:
76+
77+ * Entry is added to a slow-log for a ``CALL`` statement only and not for any of the individual statements run in that stored procedure
78+ * Execution time is reported for the ``CALL`` statement as the total execution time of the ``CALL`` including all its statements
79+
80+If we run the same stored procedure with the variable :variable:`log_slow_sp_statements` is set to ``FALSE`` slow query log should look like this: ::
81+
82+ # Time: 150109 11:51:42
83+ # User@Host: root[root] @ localhost []
84+ # Thread_id: 40 Schema: world Last_errno: 0 Killed: 0
85+ # Query_time: 0.013947 Lock_time: 0.000000 Rows_sent: 4318 Rows_examined: 4318 Rows_affected: 0 Rows_read: 4318
86+ # Bytes_sent: 194612
87+ SET timestamp=1420804302;
88+ CALL improved_sp_log();
89+
90 .. note::
91
92 Support for logging stored procedures doesn't involve triggers, so they won't be logged even if this feature is enabled.
93
94=== modified file 'doc/source/flexibility/csv_engine_mode.rst'
95--- doc/source/flexibility/csv_engine_mode.rst 2015-01-09 15:11:15 +0000
96+++ doc/source/flexibility/csv_engine_mode.rst 2015-01-12 08:32:12 +0000
97@@ -59,7 +59,8 @@
98
99 .. code-block:: mysql
100
101- mysql> set csv_mode='IETF_QUOTES'; Query OK, 0 rows affected (0.00 sec)
102+ mysql> set csv_mode='IETF_QUOTES';
103+ Query OK, 0 rows affected (0.00 sec)
104
105 mysql> select * from albums;
106 +--------------+-----------------------------+
107
108=== added file 'doc/source/release-notes/Percona-Server-5.6.22-71.0.rst'
109--- doc/source/release-notes/Percona-Server-5.6.22-71.0.rst 1970-01-01 00:00:00 +0000
110+++ doc/source/release-notes/Percona-Server-5.6.22-71.0.rst 2015-01-12 08:32:12 +0000
111@@ -0,0 +1,43 @@
112+.. rn:: 5.6.22-71.0
113+
114+==============================
115+ |Percona Server| 5.6.22-71.0
116+==============================
117+
118+Percona is glad to announce the release of |Percona Server| 5.6.22-71.0 on January 12th, 2015 (Downloads are available `here <http://www.percona.com/downloads/Percona-Server-5.6/Percona-Server-5.6.22-71.0/>`_ and from the :doc:`Percona Software Repositories </installation>`).
119+
120+Based 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-71.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-71.0 milestone at Launchpad <https://launchpad.net/percona-server/+milestone/5.6.22-71.0>`_.
121+
122+New Features
123+============
124+
125+ |Percona Server| has implemented improved slow log reporting for queries in :ref:`stored procedures <improved_sp_reporting>`.
126+
127+ TokuDB storage engine package has been updated to version `7.5.4 <http://docs.tokutek.com/tokudb/tokudb-release-notes.html#tokudb-version-7-x>`_. |Percona Server| with an older version of TokuDB could hit an early scaling limit when the binary log was enabled. TokuDB 7.5.4 fixes this problem by using the hints supplied by the binary log group commit algorithm to avoid fsync'ing its recovery log during the commit phase of the 2 phase commit algorithm that *MySQL* uses for transactions when the binary log is enabled.
128+
129+Bugs Fixed
130+==========
131+
132+ *Debian* and *Ubuntu* init scripts no longer have a hardcoded server startup timeout. This has been done to accommodate situations where server startup takes a very long time, for example, due to a crash recovery or buffer pool dump restore. Bugs fixed :bug:`1072538` and :bug:`1328262`.
133+
134+ A read-write workload on compressed *InnoDB* tables might have caused an assertion error. Bug fixed :bug:`1268656`.
135+
136+ Selecting from :table:`GLOBAL_TEMPORARY_TABLES` table while running an online ``ALTER TABLE`` in parallel could lead to server crash. Bug fixed :bug:`1294190`.
137+
138+ A wrong stack size calculation could lead to a server crash when Performance Schema tables were storing big amount of data or in case of server being under highly concurrent load. Bug fixed :bug:`1351148` (upstream :mysqlbug:`73979`).
139+
140+ A query on an empty table with a ``BLOB`` column may crash the server. Bug fixed :bug:`1384568` (upstream :mysqlbug:`74644`).
141+
142+ A read-write workload on compressed *InnoDB* tables might have caused an assertion error. Bug fixed :bug:`1395543`.
143+
144+ If :ref:`handlersocket_page` was enabled, the server would hang during shutdown. Bug fixed :bug:`1397859`.
145+
146+ The default *MySQL* configuration file, :file:`my.cnf`, was not installed during a new installation on *CentOS*. Bug fixed :bug:`1405667`.
147+
148+ The query optimizer did not pick a covering index for some ``ORDER BY`` queries. Bug fixed :bug:`1394967` (upstream :mysqlbug:`57430`).
149+
150+ ``SHOW ENGINE INNODB STATUS`` was displaying two identical ``TRANSACTIONS`` sections. Bug fixed :bug:`1404565`.
151+
152+ A race condition in :ref:`multiple_user_level_locks` implementation could cause a deadlock. Bug fixed :bug:`1405076`.
153+
154+Other bugs fixed: :bug:`1394357`, :bug:`1337251`, :bug:`1399174`, :bug:`1396330` (upstream :mysqlbug:`74987`), :bug:`1401776` (upstream :mysqlbug:`75189`).
155
156=== modified file 'doc/source/release-notes/release-notes_index.rst'
157--- doc/source/release-notes/release-notes_index.rst 2015-01-09 15:11:15 +0000
158+++ doc/source/release-notes/release-notes_index.rst 2015-01-12 08:32:12 +0000
159@@ -6,6 +6,7 @@
160 :maxdepth: 1
161 :glob:
162
163+ Percona-Server-5.6.22-71.0
164 Percona-Server-5.6.21-70.1
165 Percona-Server-5.6.21-70.0
166 Percona-Server-5.6.21-69.0
167
168=== modified file 'doc/source/upstream-bug-fixes.rst'
169--- doc/source/upstream-bug-fixes.rst 2015-01-09 15:11:15 +0000
170+++ doc/source/upstream-bug-fixes.rst 2015-01-12 08:32:12 +0000
171@@ -5,45 +5,75 @@
172 =============================================================
173
174 +-------------------------------------------------------------------------------------------------------------+
175+|:Upstream bug: :mysqlbug:`73979` - wrong stack size calculation leads to stack overflow in pinbox allocator |
176+|:Launchpad bug: :bug:`1351148` |
177+|:Upstream state: In Progress (checked on 2015-01-12) |
178+|:Fix Released: :rn:`5.6.22-71.0` |
179+|:Upstream fix: N/A |
180++-------------------------------------------------------------------------------------------------------------+
181+|:Upstream bug: :mysqlbug:`74644` - A query on empty table with BLOBs may crash server |
182+|:Launchpad bug: :bug:`1384568` |
183+|:Upstream state: N/A |
184+|:Fix Released: :rn:`5.6.22-71.0` |
185+|:Upstream fix: N/A |
186++-------------------------------------------------------------------------------------------------------------+
187+|:Upstream bug: :mysqlbug:`57430` - query optimizer does not pick covering index for some "order by" queries |
188+|:Launchpad bug: :bug:`1394967` |
189+|:Upstream state: Verified (checked on 2015-01-12) |
190+|:Fix Released: :rn:`5.6.22-71.0` |
191+|:Upstream fix: N/A |
192++-------------------------------------------------------------------------------------------------------------+
193+|:Upstream bug: :mysqlbug:`74987` - mtr failure on Ubuntu Utopic, mysqlhotcopy fails with wrong error(255) |
194+|:Launchpad bug: :bug:`1396330` |
195+|:Upstream state: Verified (checked on 2015-01-12) |
196+|:Fix Released: :rn:`5.6.22-71.0` |
197+|:Upstream fix: N/A |
198++-------------------------------------------------------------------------------------------------------------+
199+|:Upstream bug: :mysqlbug:`75189` - engines suite tests depending on InnoDB implementation details |
200+|:Launchpad bug: :bug:`1401776` |
201+|:Upstream state: Verified (checked on 2015-01-12) |
202+|:Fix Released: :rn:`5.6.22-71.0` |
203+|:Upstream fix: N/A |
204++-------------------------------------------------------------------------------------------------------------+
205 |:Upstream bug: :mysqlbug:`72475` - Binlog events with binlog_format=MIXED are unconditionally logged in ROW..|
206 |:Launchpad bug: :bug:`1313901` |
207-|:Upstream state: Verified (checked on 2014-11-23) |
208+|:Upstream state: Verified (checked on 2015-01-12) |
209 |:Fix Released: :rn:`5.6.21-70.1` |
210 |:Upstream fix: N/A |
211 +-------------------------------------------------------------------------------------------------------------+
212 |:Upstream bug: :mysqlbug:`74842` - Incorrect attribute((nonnull)) for btr_cur_ins_lock_and_undo callees |
213 |:Launchpad bug: :bug:`1390695` |
214-|:Upstream state: Open (checked on 2014-11-23) |
215+|:Upstream state: Open (checked on 2015-01-12) |
216 |:Fix Released: :rn:`5.6.21-70.1` |
217 |:Upstream fix: N/A |
218 +-------------------------------------------------------------------------------------------------------------+
219 |:Upstream bug: :mysqlbug:`74440` - mysql_install_db not handling mysqld startup failure |
220 |:Launchpad bug: :bug:`1382782` |
221-|:Upstream state: Verified (checked on 2014-11-23) |
222+|:Upstream state: Verified (checked on 2015-01-12) |
223 |:Fix Released: :rn:`5.6.21-70.0` |
224 |:Upstream fix: N/A |
225 +-------------------------------------------------------------------------------------------------------------+
226 |:Upstream bug: :mysqlbug:`73066` - Replication stall with multi-threaded replication |
227 |:Launchpad bug: :bug:`1331586` |
228-|:Upstream state: Verified (checked on 2014-11-23) |
229+|:Upstream state: Verified (checked on 2015-01-12) |
230 |:Fix Released: :rn:`5.6.21-70.0` |
231 |:Upstream fix: N/A |
232 +-------------------------------------------------------------------------------------------------------------+
233 |:Upstream bug: :mysqlbug:`71091` - CSV engine does not properly process ``""``, in quotes |
234 |:Launchpad bug: :bug:`1316042` |
235-|:Upstream state: Verified (checked on 2014-11-23) |
236+|:Upstream state: Verified (checked on 2015-01-12) |
237 |:Fix Released: :rn:`5.6.21-70.0` |
238 |:Upstream fix: N/A |
239 +-------------------------------------------------------------------------------------------------------------+
240 |:Upstream bug: :mysqlbug:`70860` - --tc-heuristic-recover option values are broken |
241 |:Launchpad bug: :bug:`1334330` |
242-|:Upstream state: Verified (checked on 2014-11-23) |
243+|:Upstream state: Verified (checked on 2014-01-12) |
244 |:Fix Released: :rn:`5.6.20-68.0` |
245 |:Upstream fix: N/A |
246 +-------------------------------------------------------------------------------------------------------------+
247 |:Upstream bug: :mysqlbug:`73418` - Add --manual-lldb option to mysql-test-run.pl |
248 |:Launchpad bug: :bug:`1328482` |
249-|:Upstream state: Verified (checked on 2014-11-23) |
250+|:Upstream state: Verified (checked on 2015-01-12) |
251 |:Fix Released: :rn:`5.6.20-68.0` |
252 |:Upstream fix: N/A |
253 +-------------------------------------------------------------------------------------------------------------+
254@@ -61,13 +91,13 @@
255 +-------------------------------------------------------------------------------------------------------------+
256 |:Upstream bug: :mysqlbug:`72615` - MTR --mysqld=--default-storage-engine=foo incompatible w/ dynamically... |
257 |:Launchpad bug: :bug:`1318537` |
258-|:Upstream state: Verified (checked on 2014-11-23) |
259+|:Upstream state: Verified (checked on 2015-01-12) |
260 |:Fix Released: :rn:`5.6.17-66.0` |
261 |:Upstream fix: N/A |
262 +-------------------------------------------------------------------------------------------------------------+
263 |:Upstream bug: :mysqlbug:`72163` - Rev 5774 broke rpl_plugin_load |
264 |:Launchpad bug: :bug:`1299688` |
265-|:Upstream state: Verified (checked on 2014-11-23) |
266+|:Upstream state: Verified (checked on 2015-01-12) |
267 |:Fix Released: :rn:`5.6.17-65.0` |
268 |:Upstream fix: N/A |
269 +-------------------------------------------------------------------------------------------------------------+
270@@ -85,19 +115,19 @@
271 +-------------------------------------------------------------------------------------------------------------+
272 |:Upstream bug: :mysqlbug:`71374` - Slave IO thread won't attempt auto reconnect to the master/error-code 1159|
273 |:Launchpad bug: :bug:`1268729` |
274-|:Upstream state: Verified (checked on 2014-11-23) |
275+|:Upstream state: Verified (checked on 2015-01-12) |
276 |:Fix Released: :rn:`5.6.16-64.1` |
277 |:Upstream fix: N/A |
278 +-------------------------------------------------------------------------------------------------------------+
279 |:Upstream bug: :mysqlbug:`71988` - page_cleaner: aggressive background flushing |
280 |:Launchpad bug: :bug:`1238039` |
281-|:Upstream state: Verified (checked on 2014-11-23) |
282+|:Upstream state: Verified (checked on 2015-01-12) |
283 |:Fix Released: :rn:`5.6.16-64.0` |
284 |:Upstream fix: N/A |
285 +-------------------------------------------------------------------------------------------------------------+
286 |:Upstream bug: :mysqlbug:`71624` - printf size_t results in a fatal warning in 32-bit debug builds |
287 |:Launchpad bug: :bug:`1277505` |
288-|:Upstream state: Can't repeat (checked on 2014-11-23) |
289+|:Upstream state: Can't repeat (checked on 2015-01-12) |
290 |:Fix Released: :rn:`5.6.16-64.0` |
291 |:Upstream fix: N/A |
292 +-------------------------------------------------------------------------------------------------------------+
293@@ -139,13 +169,13 @@
294 +-------------------------------------------------------------------------------------------------------------+
295 |:Upstream bug: :mysqlbug:`71270` - Failures to end bulk insert for partitioned tables handled incorrectly |
296 |:Launchpad bug: :bug:`1204871` |
297-|:Upstream state: Verified (checked on 2014-11-23) |
298+|:Upstream state: Verified (checked on 2015-01-12) |
299 |:Fix Released: :rn:`5.6.16-64.0` |
300 |:Upstream fix: N/A |
301 +-------------------------------------------------------------------------------------------------------------+
302 |:Upstream bug: :mysqlbug:`71217` - Threadpool - add thd_wait_begin/thd_wait_end to the network IO functions |
303 |:Launchpad bug: :bug:`1159743` |
304-|:Upstream state: Open (checked on 2014-11-23) |
305+|:Upstream state: Open (checked on 2015-01-12) |
306 |:Fix Released: :rn:`5.6.15-63.0` |
307 |:Upstream fix: N/A |
308 +-------------------------------------------------------------------------------------------------------------+
309@@ -163,7 +193,7 @@
310 +-------------------------------------------------------------------------------------------------------------+
311 |:Upstream bug: :mysqlbug:`71411` - buf_flush_LRU() does not return correct number in case of compressed pages|
312 |:Launchpad bug: :bug:`1231918` |
313-|:Upstream state: Verified (checked on 2014-11-23) |
314+|:Upstream state: Verified (checked on 2015-01-12) |
315 |:Fix Released: :rn:`5.6.13-61.0` |
316 |:Upstream fix: N/A |
317 +-------------------------------------------------------------------------------------------------------------+
318@@ -175,7 +205,7 @@
319 +-------------------------------------------------------------------------------------------------------------+
320 |:Upstream bug: :mysqlbug:`70490` - Suppression is too strict on some systems |
321 |:Launchpad bug: :bug:`1205196` |
322-|:Upstream state: No Feedback (checked on 2014-11-23) |
323+|:Upstream state: No Feedback (checked on 2015-01-12) |
324 |:Fix Released: :rn:`5.6.13-61.0` |
325 |:Upstream fix: N/A |
326 +-------------------------------------------------------------------------------------------------------------+
327@@ -187,7 +217,7 @@
328 +-------------------------------------------------------------------------------------------------------------+
329 |:Upstream bug: :mysqlbug:`70500` - Page cleaner should perform LRU flushing regardless of server activity |
330 |:Launchpad bug: :bug:`1234562` |
331-|:Upstream state: Open (checked on 2014-11-23) |
332+|:Upstream state: Verified (checked on 2015-01-12) |
333 |:Fix Released: :rn:`5.6.13-61.0` |
334 |:Upstream fix: N/A |
335 +-------------------------------------------------------------------------------------------------------------+
336@@ -205,25 +235,25 @@
337 +-------------------------------------------------------------------------------------------------------------+
338 |:Upstream bug: :mysqlbug:`68481` - InnoDB LRU flushing for MySQL 5.6 needs work |
339 |:Launchpad bug: :bug:`1232406` |
340-|:Upstream state: Verified (checked on 2014-11-23) |
341+|:Upstream state: Verified (checked on 2015-01-12) |
342 |:Fix Released: :rn:`5.6.13-61.0` |
343 |:Upstream fix: N/A |
344 +-------------------------------------------------------------------------------------------------------------+
345 |:Upstream bug: :mysqlbug:`70453` - Add hard timeouts to page cleaner flushes |
346 |:Launchpad bug: :bug:`1232101` |
347-|:Upstream state: Verified (checked on 2014-11-23) |
348+|:Upstream state: Verified (checked on 2015-01-12) |
349 |:Fix Released: :rn:`5.6.13-61.0` |
350 |:Upstream fix: N/A |
351 +-------------------------------------------------------------------------------------------------------------+
352 |:Upstream bug: :mysqlbug:`69170` - buf_flush_LRU is lazy |
353 |:Launchpad bug: :bug:`1231918` |
354-|:Upstream state: Verified (checked on 2014-11-23) |
355+|:Upstream state: Verified (checked on 2015-01-12) |
356 |:Fix Released: :rn:`5.6.13-61.0` |
357 |:Upstream fix: N/A |
358 +-------------------------------------------------------------------------------------------------------------+
359 |:Upstream bug: :mysqlbug:`68555` - thread convoys from log_checkpoint_margin with innodb_buffer_pool_inst... |
360 |:Launchpad bug: :bug:`1236884` |
361-|:Upstream state: Verified (checked on 2014-11-23) |
362+|:Upstream state: Verified (checked on 2015-01-12) |
363 |:Fix Released: :rn:`5.6.13-61.0` |
364 |:Upstream fix: N/A |
365 +-------------------------------------------------------------------------------------------------------------+
366@@ -253,7 +283,7 @@
367 +-------------------------------------------------------------------------------------------------------------+
368 |:Upstream bug: :mysqlbug:`62018` - innodb adaptive hash index mutex contention |
369 |:Launchpad bug: :bug:`1216804` |
370-|:Upstream state: Verified (checked on 2014-11-23) |
371+|:Upstream state: Verified (checked on 2015-01-12) |
372 |:Fix Released: :rn:`5.6.13-60.6` |
373 |:Upstream fix: N/A |
374 +-------------------------------------------------------------------------------------------------------------+
375@@ -271,13 +301,13 @@
376 +-------------------------------------------------------------------------------------------------------------+
377 |:Upstream bug: :mysqlbug:`42415` - UPDATE/DELETE with LIMIT clause unsafe for SBL even with ORDER BY PK ... |
378 |:Launchpad bug: :bug:`1132194` |
379-|:Upstream state: Verified (checked on 2014-11-23) |
380+|:Upstream state: Verified (checked on 2015-01-12) |
381 |:Fix Released: :rn:`5.6.13-60.5` |
382 |:Upstream fix: N/A |
383 +-------------------------------------------------------------------------------------------------------------+
384 |:Upstream bug: :mysqlbug:`69639` - mysql failed to build with dtrace Sun D 1.11 |
385 |:Launchpad bug: :bug:`1196460` |
386-|:Upstream state: Open (checked on 2014-11-23) |
387+|:Upstream state: Open (checked on 2015-01-12) |
388 |:Fix Released: :rn:`5.6.13-60.5` |
389 |:Upstream fix: N/A |
390 +-------------------------------------------------------------------------------------------------------------+
391@@ -295,7 +325,7 @@
392 +-------------------------------------------------------------------------------------------------------------+
393 |:Upstream bug: :mysqlbug:`69856` - mysql_install_db does not function properly in 5.6 for debug builds |
394 |:Launchpad bug: :bug:`1179359` |
395-|:Upstream state: Verified (checked on 2014-11-23) |
396+|:Upstream state: Verified (checked on 2015-01-12) |
397 |:Fix Released: :rn:`5.6.12-60.4` |
398 |:Upstream fix: N/A |
399 +-------------------------------------------------------------------------------------------------------------+
400@@ -307,7 +337,7 @@
401 +-------------------------------------------------------------------------------------------------------------+
402 |:Upstream bug: :mysqlbug:`71183` - os_file_fsync() should handle fsync() returning EINTR |
403 |:Launchpad bug: :bug:`1262651` |
404-|:Upstream state: Verified (checked on 2014-11-23) |
405+|:Upstream state: Verified (checked on 2015-01-12) |
406 |:Fix Released: :rn:`5.6.11-60.3` |
407 |:Upstream fix: N/A |
408 +-------------------------------------------------------------------------------------------------------------+
409@@ -337,7 +367,7 @@
410 +-------------------------------------------------------------------------------------------------------------+
411 |:Upstream bug: :mysqlbug:`68714` - Remove literal statement digest values from perfschema tests |
412 |:Launchpad bug: :bug:`1157078` |
413-|:Upstream state: Verified (checked on 2014-11-23) |
414+|:Upstream state: Verified (checked on 2015-01-12) |
415 |:Fix Released: :rn:`5.6.11-60.3` |
416 |:Upstream fix: N/A |
417 +-------------------------------------------------------------------------------------------------------------+
418@@ -361,13 +391,13 @@
419 +-------------------------------------------------------------------------------------------------------------+
420 |:Upstream bug: :mysqlbug:`68970` - fsp_reserve_free_extents switches from small to big tblspace handling ... |
421 |:Launchpad bug: :bug:`1169494` |
422-|:Upstream state: Verified (checked on 2014-11-23) |
423+|:Upstream state: Closed |
424 |:Fix Released: :rn:`5.6.11-60.3` |
425 |:Upstream fix: N/A |
426 +-------------------------------------------------------------------------------------------------------------+
427 |:Upstream bug: :mysqlbug:`68713` - create_duplicate_weedout_tmp_table() leaves key_part_flag uninitialized |
428 |:Launchpad bug: :bug:`1157037` |
429-|:Upstream state: Verified (checked on 2014-11-23) |
430+|:Upstream state: Verified (checked on 2015-01-12) |
431 |:Fix Released: :rn:`5.6.11-60.3` |
432 |:Upstream fix: N/A |
433 +-------------------------------------------------------------------------------------------------------------+
434@@ -379,13 +409,13 @@
435 +-------------------------------------------------------------------------------------------------------------+
436 |:Upstream bug: :mysqlbug:`68999` - SSL_OP_NO_COMPRESSION not defined |
437 |:Launchpad bug: :bug:`1183610` |
438-|:Upstream state: No Feedback (checked on 2014-11-23) |
439+|:Upstream state: No Feedback (checked on 2015-01-12) |
440 |:Fix Released: :rn:`5.6.11-60.3` |
441 |:Upstream fix: N/A |
442 +-------------------------------------------------------------------------------------------------------------+
443 |:Upstream bug: :mysqlbug:`68845` - Unnecessary log_sys->mutex reacquisition in mtr_log_reserve_and_write() |
444 |:Launchpad bug: :bug:`1163439` |
445-|:Upstream state: Verified (checked on 2014-11-23) |
446+|:Upstream state: Verified (checked on 2015-01-12) |
447 |:Fix Released: :rn:`5.6.11-60.3` |
448 |:Upstream fix: N/A |
449 +-------------------------------------------------------------------------------------------------------------+
450@@ -415,7 +445,7 @@
451 +-------------------------------------------------------------------------------------------------------------+
452 |:Upstream bug: :mysqlbug:`68476` - Suboptimal code in my_strnxfrm_simple() |
453 |:Launchpad bug: :bug:`1132350` |
454-|:Upstream state: Verified (checked on 2014-11-23) |
455+|:Upstream state: Closed |
456 |:Fix Released: :rn:`5.6.11-60.3` |
457 |:Upstream fix: N/A |
458 +-------------------------------------------------------------------------------------------------------------+
459@@ -475,7 +505,7 @@
460 +-------------------------------------------------------------------------------------------------------------+
461 |:Upstream bug: :mysqlbug:`61178` - Incorrect implementation of intersect(ulonglong) in non-optimized Bitmap..|
462 |:Launchpad bug: :bug:`1042517` |
463-|:Upstream state: Verified (checked on 2014-11-23) |
464+|:Upstream state: Verified (checked on 2015-01-12) |
465 |:Fix Released: :rn:`5.6.11-60.3` |
466 |:Upstream fix: N/A |
467 +-------------------------------------------------------------------------------------------------------------+
468@@ -487,7 +517,7 @@
469 +-------------------------------------------------------------------------------------------------------------+
470 |:Upstream bug: :mysqlbug:`64800` - mysqldump with --include-master-host-port putting quotes around port no. |
471 |:Launchpad bug: :bug:`1013432` |
472-|:Upstream state: Verified (checked on 2014-11-23) |
473+|:Upstream state: Verified (checked on 2015-01-12) |
474 |:Fix Released: :rn:`5.6.11-60.3` |
475 |:Upstream fix: N/A |
476 +-------------------------------------------------------------------------------------------------------------+
477@@ -517,13 +547,13 @@
478 +-------------------------------------------------------------------------------------------------------------+
479 |:Upstream bug: :mysqlbug:`25007` - memory tables with dynamic rows format |
480 |:Launchpad bug: :bug:`1148822` |
481-|:Upstream state: Verified (checked on 2014-11-23) |
482+|:Upstream state: Verified (checked on 2015-01-12) |
483 |:Fix Released: :rn:`5.6.11-60.3` |
484 |:Upstream fix: N/A |
485 +-------------------------------------------------------------------------------------------------------------+
486 |:Upstream bug: :mysqlbug:`61595` - mysql-test/include/wait_for_slave_param.inc timeout logic is incorrect |
487 |:Launchpad bug: :bug:`800035` |
488-|:Upstream state: Verified (checked on 2014-11-23) |
489+|:Upstream state: Verified (checked on 2015-01-12) |
490 |:Fix Released: :rn:`5.6.11-60.3` |
491 |:Upstream fix: N/A |
492 +-------------------------------------------------------------------------------------------------------------+
493@@ -547,13 +577,13 @@
494 +-------------------------------------------------------------------------------------------------------------+
495 |:Upstream bug: :mysqlbug:`20001` - Support for temp-tables in INFORMATION_SCHEMA |
496 |:Launchpad bug: N/A |
497-|:Upstream state: Verified (checked on 2014-11-23) |
498+|:Upstream state: Verified (checked on 2015-01-12) |
499 |:Fix Released: :rn:`5.6.5-60.0` |
500 |:Upstream fix: N/A |
501 +-------------------------------------------------------------------------------------------------------------+
502 |:Upstream bug: :mysqlbug:`69146` - Optimization in buf_pool_get_oldest_modification if srv_buf_pool_instances|
503 |:Launchpad bug: :bug:`1176496` |
504-|:Upstream state: Verified (checked on 2014-11-23) |
505+|:Upstream state: Verified (checked on 2015-01-12) |
506 |:Fix Released: :rn:`5.6.5-60.0` |
507 |:Upstream fix: N/A |
508 +-------------------------------------------------------------------------------------------------------------+

Subscribers

People subscribed via source and target branches