Merge lp:~hrvojem/percona-server/rn-5.6.22-71.0-5.6 into lp:percona-server/5.6

Proposed by Hrvoje Matijakovic
Status: Merged
Approved by: Laurynas Biveinis
Approved revision: no longer in the source branch.
Merged at revision: 726
Proposed branch: lp:~hrvojem/percona-server/rn-5.6.22-71.0-5.6
Merge into: lp:percona-server/5.6
Diff against target: 508 lines (+171/-43)
6 files modified
doc/source/conf.py (+1/-1)
doc/source/diagnostics/slow_extended.rst (+56/-3)
doc/source/flexibility/csv_engine_mode.rst (+2/-1)
doc/source/release-notes/Percona-Server-5.6.22-71.0.rst (+43/-0)
doc/source/release-notes/release-notes_index.rst (+1/-0)
doc/source/upstream-bug-fixes.rst (+68/-38)
To merge this branch: bzr merge lp:~hrvojem/percona-server/rn-5.6.22-71.0-5.6
Reviewer Review Type Date Requested Status
Laurynas Biveinis (community) Approve
Review via email: mp+246035@code.launchpad.net
To post a comment you must log in.
Revision history for this message
Laurynas Biveinis (laurynas-biveinis) :
review: Needs Fixing
Revision history for this message
Laurynas Biveinis (laurynas-biveinis) :
review: Needs Fixing
Revision history for this message
Laurynas Biveinis (laurynas-biveinis) :
review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'doc/source/conf.py'
--- doc/source/conf.py 2015-01-09 15:11:15 +0000
+++ doc/source/conf.py 2015-01-12 08:32:12 +0000
@@ -54,7 +54,7 @@
54# The short X.Y version.54# The short X.Y version.
55version = '5.6'55version = '5.6'
56# The full version, including alpha/beta/rc tags.56# The full version, including alpha/beta/rc tags.
57release = '5.6.21-70.1'57release = '5.6.22-71.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
=== modified file 'doc/source/diagnostics/slow_extended.rst'
--- doc/source/diagnostics/slow_extended.rst 2014-05-06 12:43:39 +0000
+++ doc/source/diagnostics/slow_extended.rst 2015-01-12 08:32:12 +0000
@@ -13,12 +13,13 @@
13============================13============================
1414
15 * :rn:`5.6.11-60.3`:15 * :rn:`5.6.11-60.3`:
16
17 * Feature ported from |Percona Server| 5.5.16 * Feature ported from |Percona Server| 5.5.
1817
19 * :rn:`5.6.13-60.4`:18 * :rn:`5.6.13-60.6`:
19 * New :variable:`slow_query_log_always_write_time` variable introduced
2020
21 * New :variable:`slow_query_log_always_write_time` variable introduced21 * :rn:`5.6.22-71.0`:
22 * Implemented improved slow log reporting for queries in stored procedures.
2223
23Other Information24Other Information
24=================25=================
@@ -120,6 +121,58 @@
120121
121If ``TRUE``, statements executed by stored procedures are logged to the slow if it is open.122If ``TRUE``, statements executed by stored procedures are logged to the slow if it is open.
122123
124.. _improved_sp_reporting:
125
126Prior to :rn:`5.6.22-71.0` implementation of logging stored procedures was logging the stored procedure ``CALLs`` themselves along with the queries inside the procedures. This meant that some queries were counted more than once which could make tracking the bad-performing queries harder and it would cause noise in the slow query log. |Percona Server| :rn:`5.6.22-71.0` implemented improvements for logging of stored procedures to the slow query log:
127 * Each query from a stored procedure is now logged to the slow query log individually
128 * ``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
129 * Queries that were called inside of stored procedures are annotated in the slow query log with the stored procedure name in which they run.
130
131Example of the improved stored procedure slow query log entry:
132
133.. code-block:: mysql
134
135 mysql> DELIMITER //
136 mysql> CREATE PROCEDURE improved_sp_log()
137 BEGIN
138 SELECT * FROM City;
139 SELECT * FROM Country;
140 END//
141 mysql> DELIMITER ;
142 mysql> CALL improved_sp_log();
143
144When 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: ::
145
146 # Time: 150109 11:38:55
147 # User@Host: root[root] @ localhost []
148 # Thread_id: 40 Schema: world Last_errno: 0 Killed: 0
149 # Query_time: 0.012989 Lock_time: 0.000033 Rows_sent: 4079 Rows_examined: 4079 Rows_affected: 0 Rows_read: 4079
150 # Bytes_sent: 161085
151 # Stored routine: world.improved_sp_log
152 SET timestamp=1420803535;
153 SELECT * FROM City;
154 # User@Host: root[root] @ localhost []
155 # Thread_id: 40 Schema: world Last_errno: 0 Killed: 0
156 # Query_time: 0.001413 Lock_time: 0.000017 Rows_sent: 4318 Rows_examined: 4318 Rows_affected: 0 Rows_read: 4318
157 # Bytes_sent: 194601
158 # Stored routine: world.improved_sp_log
159 SET timestamp=1420803535;
160
161If variable :variable:`log_slow_sp_statements` is set to ``FALSE``:
162
163 * 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
164 * Execution time is reported for the ``CALL`` statement as the total execution time of the ``CALL`` including all its statements
165
166If 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: ::
167
168 # Time: 150109 11:51:42
169 # User@Host: root[root] @ localhost []
170 # Thread_id: 40 Schema: world Last_errno: 0 Killed: 0
171 # Query_time: 0.013947 Lock_time: 0.000000 Rows_sent: 4318 Rows_examined: 4318 Rows_affected: 0 Rows_read: 4318
172 # Bytes_sent: 194612
173 SET timestamp=1420804302;
174 CALL improved_sp_log();
175
123.. note::176.. note::
124177
125 Support for logging stored procedures doesn't involve triggers, so they won't be logged even if this feature is enabled.178 Support for logging stored procedures doesn't involve triggers, so they won't be logged even if this feature is enabled.
126179
=== modified file 'doc/source/flexibility/csv_engine_mode.rst'
--- doc/source/flexibility/csv_engine_mode.rst 2015-01-09 15:11:15 +0000
+++ doc/source/flexibility/csv_engine_mode.rst 2015-01-12 08:32:12 +0000
@@ -59,7 +59,8 @@
5959
60.. code-block:: mysql60.. code-block:: mysql
6161
62 mysql> set csv_mode='IETF_QUOTES'; Query OK, 0 rows affected (0.00 sec)62 mysql> set csv_mode='IETF_QUOTES';
63 Query OK, 0 rows affected (0.00 sec)
6364
64 mysql> select * from albums;65 mysql> select * from albums;
65 +--------------+-----------------------------+66 +--------------+-----------------------------+
6667
=== added file 'doc/source/release-notes/Percona-Server-5.6.22-71.0.rst'
--- doc/source/release-notes/Percona-Server-5.6.22-71.0.rst 1970-01-01 00:00:00 +0000
+++ doc/source/release-notes/Percona-Server-5.6.22-71.0.rst 2015-01-12 08:32:12 +0000
@@ -0,0 +1,43 @@
1.. rn:: 5.6.22-71.0
2
3==============================
4 |Percona Server| 5.6.22-71.0
5==============================
6
7Percona is glad to announce the release of |Percona Server| 5.6.22-71.0 on January 12th, 2015 (Downloads are available `here <http://www.percona.com/downloads/Percona-Server-5.6/Percona-Server-5.6.22-71.0/>`_ and from the :doc:`Percona Software Repositories </installation>`).
8
9Based on `MySQL 5.6.22 <http://dev.mysql.com/doc/relnotes/mysql/5.6/en/news-5-6-22.html>`_, including all the bug fixes in it, |Percona Server| 5.6.22-71.0 is the current GA release in the |Percona Server| 5.6 series. All of |Percona|'s software is open-source and free, all the details of the release can be found in the `5.6.22-71.0 milestone at Launchpad <https://launchpad.net/percona-server/+milestone/5.6.22-71.0>`_.
10
11New Features
12============
13
14 |Percona Server| has implemented improved slow log reporting for queries in :ref:`stored procedures <improved_sp_reporting>`.
15
16 TokuDB storage engine package has been updated to version `7.5.4 <http://docs.tokutek.com/tokudb/tokudb-release-notes.html#tokudb-version-7-x>`_. |Percona Server| with an older version of TokuDB could hit an early scaling limit when the binary log was enabled. TokuDB 7.5.4 fixes this problem by using the hints supplied by the binary log group commit algorithm to avoid fsync'ing its recovery log during the commit phase of the 2 phase commit algorithm that *MySQL* uses for transactions when the binary log is enabled.
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 A read-write workload on compressed *InnoDB* tables might have caused an assertion error. Bug fixed :bug:`1268656`.
24
25 Selecting from :table:`GLOBAL_TEMPORARY_TABLES` table while running an online ``ALTER TABLE`` in parallel could lead to server crash. Bug fixed :bug:`1294190`.
26
27 A wrong stack size calculation could lead to a server crash when Performance Schema tables were storing big amount of data or in case of server being under highly concurrent load. Bug fixed :bug:`1351148` (upstream :mysqlbug:`73979`).
28
29 A query on an empty table with a ``BLOB`` column may crash the server. Bug fixed :bug:`1384568` (upstream :mysqlbug:`74644`).
30
31 A read-write workload on compressed *InnoDB* tables might have caused an assertion error. Bug fixed :bug:`1395543`.
32
33 If :ref:`handlersocket_page` was enabled, the server would hang during shutdown. Bug fixed :bug:`1397859`.
34
35 The default *MySQL* configuration file, :file:`my.cnf`, was not installed during a new installation on *CentOS*. Bug fixed :bug:`1405667`.
36
37 The query optimizer did not pick a covering index for some ``ORDER BY`` queries. Bug fixed :bug:`1394967` (upstream :mysqlbug:`57430`).
38
39 ``SHOW ENGINE INNODB STATUS`` was displaying two identical ``TRANSACTIONS`` sections. Bug fixed :bug:`1404565`.
40
41 A race condition in :ref:`multiple_user_level_locks` implementation could cause a deadlock. Bug fixed :bug:`1405076`.
42
43Other bugs fixed: :bug:`1394357`, :bug:`1337251`, :bug:`1399174`, :bug:`1396330` (upstream :mysqlbug:`74987`), :bug:`1401776` (upstream :mysqlbug:`75189`).
044
=== modified file 'doc/source/release-notes/release-notes_index.rst'
--- doc/source/release-notes/release-notes_index.rst 2015-01-09 15:11:15 +0000
+++ doc/source/release-notes/release-notes_index.rst 2015-01-12 08:32:12 +0000
@@ -6,6 +6,7 @@
6 :maxdepth: 16 :maxdepth: 1
7 :glob:7 :glob:
88
9 Percona-Server-5.6.22-71.0
9 Percona-Server-5.6.21-70.110 Percona-Server-5.6.21-70.1
10 Percona-Server-5.6.21-70.011 Percona-Server-5.6.21-70.0
11 Percona-Server-5.6.21-69.012 Percona-Server-5.6.21-69.0
1213
=== modified file 'doc/source/upstream-bug-fixes.rst'
--- doc/source/upstream-bug-fixes.rst 2015-01-09 15:11:15 +0000
+++ doc/source/upstream-bug-fixes.rst 2015-01-12 08:32:12 +0000
@@ -5,45 +5,75 @@
5=============================================================5=============================================================
66
7+-------------------------------------------------------------------------------------------------------------+7+-------------------------------------------------------------------------------------------------------------+
8|:Upstream bug: :mysqlbug:`73979` - wrong stack size calculation leads to stack overflow in pinbox allocator |
9|:Launchpad bug: :bug:`1351148` |
10|:Upstream state: In Progress (checked on 2015-01-12) |
11|:Fix Released: :rn:`5.6.22-71.0` |
12|:Upstream fix: N/A |
13+-------------------------------------------------------------------------------------------------------------+
14|:Upstream bug: :mysqlbug:`74644` - A query on empty table with BLOBs may crash server |
15|:Launchpad bug: :bug:`1384568` |
16|:Upstream state: N/A |
17|:Fix Released: :rn:`5.6.22-71.0` |
18|:Upstream fix: N/A |
19+-------------------------------------------------------------------------------------------------------------+
20|:Upstream bug: :mysqlbug:`57430` - query optimizer does not pick covering index for some "order by" queries |
21|:Launchpad bug: :bug:`1394967` |
22|:Upstream state: Verified (checked on 2015-01-12) |
23|:Fix Released: :rn:`5.6.22-71.0` |
24|:Upstream fix: N/A |
25+-------------------------------------------------------------------------------------------------------------+
26|:Upstream bug: :mysqlbug:`74987` - mtr failure on Ubuntu Utopic, mysqlhotcopy fails with wrong error(255) |
27|:Launchpad bug: :bug:`1396330` |
28|:Upstream state: Verified (checked on 2015-01-12) |
29|:Fix Released: :rn:`5.6.22-71.0` |
30|:Upstream fix: N/A |
31+-------------------------------------------------------------------------------------------------------------+
32|:Upstream bug: :mysqlbug:`75189` - engines suite tests depending on InnoDB implementation details |
33|:Launchpad bug: :bug:`1401776` |
34|:Upstream state: Verified (checked on 2015-01-12) |
35|:Fix Released: :rn:`5.6.22-71.0` |
36|:Upstream fix: N/A |
37+-------------------------------------------------------------------------------------------------------------+
8|:Upstream bug: :mysqlbug:`72475` - Binlog events with binlog_format=MIXED are unconditionally logged in ROW..|38|:Upstream bug: :mysqlbug:`72475` - Binlog events with binlog_format=MIXED are unconditionally logged in ROW..|
9|:Launchpad bug: :bug:`1313901` |39|:Launchpad bug: :bug:`1313901` |
10|:Upstream state: Verified (checked on 2014-11-23) |40|:Upstream state: Verified (checked on 2015-01-12) |
11|:Fix Released: :rn:`5.6.21-70.1` |41|:Fix Released: :rn:`5.6.21-70.1` |
12|:Upstream fix: N/A |42|:Upstream fix: N/A |
13+-------------------------------------------------------------------------------------------------------------+43+-------------------------------------------------------------------------------------------------------------+
14|:Upstream bug: :mysqlbug:`74842` - Incorrect attribute((nonnull)) for btr_cur_ins_lock_and_undo callees |44|:Upstream bug: :mysqlbug:`74842` - Incorrect attribute((nonnull)) for btr_cur_ins_lock_and_undo callees |
15|:Launchpad bug: :bug:`1390695` |45|:Launchpad bug: :bug:`1390695` |
16|:Upstream state: Open (checked on 2014-11-23) |46|:Upstream state: Open (checked on 2015-01-12) |
17|:Fix Released: :rn:`5.6.21-70.1` |47|:Fix Released: :rn:`5.6.21-70.1` |
18|:Upstream fix: N/A |48|:Upstream fix: N/A |
19+-------------------------------------------------------------------------------------------------------------+49+-------------------------------------------------------------------------------------------------------------+
20|:Upstream bug: :mysqlbug:`74440` - mysql_install_db not handling mysqld startup failure |50|:Upstream bug: :mysqlbug:`74440` - mysql_install_db not handling mysqld startup failure |
21|:Launchpad bug: :bug:`1382782` |51|:Launchpad bug: :bug:`1382782` |
22|:Upstream state: Verified (checked on 2014-11-23) |52|:Upstream state: Verified (checked on 2015-01-12) |
23|:Fix Released: :rn:`5.6.21-70.0` |53|:Fix Released: :rn:`5.6.21-70.0` |
24|:Upstream fix: N/A |54|:Upstream fix: N/A |
25+-------------------------------------------------------------------------------------------------------------+55+-------------------------------------------------------------------------------------------------------------+
26|:Upstream bug: :mysqlbug:`73066` - Replication stall with multi-threaded replication |56|:Upstream bug: :mysqlbug:`73066` - Replication stall with multi-threaded replication |
27|:Launchpad bug: :bug:`1331586` |57|:Launchpad bug: :bug:`1331586` |
28|:Upstream state: Verified (checked on 2014-11-23) |58|:Upstream state: Verified (checked on 2015-01-12) |
29|:Fix Released: :rn:`5.6.21-70.0` |59|:Fix Released: :rn:`5.6.21-70.0` |
30|:Upstream fix: N/A |60|:Upstream fix: N/A |
31+-------------------------------------------------------------------------------------------------------------+61+-------------------------------------------------------------------------------------------------------------+
32|:Upstream bug: :mysqlbug:`71091` - CSV engine does not properly process ``""``, in quotes |62|:Upstream bug: :mysqlbug:`71091` - CSV engine does not properly process ``""``, in quotes |
33|:Launchpad bug: :bug:`1316042` |63|:Launchpad bug: :bug:`1316042` |
34|:Upstream state: Verified (checked on 2014-11-23) |64|:Upstream state: Verified (checked on 2015-01-12) |
35|:Fix Released: :rn:`5.6.21-70.0` |65|:Fix Released: :rn:`5.6.21-70.0` |
36|:Upstream fix: N/A |66|:Upstream fix: N/A |
37+-------------------------------------------------------------------------------------------------------------+67+-------------------------------------------------------------------------------------------------------------+
38|:Upstream bug: :mysqlbug:`70860` - --tc-heuristic-recover option values are broken |68|:Upstream bug: :mysqlbug:`70860` - --tc-heuristic-recover option values are broken |
39|:Launchpad bug: :bug:`1334330` |69|:Launchpad bug: :bug:`1334330` |
40|:Upstream state: Verified (checked on 2014-11-23) |70|:Upstream state: Verified (checked on 2014-01-12) |
41|:Fix Released: :rn:`5.6.20-68.0` |71|:Fix Released: :rn:`5.6.20-68.0` |
42|:Upstream fix: N/A |72|:Upstream fix: N/A |
43+-------------------------------------------------------------------------------------------------------------+73+-------------------------------------------------------------------------------------------------------------+
44|:Upstream bug: :mysqlbug:`73418` - Add --manual-lldb option to mysql-test-run.pl |74|:Upstream bug: :mysqlbug:`73418` - Add --manual-lldb option to mysql-test-run.pl |
45|:Launchpad bug: :bug:`1328482` |75|:Launchpad bug: :bug:`1328482` |
46|:Upstream state: Verified (checked on 2014-11-23) |76|:Upstream state: Verified (checked on 2015-01-12) |
47|:Fix Released: :rn:`5.6.20-68.0` |77|:Fix Released: :rn:`5.6.20-68.0` |
48|:Upstream fix: N/A |78|:Upstream fix: N/A |
49+-------------------------------------------------------------------------------------------------------------+79+-------------------------------------------------------------------------------------------------------------+
@@ -61,13 +91,13 @@
61+-------------------------------------------------------------------------------------------------------------+91+-------------------------------------------------------------------------------------------------------------+
62|:Upstream bug: :mysqlbug:`72615` - MTR --mysqld=--default-storage-engine=foo incompatible w/ dynamically... |92|:Upstream bug: :mysqlbug:`72615` - MTR --mysqld=--default-storage-engine=foo incompatible w/ dynamically... |
63|:Launchpad bug: :bug:`1318537` |93|:Launchpad bug: :bug:`1318537` |
64|:Upstream state: Verified (checked on 2014-11-23) |94|:Upstream state: Verified (checked on 2015-01-12) |
65|:Fix Released: :rn:`5.6.17-66.0` |95|:Fix Released: :rn:`5.6.17-66.0` |
66|:Upstream fix: N/A |96|:Upstream fix: N/A |
67+-------------------------------------------------------------------------------------------------------------+97+-------------------------------------------------------------------------------------------------------------+
68|:Upstream bug: :mysqlbug:`72163` - Rev 5774 broke rpl_plugin_load |98|:Upstream bug: :mysqlbug:`72163` - Rev 5774 broke rpl_plugin_load |
69|:Launchpad bug: :bug:`1299688` |99|:Launchpad bug: :bug:`1299688` |
70|:Upstream state: Verified (checked on 2014-11-23) |100|:Upstream state: Verified (checked on 2015-01-12) |
71|:Fix Released: :rn:`5.6.17-65.0` |101|:Fix Released: :rn:`5.6.17-65.0` |
72|:Upstream fix: N/A |102|:Upstream fix: N/A |
73+-------------------------------------------------------------------------------------------------------------+103+-------------------------------------------------------------------------------------------------------------+
@@ -85,19 +115,19 @@
85+-------------------------------------------------------------------------------------------------------------+115+-------------------------------------------------------------------------------------------------------------+
86|:Upstream bug: :mysqlbug:`71374` - Slave IO thread won't attempt auto reconnect to the master/error-code 1159|116|:Upstream bug: :mysqlbug:`71374` - Slave IO thread won't attempt auto reconnect to the master/error-code 1159|
87|:Launchpad bug: :bug:`1268729` |117|:Launchpad bug: :bug:`1268729` |
88|:Upstream state: Verified (checked on 2014-11-23) |118|:Upstream state: Verified (checked on 2015-01-12) |
89|:Fix Released: :rn:`5.6.16-64.1` |119|:Fix Released: :rn:`5.6.16-64.1` |
90|:Upstream fix: N/A |120|:Upstream fix: N/A |
91+-------------------------------------------------------------------------------------------------------------+121+-------------------------------------------------------------------------------------------------------------+
92|:Upstream bug: :mysqlbug:`71988` - page_cleaner: aggressive background flushing |122|:Upstream bug: :mysqlbug:`71988` - page_cleaner: aggressive background flushing |
93|:Launchpad bug: :bug:`1238039` |123|:Launchpad bug: :bug:`1238039` |
94|:Upstream state: Verified (checked on 2014-11-23) |124|:Upstream state: Verified (checked on 2015-01-12) |
95|:Fix Released: :rn:`5.6.16-64.0` |125|:Fix Released: :rn:`5.6.16-64.0` |
96|:Upstream fix: N/A |126|:Upstream fix: N/A |
97+-------------------------------------------------------------------------------------------------------------+127+-------------------------------------------------------------------------------------------------------------+
98|:Upstream bug: :mysqlbug:`71624` - printf size_t results in a fatal warning in 32-bit debug builds |128|:Upstream bug: :mysqlbug:`71624` - printf size_t results in a fatal warning in 32-bit debug builds |
99|:Launchpad bug: :bug:`1277505` |129|:Launchpad bug: :bug:`1277505` |
100|:Upstream state: Can't repeat (checked on 2014-11-23) |130|:Upstream state: Can't repeat (checked on 2015-01-12) |
101|:Fix Released: :rn:`5.6.16-64.0` |131|:Fix Released: :rn:`5.6.16-64.0` |
102|:Upstream fix: N/A |132|:Upstream fix: N/A |
103+-------------------------------------------------------------------------------------------------------------+133+-------------------------------------------------------------------------------------------------------------+
@@ -139,13 +169,13 @@
139+-------------------------------------------------------------------------------------------------------------+169+-------------------------------------------------------------------------------------------------------------+
140|:Upstream bug: :mysqlbug:`71270` - Failures to end bulk insert for partitioned tables handled incorrectly |170|:Upstream bug: :mysqlbug:`71270` - Failures to end bulk insert for partitioned tables handled incorrectly |
141|:Launchpad bug: :bug:`1204871` |171|:Launchpad bug: :bug:`1204871` |
142|:Upstream state: Verified (checked on 2014-11-23) |172|:Upstream state: Verified (checked on 2015-01-12) |
143|:Fix Released: :rn:`5.6.16-64.0` |173|:Fix Released: :rn:`5.6.16-64.0` |
144|:Upstream fix: N/A |174|:Upstream fix: N/A |
145+-------------------------------------------------------------------------------------------------------------+175+-------------------------------------------------------------------------------------------------------------+
146|:Upstream bug: :mysqlbug:`71217` - Threadpool - add thd_wait_begin/thd_wait_end to the network IO functions |176|:Upstream bug: :mysqlbug:`71217` - Threadpool - add thd_wait_begin/thd_wait_end to the network IO functions |
147|:Launchpad bug: :bug:`1159743` |177|:Launchpad bug: :bug:`1159743` |
148|:Upstream state: Open (checked on 2014-11-23) |178|:Upstream state: Open (checked on 2015-01-12) |
149|:Fix Released: :rn:`5.6.15-63.0` |179|:Fix Released: :rn:`5.6.15-63.0` |
150|:Upstream fix: N/A |180|:Upstream fix: N/A |
151+-------------------------------------------------------------------------------------------------------------+181+-------------------------------------------------------------------------------------------------------------+
@@ -163,7 +193,7 @@
163+-------------------------------------------------------------------------------------------------------------+193+-------------------------------------------------------------------------------------------------------------+
164|:Upstream bug: :mysqlbug:`71411` - buf_flush_LRU() does not return correct number in case of compressed pages|194|:Upstream bug: :mysqlbug:`71411` - buf_flush_LRU() does not return correct number in case of compressed pages|
165|:Launchpad bug: :bug:`1231918` |195|:Launchpad bug: :bug:`1231918` |
166|:Upstream state: Verified (checked on 2014-11-23) |196|:Upstream state: Verified (checked on 2015-01-12) |
167|:Fix Released: :rn:`5.6.13-61.0` |197|:Fix Released: :rn:`5.6.13-61.0` |
168|:Upstream fix: N/A |198|:Upstream fix: N/A |
169+-------------------------------------------------------------------------------------------------------------+199+-------------------------------------------------------------------------------------------------------------+
@@ -175,7 +205,7 @@
175+-------------------------------------------------------------------------------------------------------------+205+-------------------------------------------------------------------------------------------------------------+
176|:Upstream bug: :mysqlbug:`70490` - Suppression is too strict on some systems |206|:Upstream bug: :mysqlbug:`70490` - Suppression is too strict on some systems |
177|:Launchpad bug: :bug:`1205196` |207|:Launchpad bug: :bug:`1205196` |
178|:Upstream state: No Feedback (checked on 2014-11-23) |208|:Upstream state: No Feedback (checked on 2015-01-12) |
179|:Fix Released: :rn:`5.6.13-61.0` |209|:Fix Released: :rn:`5.6.13-61.0` |
180|:Upstream fix: N/A |210|:Upstream fix: N/A |
181+-------------------------------------------------------------------------------------------------------------+211+-------------------------------------------------------------------------------------------------------------+
@@ -187,7 +217,7 @@
187+-------------------------------------------------------------------------------------------------------------+217+-------------------------------------------------------------------------------------------------------------+
188|:Upstream bug: :mysqlbug:`70500` - Page cleaner should perform LRU flushing regardless of server activity |218|:Upstream bug: :mysqlbug:`70500` - Page cleaner should perform LRU flushing regardless of server activity |
189|:Launchpad bug: :bug:`1234562` |219|:Launchpad bug: :bug:`1234562` |
190|:Upstream state: Open (checked on 2014-11-23) |220|:Upstream state: Verified (checked on 2015-01-12) |
191|:Fix Released: :rn:`5.6.13-61.0` |221|:Fix Released: :rn:`5.6.13-61.0` |
192|:Upstream fix: N/A |222|:Upstream fix: N/A |
193+-------------------------------------------------------------------------------------------------------------+223+-------------------------------------------------------------------------------------------------------------+
@@ -205,25 +235,25 @@
205+-------------------------------------------------------------------------------------------------------------+235+-------------------------------------------------------------------------------------------------------------+
206|:Upstream bug: :mysqlbug:`68481` - InnoDB LRU flushing for MySQL 5.6 needs work |236|:Upstream bug: :mysqlbug:`68481` - InnoDB LRU flushing for MySQL 5.6 needs work |
207|:Launchpad bug: :bug:`1232406` |237|:Launchpad bug: :bug:`1232406` |
208|:Upstream state: Verified (checked on 2014-11-23) |238|:Upstream state: Verified (checked on 2015-01-12) |
209|:Fix Released: :rn:`5.6.13-61.0` |239|:Fix Released: :rn:`5.6.13-61.0` |
210|:Upstream fix: N/A |240|:Upstream fix: N/A |
211+-------------------------------------------------------------------------------------------------------------+241+-------------------------------------------------------------------------------------------------------------+
212|:Upstream bug: :mysqlbug:`70453` - Add hard timeouts to page cleaner flushes |242|:Upstream bug: :mysqlbug:`70453` - Add hard timeouts to page cleaner flushes |
213|:Launchpad bug: :bug:`1232101` |243|:Launchpad bug: :bug:`1232101` |
214|:Upstream state: Verified (checked on 2014-11-23) |244|:Upstream state: Verified (checked on 2015-01-12) |
215|:Fix Released: :rn:`5.6.13-61.0` |245|:Fix Released: :rn:`5.6.13-61.0` |
216|:Upstream fix: N/A |246|:Upstream fix: N/A |
217+-------------------------------------------------------------------------------------------------------------+247+-------------------------------------------------------------------------------------------------------------+
218|:Upstream bug: :mysqlbug:`69170` - buf_flush_LRU is lazy |248|:Upstream bug: :mysqlbug:`69170` - buf_flush_LRU is lazy |
219|:Launchpad bug: :bug:`1231918` |249|:Launchpad bug: :bug:`1231918` |
220|:Upstream state: Verified (checked on 2014-11-23) |250|:Upstream state: Verified (checked on 2015-01-12) |
221|:Fix Released: :rn:`5.6.13-61.0` |251|:Fix Released: :rn:`5.6.13-61.0` |
222|:Upstream fix: N/A |252|:Upstream fix: N/A |
223+-------------------------------------------------------------------------------------------------------------+253+-------------------------------------------------------------------------------------------------------------+
224|:Upstream bug: :mysqlbug:`68555` - thread convoys from log_checkpoint_margin with innodb_buffer_pool_inst... |254|:Upstream bug: :mysqlbug:`68555` - thread convoys from log_checkpoint_margin with innodb_buffer_pool_inst... |
225|:Launchpad bug: :bug:`1236884` |255|:Launchpad bug: :bug:`1236884` |
226|:Upstream state: Verified (checked on 2014-11-23) |256|:Upstream state: Verified (checked on 2015-01-12) |
227|:Fix Released: :rn:`5.6.13-61.0` |257|:Fix Released: :rn:`5.6.13-61.0` |
228|:Upstream fix: N/A |258|:Upstream fix: N/A |
229+-------------------------------------------------------------------------------------------------------------+259+-------------------------------------------------------------------------------------------------------------+
@@ -253,7 +283,7 @@
253+-------------------------------------------------------------------------------------------------------------+283+-------------------------------------------------------------------------------------------------------------+
254|:Upstream bug: :mysqlbug:`62018` - innodb adaptive hash index mutex contention |284|:Upstream bug: :mysqlbug:`62018` - innodb adaptive hash index mutex contention |
255|:Launchpad bug: :bug:`1216804` |285|:Launchpad bug: :bug:`1216804` |
256|:Upstream state: Verified (checked on 2014-11-23) |286|:Upstream state: Verified (checked on 2015-01-12) |
257|:Fix Released: :rn:`5.6.13-60.6` |287|:Fix Released: :rn:`5.6.13-60.6` |
258|:Upstream fix: N/A |288|:Upstream fix: N/A |
259+-------------------------------------------------------------------------------------------------------------+289+-------------------------------------------------------------------------------------------------------------+
@@ -271,13 +301,13 @@
271+-------------------------------------------------------------------------------------------------------------+301+-------------------------------------------------------------------------------------------------------------+
272|:Upstream bug: :mysqlbug:`42415` - UPDATE/DELETE with LIMIT clause unsafe for SBL even with ORDER BY PK ... |302|:Upstream bug: :mysqlbug:`42415` - UPDATE/DELETE with LIMIT clause unsafe for SBL even with ORDER BY PK ... |
273|:Launchpad bug: :bug:`1132194` |303|:Launchpad bug: :bug:`1132194` |
274|:Upstream state: Verified (checked on 2014-11-23) |304|:Upstream state: Verified (checked on 2015-01-12) |
275|:Fix Released: :rn:`5.6.13-60.5` |305|:Fix Released: :rn:`5.6.13-60.5` |
276|:Upstream fix: N/A |306|:Upstream fix: N/A |
277+-------------------------------------------------------------------------------------------------------------+307+-------------------------------------------------------------------------------------------------------------+
278|:Upstream bug: :mysqlbug:`69639` - mysql failed to build with dtrace Sun D 1.11 |308|:Upstream bug: :mysqlbug:`69639` - mysql failed to build with dtrace Sun D 1.11 |
279|:Launchpad bug: :bug:`1196460` |309|:Launchpad bug: :bug:`1196460` |
280|:Upstream state: Open (checked on 2014-11-23) |310|:Upstream state: Open (checked on 2015-01-12) |
281|:Fix Released: :rn:`5.6.13-60.5` |311|:Fix Released: :rn:`5.6.13-60.5` |
282|:Upstream fix: N/A |312|:Upstream fix: N/A |
283+-------------------------------------------------------------------------------------------------------------+313+-------------------------------------------------------------------------------------------------------------+
@@ -295,7 +325,7 @@
295+-------------------------------------------------------------------------------------------------------------+325+-------------------------------------------------------------------------------------------------------------+
296|:Upstream bug: :mysqlbug:`69856` - mysql_install_db does not function properly in 5.6 for debug builds |326|:Upstream bug: :mysqlbug:`69856` - mysql_install_db does not function properly in 5.6 for debug builds |
297|:Launchpad bug: :bug:`1179359` |327|:Launchpad bug: :bug:`1179359` |
298|:Upstream state: Verified (checked on 2014-11-23) |328|:Upstream state: Verified (checked on 2015-01-12) |
299|:Fix Released: :rn:`5.6.12-60.4` |329|:Fix Released: :rn:`5.6.12-60.4` |
300|:Upstream fix: N/A |330|:Upstream fix: N/A |
301+-------------------------------------------------------------------------------------------------------------+331+-------------------------------------------------------------------------------------------------------------+
@@ -307,7 +337,7 @@
307+-------------------------------------------------------------------------------------------------------------+337+-------------------------------------------------------------------------------------------------------------+
308|:Upstream bug: :mysqlbug:`71183` - os_file_fsync() should handle fsync() returning EINTR |338|:Upstream bug: :mysqlbug:`71183` - os_file_fsync() should handle fsync() returning EINTR |
309|:Launchpad bug: :bug:`1262651` |339|:Launchpad bug: :bug:`1262651` |
310|:Upstream state: Verified (checked on 2014-11-23) |340|:Upstream state: Verified (checked on 2015-01-12) |
311|:Fix Released: :rn:`5.6.11-60.3` |341|:Fix Released: :rn:`5.6.11-60.3` |
312|:Upstream fix: N/A |342|:Upstream fix: N/A |
313+-------------------------------------------------------------------------------------------------------------+343+-------------------------------------------------------------------------------------------------------------+
@@ -337,7 +367,7 @@
337+-------------------------------------------------------------------------------------------------------------+367+-------------------------------------------------------------------------------------------------------------+
338|:Upstream bug: :mysqlbug:`68714` - Remove literal statement digest values from perfschema tests |368|:Upstream bug: :mysqlbug:`68714` - Remove literal statement digest values from perfschema tests |
339|:Launchpad bug: :bug:`1157078` |369|:Launchpad bug: :bug:`1157078` |
340|:Upstream state: Verified (checked on 2014-11-23) |370|:Upstream state: Verified (checked on 2015-01-12) |
341|:Fix Released: :rn:`5.6.11-60.3` |371|:Fix Released: :rn:`5.6.11-60.3` |
342|:Upstream fix: N/A |372|:Upstream fix: N/A |
343+-------------------------------------------------------------------------------------------------------------+373+-------------------------------------------------------------------------------------------------------------+
@@ -361,13 +391,13 @@
361+-------------------------------------------------------------------------------------------------------------+391+-------------------------------------------------------------------------------------------------------------+
362|:Upstream bug: :mysqlbug:`68970` - fsp_reserve_free_extents switches from small to big tblspace handling ... |392|:Upstream bug: :mysqlbug:`68970` - fsp_reserve_free_extents switches from small to big tblspace handling ... |
363|:Launchpad bug: :bug:`1169494` |393|:Launchpad bug: :bug:`1169494` |
364|:Upstream state: Verified (checked on 2014-11-23) |394|:Upstream state: Closed |
365|:Fix Released: :rn:`5.6.11-60.3` |395|:Fix Released: :rn:`5.6.11-60.3` |
366|:Upstream fix: N/A |396|:Upstream fix: N/A |
367+-------------------------------------------------------------------------------------------------------------+397+-------------------------------------------------------------------------------------------------------------+
368|:Upstream bug: :mysqlbug:`68713` - create_duplicate_weedout_tmp_table() leaves key_part_flag uninitialized |398|:Upstream bug: :mysqlbug:`68713` - create_duplicate_weedout_tmp_table() leaves key_part_flag uninitialized |
369|:Launchpad bug: :bug:`1157037` |399|:Launchpad bug: :bug:`1157037` |
370|:Upstream state: Verified (checked on 2014-11-23) |400|:Upstream state: Verified (checked on 2015-01-12) |
371|:Fix Released: :rn:`5.6.11-60.3` |401|:Fix Released: :rn:`5.6.11-60.3` |
372|:Upstream fix: N/A |402|:Upstream fix: N/A |
373+-------------------------------------------------------------------------------------------------------------+403+-------------------------------------------------------------------------------------------------------------+
@@ -379,13 +409,13 @@
379+-------------------------------------------------------------------------------------------------------------+409+-------------------------------------------------------------------------------------------------------------+
380|:Upstream bug: :mysqlbug:`68999` - SSL_OP_NO_COMPRESSION not defined |410|:Upstream bug: :mysqlbug:`68999` - SSL_OP_NO_COMPRESSION not defined |
381|:Launchpad bug: :bug:`1183610` |411|:Launchpad bug: :bug:`1183610` |
382|:Upstream state: No Feedback (checked on 2014-11-23) |412|:Upstream state: No Feedback (checked on 2015-01-12) |
383|:Fix Released: :rn:`5.6.11-60.3` |413|:Fix Released: :rn:`5.6.11-60.3` |
384|:Upstream fix: N/A |414|:Upstream fix: N/A |
385+-------------------------------------------------------------------------------------------------------------+415+-------------------------------------------------------------------------------------------------------------+
386|:Upstream bug: :mysqlbug:`68845` - Unnecessary log_sys->mutex reacquisition in mtr_log_reserve_and_write() |416|:Upstream bug: :mysqlbug:`68845` - Unnecessary log_sys->mutex reacquisition in mtr_log_reserve_and_write() |
387|:Launchpad bug: :bug:`1163439` |417|:Launchpad bug: :bug:`1163439` |
388|:Upstream state: Verified (checked on 2014-11-23) |418|:Upstream state: Verified (checked on 2015-01-12) |
389|:Fix Released: :rn:`5.6.11-60.3` |419|:Fix Released: :rn:`5.6.11-60.3` |
390|:Upstream fix: N/A |420|:Upstream fix: N/A |
391+-------------------------------------------------------------------------------------------------------------+421+-------------------------------------------------------------------------------------------------------------+
@@ -415,7 +445,7 @@
415+-------------------------------------------------------------------------------------------------------------+445+-------------------------------------------------------------------------------------------------------------+
416|:Upstream bug: :mysqlbug:`68476` - Suboptimal code in my_strnxfrm_simple() |446|:Upstream bug: :mysqlbug:`68476` - Suboptimal code in my_strnxfrm_simple() |
417|:Launchpad bug: :bug:`1132350` |447|:Launchpad bug: :bug:`1132350` |
418|:Upstream state: Verified (checked on 2014-11-23) |448|:Upstream state: Closed |
419|:Fix Released: :rn:`5.6.11-60.3` |449|:Fix Released: :rn:`5.6.11-60.3` |
420|:Upstream fix: N/A |450|:Upstream fix: N/A |
421+-------------------------------------------------------------------------------------------------------------+451+-------------------------------------------------------------------------------------------------------------+
@@ -475,7 +505,7 @@
475+-------------------------------------------------------------------------------------------------------------+505+-------------------------------------------------------------------------------------------------------------+
476|:Upstream bug: :mysqlbug:`61178` - Incorrect implementation of intersect(ulonglong) in non-optimized Bitmap..|506|:Upstream bug: :mysqlbug:`61178` - Incorrect implementation of intersect(ulonglong) in non-optimized Bitmap..|
477|:Launchpad bug: :bug:`1042517` |507|:Launchpad bug: :bug:`1042517` |
478|:Upstream state: Verified (checked on 2014-11-23) |508|:Upstream state: Verified (checked on 2015-01-12) |
479|:Fix Released: :rn:`5.6.11-60.3` |509|:Fix Released: :rn:`5.6.11-60.3` |
480|:Upstream fix: N/A |510|:Upstream fix: N/A |
481+-------------------------------------------------------------------------------------------------------------+511+-------------------------------------------------------------------------------------------------------------+
@@ -487,7 +517,7 @@
487+-------------------------------------------------------------------------------------------------------------+517+-------------------------------------------------------------------------------------------------------------+
488|:Upstream bug: :mysqlbug:`64800` - mysqldump with --include-master-host-port putting quotes around port no. | 518|:Upstream bug: :mysqlbug:`64800` - mysqldump with --include-master-host-port putting quotes around port no. |
489|:Launchpad bug: :bug:`1013432` |519|:Launchpad bug: :bug:`1013432` |
490|:Upstream state: Verified (checked on 2014-11-23) |520|:Upstream state: Verified (checked on 2015-01-12) |
491|:Fix Released: :rn:`5.6.11-60.3` |521|:Fix Released: :rn:`5.6.11-60.3` |
492|:Upstream fix: N/A |522|:Upstream fix: N/A |
493+-------------------------------------------------------------------------------------------------------------+523+-------------------------------------------------------------------------------------------------------------+
@@ -517,13 +547,13 @@
517+-------------------------------------------------------------------------------------------------------------+547+-------------------------------------------------------------------------------------------------------------+
518|:Upstream bug: :mysqlbug:`25007` - memory tables with dynamic rows format |548|:Upstream bug: :mysqlbug:`25007` - memory tables with dynamic rows format |
519|:Launchpad bug: :bug:`1148822` |549|:Launchpad bug: :bug:`1148822` |
520|:Upstream state: Verified (checked on 2014-11-23) |550|:Upstream state: Verified (checked on 2015-01-12) |
521|:Fix Released: :rn:`5.6.11-60.3` |551|:Fix Released: :rn:`5.6.11-60.3` |
522|:Upstream fix: N/A |552|:Upstream fix: N/A |
523+-------------------------------------------------------------------------------------------------------------+553+-------------------------------------------------------------------------------------------------------------+
524|:Upstream bug: :mysqlbug:`61595` - mysql-test/include/wait_for_slave_param.inc timeout logic is incorrect |554|:Upstream bug: :mysqlbug:`61595` - mysql-test/include/wait_for_slave_param.inc timeout logic is incorrect |
525|:Launchpad bug: :bug:`800035` |555|:Launchpad bug: :bug:`800035` |
526|:Upstream state: Verified (checked on 2014-11-23) |556|:Upstream state: Verified (checked on 2015-01-12) |
527|:Fix Released: :rn:`5.6.11-60.3` |557|:Fix Released: :rn:`5.6.11-60.3` |
528|:Upstream fix: N/A |558|:Upstream fix: N/A |
529+-------------------------------------------------------------------------------------------------------------+559+-------------------------------------------------------------------------------------------------------------+
@@ -547,13 +577,13 @@
547+-------------------------------------------------------------------------------------------------------------+577+-------------------------------------------------------------------------------------------------------------+
548|:Upstream bug: :mysqlbug:`20001` - Support for temp-tables in INFORMATION_SCHEMA |578|:Upstream bug: :mysqlbug:`20001` - Support for temp-tables in INFORMATION_SCHEMA |
549|:Launchpad bug: N/A |579|:Launchpad bug: N/A |
550|:Upstream state: Verified (checked on 2014-11-23) |580|:Upstream state: Verified (checked on 2015-01-12) |
551|:Fix Released: :rn:`5.6.5-60.0` |581|:Fix Released: :rn:`5.6.5-60.0` |
552|:Upstream fix: N/A |582|:Upstream fix: N/A |
553+-------------------------------------------------------------------------------------------------------------+583+-------------------------------------------------------------------------------------------------------------+
554|:Upstream bug: :mysqlbug:`69146` - Optimization in buf_pool_get_oldest_modification if srv_buf_pool_instances|584|:Upstream bug: :mysqlbug:`69146` - Optimization in buf_pool_get_oldest_modification if srv_buf_pool_instances|
555|:Launchpad bug: :bug:`1176496` |585|:Launchpad bug: :bug:`1176496` |
556|:Upstream state: Verified (checked on 2014-11-23) |586|:Upstream state: Verified (checked on 2015-01-12) |
557|:Fix Released: :rn:`5.6.5-60.0` |587|:Fix Released: :rn:`5.6.5-60.0` |
558|:Upstream fix: N/A |588|:Upstream fix: N/A |
559+-------------------------------------------------------------------------------------------------------------+589+-------------------------------------------------------------------------------------------------------------+

Subscribers

People subscribed via source and target branches