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
=== modified file 'doc/source/conf.py'
--- doc/source/conf.py 2014-10-07 07:12:53 +0000
+++ doc/source/conf.py 2014-10-29 18:21:58 +0000
@@ -54,7 +54,7 @@
54# The short X.Y version.54# The short X.Y version.
55version = '5.6'55version = '5.6'
56# The full version, including alpha/beta/rc tags.56# The full version, including alpha/beta/rc tags.
57release = '5.6.21-69.0'57release = '5.6.21-70.0'
5858
59# The language for content autogenerated by Sphinx. Refer to documentation59# The language for content autogenerated by Sphinx. Refer to documentation
60# for a list of supported languages.60# for a list of supported languages.
6161
=== added file 'doc/source/flexibility/csv_engine_mode.rst'
--- doc/source/flexibility/csv_engine_mode.rst 1970-01-01 00:00:00 +0000
+++ doc/source/flexibility/csv_engine_mode.rst 2014-10-29 18:21:58 +0000
@@ -0,0 +1,99 @@
1.. _csv_engine_mode:
2
3================================================================
4 CSV engine mode for standard-compliant quote and comma parsing
5================================================================
6
7`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.
8
9To 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``.
10
11If ``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.
12
13Example
14=======
15
16Table:
17
18.. code-block:: mysql
19
20 mysql> CREATE TABLE albums (
21 `artist` text NOT NULL,
22 `album` text NOT NULL
23 ) ENGINE=CSV DEFAULT CHARSET=utf8
24 ;
25
26Following example shows the difference in parsing for default and ``IETF_QUOTES`` :variable:`csv_quotes`.
27
28.. code-block:: mysql
29
30 mysql> INSERT INTO albums VALUES ("Great Artist", "Old Album"),
31 ("Great Artist", "Old Album \"Limited Edition\"");
32
33If the variable :variable:`csv_mode` is set to empty value (default) parsed data will look like: ::
34
35 "Great Artist","Old Album"
36 "Great Artist","\"Limited Edition\",Old Album"
37
38If 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>`_: ::
39
40 "Great Artist","Old Album"
41 "Great Artist","""Limited Edition"",Old Album"
42
43Parsing the CSV file which has the proper quotes (shown in the previous example) can show different results:
44
45With :variable:`csv_mode` set to empty value, parsed data will look like:
46
47.. code-block:: mysql
48
49 mysql> select * from albums;
50 +--------------+--------------------+
51 | artist | album |
52 +--------------+--------------------+
53 | Great Artist | Old Album |
54 | Great Artist | ""Limited Edition" |
55 +--------------+--------------------+
56 2 rows in set (0.02 sec)
57
58With :variable:`csv_mode` set to ``IETF_QUOTES`` parsed data will look like:
59
60.. code-block:: mysql
61
62 mysql> set csv_mode='IETF_QUOTES'; Query OK, 0 rows affected (0.00 sec)
63
64 mysql> select * from albums;
65 +--------------+-----------------------------+
66 | artist | album |
67 +--------------+-----------------------------+
68 | Great Artist | Old Album |
69 | Great Artist | "Limited Edition",Old Album |
70 +--------------+-----------------------------+
71
72
73Version Specific Information
74============================
75
76 * :rn:`5.6.21-70.0`:
77 Variable :variable:`csv_mode` implemented
78
79System Variables
80================
81
82.. variable:: csv_mode
83
84 :version 5.6.21-70.0: Introduced.
85 :cli: Yes
86 :conf: Yes
87 :scope: Global, Session
88 :dyn: Yes
89 :vartype: SET
90 :default: ``(empty string)``
91 :range: ``(empty string)``, ``IETF_QUOTES``
92
93Setting 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.
94
95Related Reading
96===============
97
98 * `MySQL bug #71091 <http://bugs.mysql.com/bug.php?id=71091>`_
99
0100
=== modified file 'doc/source/index.rst'
--- doc/source/index.rst 2014-10-10 09:34:04 +0000
+++ doc/source/index.rst 2014-10-29 18:21:58 +0000
@@ -93,6 +93,7 @@
93 flexibility/extended_mysqlbinlog93 flexibility/extended_mysqlbinlog
94 flexibility/slowlog_rotation94 flexibility/slowlog_rotation
95 flexibility/mysqlbinlog_change_db95 flexibility/mysqlbinlog_change_db
96 flexibility/csv_engine_mode
9697
97Reliability Improvements98Reliability Improvements
98========================99========================
@@ -128,6 +129,7 @@
128 management/backup_locks129 management/backup_locks
129 management/audit_log_plugin130 management/audit_log_plugin
130 management/start_transaction_with_consistent_snapshot131 management/start_transaction_with_consistent_snapshot
132 management/super_read_only
131133
132Diagnostics Improvements134Diagnostics Improvements
133========================135========================
134136
=== modified file 'doc/source/installation/apt_repo.rst'
--- doc/source/installation/apt_repo.rst 2014-09-23 15:01:44 +0000
+++ doc/source/installation/apt_repo.rst 2014-10-29 18:21:58 +0000
@@ -41,8 +41,8 @@
4141
42 * 10.04LTS (lucid)42 * 10.04LTS (lucid)
43 * 12.04LTS (precise)43 * 12.04LTS (precise)
44 * 13.10 (saucy)
45 * 14.04LTS (trusty)44 * 14.04LTS (trusty)
45 * 14.10 (utopic)
4646
47Percona `apt` Testing repository47Percona `apt` Testing repository
48=================================48=================================
4949
=== added file 'doc/source/management/super_read_only.rst'
--- doc/source/management/super_read_only.rst 1970-01-01 00:00:00 +0000
+++ doc/source/management/super_read_only.rst 2014-10-29 18:21:58 +0000
@@ -0,0 +1,29 @@
1.. _super-read-only:
2
3============================
4 ``super-read-only`` option
5============================
6
7|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.
8
9Interaction with :variable:`read_only` variable:
10
11 * Turning :variable:`read_only` off also turns off :variable:`super_read_only`.
12 * Turning :variable:`super_read_only` on also turns :variable:`read_only`` on.
13 * All other changes to either one of these have no affect on the other.
14
15System Variables
16================
17
18.. variable:: super_read_only
19
20 :version 5.6.21-70.0: Variable ported from *WebScaleSQL*
21 :cli: Yes
22 :conf: Yes
23 :scope: Global
24 :dyn: Yes
25 :vartype: Boolean
26 :default: OFF
27
28When enabled the server will not allow any updates even for the users that have ``SUPER`` privilege.
29
030
=== modified file 'doc/source/ps-versions-comparison.rst'
--- doc/source/ps-versions-comparison.rst 2014-10-07 07:12:53 +0000
+++ doc/source/ps-versions-comparison.rst 2014-10-29 18:21:58 +0000
@@ -223,6 +223,12 @@
223 * - Feature not implemented223 * - Feature not implemented
224 - Feature not implemented224 - Feature not implemented
225 - :ref:`Backup Locks <ps56:backup_locks>`225 - :ref:`Backup Locks <ps56:backup_locks>`
226 * - Feature not implemented
227 - Feature not implemented
228 - :ref:`CSV engine mode for standard-compliant quote and comma parsing <ps56:csv_engine_mode>`
229 * - Feature not implemented
230 - Feature not implemented
231 - :ref:`Super read-only <ps56:super-read-only>`
226 232
227233
228Other Reading234Other Reading
229235
=== added file 'doc/source/release-notes/Percona-Server-5.6.21-70.0.rst'
--- doc/source/release-notes/Percona-Server-5.6.21-70.0.rst 1970-01-01 00:00:00 +0000
+++ doc/source/release-notes/Percona-Server-5.6.21-70.0.rst 2014-10-29 18:21:58 +0000
@@ -0,0 +1,36 @@
1.. rn:: 5.6.21-70.0
2
3==============================
4 |Percona Server| 5.6.21-70.0
5==============================
6
7Percona 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>`).
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.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>`_.
10
11
12New Features
13============
14
15 |Percona Server| has ported new :ref:`super-read-only` from *WebScaleSQL*.
16
17 |Percona Server| has implemented :ref:`csv_engine_mode`. This feature also fixes the bug :bug:`1316042` (upstream :mysqlbug:`71091`).
18
19 |Percona Server| now supports `Read Free Replication <https://github.com/Tokutek/tokudb-engine/wiki/Replication-Slave-Performance-on-TokuDB>`_ for TokuDB storage engine.
20
21 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>`_.
22
23Bugs Fixed
24==========
25
26 Values of ``IP`` and ``DB`` fields in the :ref:`audit_log_plugin` were incorrect. Bug fixed :bug:`1379023`.
27
28 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`.
29
30 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`).
31
32 Purging bitmaps exactly up to the last tracked LSN would abort :ref:`changed_page_tracking`. Bug fixed :bug:`1382336`.
33
34 ``mysql_install_db`` script would silently ignore any mysqld startup failures. Bug fixed :bug:`1382782` (upstream :mysqlbug:`74440`)
35
36Other bugs fixed: :bug:`1369950`, :bug:`1335590`, :bug:`1067103`, and :bug:`1282599`.
037
=== modified file 'doc/source/release-notes/release-notes_index.rst'
--- doc/source/release-notes/release-notes_index.rst 2014-10-07 07:12:53 +0000
+++ doc/source/release-notes/release-notes_index.rst 2014-10-29 18:21:58 +0000
@@ -6,6 +6,7 @@
6 :maxdepth: 16 :maxdepth: 1
7 :glob:7 :glob:
88
9 Percona-Server-5.6.21-70.0
9 Percona-Server-5.6.21-69.010 Percona-Server-5.6.21-69.0
10 Percona-Server-5.6.20-68.011 Percona-Server-5.6.20-68.0
11 Percona-Server-5.6.19-67.012 Percona-Server-5.6.19-67.0
1213
=== modified file 'doc/source/upstream-bug-fixes.rst'
--- doc/source/upstream-bug-fixes.rst 2014-10-07 07:12:53 +0000
+++ doc/source/upstream-bug-fixes.rst 2014-10-29 18:21:58 +0000
@@ -5,15 +5,33 @@
5=============================================================5=============================================================
66
7+-------------------------------------------------------------------------------------------------------------+7+-------------------------------------------------------------------------------------------------------------+
8|:Upstream bug: :mysqlbug:`74440` - mysql_install_db not handling mysqld startup failure |
9|:Launchpad bug: :bug:`1382782` |
10|:Upstream state: Verified (checked on 2014-10-28) |
11|:Fix Released: :rn:`5.6.21-70.0` |
12|:Upstream fix: N/A |
13+-------------------------------------------------------------------------------------------------------------+
14|:Upstream bug: :mysqlbug:`73066` - Replication stall with multi-threaded replication |
15|:Launchpad bug: :bug:`1331586` |
16|:Upstream state: Verified (checked on 2014-10-28) |
17|:Fix Released: :rn:`5.6.21-70.0` |
18|:Upstream fix: N/A |
19+-------------------------------------------------------------------------------------------------------------+
20|:Upstream bug: :mysqlbug:`71091` - CSV engine does not properly process ``""``, in quotes |
21|:Launchpad bug: :bug:`1316042` |
22|:Upstream state: Verified (checked on 2014-10-28) |
23|:Fix Released: :rn:`5.6.21-70.0` |
24|:Upstream fix: N/A |
25+-------------------------------------------------------------------------------------------------------------+
8|:Upstream bug: :mysqlbug:`70860` - --tc-heuristic-recover option values are broken |26|:Upstream bug: :mysqlbug:`70860` - --tc-heuristic-recover option values are broken |
9|:Launchpad bug: :bug:`1334330` |27|:Launchpad bug: :bug:`1334330` |
10|:Upstream state: Open (checked on 2014-10-06) |28|:Upstream state: Verified (checked on 2014-10-28) |
11|:Fix Released: :rn:`5.6.20-68.0` |29|:Fix Released: :rn:`5.6.20-68.0` |
12|:Upstream fix: N/A |30|:Upstream fix: N/A |
13+-------------------------------------------------------------------------------------------------------------+31+-------------------------------------------------------------------------------------------------------------+
14|:Upstream bug: :mysqlbug:`73418` - Add --manual-lldb option to mysql-test-run.pl |32|:Upstream bug: :mysqlbug:`73418` - Add --manual-lldb option to mysql-test-run.pl |
15|:Launchpad bug: :bug:`1328482` |33|:Launchpad bug: :bug:`1328482` |
16|:Upstream state: Verified (checked on 2014-10-06) |34|:Upstream state: Verified (checked on 2014-10-28) |
17|:Fix Released: :rn:`5.6.20-68.0` |35|:Fix Released: :rn:`5.6.20-68.0` |
18|:Upstream fix: N/A |36|:Upstream fix: N/A |
19+-------------------------------------------------------------------------------------------------------------+37+-------------------------------------------------------------------------------------------------------------+
@@ -31,13 +49,13 @@
31+-------------------------------------------------------------------------------------------------------------+49+-------------------------------------------------------------------------------------------------------------+
32|:Upstream bug: :mysqlbug:`72615` - MTR --mysqld=--default-storage-engine=foo incompatible w/ dynamically... |50|:Upstream bug: :mysqlbug:`72615` - MTR --mysqld=--default-storage-engine=foo incompatible w/ dynamically... |
33|:Launchpad bug: :bug:`1318537` |51|:Launchpad bug: :bug:`1318537` |
34|:Upstream state: Verified (checked on 2014-10-06) |52|:Upstream state: Verified (checked on 2014-10-28) |
35|:Fix Released: :rn:`5.6.17-66.0` |53|:Fix Released: :rn:`5.6.17-66.0` |
36|:Upstream fix: N/A |54|:Upstream fix: N/A |
37+-------------------------------------------------------------------------------------------------------------+55+-------------------------------------------------------------------------------------------------------------+
38|:Upstream bug: :mysqlbug:`72163` - Rev 5774 broke rpl_plugin_load |56|:Upstream bug: :mysqlbug:`72163` - Rev 5774 broke rpl_plugin_load |
39|:Launchpad bug: :bug:`1299688` |57|:Launchpad bug: :bug:`1299688` |
40|:Upstream state: Verified (checked on 2014-10-06) |58|:Upstream state: Verified (checked on 2014-10-28) |
41|:Fix Released: :rn:`5.6.17-65.0` |59|:Fix Released: :rn:`5.6.17-65.0` |
42|:Upstream fix: N/A |60|:Upstream fix: N/A |
43+-------------------------------------------------------------------------------------------------------------+61+-------------------------------------------------------------------------------------------------------------+
@@ -55,19 +73,19 @@
55+-------------------------------------------------------------------------------------------------------------+73+-------------------------------------------------------------------------------------------------------------+
56|:Upstream bug: :mysqlbug:`71374` - Slave IO thread won't attempt auto reconnect to the master/error-code 1159|74|:Upstream bug: :mysqlbug:`71374` - Slave IO thread won't attempt auto reconnect to the master/error-code 1159|
57|:Launchpad bug: :bug:`1268729` |75|:Launchpad bug: :bug:`1268729` |
58|:Upstream state: Verified (checked on 2014-10-06) |76|:Upstream state: Verified (checked on 2014-10-28) |
59|:Fix Released: :rn:`5.6.16-64.1` |77|:Fix Released: :rn:`5.6.16-64.1` |
60|:Upstream fix: N/A |78|:Upstream fix: N/A |
61+-------------------------------------------------------------------------------------------------------------+79+-------------------------------------------------------------------------------------------------------------+
62|:Upstream bug: :mysqlbug:`71988` - page_cleaner: aggressive background flushing |80|:Upstream bug: :mysqlbug:`71988` - page_cleaner: aggressive background flushing |
63|:Launchpad bug: :bug:`1238039` |81|:Launchpad bug: :bug:`1238039` |
64|:Upstream state: Verified (checked on 2014-10-06) |82|:Upstream state: Verified (checked on 2014-10-28) |
65|:Fix Released: :rn:`5.6.16-64.0` |83|:Fix Released: :rn:`5.6.16-64.0` |
66|:Upstream fix: N/A |84|:Upstream fix: N/A |
67+-------------------------------------------------------------------------------------------------------------+85+-------------------------------------------------------------------------------------------------------------+
68|:Upstream bug: :mysqlbug:`71624` - printf size_t results in a fatal warning in 32-bit debug builds |86|:Upstream bug: :mysqlbug:`71624` - printf size_t results in a fatal warning in 32-bit debug builds |
69|:Launchpad bug: :bug:`1277505` |87|:Launchpad bug: :bug:`1277505` |
70|:Upstream state: Can't repeat (checked on 2014-10-06) |88|:Upstream state: Can't repeat (checked on 2014-10-28) |
71|:Fix Released: :rn:`5.6.16-64.0` |89|:Fix Released: :rn:`5.6.16-64.0` |
72|:Upstream fix: N/A |90|:Upstream fix: N/A |
73+-------------------------------------------------------------------------------------------------------------+91+-------------------------------------------------------------------------------------------------------------+
@@ -109,13 +127,13 @@
109+-------------------------------------------------------------------------------------------------------------+127+-------------------------------------------------------------------------------------------------------------+
110|:Upstream bug: :mysqlbug:`71270` - Failures to end bulk insert for partitioned tables handled incorrectly |128|:Upstream bug: :mysqlbug:`71270` - Failures to end bulk insert for partitioned tables handled incorrectly |
111|:Launchpad bug: :bug:`1204871` |129|:Launchpad bug: :bug:`1204871` |
112|:Upstream state: Verified (checked on 2014-10-06) |130|:Upstream state: Verified (checked on 2014-10-28) |
113|:Fix Released: :rn:`5.6.16-64.0` |131|:Fix Released: :rn:`5.6.16-64.0` |
114|:Upstream fix: N/A |132|:Upstream fix: N/A |
115+-------------------------------------------------------------------------------------------------------------+133+-------------------------------------------------------------------------------------------------------------+
116|:Upstream bug: :mysqlbug:`71217` - Threadpool - add thd_wait_begin/thd_wait_end to the network IO functions |134|:Upstream bug: :mysqlbug:`71217` - Threadpool - add thd_wait_begin/thd_wait_end to the network IO functions |
117|:Launchpad bug: :bug:`1159743` |135|:Launchpad bug: :bug:`1159743` |
118|:Upstream state: Open (checked on 2014-10-06) |136|:Upstream state: Open (checked on 2014-10-28) |
119|:Fix Released: :rn:`5.6.15-63.0` |137|:Fix Released: :rn:`5.6.15-63.0` |
120|:Upstream fix: N/A |138|:Upstream fix: N/A |
121+-------------------------------------------------------------------------------------------------------------+139+-------------------------------------------------------------------------------------------------------------+
@@ -133,7 +151,7 @@
133+-------------------------------------------------------------------------------------------------------------+151+-------------------------------------------------------------------------------------------------------------+
134|:Upstream bug: :mysqlbug:`71411` - buf_flush_LRU() does not return correct number in case of compressed pages|152|:Upstream bug: :mysqlbug:`71411` - buf_flush_LRU() does not return correct number in case of compressed pages|
135|:Launchpad bug: :bug:`1231918` |153|:Launchpad bug: :bug:`1231918` |
136|:Upstream state: Verified (checked on 2014-10-06) |154|:Upstream state: Verified (checked on 2014-10-28) |
137|:Fix Released: :rn:`5.6.13-61.0` |155|:Fix Released: :rn:`5.6.13-61.0` |
138|:Upstream fix: N/A |156|:Upstream fix: N/A |
139+-------------------------------------------------------------------------------------------------------------+157+-------------------------------------------------------------------------------------------------------------+
@@ -145,7 +163,7 @@
145+-------------------------------------------------------------------------------------------------------------+163+-------------------------------------------------------------------------------------------------------------+
146|:Upstream bug: :mysqlbug:`70490` - Suppression is too strict on some systems |164|:Upstream bug: :mysqlbug:`70490` - Suppression is too strict on some systems |
147|:Launchpad bug: :bug:`1205196` |165|:Launchpad bug: :bug:`1205196` |
148|:Upstream state: No Feedback (checked on 2014-10-06) |166|:Upstream state: No Feedback (checked on 2014-10-28) |
149|:Fix Released: :rn:`5.6.13-61.0` |167|:Fix Released: :rn:`5.6.13-61.0` |
150|:Upstream fix: N/A |168|:Upstream fix: N/A |
151+-------------------------------------------------------------------------------------------------------------+169+-------------------------------------------------------------------------------------------------------------+
@@ -157,7 +175,7 @@
157+-------------------------------------------------------------------------------------------------------------+175+-------------------------------------------------------------------------------------------------------------+
158|:Upstream bug: :mysqlbug:`70500` - Page cleaner should perform LRU flushing regardless of server activity |176|:Upstream bug: :mysqlbug:`70500` - Page cleaner should perform LRU flushing regardless of server activity |
159|:Launchpad bug: :bug:`1234562` |177|:Launchpad bug: :bug:`1234562` |
160|:Upstream state: Open (checked on 2014-10-06) |178|:Upstream state: Open (checked on 2014-10-28) |
161|:Fix Released: :rn:`5.6.13-61.0` |179|:Fix Released: :rn:`5.6.13-61.0` |
162|:Upstream fix: N/A |180|:Upstream fix: N/A |
163+-------------------------------------------------------------------------------------------------------------+181+-------------------------------------------------------------------------------------------------------------+
@@ -175,25 +193,25 @@
175+-------------------------------------------------------------------------------------------------------------+193+-------------------------------------------------------------------------------------------------------------+
176|:Upstream bug: :mysqlbug:`68481` - InnoDB LRU flushing for MySQL 5.6 needs work |194|:Upstream bug: :mysqlbug:`68481` - InnoDB LRU flushing for MySQL 5.6 needs work |
177|:Launchpad bug: :bug:`1232406` |195|:Launchpad bug: :bug:`1232406` |
178|:Upstream state: Verified (checked on 2014-10-06) |196|:Upstream state: Verified (checked on 2014-10-28) |
179|:Fix Released: :rn:`5.6.13-61.0` |197|:Fix Released: :rn:`5.6.13-61.0` |
180|:Upstream fix: N/A |198|:Upstream fix: N/A |
181+-------------------------------------------------------------------------------------------------------------+199+-------------------------------------------------------------------------------------------------------------+
182|:Upstream bug: :mysqlbug:`70453` - Add hard timeouts to page cleaner flushes |200|:Upstream bug: :mysqlbug:`70453` - Add hard timeouts to page cleaner flushes |
183|:Launchpad bug: :bug:`1232101` |201|:Launchpad bug: :bug:`1232101` |
184|:Upstream state: Verified (checked on 2014-10-06) |202|:Upstream state: Verified (checked on 2014-10-28) |
185|:Fix Released: :rn:`5.6.13-61.0` |203|:Fix Released: :rn:`5.6.13-61.0` |
186|:Upstream fix: N/A |204|:Upstream fix: N/A |
187+-------------------------------------------------------------------------------------------------------------+205+-------------------------------------------------------------------------------------------------------------+
188|:Upstream bug: :mysqlbug:`69170` - buf_flush_LRU is lazy |206|:Upstream bug: :mysqlbug:`69170` - buf_flush_LRU is lazy |
189|:Launchpad bug: :bug:`1231918` |207|:Launchpad bug: :bug:`1231918` |
190|:Upstream state: Verified (checked on 2014-10-06) |208|:Upstream state: Verified (checked on 2014-10-28) |
191|:Fix Released: :rn:`5.6.13-61.0` |209|:Fix Released: :rn:`5.6.13-61.0` |
192|:Upstream fix: N/A |210|:Upstream fix: N/A |
193+-------------------------------------------------------------------------------------------------------------+211+-------------------------------------------------------------------------------------------------------------+
194|:Upstream bug: :mysqlbug:`68555` - thread convoys from log_checkpoint_margin with innodb_buffer_pool_inst... |212|:Upstream bug: :mysqlbug:`68555` - thread convoys from log_checkpoint_margin with innodb_buffer_pool_inst... |
195|:Launchpad bug: :bug:`1236884` |213|:Launchpad bug: :bug:`1236884` |
196|:Upstream state: Verified (checked on 2014-10-06) |214|:Upstream state: Verified (checked on 2014-10-28) |
197|:Fix Released: :rn:`5.6.13-61.0` |215|:Fix Released: :rn:`5.6.13-61.0` |
198|:Upstream fix: N/A |216|:Upstream fix: N/A |
199+-------------------------------------------------------------------------------------------------------------+217+-------------------------------------------------------------------------------------------------------------+
@@ -217,13 +235,13 @@
217+-------------------------------------------------------------------------------------------------------------+235+-------------------------------------------------------------------------------------------------------------+
218|:Upstream bug: :mysqlbug:`70216` - Unnecessary overhead from persistent adaptive hash index latches |236|:Upstream bug: :mysqlbug:`70216` - Unnecessary overhead from persistent adaptive hash index latches |
219|:Launchpad bug: :bug:`1218347` |237|:Launchpad bug: :bug:`1218347` |
220|:Upstream state: Verified (checked on 2014-10-06) |238|:Upstream state: Closed |
221|:Fix Released: :rn:`5.6.13-60.6` |239|:Fix Released: :rn:`5.6.13-60.6` |
222|:Upstream fix: N/A |240|:Upstream fix: N/A |
223+-------------------------------------------------------------------------------------------------------------+241+-------------------------------------------------------------------------------------------------------------+
224|:Upstream bug: :mysqlbug:`62018` - innodb adaptive hash index mutex contention |242|:Upstream bug: :mysqlbug:`62018` - innodb adaptive hash index mutex contention |
225|:Launchpad bug: :bug:`1216804` |243|:Launchpad bug: :bug:`1216804` |
226|:Upstream state: Verified (checked on 2014-10-06) |244|:Upstream state: Verified (checked on 2014-10-28) |
227|:Fix Released: :rn:`5.6.13-60.6` |245|:Fix Released: :rn:`5.6.13-60.6` |
228|:Upstream fix: N/A |246|:Upstream fix: N/A |
229+-------------------------------------------------------------------------------------------------------------+247+-------------------------------------------------------------------------------------------------------------+
@@ -241,13 +259,13 @@
241+-------------------------------------------------------------------------------------------------------------+259+-------------------------------------------------------------------------------------------------------------+
242|:Upstream bug: :mysqlbug:`42415` - UPDATE/DELETE with LIMIT clause unsafe for SBL even with ORDER BY PK ... |260|:Upstream bug: :mysqlbug:`42415` - UPDATE/DELETE with LIMIT clause unsafe for SBL even with ORDER BY PK ... |
243|:Launchpad bug: :bug:`1132194` |261|:Launchpad bug: :bug:`1132194` |
244|:Upstream state: Verified (checked on 2014-10-06) |262|:Upstream state: Verified (checked on 2014-10-28) |
245|:Fix Released: :rn:`5.6.13-60.5` |263|:Fix Released: :rn:`5.6.13-60.5` |
246|:Upstream fix: N/A |264|:Upstream fix: N/A |
247+-------------------------------------------------------------------------------------------------------------+265+-------------------------------------------------------------------------------------------------------------+
248|:Upstream bug: :mysqlbug:`69639` - mysql failed to build with dtrace Sun D 1.11 |266|:Upstream bug: :mysqlbug:`69639` - mysql failed to build with dtrace Sun D 1.11 |
249|:Launchpad bug: :bug:`1196460` |267|:Launchpad bug: :bug:`1196460` |
250|:Upstream state: Open (checked on 2014-10-06) |268|:Upstream state: Open (checked on 2014-10-28) |
251|:Fix Released: :rn:`5.6.13-60.5` |269|:Fix Released: :rn:`5.6.13-60.5` |
252|:Upstream fix: N/A |270|:Upstream fix: N/A |
253+-------------------------------------------------------------------------------------------------------------+271+-------------------------------------------------------------------------------------------------------------+
@@ -265,7 +283,7 @@
265+-------------------------------------------------------------------------------------------------------------+283+-------------------------------------------------------------------------------------------------------------+
266|:Upstream bug: :mysqlbug:`69856` - mysql_install_db does not function properly in 5.6 for debug builds |284|:Upstream bug: :mysqlbug:`69856` - mysql_install_db does not function properly in 5.6 for debug builds |
267|:Launchpad bug: :bug:`1179359` |285|:Launchpad bug: :bug:`1179359` |
268|:Upstream state: Verified (checked on 2014-10-06) |286|:Upstream state: Verified (checked on 2014-10-28) |
269|:Fix Released: :rn:`5.6.12-60.4` |287|:Fix Released: :rn:`5.6.12-60.4` |
270|:Upstream fix: N/A |288|:Upstream fix: N/A |
271+-------------------------------------------------------------------------------------------------------------+289+-------------------------------------------------------------------------------------------------------------+
@@ -277,7 +295,7 @@
277+-------------------------------------------------------------------------------------------------------------+295+-------------------------------------------------------------------------------------------------------------+
278|:Upstream bug: :mysqlbug:`71183` - os_file_fsync() should handle fsync() returning EINTR |296|:Upstream bug: :mysqlbug:`71183` - os_file_fsync() should handle fsync() returning EINTR |
279|:Launchpad bug: :bug:`1262651` |297|:Launchpad bug: :bug:`1262651` |
280|:Upstream state: Verified (checked on 2014-10-06) |298|:Upstream state: Verified (checked on 2014-10-28) |
281|:Fix Released: :rn:`5.6.11-60.3` |299|:Fix Released: :rn:`5.6.11-60.3` |
282|:Upstream fix: N/A |300|:Upstream fix: N/A |
283+-------------------------------------------------------------------------------------------------------------+301+-------------------------------------------------------------------------------------------------------------+
@@ -307,7 +325,7 @@
307+-------------------------------------------------------------------------------------------------------------+325+-------------------------------------------------------------------------------------------------------------+
308|:Upstream bug: :mysqlbug:`68714` - Remove literal statement digest values from perfschema tests |326|:Upstream bug: :mysqlbug:`68714` - Remove literal statement digest values from perfschema tests |
309|:Launchpad bug: :bug:`1157078` |327|:Launchpad bug: :bug:`1157078` |
310|:Upstream state: Verified (checked on 2014-10-06) |328|:Upstream state: Verified (checked on 2014-10-28) |
311|:Fix Released: :rn:`5.6.11-60.3` |329|:Fix Released: :rn:`5.6.11-60.3` |
312|:Upstream fix: N/A |330|:Upstream fix: N/A |
313+-------------------------------------------------------------------------------------------------------------+331+-------------------------------------------------------------------------------------------------------------+
@@ -331,13 +349,13 @@
331+-------------------------------------------------------------------------------------------------------------+349+-------------------------------------------------------------------------------------------------------------+
332|:Upstream bug: :mysqlbug:`68970` - fsp_reserve_free_extents switches from small to big tblspace handling ... |350|:Upstream bug: :mysqlbug:`68970` - fsp_reserve_free_extents switches from small to big tblspace handling ... |
333|:Launchpad bug: :bug:`1169494` |351|:Launchpad bug: :bug:`1169494` |
334|:Upstream state: Verified (checked on 2014-10-06) |352|:Upstream state: Verified (checked on 2014-10-28) |
335|:Fix Released: :rn:`5.6.11-60.3` |353|:Fix Released: :rn:`5.6.11-60.3` |
336|:Upstream fix: N/A |354|:Upstream fix: N/A |
337+-------------------------------------------------------------------------------------------------------------+355+-------------------------------------------------------------------------------------------------------------+
338|:Upstream bug: :mysqlbug:`68713` - create_duplicate_weedout_tmp_table() leaves key_part_flag uninitialized |356|:Upstream bug: :mysqlbug:`68713` - create_duplicate_weedout_tmp_table() leaves key_part_flag uninitialized |
339|:Launchpad bug: :bug:`1157037` |357|:Launchpad bug: :bug:`1157037` |
340|:Upstream state: Verified (checked on 2014-10-06) |358|:Upstream state: Verified (checked on 2014-10-28) |
341|:Fix Released: :rn:`5.6.11-60.3` |359|:Fix Released: :rn:`5.6.11-60.3` |
342|:Upstream fix: N/A |360|:Upstream fix: N/A |
343+-------------------------------------------------------------------------------------------------------------+361+-------------------------------------------------------------------------------------------------------------+
@@ -349,13 +367,13 @@
349+-------------------------------------------------------------------------------------------------------------+367+-------------------------------------------------------------------------------------------------------------+
350|:Upstream bug: :mysqlbug:`68999` - SSL_OP_NO_COMPRESSION not defined |368|:Upstream bug: :mysqlbug:`68999` - SSL_OP_NO_COMPRESSION not defined |
351|:Launchpad bug: :bug:`1183610` |369|:Launchpad bug: :bug:`1183610` |
352|:Upstream state: No Feedback (checked on 2014-10-06) |370|:Upstream state: No Feedback (checked on 2014-10-28) |
353|:Fix Released: :rn:`5.6.11-60.3` |371|:Fix Released: :rn:`5.6.11-60.3` |
354|:Upstream fix: N/A |372|:Upstream fix: N/A |
355+-------------------------------------------------------------------------------------------------------------+373+-------------------------------------------------------------------------------------------------------------+
356|:Upstream bug: :mysqlbug:`68845` - Unnecessary log_sys->mutex reacquisition in mtr_log_reserve_and_write() |374|:Upstream bug: :mysqlbug:`68845` - Unnecessary log_sys->mutex reacquisition in mtr_log_reserve_and_write() |
357|:Launchpad bug: :bug:`1163439` |375|:Launchpad bug: :bug:`1163439` |
358|:Upstream state: Verified (checked on 2014-10-06) |376|:Upstream state: Verified (checked on 2014-10-28) |
359|:Fix Released: :rn:`5.6.11-60.3` |377|:Fix Released: :rn:`5.6.11-60.3` |
360|:Upstream fix: N/A |378|:Upstream fix: N/A |
361+-------------------------------------------------------------------------------------------------------------+379+-------------------------------------------------------------------------------------------------------------+
@@ -385,7 +403,7 @@
385+-------------------------------------------------------------------------------------------------------------+403+-------------------------------------------------------------------------------------------------------------+
386|:Upstream bug: :mysqlbug:`68476` - Suboptimal code in my_strnxfrm_simple() |404|:Upstream bug: :mysqlbug:`68476` - Suboptimal code in my_strnxfrm_simple() |
387|:Launchpad bug: :bug:`1132350` |405|:Launchpad bug: :bug:`1132350` |
388|:Upstream state: Verified (checked on 2014-10-06) |406|:Upstream state: Verified (checked on 2014-10-28) |
389|:Fix Released: :rn:`5.6.11-60.3` |407|:Fix Released: :rn:`5.6.11-60.3` |
390|:Upstream fix: N/A |408|:Upstream fix: N/A |
391+-------------------------------------------------------------------------------------------------------------+409+-------------------------------------------------------------------------------------------------------------+
@@ -445,7 +463,7 @@
445+-------------------------------------------------------------------------------------------------------------+463+-------------------------------------------------------------------------------------------------------------+
446|:Upstream bug: :mysqlbug:`61178` - Incorrect implementation of intersect(ulonglong) in non-optimized Bitmap..|464|:Upstream bug: :mysqlbug:`61178` - Incorrect implementation of intersect(ulonglong) in non-optimized Bitmap..|
447|:Launchpad bug: :bug:`1042517` |465|:Launchpad bug: :bug:`1042517` |
448|:Upstream state: Verified (checked on 2014-10-06) |466|:Upstream state: Verified (checked on 2014-10-28) |
449|:Fix Released: :rn:`5.6.11-60.3` |467|:Fix Released: :rn:`5.6.11-60.3` |
450|:Upstream fix: N/A |468|:Upstream fix: N/A |
451+-------------------------------------------------------------------------------------------------------------+469+-------------------------------------------------------------------------------------------------------------+
@@ -457,7 +475,7 @@
457+-------------------------------------------------------------------------------------------------------------+475+-------------------------------------------------------------------------------------------------------------+
458|:Upstream bug: :mysqlbug:`64800` - mysqldump with --include-master-host-port putting quotes around port no. | 476|:Upstream bug: :mysqlbug:`64800` - mysqldump with --include-master-host-port putting quotes around port no. |
459|:Launchpad bug: :bug:`1013432` |477|:Launchpad bug: :bug:`1013432` |
460|:Upstream state: Verified (checked on 2014-10-06) |478|:Upstream state: Verified (checked on 2014-10-28) |
461|:Fix Released: :rn:`5.6.11-60.3` |479|:Fix Released: :rn:`5.6.11-60.3` |
462|:Upstream fix: N/A |480|:Upstream fix: N/A |
463+-------------------------------------------------------------------------------------------------------------+481+-------------------------------------------------------------------------------------------------------------+
@@ -487,13 +505,13 @@
487+-------------------------------------------------------------------------------------------------------------+505+-------------------------------------------------------------------------------------------------------------+
488|:Upstream bug: :mysqlbug:`25007` - memory tables with dynamic rows format |506|:Upstream bug: :mysqlbug:`25007` - memory tables with dynamic rows format |
489|:Launchpad bug: :bug:`1148822` |507|:Launchpad bug: :bug:`1148822` |
490|:Upstream state: Verified (checked on 2014-10-06) |508|:Upstream state: Verified (checked on 2014-10-28) |
491|:Fix Released: :rn:`5.6.11-60.3` |509|:Fix Released: :rn:`5.6.11-60.3` |
492|:Upstream fix: N/A |510|:Upstream fix: N/A |
493+-------------------------------------------------------------------------------------------------------------+511+-------------------------------------------------------------------------------------------------------------+
494|:Upstream bug: :mysqlbug:`61595` - mysql-test/include/wait_for_slave_param.inc timeout logic is incorrect |512|:Upstream bug: :mysqlbug:`61595` - mysql-test/include/wait_for_slave_param.inc timeout logic is incorrect |
495|:Launchpad bug: :bug:`800035` |513|:Launchpad bug: :bug:`800035` |
496|:Upstream state: Verified (checked on 2014-10-06) |514|:Upstream state: Verified (checked on 2014-10-28) |
497|:Fix Released: :rn:`5.6.11-60.3` |515|:Fix Released: :rn:`5.6.11-60.3` |
498|:Upstream fix: N/A |516|:Upstream fix: N/A |
499+-------------------------------------------------------------------------------------------------------------+517+-------------------------------------------------------------------------------------------------------------+
@@ -517,13 +535,13 @@
517+-------------------------------------------------------------------------------------------------------------+535+-------------------------------------------------------------------------------------------------------------+
518|:Upstream bug: :mysqlbug:`20001` - Support for temp-tables in INFORMATION_SCHEMA |536|:Upstream bug: :mysqlbug:`20001` - Support for temp-tables in INFORMATION_SCHEMA |
519|:Launchpad bug: N/A |537|:Launchpad bug: N/A |
520|:Upstream state: Verified (checked on 2014-10-06) |538|:Upstream state: Verified (checked on 2014-10-28) |
521|:Fix Released: :rn:`5.6.5-60.0` |539|:Fix Released: :rn:`5.6.5-60.0` |
522|:Upstream fix: N/A |540|:Upstream fix: N/A |
523+-------------------------------------------------------------------------------------------------------------+541+-------------------------------------------------------------------------------------------------------------+
524|:Upstream bug: :mysqlbug:`69146` - Optimization in buf_pool_get_oldest_modification if srv_buf_pool_instances|542|:Upstream bug: :mysqlbug:`69146` - Optimization in buf_pool_get_oldest_modification if srv_buf_pool_instances|
525|:Launchpad bug: :bug:`1176496` |543|:Launchpad bug: :bug:`1176496` |
526|:Upstream state: Verified (checked on 2014-10-06) |544|:Upstream state: Verified (checked on 2014-10-28) |
527|:Fix Released: :rn:`5.6.5-60.0` |545|:Fix Released: :rn:`5.6.5-60.0` |
528|:Upstream fix: N/A |546|:Upstream fix: N/A |
529+-------------------------------------------------------------------------------------------------------------+547+-------------------------------------------------------------------------------------------------------------+

Subscribers

People subscribed via source and target branches