Merge lp:~hrvojem/percona-server/rn-5.5.41-37.0-5.5 into lp:percona-server/5.5

Proposed by Hrvoje Matijakovic
Status: Merged
Approved by: Laurynas Biveinis
Approved revision: no longer in the source branch.
Merged at revision: 727
Proposed branch: lp:~hrvojem/percona-server/rn-5.5.41-37.0-5.5
Merge into: lp:percona-server/5.5
Diff against target: 513 lines (+256/-24)
9 files modified
doc/source/conf.py (+4/-4)
doc/source/diagnostics/slow_extended_55.rst (+55/-1)
doc/source/flexibility/csv_engine_mode.rst (+99/-0)
doc/source/index.rst (+1/-0)
doc/source/installation/apt_repo.rst (+1/-1)
doc/source/release-notes/Percona-Server-5.5.39-36.0.rst (+2/-0)
doc/source/release-notes/Percona-Server-5.5.41-37.0.rst (+39/-0)
doc/source/release-notes/release-notes_index.rst (+1/-0)
doc/source/upstream-bug-fixes.rst (+54/-18)
To merge this branch: bzr merge lp:~hrvojem/percona-server/rn-5.5.41-37.0-5.5
Reviewer Review Type Date Requested Status
Laurynas Biveinis (community) Approve
Review via email: mp+245735@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
=== modified file 'doc/source/conf.py'
--- doc/source/conf.py 2014-10-02 13:27:38 +0000
+++ doc/source/conf.py 2015-01-09 13:41:16 +0000
@@ -45,7 +45,7 @@
4545
46# General information about the project.46# General information about the project.
47project = u'Percona Server'47project = u'Percona Server'
48copyright = u'Percona LLC and/or its affiliates 2009-2014'48copyright = u'Percona LLC and/or its affiliates 2009-2015'
4949
50# The version info for the project you're documenting, acts as replacement for50# The version info for the project you're documenting, acts as replacement for
51# |version| and |release|, also used in various other places throughout the51# |version| and |release|, also used in various other places throughout the
@@ -54,7 +54,7 @@
54# The short X.Y version.54# The short X.Y version.
55version = '5.5'55version = '5.5'
56# The full version, including alpha/beta/rc tags.56# The full version, including alpha/beta/rc tags.
57release = '5.5.40-36.1'57release = '5.5.41-37.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.
@@ -225,7 +225,7 @@
225# (source start file, target name, title, author, documentclass [howto/manual]).225# (source start file, target name, title, author, documentclass [howto/manual]).
226latex_documents = [226latex_documents = [
227 ('index', 'PerconaServer-5.5.tex', u'Percona Server Documentation',227 ('index', 'PerconaServer-5.5.tex', u'Percona Server Documentation',
228 u'Percona LLC and/or its affiliates 2009-2014', 'manual'),228 u'Percona LLC and/or its affiliates 2009-2015', 'manual'),
229]229]
230230
231# The name of an image file (relative to this directory) to place at the top of231# The name of an image file (relative to this directory) to place at the top of
@@ -258,7 +258,7 @@
258# (source start file, name, description, authors, manual section).258# (source start file, name, description, authors, manual section).
259man_pages = [259man_pages = [
260 ('index', 'perconaserver55', u'Percona Server 5.5 Documentation',260 ('index', 'perconaserver55', u'Percona Server 5.5 Documentation',
261 [u'Percona LLC and/or its affiliates 2009-2014'], 1)261 [u'Percona LLC and/or its affiliates 2009-2015'], 1)
262]262]
263263
264264
265265
=== modified file 'doc/source/diagnostics/slow_extended_55.rst'
--- doc/source/diagnostics/slow_extended_55.rst 2014-04-30 09:32:01 +0000
+++ doc/source/diagnostics/slow_extended_55.rst 2015-01-09 13:41:16 +0000
@@ -26,6 +26,8 @@
26 26
27 * :rn:`5.5.34-32.0`:27 * :rn:`5.5.34-32.0`:
28 * New :variable:`slow_query_log_always_write_time` variable introduced.28 * New :variable:`slow_query_log_always_write_time` variable introduced.
29 * :rn:`5.5.41-37.0`:
30 * Implemented improved slow log reporting for queries in stored procedures.
2931
30Other Information32Other Information
31=================33=================
@@ -138,7 +140,6 @@
138140
139To stop the logging from the slave thread, you should just change the global value: set global :variable:`log_slow_slave_statements` ``=OFF``; the logging stops immediately.141To stop the logging from the slave thread, you should just change the global value: set global :variable:`log_slow_slave_statements` ``=OFF``; the logging stops immediately.
140142
141
142.. variable:: log_slow_sp_statements143.. variable:: log_slow_sp_statements
143144
144 :cli: Yes145 :cli: Yes
@@ -151,6 +152,59 @@
151152
152If ``TRUE``, statements executed by stored procedures are logged to the slow if it is open.153If ``TRUE``, statements executed by stored procedures are logged to the slow if it is open.
153154
155.. _improved_sp_reporting:
156
157Prior to :rn:`5.5.41-37.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.5.41-37.0` implemented improvements for logging of stored procedures to the slow query log:
158 * Each query from a stored procedure is now logged to the slow query log individually
159 * ``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
160 * Queries that were called inside of stored procedures are annotated in the slow query log with the stored procedure name in which they run.
161
162Example of the improved stored procedure slow query log entry:
163
164.. code-block:: mysql
165
166 mysql> DELIMITER //
167 mysql> CREATE PROCEDURE improved_sp_log()
168 BEGIN
169 SELECT * FROM City;
170 SELECT * FROM Country;
171 END//
172 mysql> DELIMITER ;
173 mysql> CALL improved_sp_log();
174
175When 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: ::
176
177 # Time: 150109 11:38:55
178 # User@Host: root[root] @ localhost []
179 # Thread_id: 40 Schema: world Last_errno: 0 Killed: 0
180 # Query_time: 0.012989 Lock_time: 0.000033 Rows_sent: 4079 Rows_examined: 4079 Rows_affected: 0 Rows_read: 4079
181 # Bytes_sent: 161085
182 # Stored routine: world.improved_sp_log
183 SET timestamp=1420803535;
184 SELECT * FROM City;
185 # User@Host: root[root] @ localhost []
186 # Thread_id: 40 Schema: world Last_errno: 0 Killed: 0
187 # Query_time: 0.001413 Lock_time: 0.000017 Rows_sent: 4318 Rows_examined: 4318 Rows_affected: 0 Rows_read: 4318
188 # Bytes_sent: 194601
189 # Stored routine: world.improved_sp_log
190 SET timestamp=1420803535;
191 SELECT * FROM Country;
192
193If variable :variable:`log_slow_sp_statements` is set to ``FALSE``:
194
195 * 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
196 * Execution time is reported for the ``CALL`` statement as the total execution time of the ``CALL`` including all its statements
197
198If 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: ::
199
200 # Time: 150109 11:51:42
201 # User@Host: root[root] @ localhost []
202 # Thread_id: 40 Schema: world Last_errno: 0 Killed: 0
203 # Query_time: 0.013947 Lock_time: 0.000000 Rows_sent: 4318 Rows_examined: 4318 Rows_affected: 0 Rows_read: 4318
204 # Bytes_sent: 194612
205 SET timestamp=1420804302;
206 CALL improved_sp_log();
207
154.. note::208.. note::
155209
156 Support for logging stored procedures doesn't involve triggers, so they won't be logged even if this feature is enabled.210 Support for logging stored procedures doesn't involve triggers, so they won't be logged even if this feature is enabled.
157211
=== 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 2015-01-09 13:41:16 +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.5/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.5.41-37.0`:
77 Variable :variable:`csv_mode` implemented
78
79System Variables
80================
81
82.. variable:: csv_mode
83
84 :version 5.5.41-37.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-04-30 09:32:01 +0000
+++ doc/source/index.rst 2015-01-09 13:41:16 +0000
@@ -100,6 +100,7 @@
100 flexibility/extended_mysqlbinlog100 flexibility/extended_mysqlbinlog
101 flexibility/mysqlbinlog_change_db101 flexibility/mysqlbinlog_change_db
102 flexibility/slowlog_rotation102 flexibility/slowlog_rotation
103 flexibility/csv_engine_mode
103104
104Reliability Improvements105Reliability Improvements
105========================106========================
106107
=== modified file 'doc/source/installation/apt_repo.rst'
--- doc/source/installation/apt_repo.rst 2014-09-23 14:50:24 +0000
+++ doc/source/installation/apt_repo.rst 2015-01-09 13:41:16 +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
=== modified file 'doc/source/release-notes/Percona-Server-5.5.39-36.0.rst'
--- doc/source/release-notes/Percona-Server-5.5.39-36.0.rst 2014-08-28 13:25:46 +0000
+++ doc/source/release-notes/Percona-Server-5.5.39-36.0.rst 2015-01-09 13:41:16 +0000
@@ -32,4 +32,6 @@
3232
33 If the bitmap directory has a bitmap file sequence with a start LSN of one file less than a start LSN of the previous file, a debug build would assert when queries were run on :table:`INNODB_CHANGED_PAGES` table. Bug fixed :bug:`1342494`.33 If the bitmap directory has a bitmap file sequence with a start LSN of one file less than a start LSN of the previous file, a debug build would assert when queries were run on :table:`INNODB_CHANGED_PAGES` table. Bug fixed :bug:`1342494`.
3434
35 Server would crash on login attempt if ``mysql.user`` table was truncated. Bug fixed :bug:`1322218`.
36
35Other bugs fixed: :bug:`1337324`, :bug:`1151723`, :bug:`1182050`, :bug:`1182072`, :bug:`1280875`, :bug:`1182046`, :bug:`1328482` (upstream :mysqlbug:`73418`), and :bug:`1334317` (upstream :mysqlbug:`73111`).37Other bugs fixed: :bug:`1337324`, :bug:`1151723`, :bug:`1182050`, :bug:`1182072`, :bug:`1280875`, :bug:`1182046`, :bug:`1328482` (upstream :mysqlbug:`73418`), and :bug:`1334317` (upstream :mysqlbug:`73111`).
3638
=== added file 'doc/source/release-notes/Percona-Server-5.5.41-37.0.rst'
--- doc/source/release-notes/Percona-Server-5.5.41-37.0.rst 1970-01-01 00:00:00 +0000
+++ doc/source/release-notes/Percona-Server-5.5.41-37.0.rst 2015-01-09 13:41:16 +0000
@@ -0,0 +1,39 @@
1.. rn:: 5.5.41-37.0
2
3==============================
4 |Percona Server| 5.5.41-37.0
5==============================
6
7Percona is glad to announce the release of |Percona Server| 5.5.41-37.0 on January 9th, 2015. Downloads are available `here <http://www.percona.com/downloads/Percona-Server-5.5/Percona-Server-5.5.41-37.0/>`_ and from the :doc:`Percona Software Repositories </installation>`.
8
9Based on `MySQL 5.5.41 <http://dev.mysql.com/doc/relnotes/mysql/5.5/en/news-5-5-41.html>`_, including all the bug fixes in it, |Percona Server| 5.5.41-37.0 is now the current stable release in the 5.5 series. All of |Percona|'s software is open-source and free, all the details of the release can be found in the `5.5.41-37.0 milestone at Launchpad <https://launchpad.net/percona-server/+milestone/5.5.41-37.0>`_.
10
11New Features
12============
13
14 |Percona Server| has implemented :ref:`csv_engine_mode`. This feature also fixes the bug :bug:`1316042` (upstream :mysqlbug:`71091`).
15
16 |Percona Server| has implemented improved slow log reporting for queries in :ref:`stored procedures <improved_sp_reporting>`.
17
18Bugs Fixed
19==========
20
21 *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`.
22
23 If HandlerSocket was enabled, the server would hang during shutdown. Bug fixed :bug:`1319904`.
24
25 Wrong stack 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`).
26
27 Values of ``IP`` and ``DB`` fields in the :ref:`audit_log_plugin` were incorrect. Bug fixed :bug:`1379023`.
28
29 *Percona Server* 5.5 would fail to build with GCC 4.9.1 (such as bundled with *Ubuntu Utopic*) in debug configuration. Bug fixed :bug:`1396358` (upstream :mysqlbug:`75000`).
30
31 Default *MySQL* configuration file, :file:`my.cnf`, was not installed during the new installation on *CentOS*. Bug fixed :bug:`1405667`.
32
33 A session on a server in mixed mode binlogging would switch to row-based binlogging whenever a temporary table was created and then queried. This switch would last until the session end or until all temporary tables in the session were dropped. This was unnecessarily restrictive and has been fixed so that only the statements involving temporary tables were logged in the row-based format whereas the rest of the statements would continue to use the statement-based logging. Bug fixed :bug:`1313901` (upstream :mysqlbug:`72475`).
34
35 Purging bitmaps exactly up to the last tracked LSN would abort :ref:`changed_page_tracking`. Bug fixed :bug:`1382336`.
36
37 ``mysql_install_db`` script would silently ignore any mysqld startup failures. Bug fixed :bug:`1382782` (upstream :mysqlbug:`74440`).
38
39Other bugs fixed: :bug:`1067103`, :bug:`1394357`, :bug:`1282599`, :bug:`1335590`, :bug:`1335590`, :bug:`1401791` (upstream :mysqlbug:`73281`), and :bug:`1396330` (upstream :mysqlbug:`74987`).
040
=== modified file 'doc/source/release-notes/release-notes_index.rst'
--- doc/source/release-notes/release-notes_index.rst 2014-10-02 13:27:38 +0000
+++ doc/source/release-notes/release-notes_index.rst 2015-01-09 13:41:16 +0000
@@ -6,6 +6,7 @@
6 :maxdepth: 16 :maxdepth: 1
7 :glob:7 :glob:
88
9 Percona-Server-5.5.41-37.0
9 Percona-Server-5.5.40-36.110 Percona-Server-5.5.40-36.1
10 Percona-Server-5.5.39-36.011 Percona-Server-5.5.39-36.0
11 Percona-Server-5.5.38-35.212 Percona-Server-5.5.38-35.2
1213
=== modified file 'doc/source/upstream-bug-fixes.rst'
--- doc/source/upstream-bug-fixes.rst 2014-10-02 13:27:38 +0000
+++ doc/source/upstream-bug-fixes.rst 2015-01-09 13:41:16 +0000
@@ -5,21 +5,57 @@
5=============================================================5=============================================================
66
7+-------------------------------------------------------------------------------------------------------------+7+-------------------------------------------------------------------------------------------------------------+
8|:Upstream bug: :mysqlbug:`74987` - mtr failure on Ubuntu Utopic, mysqlhotcopy fails with wrong error(255) |
9|:Launchpad bug: :bug:`1396330` |
10|:Upstream state: Verified (checked on 2015-01-07) |
11|:Fix Released: :rn:`5.5.41-37.0` |
12|:Upstream fix: N/A |
13+-------------------------------------------------------------------------------------------------------------+
14|:Upstream bug: :mysqlbug:`73281` - openssl_1 tries to test a removed cipher on CentOS 7 |
15|:Launchpad bug: :bug:`1401791` |
16|:Upstream state: Verified (checked on 2015-01-07) |
17|:Fix Released: :rn:`5.5.41-37.0` |
18|:Upstream fix: N/A |
19+-------------------------------------------------------------------------------------------------------------+
20|:Upstream bug: :mysqlbug:`74440` - mysql_install_db not handling mysqld startup failure |
21|:Launchpad bug: :bug:`1382782` |
22|:Upstream state: Verified (checked on 2015-01-07) |
23|:Fix Released: :rn:`5.5.41-37.0` |
24|:Upstream fix: N/A |
25+-------------------------------------------------------------------------------------------------------------+
26|:Upstream bug: :mysqlbug:`72475` - Binlog events with binlog_format=MIXED are unconditionally logged in ROW..|
27|:Launchpad bug: :bug:`1313901` |
28|:Upstream state: Verified (checked on 2015-01-07) |
29|:Fix Released: :rn:`5.5.41-37.0` |
30|:Upstream fix: N/A |
31+-------------------------------------------------------------------------------------------------------------+
32|:Upstream bug: :mysqlbug:`75000` - 5.5 fails to compile with debug on Ubuntu Utopic |
33|:Launchpad bug: :bug:`1396358` |
34|:Upstream state: Closed |
35|:Fix Released: :rn:`5.5.41-37.0` |
36|:Upstream fix: 5.5.42 |
37+-------------------------------------------------------------------------------------------------------------+
38|:Upstream bug: :mysqlbug:`73979` - wrong stack size calculation leads to stack overflow in pinbox allocator |
39|:Launchpad bug: :bug:`1351148` |
40|:Upstream state: In Progress (checked on 2015-01-07) |
41|:Fix Released: :rn:`5.5.41-37.0` |
42|:Upstream fix: N/A |
43+-------------------------------------------------------------------------------------------------------------+
8|:Upstream bug: :mysqlbug:`73126` - Numerous Valgrind errors in OpenSSL |44|:Upstream bug: :mysqlbug:`73126` - Numerous Valgrind errors in OpenSSL |
9|:Launchpad bug: :bug:`1334743` |45|:Launchpad bug: :bug:`1334743` |
10|:Upstream state: Verified (checked on 2014-09-30) |46|:Upstream state: Verified (checked on 2015-01-07) |
11|:Fix Released: :rn:`5.5.39-36.0` |47|:Fix Released: :rn:`5.5.39-36.0` |
12|:Upstream fix: N/A |48|:Upstream fix: N/A |
13+-------------------------------------------------------------------------------------------------------------+49+-------------------------------------------------------------------------------------------------------------+
14|:Upstream bug: :mysqlbug:`73111` - Suppression typo causing spurious MTR Valgrind failures |50|:Upstream bug: :mysqlbug:`73111` - Suppression typo causing spurious MTR Valgrind failures |
15|:Launchpad bug: :bug:`1334317` |51|:Launchpad bug: :bug:`1334317` |
16|:Upstream state: Open (checked on 2014-09-30) |52|:Upstream state: Open (checked on 2015-01-07) |
17|:Fix Released: :rn:`5.5.39-36.0` |53|:Fix Released: :rn:`5.5.39-36.0` |
18|:Upstream fix: N/A |54|:Upstream fix: N/A |
19+-------------------------------------------------------------------------------------------------------------+55+-------------------------------------------------------------------------------------------------------------+
20|:Upstream bug: :mysqlbug:`73418` - Add --manual-lldb option to mysql-test-run.pl |56|:Upstream bug: :mysqlbug:`73418` - Add --manual-lldb option to mysql-test-run.pl |
21|:Launchpad bug: :bug:`1328482` |57|:Launchpad bug: :bug:`1328482` |
22|:Upstream state: Verified (checked on 2014-09-30) |58|:Upstream state: Verified (checked on 2015-01-07) |
23|:Fix Released: :rn:`5.5.39-36.0` |59|:Fix Released: :rn:`5.5.39-36.0` |
24|:Upstream fix: N/A |60|:Upstream fix: N/A |
25+-------------------------------------------------------------------------------------------------------------+61+-------------------------------------------------------------------------------------------------------------+
@@ -43,13 +79,13 @@
43+-------------------------------------------------------------------------------------------------------------+79+-------------------------------------------------------------------------------------------------------------+
44|:Upstream bug: :mysqlbug:`71375` - Slave IO thread won't attempt auto reconnect to the master/error-code 1593|80|:Upstream bug: :mysqlbug:`71375` - Slave IO thread won't attempt auto reconnect to the master/error-code 1593|
45|:Launchpad bug: :bug:`1268735` |81|:Launchpad bug: :bug:`1268735` |
46|:Upstream state: Verified (checked on 2014-09-30) |82|:Upstream state: Verified (checked on 2015-01-07) |
47|:Fix Released: :rn:`5.5.36-34.1` |83|:Fix Released: :rn:`5.5.36-34.1` |
48|:Upstream fix: N/A |84|:Upstream fix: N/A |
49+-------------------------------------------------------------------------------------------------------------+85+-------------------------------------------------------------------------------------------------------------+
50|:Upstream bug: :mysqlbug:`71374` - Slave IO thread won't attempt auto reconnect to the master/error-code 1159|86|:Upstream bug: :mysqlbug:`71374` - Slave IO thread won't attempt auto reconnect to the master/error-code 1159|
51|:Launchpad bug: :bug:`1268729` |87|:Launchpad bug: :bug:`1268729` |
52|:Upstream state: Verified (checked on 2014-09-30) |88|:Upstream state: Verified (checked on 2015-01-07) |
53|:Fix Released: :rn:`5.5.36-34.1` |89|:Fix Released: :rn:`5.5.36-34.1` |
54|:Upstream fix: N/A |90|:Upstream fix: N/A |
55+-------------------------------------------------------------------------------------------------------------+91+-------------------------------------------------------------------------------------------------------------+
@@ -79,7 +115,7 @@
79+-------------------------------------------------------------------------------------------------------------+115+-------------------------------------------------------------------------------------------------------------+
80|:Upstream bug: :mysqlbug:`69639` - mysql failed to build with dtrace Sun D 1.11 |116|:Upstream bug: :mysqlbug:`69639` - mysql failed to build with dtrace Sun D 1.11 |
81|:Launchpad bug: :bug:`1196460` |117|:Launchpad bug: :bug:`1196460` |
82|:Upstream state: Open (checked on 2014-09-30) |118|:Upstream state: Open (checked on 2015-01-07) |
83|:Fix Released: :rn:`5.5.33-31.1` |119|:Fix Released: :rn:`5.5.33-31.1` |
84|:Upstream fix: N/A |120|:Upstream fix: N/A |
85+-------------------------------------------------------------------------------------------------------------+121+-------------------------------------------------------------------------------------------------------------+
@@ -91,7 +127,7 @@
91+-------------------------------------------------------------------------------------------------------------+127+-------------------------------------------------------------------------------------------------------------+
92|:Upstream bug: :mysqlbug:`42415` - UPDATE/DELETE with LIMIT clause unsafe for SBL even with ORDER BY PK ... |128|:Upstream bug: :mysqlbug:`42415` - UPDATE/DELETE with LIMIT clause unsafe for SBL even with ORDER BY PK ... |
93|:Launchpad bug: :bug:`1132194` |129|:Launchpad bug: :bug:`1132194` |
94|:Upstream state: Verified (checked on 2014-09-30) |130|:Upstream state: Verified (checked on 2015-01-07) |
95|:Fix Released: :rn:`5.5.32-31.0` |131|:Fix Released: :rn:`5.5.32-31.0` |
96|:Upstream fix: N/A |132|:Upstream fix: N/A |
97+-------------------------------------------------------------------------------------------------------------+133+-------------------------------------------------------------------------------------------------------------+
@@ -103,7 +139,7 @@
103+-------------------------------------------------------------------------------------------------------------+139+-------------------------------------------------------------------------------------------------------------+
104|:Upstream bug: :mysqlbug:`68970` - fsp_reserve_free_extents switches from small to big tblspace handling ... |140|:Upstream bug: :mysqlbug:`68970` - fsp_reserve_free_extents switches from small to big tblspace handling ... |
105|:Launchpad bug: :bug:`1169494` |141|:Launchpad bug: :bug:`1169494` |
106|:Upstream state: Verified (checked on 2014-09-30) |142|:Upstream state: Closed |
107|:Fix Released: :rn:`5.5.32-31.0` |143|:Fix Released: :rn:`5.5.32-31.0` |
108|:Upstream fix: N/A |144|:Upstream fix: N/A |
109+-------------------------------------------------------------------------------------------------------------+145+-------------------------------------------------------------------------------------------------------------+
@@ -115,7 +151,7 @@
115+-------------------------------------------------------------------------------------------------------------+151+-------------------------------------------------------------------------------------------------------------+
116|:Upstream bug: :mysqlbug:`68999` - SSL_OP_NO_COMPRESSION not defined |152|:Upstream bug: :mysqlbug:`68999` - SSL_OP_NO_COMPRESSION not defined |
117|:Launchpad bug: :bug:`1183610` |153|:Launchpad bug: :bug:`1183610` |
118|:Upstream state: No Feedback (checked on 2014-09-30) |154|:Upstream state: No Feedback (checked on 2015-01-07) |
119|:Fix Released: :rn:`5.5.31-30.3` |155|:Fix Released: :rn:`5.5.31-30.3` |
120|:Upstream fix: N/A |156|:Upstream fix: N/A |
121+-------------------------------------------------------------------------------------------------------------+157+-------------------------------------------------------------------------------------------------------------+
@@ -127,7 +163,7 @@
127+-------------------------------------------------------------------------------------------------------------+163+-------------------------------------------------------------------------------------------------------------+
128|:Upstream bug: :mysqlbug:`68845` - Unnecessary log_sys->mutex reacquisition in mtr_log_reserve_and_write() |164|:Upstream bug: :mysqlbug:`68845` - Unnecessary log_sys->mutex reacquisition in mtr_log_reserve_and_write() |
129|:Launchpad bug: :bug:`1163439` |165|:Launchpad bug: :bug:`1163439` |
130|:Upstream state: Verified (checked on 2014-09-30) |166|:Upstream state: Verified (checked on 2015-01-07) |
131|:Fix Released: :rn:`5.5.30-30.2` |167|:Fix Released: :rn:`5.5.30-30.2` |
132|:Upstream fix: N/A |168|:Upstream fix: N/A |
133+-------------------------------------------------------------------------------------------------------------+169+-------------------------------------------------------------------------------------------------------------+
@@ -157,7 +193,7 @@
157+-------------------------------------------------------------------------------------------------------------+193+-------------------------------------------------------------------------------------------------------------+
158|:Upstream bug: :mysqlbug:`68476` - Suboptimal code in my_strnxfrm_simple() |194|:Upstream bug: :mysqlbug:`68476` - Suboptimal code in my_strnxfrm_simple() |
159|:Launchpad bug: :bug:`1132350` |195|:Launchpad bug: :bug:`1132350` |
160|:Upstream state: Verified (checked on 2014-09-30) |196|:Upstream state: Closed |
161|:Fix Released: :rn:`5.5.30-30.1` |197|:Fix Released: :rn:`5.5.30-30.1` |
162|:Upstream fix: N/A |198|:Upstream fix: N/A |
163+-------------------------------------------------------------------------------------------------------------+199+-------------------------------------------------------------------------------------------------------------+
@@ -265,7 +301,7 @@
265+-------------------------------------------------------------------------------------------------------------+301+-------------------------------------------------------------------------------------------------------------+
266|:Upstream bug: :mysqlbug:`61178` - Incorrect implementation of intersect(ulonglong) in non-optimized Bitmap..|302|:Upstream bug: :mysqlbug:`61178` - Incorrect implementation of intersect(ulonglong) in non-optimized Bitmap..|
267|:Launchpad bug: :bug:`1042517` |303|:Launchpad bug: :bug:`1042517` |
268|:Upstream state: Verified (checked on 2014-09-30) |304|:Upstream state: Verified (checked on 2015-01-07) |
269|:Fix Released: :rn:`5.5.27-29.0` |305|:Fix Released: :rn:`5.5.27-29.0` |
270|:Upstream fix: N/A |306|:Upstream fix: N/A |
271+-------------------------------------------------------------------------------------------------------------+307+-------------------------------------------------------------------------------------------------------------+
@@ -277,7 +313,7 @@
277+-------------------------------------------------------------------------------------------------------------+313+-------------------------------------------------------------------------------------------------------------+
278|:Upstream bug: :mysqlbug:`64800` - mysqldump with --include-master-host-port putting quotes around port no. | 314|:Upstream bug: :mysqlbug:`64800` - mysqldump with --include-master-host-port putting quotes around port no. |
279|:Launchpad bug: :bug:`1013432` |315|:Launchpad bug: :bug:`1013432` |
280|:Upstream state: Verified (checked on 2014-09-30) |316|:Upstream state: Verified (checked on 2015-01-07) |
281|:Fix Released: :rn:`5.5.27-28.0` |317|:Fix Released: :rn:`5.5.27-28.0` |
282|:Upstream fix: N/A |318|:Upstream fix: N/A |
283+-------------------------------------------------------------------------------------------------------------+319+-------------------------------------------------------------------------------------------------------------+
@@ -325,7 +361,7 @@
325+-------------------------------------------------------------------------------------------------------------+361+-------------------------------------------------------------------------------------------------------------+
326|:Upstream bug: :mysqlbug:`71183` - os_file_fsync() should handle fsync() returning EINTR |362|:Upstream bug: :mysqlbug:`71183` - os_file_fsync() should handle fsync() returning EINTR |
327|:Launchpad bug: :bug:`1262651` |363|:Launchpad bug: :bug:`1262651` |
328|:Upstream state: Verified (checked on 2014-09-30) |364|:Upstream state: Verified (checked on 2015-01-07) |
329|:Fix Released: :rn:`5.5.20-24.1` |365|:Fix Released: :rn:`5.5.20-24.1` |
330|:Upstream fix: N/A |366|:Upstream fix: N/A |
331+-------------------------------------------------------------------------------------------------------------+367+-------------------------------------------------------------------------------------------------------------+
@@ -349,13 +385,13 @@
349+-------------------------------------------------------------------------------------------------------------+385+-------------------------------------------------------------------------------------------------------------+
350|:Upstream bug: :mysqlbug:`62516` - Fast index creation does not update index statistics |386|:Upstream bug: :mysqlbug:`62516` - Fast index creation does not update index statistics |
351|:Launchpad bug: :bug:`857590` |387|:Launchpad bug: :bug:`857590` |
352|:Upstream state: Verified (checked on 2014-09-30) |388|:Upstream state: Verified (checked on 2015-01-07) |
353|:Fix Released: :rn:`5.5.16-22.0` |389|:Fix Released: :rn:`5.5.16-22.0` |
354|:Upstream fix: N/A |390|:Upstream fix: N/A |
355+-------------------------------------------------------------------------------------------------------------+391+-------------------------------------------------------------------------------------------------------------+
356|:Upstream bug: :mysqlbug:`25007` - memory tables with dynamic rows format |392|:Upstream bug: :mysqlbug:`25007` - memory tables with dynamic rows format |
357|:Launchpad bug: :bug:`1148822` |393|:Launchpad bug: :bug:`1148822` |
358|:Upstream state: Verified (checked on 2014-09-30) |394|:Upstream state: Verified (checked on 2015-01-07) |
359|:Fix Released: :rn:`5.5.15-21.0` |395|:Fix Released: :rn:`5.5.15-21.0` |
360|:Upstream fix: N/A |396|:Upstream fix: N/A |
361+-------------------------------------------------------------------------------------------------------------+397+-------------------------------------------------------------------------------------------------------------+
@@ -373,7 +409,7 @@
373+-------------------------------------------------------------------------------------------------------------+409+-------------------------------------------------------------------------------------------------------------+
374|:Upstream bug: :mysqlbug:`61595` - mysql-test/include/wait_for_slave_param.inc timeout logic is incorrect |410|:Upstream bug: :mysqlbug:`61595` - mysql-test/include/wait_for_slave_param.inc timeout logic is incorrect |
375|:Launchpad bug: :bug:`800035` |411|:Launchpad bug: :bug:`800035` |
376|:Upstream state: Verified (checked on 2014-09-30) |412|:Upstream state: Verified (checked on 2015-01-07) |
377|:Fix Released: :rn:`5.5.13-20.4` |413|:Fix Released: :rn:`5.5.13-20.4` |
378|:Upstream fix: N/A |414|:Upstream fix: N/A |
379+-------------------------------------------------------------------------------------------------------------+415+-------------------------------------------------------------------------------------------------------------+
@@ -403,7 +439,7 @@
403+-------------------------------------------------------------------------------------------------------------+439+-------------------------------------------------------------------------------------------------------------+
404|:Upstream bug: :mysqlbug:`69146` - Optimization in buf_pool_get_oldest_modification if srv_buf_pool_instances|440|:Upstream bug: :mysqlbug:`69146` - Optimization in buf_pool_get_oldest_modification if srv_buf_pool_instances|
405|:Launchpad bug: :bug:`1176496` |441|:Launchpad bug: :bug:`1176496` |
406|:Upstream state: Verified (checked on 2014-09-30) |442|:Upstream state: Verified (checked on 2015-01-07) |
407|:Fix Released: :rn:`5.5.8-20.0` |443|:Fix Released: :rn:`5.5.8-20.0` |
408|:Upstream fix: N/A |444|:Upstream fix: N/A |
409+-------------------------------------------------------------------------------------------------------------+445+-------------------------------------------------------------------------------------------------------------+

Subscribers

People subscribed via source and target branches