Merge lp:~hrvojem/percona-server/rn-5.6.21-70.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: 690
Proposed branch: lp:~hrvojem/percona-server/rn-5.6.21-70.0-5.6
Merge into: lp:percona-server/5.6
Diff against target: 556 lines (+227/-36)
9 files modified
doc/source/conf.py (+1/-1)
doc/source/flexibility/csv_engine_mode.rst (+99/-0)
doc/source/index.rst (+2/-0)
doc/source/installation/apt_repo.rst (+1/-1)
doc/source/management/super_read_only.rst (+29/-0)
doc/source/ps-versions-comparison.rst (+6/-0)
doc/source/release-notes/Percona-Server-5.6.21-70.0.rst (+36/-0)
doc/source/release-notes/release-notes_index.rst (+1/-0)
doc/source/upstream-bug-fixes.rst (+52/-34)
To merge this branch: bzr merge lp:~hrvojem/percona-server/rn-5.6.21-70.0-5.6
Reviewer Review Type Date Requested Status
Laurynas Biveinis (community) Approve
Review via email: mp+239844@code.launchpad.net
To post a comment you must log in.
Revision history for this message
Laurynas Biveinis (laurynas-biveinis) wrote :

    - csv_mode needs an example of the default and ietf_quotes parsing
    - super-read-only has been ported from WebScaleSQL. Both feature
      page and RNs need to say that.
    - super-read-only needs describing interaction of setting this and
      regular read-only options dynamically, ie what happens if super
      read only is set, and then read only is set to 0, etc.
    - 1067103: other bugs
    - 1379023: remove JSON, the bug affects all output formats
    - 1382069: "... entries, if a system-wide jemalloc library was
      installed"
    - 1382069: needs to say what can cause the incomplete event group
      in the relay log, as listed in comment #15 on the bug.
    - 1382782: would silently ignore any mysqld startup failures

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: 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 2014-10-07 07:12:53 +0000
3+++ doc/source/conf.py 2014-10-29 18:21:58 +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-69.0'
9+release = '5.6.21-70.0'
10
11 # The language for content autogenerated by Sphinx. Refer to documentation
12 # for a list of supported languages.
13
14=== added file 'doc/source/flexibility/csv_engine_mode.rst'
15--- doc/source/flexibility/csv_engine_mode.rst 1970-01-01 00:00:00 +0000
16+++ doc/source/flexibility/csv_engine_mode.rst 2014-10-29 18:21:58 +0000
17@@ -0,0 +1,99 @@
18+.. _csv_engine_mode:
19+
20+================================================================
21+ CSV engine mode for standard-compliant quote and comma parsing
22+================================================================
23+
24+`MySQL CSV Storage Engine <https://dev.mysql.com/doc/refman/5.6/en/csv-storage-engine.html>`_ is non-standard with respect to embedded ``"`` and ``,`` character parsing. Fixing this issue unconditionally would break |MySQL| CSV format compatibility for any pre-existing user tables and for data exchange with other |MySQL| instances, but it would improve compatibility with other CSV producing/consuming tools.
25+
26+To keep both |MySQL| and other tool compatibility, a new dynamic, global/session server variable :variable:`csv_mode` has been implemented. This variable allows an empty value (the default), and ``IETF_QUOTES``.
27+
28+If ``IETF_QUOTES`` is set, then embedded commas are accepted in quoted fields as-is, and a quote character is quoted by doubling it. In legacy mode embedded commas terminate the field, and quotes are quoted with a backslash.
29+
30+Example
31+=======
32+
33+Table:
34+
35+.. code-block:: mysql
36+
37+ mysql> CREATE TABLE albums (
38+ `artist` text NOT NULL,
39+ `album` text NOT NULL
40+ ) ENGINE=CSV DEFAULT CHARSET=utf8
41+ ;
42+
43+Following example shows the difference in parsing for default and ``IETF_QUOTES`` :variable:`csv_quotes`.
44+
45+.. code-block:: mysql
46+
47+ mysql> INSERT INTO albums VALUES ("Great Artist", "Old Album"),
48+ ("Great Artist", "Old Album \"Limited Edition\"");
49+
50+If the variable :variable:`csv_mode` is set to empty value (default) parsed data will look like: ::
51+
52+ "Great Artist","Old Album"
53+ "Great Artist","\"Limited Edition\",Old Album"
54+
55+If the variable :variable:`csv_mode` is set to ``IETF_QUOTES`` parsed data will look like as described in `CSV rules <http://en.wikipedia.org/wiki/Comma-separated_values#Basic_rules_and_examples>`_: ::
56+
57+ "Great Artist","Old Album"
58+ "Great Artist","""Limited Edition"",Old Album"
59+
60+Parsing the CSV file which has the proper quotes (shown in the previous example) can show different results:
61+
62+With :variable:`csv_mode` set to empty value, parsed data will look like:
63+
64+.. code-block:: mysql
65+
66+ mysql> select * from albums;
67+ +--------------+--------------------+
68+ | artist | album |
69+ +--------------+--------------------+
70+ | Great Artist | Old Album |
71+ | Great Artist | ""Limited Edition" |
72+ +--------------+--------------------+
73+ 2 rows in set (0.02 sec)
74+
75+With :variable:`csv_mode` set to ``IETF_QUOTES`` parsed data will look like:
76+
77+.. code-block:: mysql
78+
79+ mysql> set csv_mode='IETF_QUOTES'; Query OK, 0 rows affected (0.00 sec)
80+
81+ mysql> select * from albums;
82+ +--------------+-----------------------------+
83+ | artist | album |
84+ +--------------+-----------------------------+
85+ | Great Artist | Old Album |
86+ | Great Artist | "Limited Edition",Old Album |
87+ +--------------+-----------------------------+
88+
89+
90+Version Specific Information
91+============================
92+
93+ * :rn:`5.6.21-70.0`:
94+ Variable :variable:`csv_mode` implemented
95+
96+System Variables
97+================
98+
99+.. variable:: csv_mode
100+
101+ :version 5.6.21-70.0: Introduced.
102+ :cli: Yes
103+ :conf: Yes
104+ :scope: Global, Session
105+ :dyn: Yes
106+ :vartype: SET
107+ :default: ``(empty string)``
108+ :range: ``(empty string)``, ``IETF_QUOTES``
109+
110+Setting this variable is to ``IETF_QUOTES`` will enable the standard-compliant quote parsing: commas are accepted in quoted fields as-is, and quoting of ``"`` is changed from ``\"`` to ``""``. If the variable is set to empty value (the default), then the old parsing behavior is kept.
111+
112+Related Reading
113+===============
114+
115+ * `MySQL bug #71091 <http://bugs.mysql.com/bug.php?id=71091>`_
116+
117
118=== modified file 'doc/source/index.rst'
119--- doc/source/index.rst 2014-10-10 09:34:04 +0000
120+++ doc/source/index.rst 2014-10-29 18:21:58 +0000
121@@ -93,6 +93,7 @@
122 flexibility/extended_mysqlbinlog
123 flexibility/slowlog_rotation
124 flexibility/mysqlbinlog_change_db
125+ flexibility/csv_engine_mode
126
127 Reliability Improvements
128 ========================
129@@ -128,6 +129,7 @@
130 management/backup_locks
131 management/audit_log_plugin
132 management/start_transaction_with_consistent_snapshot
133+ management/super_read_only
134
135 Diagnostics Improvements
136 ========================
137
138=== modified file 'doc/source/installation/apt_repo.rst'
139--- doc/source/installation/apt_repo.rst 2014-09-23 15:01:44 +0000
140+++ doc/source/installation/apt_repo.rst 2014-10-29 18:21:58 +0000
141@@ -41,8 +41,8 @@
142
143 * 10.04LTS (lucid)
144 * 12.04LTS (precise)
145- * 13.10 (saucy)
146 * 14.04LTS (trusty)
147+ * 14.10 (utopic)
148
149 Percona `apt` Testing repository
150 =================================
151
152=== added file 'doc/source/management/super_read_only.rst'
153--- doc/source/management/super_read_only.rst 1970-01-01 00:00:00 +0000
154+++ doc/source/management/super_read_only.rst 2014-10-29 18:21:58 +0000
155@@ -0,0 +1,29 @@
156+.. _super-read-only:
157+
158+============================
159+ ``super-read-only`` option
160+============================
161+
162+|Percona Server| has ported new option, :variable:`super_read_only` from *WebScaleSQL*, which is like the `read-only <http://dev.mysql.com/doc/refman/5.6/en/server-system-variables.html#sysvar_read_only>`_ option, but affecting users with ``SUPER`` privileges as well. Enabling :variable:`super_read_only` implies regular ``read-only`` as well.
163+
164+Interaction with :variable:`read_only` variable:
165+
166+ * Turning :variable:`read_only` off also turns off :variable:`super_read_only`.
167+ * Turning :variable:`super_read_only` on also turns :variable:`read_only`` on.
168+ * All other changes to either one of these have no affect on the other.
169+
170+System Variables
171+================
172+
173+.. variable:: super_read_only
174+
175+ :version 5.6.21-70.0: Variable ported from *WebScaleSQL*
176+ :cli: Yes
177+ :conf: Yes
178+ :scope: Global
179+ :dyn: Yes
180+ :vartype: Boolean
181+ :default: OFF
182+
183+When enabled the server will not allow any updates even for the users that have ``SUPER`` privilege.
184+
185
186=== modified file 'doc/source/ps-versions-comparison.rst'
187--- doc/source/ps-versions-comparison.rst 2014-10-07 07:12:53 +0000
188+++ doc/source/ps-versions-comparison.rst 2014-10-29 18:21:58 +0000
189@@ -223,6 +223,12 @@
190 * - Feature not implemented
191 - Feature not implemented
192 - :ref:`Backup Locks <ps56:backup_locks>`
193+ * - Feature not implemented
194+ - Feature not implemented
195+ - :ref:`CSV engine mode for standard-compliant quote and comma parsing <ps56:csv_engine_mode>`
196+ * - Feature not implemented
197+ - Feature not implemented
198+ - :ref:`Super read-only <ps56:super-read-only>`
199
200
201 Other Reading
202
203=== added file 'doc/source/release-notes/Percona-Server-5.6.21-70.0.rst'
204--- doc/source/release-notes/Percona-Server-5.6.21-70.0.rst 1970-01-01 00:00:00 +0000
205+++ doc/source/release-notes/Percona-Server-5.6.21-70.0.rst 2014-10-29 18:21:58 +0000
206@@ -0,0 +1,36 @@
207+.. rn:: 5.6.21-70.0
208+
209+==============================
210+ |Percona Server| 5.6.21-70.0
211+==============================
212+
213+Percona is glad to announce the release of |Percona Server| 5.6.21-70.0 on October 30th, 2014 (Downloads are available `here <http://www.percona.com/downloads/Percona-Server-5.6/Percona-Server-5.6.21-70.0/>`_ and from the :doc:`Percona Software Repositories </installation>`).
214+
215+Based 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.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.21-70.0 milestone at Launchpad <https://launchpad.net/percona-server/+milestone/5.6.21-70.0>`_.
216+
217+
218+New Features
219+============
220+
221+ |Percona Server| has ported new :ref:`super-read-only` from *WebScaleSQL*.
222+
223+ |Percona Server| has implemented :ref:`csv_engine_mode`. This feature also fixes the bug :bug:`1316042` (upstream :mysqlbug:`71091`).
224+
225+ |Percona Server| now supports `Read Free Replication <https://github.com/Tokutek/tokudb-engine/wiki/Replication-Slave-Performance-on-TokuDB>`_ for TokuDB storage engine.
226+
227+ TokuDB storage engine package has been updated to version `7.5.2 <http://docs.tokutek.com/tokudb/tokudb-release-notes.html#tokudb-7-5-2>`_.
228+
229+Bugs Fixed
230+==========
231+
232+ Values of ``IP`` and ``DB`` fields in the :ref:`audit_log_plugin` were incorrect. Bug fixed :bug:`1379023`.
233+
234+ Specifying the ``--malloc-lib`` during the server start would produce two ``LD_PRELOAD`` entries, if a system-wide jemalloc library was installed. Bug fixed :bug:`1382069`.
235+
236+ In multi-threaded slave replication setup, an incomplete log event group (the one which doesn't end with ``COMMIT``/``ROLLBACK``/``XID``) in a relay log could have caused a replication stall. An incomplete log event group might occur as a result of one of the following events: 1) slave crash; 2) ``STOP SLAVE`` or ``FLUSH LOGS`` command issued at a specific moment; 3) server shutdown at a specific moment. Bug fixed :bug:`1331586` (upstream :mysqlbug:`73066`).
237+
238+ Purging bitmaps exactly up to the last tracked LSN would abort :ref:`changed_page_tracking`. Bug fixed :bug:`1382336`.
239+
240+ ``mysql_install_db`` script would silently ignore any mysqld startup failures. Bug fixed :bug:`1382782` (upstream :mysqlbug:`74440`)
241+
242+Other bugs fixed: :bug:`1369950`, :bug:`1335590`, :bug:`1067103`, and :bug:`1282599`.
243
244=== modified file 'doc/source/release-notes/release-notes_index.rst'
245--- doc/source/release-notes/release-notes_index.rst 2014-10-07 07:12:53 +0000
246+++ doc/source/release-notes/release-notes_index.rst 2014-10-29 18:21:58 +0000
247@@ -6,6 +6,7 @@
248 :maxdepth: 1
249 :glob:
250
251+ Percona-Server-5.6.21-70.0
252 Percona-Server-5.6.21-69.0
253 Percona-Server-5.6.20-68.0
254 Percona-Server-5.6.19-67.0
255
256=== modified file 'doc/source/upstream-bug-fixes.rst'
257--- doc/source/upstream-bug-fixes.rst 2014-10-07 07:12:53 +0000
258+++ doc/source/upstream-bug-fixes.rst 2014-10-29 18:21:58 +0000
259@@ -5,15 +5,33 @@
260 =============================================================
261
262 +-------------------------------------------------------------------------------------------------------------+
263+|:Upstream bug: :mysqlbug:`74440` - mysql_install_db not handling mysqld startup failure |
264+|:Launchpad bug: :bug:`1382782` |
265+|:Upstream state: Verified (checked on 2014-10-28) |
266+|:Fix Released: :rn:`5.6.21-70.0` |
267+|:Upstream fix: N/A |
268++-------------------------------------------------------------------------------------------------------------+
269+|:Upstream bug: :mysqlbug:`73066` - Replication stall with multi-threaded replication |
270+|:Launchpad bug: :bug:`1331586` |
271+|:Upstream state: Verified (checked on 2014-10-28) |
272+|:Fix Released: :rn:`5.6.21-70.0` |
273+|:Upstream fix: N/A |
274++-------------------------------------------------------------------------------------------------------------+
275+|:Upstream bug: :mysqlbug:`71091` - CSV engine does not properly process ``""``, in quotes |
276+|:Launchpad bug: :bug:`1316042` |
277+|:Upstream state: Verified (checked on 2014-10-28) |
278+|:Fix Released: :rn:`5.6.21-70.0` |
279+|:Upstream fix: N/A |
280++-------------------------------------------------------------------------------------------------------------+
281 |:Upstream bug: :mysqlbug:`70860` - --tc-heuristic-recover option values are broken |
282 |:Launchpad bug: :bug:`1334330` |
283-|:Upstream state: Open (checked on 2014-10-06) |
284+|:Upstream state: Verified (checked on 2014-10-28) |
285 |:Fix Released: :rn:`5.6.20-68.0` |
286 |:Upstream fix: N/A |
287 +-------------------------------------------------------------------------------------------------------------+
288 |:Upstream bug: :mysqlbug:`73418` - Add --manual-lldb option to mysql-test-run.pl |
289 |:Launchpad bug: :bug:`1328482` |
290-|:Upstream state: Verified (checked on 2014-10-06) |
291+|:Upstream state: Verified (checked on 2014-10-28) |
292 |:Fix Released: :rn:`5.6.20-68.0` |
293 |:Upstream fix: N/A |
294 +-------------------------------------------------------------------------------------------------------------+
295@@ -31,13 +49,13 @@
296 +-------------------------------------------------------------------------------------------------------------+
297 |:Upstream bug: :mysqlbug:`72615` - MTR --mysqld=--default-storage-engine=foo incompatible w/ dynamically... |
298 |:Launchpad bug: :bug:`1318537` |
299-|:Upstream state: Verified (checked on 2014-10-06) |
300+|:Upstream state: Verified (checked on 2014-10-28) |
301 |:Fix Released: :rn:`5.6.17-66.0` |
302 |:Upstream fix: N/A |
303 +-------------------------------------------------------------------------------------------------------------+
304 |:Upstream bug: :mysqlbug:`72163` - Rev 5774 broke rpl_plugin_load |
305 |:Launchpad bug: :bug:`1299688` |
306-|:Upstream state: Verified (checked on 2014-10-06) |
307+|:Upstream state: Verified (checked on 2014-10-28) |
308 |:Fix Released: :rn:`5.6.17-65.0` |
309 |:Upstream fix: N/A |
310 +-------------------------------------------------------------------------------------------------------------+
311@@ -55,19 +73,19 @@
312 +-------------------------------------------------------------------------------------------------------------+
313 |:Upstream bug: :mysqlbug:`71374` - Slave IO thread won't attempt auto reconnect to the master/error-code 1159|
314 |:Launchpad bug: :bug:`1268729` |
315-|:Upstream state: Verified (checked on 2014-10-06) |
316+|:Upstream state: Verified (checked on 2014-10-28) |
317 |:Fix Released: :rn:`5.6.16-64.1` |
318 |:Upstream fix: N/A |
319 +-------------------------------------------------------------------------------------------------------------+
320 |:Upstream bug: :mysqlbug:`71988` - page_cleaner: aggressive background flushing |
321 |:Launchpad bug: :bug:`1238039` |
322-|:Upstream state: Verified (checked on 2014-10-06) |
323+|:Upstream state: Verified (checked on 2014-10-28) |
324 |:Fix Released: :rn:`5.6.16-64.0` |
325 |:Upstream fix: N/A |
326 +-------------------------------------------------------------------------------------------------------------+
327 |:Upstream bug: :mysqlbug:`71624` - printf size_t results in a fatal warning in 32-bit debug builds |
328 |:Launchpad bug: :bug:`1277505` |
329-|:Upstream state: Can't repeat (checked on 2014-10-06) |
330+|:Upstream state: Can't repeat (checked on 2014-10-28) |
331 |:Fix Released: :rn:`5.6.16-64.0` |
332 |:Upstream fix: N/A |
333 +-------------------------------------------------------------------------------------------------------------+
334@@ -109,13 +127,13 @@
335 +-------------------------------------------------------------------------------------------------------------+
336 |:Upstream bug: :mysqlbug:`71270` - Failures to end bulk insert for partitioned tables handled incorrectly |
337 |:Launchpad bug: :bug:`1204871` |
338-|:Upstream state: Verified (checked on 2014-10-06) |
339+|:Upstream state: Verified (checked on 2014-10-28) |
340 |:Fix Released: :rn:`5.6.16-64.0` |
341 |:Upstream fix: N/A |
342 +-------------------------------------------------------------------------------------------------------------+
343 |:Upstream bug: :mysqlbug:`71217` - Threadpool - add thd_wait_begin/thd_wait_end to the network IO functions |
344 |:Launchpad bug: :bug:`1159743` |
345-|:Upstream state: Open (checked on 2014-10-06) |
346+|:Upstream state: Open (checked on 2014-10-28) |
347 |:Fix Released: :rn:`5.6.15-63.0` |
348 |:Upstream fix: N/A |
349 +-------------------------------------------------------------------------------------------------------------+
350@@ -133,7 +151,7 @@
351 +-------------------------------------------------------------------------------------------------------------+
352 |:Upstream bug: :mysqlbug:`71411` - buf_flush_LRU() does not return correct number in case of compressed pages|
353 |:Launchpad bug: :bug:`1231918` |
354-|:Upstream state: Verified (checked on 2014-10-06) |
355+|:Upstream state: Verified (checked on 2014-10-28) |
356 |:Fix Released: :rn:`5.6.13-61.0` |
357 |:Upstream fix: N/A |
358 +-------------------------------------------------------------------------------------------------------------+
359@@ -145,7 +163,7 @@
360 +-------------------------------------------------------------------------------------------------------------+
361 |:Upstream bug: :mysqlbug:`70490` - Suppression is too strict on some systems |
362 |:Launchpad bug: :bug:`1205196` |
363-|:Upstream state: No Feedback (checked on 2014-10-06) |
364+|:Upstream state: No Feedback (checked on 2014-10-28) |
365 |:Fix Released: :rn:`5.6.13-61.0` |
366 |:Upstream fix: N/A |
367 +-------------------------------------------------------------------------------------------------------------+
368@@ -157,7 +175,7 @@
369 +-------------------------------------------------------------------------------------------------------------+
370 |:Upstream bug: :mysqlbug:`70500` - Page cleaner should perform LRU flushing regardless of server activity |
371 |:Launchpad bug: :bug:`1234562` |
372-|:Upstream state: Open (checked on 2014-10-06) |
373+|:Upstream state: Open (checked on 2014-10-28) |
374 |:Fix Released: :rn:`5.6.13-61.0` |
375 |:Upstream fix: N/A |
376 +-------------------------------------------------------------------------------------------------------------+
377@@ -175,25 +193,25 @@
378 +-------------------------------------------------------------------------------------------------------------+
379 |:Upstream bug: :mysqlbug:`68481` - InnoDB LRU flushing for MySQL 5.6 needs work |
380 |:Launchpad bug: :bug:`1232406` |
381-|:Upstream state: Verified (checked on 2014-10-06) |
382+|:Upstream state: Verified (checked on 2014-10-28) |
383 |:Fix Released: :rn:`5.6.13-61.0` |
384 |:Upstream fix: N/A |
385 +-------------------------------------------------------------------------------------------------------------+
386 |:Upstream bug: :mysqlbug:`70453` - Add hard timeouts to page cleaner flushes |
387 |:Launchpad bug: :bug:`1232101` |
388-|:Upstream state: Verified (checked on 2014-10-06) |
389+|:Upstream state: Verified (checked on 2014-10-28) |
390 |:Fix Released: :rn:`5.6.13-61.0` |
391 |:Upstream fix: N/A |
392 +-------------------------------------------------------------------------------------------------------------+
393 |:Upstream bug: :mysqlbug:`69170` - buf_flush_LRU is lazy |
394 |:Launchpad bug: :bug:`1231918` |
395-|:Upstream state: Verified (checked on 2014-10-06) |
396+|:Upstream state: Verified (checked on 2014-10-28) |
397 |:Fix Released: :rn:`5.6.13-61.0` |
398 |:Upstream fix: N/A |
399 +-------------------------------------------------------------------------------------------------------------+
400 |:Upstream bug: :mysqlbug:`68555` - thread convoys from log_checkpoint_margin with innodb_buffer_pool_inst... |
401 |:Launchpad bug: :bug:`1236884` |
402-|:Upstream state: Verified (checked on 2014-10-06) |
403+|:Upstream state: Verified (checked on 2014-10-28) |
404 |:Fix Released: :rn:`5.6.13-61.0` |
405 |:Upstream fix: N/A |
406 +-------------------------------------------------------------------------------------------------------------+
407@@ -217,13 +235,13 @@
408 +-------------------------------------------------------------------------------------------------------------+
409 |:Upstream bug: :mysqlbug:`70216` - Unnecessary overhead from persistent adaptive hash index latches |
410 |:Launchpad bug: :bug:`1218347` |
411-|:Upstream state: Verified (checked on 2014-10-06) |
412+|:Upstream state: Closed |
413 |:Fix Released: :rn:`5.6.13-60.6` |
414 |:Upstream fix: N/A |
415 +-------------------------------------------------------------------------------------------------------------+
416 |:Upstream bug: :mysqlbug:`62018` - innodb adaptive hash index mutex contention |
417 |:Launchpad bug: :bug:`1216804` |
418-|:Upstream state: Verified (checked on 2014-10-06) |
419+|:Upstream state: Verified (checked on 2014-10-28) |
420 |:Fix Released: :rn:`5.6.13-60.6` |
421 |:Upstream fix: N/A |
422 +-------------------------------------------------------------------------------------------------------------+
423@@ -241,13 +259,13 @@
424 +-------------------------------------------------------------------------------------------------------------+
425 |:Upstream bug: :mysqlbug:`42415` - UPDATE/DELETE with LIMIT clause unsafe for SBL even with ORDER BY PK ... |
426 |:Launchpad bug: :bug:`1132194` |
427-|:Upstream state: Verified (checked on 2014-10-06) |
428+|:Upstream state: Verified (checked on 2014-10-28) |
429 |:Fix Released: :rn:`5.6.13-60.5` |
430 |:Upstream fix: N/A |
431 +-------------------------------------------------------------------------------------------------------------+
432 |:Upstream bug: :mysqlbug:`69639` - mysql failed to build with dtrace Sun D 1.11 |
433 |:Launchpad bug: :bug:`1196460` |
434-|:Upstream state: Open (checked on 2014-10-06) |
435+|:Upstream state: Open (checked on 2014-10-28) |
436 |:Fix Released: :rn:`5.6.13-60.5` |
437 |:Upstream fix: N/A |
438 +-------------------------------------------------------------------------------------------------------------+
439@@ -265,7 +283,7 @@
440 +-------------------------------------------------------------------------------------------------------------+
441 |:Upstream bug: :mysqlbug:`69856` - mysql_install_db does not function properly in 5.6 for debug builds |
442 |:Launchpad bug: :bug:`1179359` |
443-|:Upstream state: Verified (checked on 2014-10-06) |
444+|:Upstream state: Verified (checked on 2014-10-28) |
445 |:Fix Released: :rn:`5.6.12-60.4` |
446 |:Upstream fix: N/A |
447 +-------------------------------------------------------------------------------------------------------------+
448@@ -277,7 +295,7 @@
449 +-------------------------------------------------------------------------------------------------------------+
450 |:Upstream bug: :mysqlbug:`71183` - os_file_fsync() should handle fsync() returning EINTR |
451 |:Launchpad bug: :bug:`1262651` |
452-|:Upstream state: Verified (checked on 2014-10-06) |
453+|:Upstream state: Verified (checked on 2014-10-28) |
454 |:Fix Released: :rn:`5.6.11-60.3` |
455 |:Upstream fix: N/A |
456 +-------------------------------------------------------------------------------------------------------------+
457@@ -307,7 +325,7 @@
458 +-------------------------------------------------------------------------------------------------------------+
459 |:Upstream bug: :mysqlbug:`68714` - Remove literal statement digest values from perfschema tests |
460 |:Launchpad bug: :bug:`1157078` |
461-|:Upstream state: Verified (checked on 2014-10-06) |
462+|:Upstream state: Verified (checked on 2014-10-28) |
463 |:Fix Released: :rn:`5.6.11-60.3` |
464 |:Upstream fix: N/A |
465 +-------------------------------------------------------------------------------------------------------------+
466@@ -331,13 +349,13 @@
467 +-------------------------------------------------------------------------------------------------------------+
468 |:Upstream bug: :mysqlbug:`68970` - fsp_reserve_free_extents switches from small to big tblspace handling ... |
469 |:Launchpad bug: :bug:`1169494` |
470-|:Upstream state: Verified (checked on 2014-10-06) |
471+|:Upstream state: Verified (checked on 2014-10-28) |
472 |:Fix Released: :rn:`5.6.11-60.3` |
473 |:Upstream fix: N/A |
474 +-------------------------------------------------------------------------------------------------------------+
475 |:Upstream bug: :mysqlbug:`68713` - create_duplicate_weedout_tmp_table() leaves key_part_flag uninitialized |
476 |:Launchpad bug: :bug:`1157037` |
477-|:Upstream state: Verified (checked on 2014-10-06) |
478+|:Upstream state: Verified (checked on 2014-10-28) |
479 |:Fix Released: :rn:`5.6.11-60.3` |
480 |:Upstream fix: N/A |
481 +-------------------------------------------------------------------------------------------------------------+
482@@ -349,13 +367,13 @@
483 +-------------------------------------------------------------------------------------------------------------+
484 |:Upstream bug: :mysqlbug:`68999` - SSL_OP_NO_COMPRESSION not defined |
485 |:Launchpad bug: :bug:`1183610` |
486-|:Upstream state: No Feedback (checked on 2014-10-06) |
487+|:Upstream state: No Feedback (checked on 2014-10-28) |
488 |:Fix Released: :rn:`5.6.11-60.3` |
489 |:Upstream fix: N/A |
490 +-------------------------------------------------------------------------------------------------------------+
491 |:Upstream bug: :mysqlbug:`68845` - Unnecessary log_sys->mutex reacquisition in mtr_log_reserve_and_write() |
492 |:Launchpad bug: :bug:`1163439` |
493-|:Upstream state: Verified (checked on 2014-10-06) |
494+|:Upstream state: Verified (checked on 2014-10-28) |
495 |:Fix Released: :rn:`5.6.11-60.3` |
496 |:Upstream fix: N/A |
497 +-------------------------------------------------------------------------------------------------------------+
498@@ -385,7 +403,7 @@
499 +-------------------------------------------------------------------------------------------------------------+
500 |:Upstream bug: :mysqlbug:`68476` - Suboptimal code in my_strnxfrm_simple() |
501 |:Launchpad bug: :bug:`1132350` |
502-|:Upstream state: Verified (checked on 2014-10-06) |
503+|:Upstream state: Verified (checked on 2014-10-28) |
504 |:Fix Released: :rn:`5.6.11-60.3` |
505 |:Upstream fix: N/A |
506 +-------------------------------------------------------------------------------------------------------------+
507@@ -445,7 +463,7 @@
508 +-------------------------------------------------------------------------------------------------------------+
509 |:Upstream bug: :mysqlbug:`61178` - Incorrect implementation of intersect(ulonglong) in non-optimized Bitmap..|
510 |:Launchpad bug: :bug:`1042517` |
511-|:Upstream state: Verified (checked on 2014-10-06) |
512+|:Upstream state: Verified (checked on 2014-10-28) |
513 |:Fix Released: :rn:`5.6.11-60.3` |
514 |:Upstream fix: N/A |
515 +-------------------------------------------------------------------------------------------------------------+
516@@ -457,7 +475,7 @@
517 +-------------------------------------------------------------------------------------------------------------+
518 |:Upstream bug: :mysqlbug:`64800` - mysqldump with --include-master-host-port putting quotes around port no. |
519 |:Launchpad bug: :bug:`1013432` |
520-|:Upstream state: Verified (checked on 2014-10-06) |
521+|:Upstream state: Verified (checked on 2014-10-28) |
522 |:Fix Released: :rn:`5.6.11-60.3` |
523 |:Upstream fix: N/A |
524 +-------------------------------------------------------------------------------------------------------------+
525@@ -487,13 +505,13 @@
526 +-------------------------------------------------------------------------------------------------------------+
527 |:Upstream bug: :mysqlbug:`25007` - memory tables with dynamic rows format |
528 |:Launchpad bug: :bug:`1148822` |
529-|:Upstream state: Verified (checked on 2014-10-06) |
530+|:Upstream state: Verified (checked on 2014-10-28) |
531 |:Fix Released: :rn:`5.6.11-60.3` |
532 |:Upstream fix: N/A |
533 +-------------------------------------------------------------------------------------------------------------+
534 |:Upstream bug: :mysqlbug:`61595` - mysql-test/include/wait_for_slave_param.inc timeout logic is incorrect |
535 |:Launchpad bug: :bug:`800035` |
536-|:Upstream state: Verified (checked on 2014-10-06) |
537+|:Upstream state: Verified (checked on 2014-10-28) |
538 |:Fix Released: :rn:`5.6.11-60.3` |
539 |:Upstream fix: N/A |
540 +-------------------------------------------------------------------------------------------------------------+
541@@ -517,13 +535,13 @@
542 +-------------------------------------------------------------------------------------------------------------+
543 |:Upstream bug: :mysqlbug:`20001` - Support for temp-tables in INFORMATION_SCHEMA |
544 |:Launchpad bug: N/A |
545-|:Upstream state: Verified (checked on 2014-10-06) |
546+|:Upstream state: Verified (checked on 2014-10-28) |
547 |:Fix Released: :rn:`5.6.5-60.0` |
548 |:Upstream fix: N/A |
549 +-------------------------------------------------------------------------------------------------------------+
550 |:Upstream bug: :mysqlbug:`69146` - Optimization in buf_pool_get_oldest_modification if srv_buf_pool_instances|
551 |:Launchpad bug: :bug:`1176496` |
552-|:Upstream state: Verified (checked on 2014-10-06) |
553+|:Upstream state: Verified (checked on 2014-10-28) |
554 |:Fix Released: :rn:`5.6.5-60.0` |
555 |:Upstream fix: N/A |
556 +-------------------------------------------------------------------------------------------------------------+

Subscribers

People subscribed via source and target branches