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
1=== modified file 'doc/source/conf.py'
2--- doc/source/conf.py 2014-10-02 13:27:38 +0000
3+++ doc/source/conf.py 2015-01-09 13:41:16 +0000
4@@ -45,7 +45,7 @@
5
6 # General information about the project.
7 project = u'Percona Server'
8-copyright = u'Percona LLC and/or its affiliates 2009-2014'
9+copyright = u'Percona LLC and/or its affiliates 2009-2015'
10
11 # The version info for the project you're documenting, acts as replacement for
12 # |version| and |release|, also used in various other places throughout the
13@@ -54,7 +54,7 @@
14 # The short X.Y version.
15 version = '5.5'
16 # The full version, including alpha/beta/rc tags.
17-release = '5.5.40-36.1'
18+release = '5.5.41-37.0'
19
20 # The language for content autogenerated by Sphinx. Refer to documentation
21 # for a list of supported languages.
22@@ -225,7 +225,7 @@
23 # (source start file, target name, title, author, documentclass [howto/manual]).
24 latex_documents = [
25 ('index', 'PerconaServer-5.5.tex', u'Percona Server Documentation',
26- u'Percona LLC and/or its affiliates 2009-2014', 'manual'),
27+ u'Percona LLC and/or its affiliates 2009-2015', 'manual'),
28 ]
29
30 # The name of an image file (relative to this directory) to place at the top of
31@@ -258,7 +258,7 @@
32 # (source start file, name, description, authors, manual section).
33 man_pages = [
34 ('index', 'perconaserver55', u'Percona Server 5.5 Documentation',
35- [u'Percona LLC and/or its affiliates 2009-2014'], 1)
36+ [u'Percona LLC and/or its affiliates 2009-2015'], 1)
37 ]
38
39
40
41=== modified file 'doc/source/diagnostics/slow_extended_55.rst'
42--- doc/source/diagnostics/slow_extended_55.rst 2014-04-30 09:32:01 +0000
43+++ doc/source/diagnostics/slow_extended_55.rst 2015-01-09 13:41:16 +0000
44@@ -26,6 +26,8 @@
45
46 * :rn:`5.5.34-32.0`:
47 * New :variable:`slow_query_log_always_write_time` variable introduced.
48+ * :rn:`5.5.41-37.0`:
49+ * Implemented improved slow log reporting for queries in stored procedures.
50
51 Other Information
52 =================
53@@ -138,7 +140,6 @@
54
55 To 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.
56
57-
58 .. variable:: log_slow_sp_statements
59
60 :cli: Yes
61@@ -151,6 +152,59 @@
62
63 If ``TRUE``, statements executed by stored procedures are logged to the slow if it is open.
64
65+.. _improved_sp_reporting:
66+
67+Prior 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:
68+ * Each query from a stored procedure is now logged to the slow query log individually
69+ * ``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
70+ * Queries that were called inside of stored procedures are annotated in the slow query log with the stored procedure name in which they run.
71+
72+Example of the improved stored procedure slow query log entry:
73+
74+.. code-block:: mysql
75+
76+ mysql> DELIMITER //
77+ mysql> CREATE PROCEDURE improved_sp_log()
78+ BEGIN
79+ SELECT * FROM City;
80+ SELECT * FROM Country;
81+ END//
82+ mysql> DELIMITER ;
83+ mysql> CALL improved_sp_log();
84+
85+When we check the slow query log after running the stored procedure ,with variable:`log_slow_sp_statements` set to ``TRUE``, it should look like this: ::
86+
87+ # Time: 150109 11:38:55
88+ # User@Host: root[root] @ localhost []
89+ # Thread_id: 40 Schema: world Last_errno: 0 Killed: 0
90+ # Query_time: 0.012989 Lock_time: 0.000033 Rows_sent: 4079 Rows_examined: 4079 Rows_affected: 0 Rows_read: 4079
91+ # Bytes_sent: 161085
92+ # Stored routine: world.improved_sp_log
93+ SET timestamp=1420803535;
94+ SELECT * FROM City;
95+ # User@Host: root[root] @ localhost []
96+ # Thread_id: 40 Schema: world Last_errno: 0 Killed: 0
97+ # Query_time: 0.001413 Lock_time: 0.000017 Rows_sent: 4318 Rows_examined: 4318 Rows_affected: 0 Rows_read: 4318
98+ # Bytes_sent: 194601
99+ # Stored routine: world.improved_sp_log
100+ SET timestamp=1420803535;
101+ SELECT * FROM Country;
102+
103+If variable :variable:`log_slow_sp_statements` is set to ``FALSE``:
104+
105+ * 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
106+ * Execution time is reported for the ``CALL`` statement as the total execution time of the ``CALL`` including all its statements
107+
108+If we run the same stored procedure with the variable :variable:`log_slow_sp_statements` is set to ``FALSE`` slow query log should look like this: ::
109+
110+ # Time: 150109 11:51:42
111+ # User@Host: root[root] @ localhost []
112+ # Thread_id: 40 Schema: world Last_errno: 0 Killed: 0
113+ # Query_time: 0.013947 Lock_time: 0.000000 Rows_sent: 4318 Rows_examined: 4318 Rows_affected: 0 Rows_read: 4318
114+ # Bytes_sent: 194612
115+ SET timestamp=1420804302;
116+ CALL improved_sp_log();
117+
118 .. note::
119
120 Support for logging stored procedures doesn't involve triggers, so they won't be logged even if this feature is enabled.
121
122=== added file 'doc/source/flexibility/csv_engine_mode.rst'
123--- doc/source/flexibility/csv_engine_mode.rst 1970-01-01 00:00:00 +0000
124+++ doc/source/flexibility/csv_engine_mode.rst 2015-01-09 13:41:16 +0000
125@@ -0,0 +1,99 @@
126+.. _csv_engine_mode:
127+
128+================================================================
129+ CSV engine mode for standard-compliant quote and comma parsing
130+================================================================
131+
132+`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.
133+
134+To keep both |MySQL| and other tool compatibility, a new dynamic, global/session server variable :variable:`csv_mode` has been implemented. This variable allows an empty value (the default), and ``IETF_QUOTES``.
135+
136+If ``IETF_QUOTES`` is set, then embedded commas are accepted in quoted fields as-is, and a quote character is quoted by doubling it. In legacy mode embedded commas terminate the field, and quotes are quoted with a backslash.
137+
138+Example
139+=======
140+
141+Table:
142+
143+.. code-block:: mysql
144+
145+ mysql> CREATE TABLE albums (
146+ `artist` text NOT NULL,
147+ `album` text NOT NULL
148+ ) ENGINE=CSV DEFAULT CHARSET=utf8
149+ ;
150+
151+Following example shows the difference in parsing for default and ``IETF_QUOTES`` :variable:`csv_quotes`.
152+
153+.. code-block:: mysql
154+
155+ mysql> INSERT INTO albums VALUES ("Great Artist", "Old Album"),
156+ ("Great Artist", "Old Album \"Limited Edition\"");
157+
158+If the variable :variable:`csv_mode` is set to empty value (default) parsed data will look like: ::
159+
160+ "Great Artist","Old Album"
161+ "Great Artist","\"Limited Edition\",Old Album"
162+
163+If the variable :variable:`csv_mode` is set to ``IETF_QUOTES`` parsed data will look like as described in `CSV rules <http://en.wikipedia.org/wiki/Comma-separated_values#Basic_rules_and_examples>`_: ::
164+
165+ "Great Artist","Old Album"
166+ "Great Artist","""Limited Edition"",Old Album"
167+
168+Parsing the CSV file which has the proper quotes (shown in the previous example) can show different results:
169+
170+With :variable:`csv_mode` set to empty value, parsed data will look like:
171+
172+.. code-block:: mysql
173+
174+ mysql> select * from albums;
175+ +--------------+--------------------+
176+ | artist | album |
177+ +--------------+--------------------+
178+ | Great Artist | Old Album |
179+ | Great Artist | ""Limited Edition" |
180+ +--------------+--------------------+
181+ 2 rows in set (0.02 sec)
182+
183+With :variable:`csv_mode` set to ``IETF_QUOTES`` parsed data will look like:
184+
185+.. code-block:: mysql
186+
187+ mysql> set csv_mode='IETF_QUOTES'; Query OK, 0 rows affected (0.00 sec)
188+
189+ mysql> select * from albums;
190+ +--------------+-----------------------------+
191+ | artist | album |
192+ +--------------+-----------------------------+
193+ | Great Artist | Old Album |
194+ | Great Artist | "Limited Edition",Old Album |
195+ +--------------+-----------------------------+
196+
197+
198+Version Specific Information
199+============================
200+
201+ * :rn:`5.5.41-37.0`:
202+ Variable :variable:`csv_mode` implemented
203+
204+System Variables
205+================
206+
207+.. variable:: csv_mode
208+
209+ :version 5.5.41-37.0: Introduced.
210+ :cli: Yes
211+ :conf: Yes
212+ :scope: Global, Session
213+ :dyn: Yes
214+ :vartype: SET
215+ :default: ``(empty string)``
216+ :range: ``(empty string)``, ``IETF_QUOTES``
217+
218+Setting this variable is to ``IETF_QUOTES`` will enable the standard-compliant quote parsing: commas are accepted in quoted fields as-is, and quoting of ``"`` is changed from ``\"`` to ``""``. If the variable is set to empty value (the default), then the old parsing behavior is kept.
219+
220+Related Reading
221+===============
222+
223+ * `MySQL bug #71091 <http://bugs.mysql.com/bug.php?id=71091>`_
224+
225
226=== modified file 'doc/source/index.rst'
227--- doc/source/index.rst 2014-04-30 09:32:01 +0000
228+++ doc/source/index.rst 2015-01-09 13:41:16 +0000
229@@ -100,6 +100,7 @@
230 flexibility/extended_mysqlbinlog
231 flexibility/mysqlbinlog_change_db
232 flexibility/slowlog_rotation
233+ flexibility/csv_engine_mode
234
235 Reliability Improvements
236 ========================
237
238=== modified file 'doc/source/installation/apt_repo.rst'
239--- doc/source/installation/apt_repo.rst 2014-09-23 14:50:24 +0000
240+++ doc/source/installation/apt_repo.rst 2015-01-09 13:41:16 +0000
241@@ -41,8 +41,8 @@
242
243 * 10.04LTS (lucid)
244 * 12.04LTS (precise)
245- * 13.10 (saucy)
246 * 14.04LTS (trusty)
247+ * 14.10 (utopic)
248
249 Percona `apt` Testing repository
250 =================================
251
252=== modified file 'doc/source/release-notes/Percona-Server-5.5.39-36.0.rst'
253--- doc/source/release-notes/Percona-Server-5.5.39-36.0.rst 2014-08-28 13:25:46 +0000
254+++ doc/source/release-notes/Percona-Server-5.5.39-36.0.rst 2015-01-09 13:41:16 +0000
255@@ -32,4 +32,6 @@
256
257 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`.
258
259+ Server would crash on login attempt if ``mysql.user`` table was truncated. Bug fixed :bug:`1322218`.
260+
261 Other 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`).
262
263=== added file 'doc/source/release-notes/Percona-Server-5.5.41-37.0.rst'
264--- doc/source/release-notes/Percona-Server-5.5.41-37.0.rst 1970-01-01 00:00:00 +0000
265+++ doc/source/release-notes/Percona-Server-5.5.41-37.0.rst 2015-01-09 13:41:16 +0000
266@@ -0,0 +1,39 @@
267+.. rn:: 5.5.41-37.0
268+
269+==============================
270+ |Percona Server| 5.5.41-37.0
271+==============================
272+
273+Percona 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>`.
274+
275+Based 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>`_.
276+
277+New Features
278+============
279+
280+ |Percona Server| has implemented :ref:`csv_engine_mode`. This feature also fixes the bug :bug:`1316042` (upstream :mysqlbug:`71091`).
281+
282+ |Percona Server| has implemented improved slow log reporting for queries in :ref:`stored procedures <improved_sp_reporting>`.
283+
284+Bugs Fixed
285+==========
286+
287+ *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`.
288+
289+ If HandlerSocket was enabled, the server would hang during shutdown. Bug fixed :bug:`1319904`.
290+
291+ 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`).
292+
293+ Values of ``IP`` and ``DB`` fields in the :ref:`audit_log_plugin` were incorrect. Bug fixed :bug:`1379023`.
294+
295+ *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`).
296+
297+ Default *MySQL* configuration file, :file:`my.cnf`, was not installed during the new installation on *CentOS*. Bug fixed :bug:`1405667`.
298+
299+ 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`).
300+
301+ Purging bitmaps exactly up to the last tracked LSN would abort :ref:`changed_page_tracking`. Bug fixed :bug:`1382336`.
302+
303+ ``mysql_install_db`` script would silently ignore any mysqld startup failures. Bug fixed :bug:`1382782` (upstream :mysqlbug:`74440`).
304+
305+Other bugs fixed: :bug:`1067103`, :bug:`1394357`, :bug:`1282599`, :bug:`1335590`, :bug:`1335590`, :bug:`1401791` (upstream :mysqlbug:`73281`), and :bug:`1396330` (upstream :mysqlbug:`74987`).
306
307=== modified file 'doc/source/release-notes/release-notes_index.rst'
308--- doc/source/release-notes/release-notes_index.rst 2014-10-02 13:27:38 +0000
309+++ doc/source/release-notes/release-notes_index.rst 2015-01-09 13:41:16 +0000
310@@ -6,6 +6,7 @@
311 :maxdepth: 1
312 :glob:
313
314+ Percona-Server-5.5.41-37.0
315 Percona-Server-5.5.40-36.1
316 Percona-Server-5.5.39-36.0
317 Percona-Server-5.5.38-35.2
318
319=== modified file 'doc/source/upstream-bug-fixes.rst'
320--- doc/source/upstream-bug-fixes.rst 2014-10-02 13:27:38 +0000
321+++ doc/source/upstream-bug-fixes.rst 2015-01-09 13:41:16 +0000
322@@ -5,21 +5,57 @@
323 =============================================================
324
325 +-------------------------------------------------------------------------------------------------------------+
326+|:Upstream bug: :mysqlbug:`74987` - mtr failure on Ubuntu Utopic, mysqlhotcopy fails with wrong error(255) |
327+|:Launchpad bug: :bug:`1396330` |
328+|:Upstream state: Verified (checked on 2015-01-07) |
329+|:Fix Released: :rn:`5.5.41-37.0` |
330+|:Upstream fix: N/A |
331++-------------------------------------------------------------------------------------------------------------+
332+|:Upstream bug: :mysqlbug:`73281` - openssl_1 tries to test a removed cipher on CentOS 7 |
333+|:Launchpad bug: :bug:`1401791` |
334+|:Upstream state: Verified (checked on 2015-01-07) |
335+|:Fix Released: :rn:`5.5.41-37.0` |
336+|:Upstream fix: N/A |
337++-------------------------------------------------------------------------------------------------------------+
338+|:Upstream bug: :mysqlbug:`74440` - mysql_install_db not handling mysqld startup failure |
339+|:Launchpad bug: :bug:`1382782` |
340+|:Upstream state: Verified (checked on 2015-01-07) |
341+|:Fix Released: :rn:`5.5.41-37.0` |
342+|:Upstream fix: N/A |
343++-------------------------------------------------------------------------------------------------------------+
344+|:Upstream bug: :mysqlbug:`72475` - Binlog events with binlog_format=MIXED are unconditionally logged in ROW..|
345+|:Launchpad bug: :bug:`1313901` |
346+|:Upstream state: Verified (checked on 2015-01-07) |
347+|:Fix Released: :rn:`5.5.41-37.0` |
348+|:Upstream fix: N/A |
349++-------------------------------------------------------------------------------------------------------------+
350+|:Upstream bug: :mysqlbug:`75000` - 5.5 fails to compile with debug on Ubuntu Utopic |
351+|:Launchpad bug: :bug:`1396358` |
352+|:Upstream state: Closed |
353+|:Fix Released: :rn:`5.5.41-37.0` |
354+|:Upstream fix: 5.5.42 |
355++-------------------------------------------------------------------------------------------------------------+
356+|:Upstream bug: :mysqlbug:`73979` - wrong stack size calculation leads to stack overflow in pinbox allocator |
357+|:Launchpad bug: :bug:`1351148` |
358+|:Upstream state: In Progress (checked on 2015-01-07) |
359+|:Fix Released: :rn:`5.5.41-37.0` |
360+|:Upstream fix: N/A |
361++-------------------------------------------------------------------------------------------------------------+
362 |:Upstream bug: :mysqlbug:`73126` - Numerous Valgrind errors in OpenSSL |
363 |:Launchpad bug: :bug:`1334743` |
364-|:Upstream state: Verified (checked on 2014-09-30) |
365+|:Upstream state: Verified (checked on 2015-01-07) |
366 |:Fix Released: :rn:`5.5.39-36.0` |
367 |:Upstream fix: N/A |
368 +-------------------------------------------------------------------------------------------------------------+
369 |:Upstream bug: :mysqlbug:`73111` - Suppression typo causing spurious MTR Valgrind failures |
370 |:Launchpad bug: :bug:`1334317` |
371-|:Upstream state: Open (checked on 2014-09-30) |
372+|:Upstream state: Open (checked on 2015-01-07) |
373 |:Fix Released: :rn:`5.5.39-36.0` |
374 |:Upstream fix: N/A |
375 +-------------------------------------------------------------------------------------------------------------+
376 |:Upstream bug: :mysqlbug:`73418` - Add --manual-lldb option to mysql-test-run.pl |
377 |:Launchpad bug: :bug:`1328482` |
378-|:Upstream state: Verified (checked on 2014-09-30) |
379+|:Upstream state: Verified (checked on 2015-01-07) |
380 |:Fix Released: :rn:`5.5.39-36.0` |
381 |:Upstream fix: N/A |
382 +-------------------------------------------------------------------------------------------------------------+
383@@ -43,13 +79,13 @@
384 +-------------------------------------------------------------------------------------------------------------+
385 |:Upstream bug: :mysqlbug:`71375` - Slave IO thread won't attempt auto reconnect to the master/error-code 1593|
386 |:Launchpad bug: :bug:`1268735` |
387-|:Upstream state: Verified (checked on 2014-09-30) |
388+|:Upstream state: Verified (checked on 2015-01-07) |
389 |:Fix Released: :rn:`5.5.36-34.1` |
390 |:Upstream fix: N/A |
391 +-------------------------------------------------------------------------------------------------------------+
392 |:Upstream bug: :mysqlbug:`71374` - Slave IO thread won't attempt auto reconnect to the master/error-code 1159|
393 |:Launchpad bug: :bug:`1268729` |
394-|:Upstream state: Verified (checked on 2014-09-30) |
395+|:Upstream state: Verified (checked on 2015-01-07) |
396 |:Fix Released: :rn:`5.5.36-34.1` |
397 |:Upstream fix: N/A |
398 +-------------------------------------------------------------------------------------------------------------+
399@@ -79,7 +115,7 @@
400 +-------------------------------------------------------------------------------------------------------------+
401 |:Upstream bug: :mysqlbug:`69639` - mysql failed to build with dtrace Sun D 1.11 |
402 |:Launchpad bug: :bug:`1196460` |
403-|:Upstream state: Open (checked on 2014-09-30) |
404+|:Upstream state: Open (checked on 2015-01-07) |
405 |:Fix Released: :rn:`5.5.33-31.1` |
406 |:Upstream fix: N/A |
407 +-------------------------------------------------------------------------------------------------------------+
408@@ -91,7 +127,7 @@
409 +-------------------------------------------------------------------------------------------------------------+
410 |:Upstream bug: :mysqlbug:`42415` - UPDATE/DELETE with LIMIT clause unsafe for SBL even with ORDER BY PK ... |
411 |:Launchpad bug: :bug:`1132194` |
412-|:Upstream state: Verified (checked on 2014-09-30) |
413+|:Upstream state: Verified (checked on 2015-01-07) |
414 |:Fix Released: :rn:`5.5.32-31.0` |
415 |:Upstream fix: N/A |
416 +-------------------------------------------------------------------------------------------------------------+
417@@ -103,7 +139,7 @@
418 +-------------------------------------------------------------------------------------------------------------+
419 |:Upstream bug: :mysqlbug:`68970` - fsp_reserve_free_extents switches from small to big tblspace handling ... |
420 |:Launchpad bug: :bug:`1169494` |
421-|:Upstream state: Verified (checked on 2014-09-30) |
422+|:Upstream state: Closed |
423 |:Fix Released: :rn:`5.5.32-31.0` |
424 |:Upstream fix: N/A |
425 +-------------------------------------------------------------------------------------------------------------+
426@@ -115,7 +151,7 @@
427 +-------------------------------------------------------------------------------------------------------------+
428 |:Upstream bug: :mysqlbug:`68999` - SSL_OP_NO_COMPRESSION not defined |
429 |:Launchpad bug: :bug:`1183610` |
430-|:Upstream state: No Feedback (checked on 2014-09-30) |
431+|:Upstream state: No Feedback (checked on 2015-01-07) |
432 |:Fix Released: :rn:`5.5.31-30.3` |
433 |:Upstream fix: N/A |
434 +-------------------------------------------------------------------------------------------------------------+
435@@ -127,7 +163,7 @@
436 +-------------------------------------------------------------------------------------------------------------+
437 |:Upstream bug: :mysqlbug:`68845` - Unnecessary log_sys->mutex reacquisition in mtr_log_reserve_and_write() |
438 |:Launchpad bug: :bug:`1163439` |
439-|:Upstream state: Verified (checked on 2014-09-30) |
440+|:Upstream state: Verified (checked on 2015-01-07) |
441 |:Fix Released: :rn:`5.5.30-30.2` |
442 |:Upstream fix: N/A |
443 +-------------------------------------------------------------------------------------------------------------+
444@@ -157,7 +193,7 @@
445 +-------------------------------------------------------------------------------------------------------------+
446 |:Upstream bug: :mysqlbug:`68476` - Suboptimal code in my_strnxfrm_simple() |
447 |:Launchpad bug: :bug:`1132350` |
448-|:Upstream state: Verified (checked on 2014-09-30) |
449+|:Upstream state: Closed |
450 |:Fix Released: :rn:`5.5.30-30.1` |
451 |:Upstream fix: N/A |
452 +-------------------------------------------------------------------------------------------------------------+
453@@ -265,7 +301,7 @@
454 +-------------------------------------------------------------------------------------------------------------+
455 |:Upstream bug: :mysqlbug:`61178` - Incorrect implementation of intersect(ulonglong) in non-optimized Bitmap..|
456 |:Launchpad bug: :bug:`1042517` |
457-|:Upstream state: Verified (checked on 2014-09-30) |
458+|:Upstream state: Verified (checked on 2015-01-07) |
459 |:Fix Released: :rn:`5.5.27-29.0` |
460 |:Upstream fix: N/A |
461 +-------------------------------------------------------------------------------------------------------------+
462@@ -277,7 +313,7 @@
463 +-------------------------------------------------------------------------------------------------------------+
464 |:Upstream bug: :mysqlbug:`64800` - mysqldump with --include-master-host-port putting quotes around port no. |
465 |:Launchpad bug: :bug:`1013432` |
466-|:Upstream state: Verified (checked on 2014-09-30) |
467+|:Upstream state: Verified (checked on 2015-01-07) |
468 |:Fix Released: :rn:`5.5.27-28.0` |
469 |:Upstream fix: N/A |
470 +-------------------------------------------------------------------------------------------------------------+
471@@ -325,7 +361,7 @@
472 +-------------------------------------------------------------------------------------------------------------+
473 |:Upstream bug: :mysqlbug:`71183` - os_file_fsync() should handle fsync() returning EINTR |
474 |:Launchpad bug: :bug:`1262651` |
475-|:Upstream state: Verified (checked on 2014-09-30) |
476+|:Upstream state: Verified (checked on 2015-01-07) |
477 |:Fix Released: :rn:`5.5.20-24.1` |
478 |:Upstream fix: N/A |
479 +-------------------------------------------------------------------------------------------------------------+
480@@ -349,13 +385,13 @@
481 +-------------------------------------------------------------------------------------------------------------+
482 |:Upstream bug: :mysqlbug:`62516` - Fast index creation does not update index statistics |
483 |:Launchpad bug: :bug:`857590` |
484-|:Upstream state: Verified (checked on 2014-09-30) |
485+|:Upstream state: Verified (checked on 2015-01-07) |
486 |:Fix Released: :rn:`5.5.16-22.0` |
487 |:Upstream fix: N/A |
488 +-------------------------------------------------------------------------------------------------------------+
489 |:Upstream bug: :mysqlbug:`25007` - memory tables with dynamic rows format |
490 |:Launchpad bug: :bug:`1148822` |
491-|:Upstream state: Verified (checked on 2014-09-30) |
492+|:Upstream state: Verified (checked on 2015-01-07) |
493 |:Fix Released: :rn:`5.5.15-21.0` |
494 |:Upstream fix: N/A |
495 +-------------------------------------------------------------------------------------------------------------+
496@@ -373,7 +409,7 @@
497 +-------------------------------------------------------------------------------------------------------------+
498 |:Upstream bug: :mysqlbug:`61595` - mysql-test/include/wait_for_slave_param.inc timeout logic is incorrect |
499 |:Launchpad bug: :bug:`800035` |
500-|:Upstream state: Verified (checked on 2014-09-30) |
501+|:Upstream state: Verified (checked on 2015-01-07) |
502 |:Fix Released: :rn:`5.5.13-20.4` |
503 |:Upstream fix: N/A |
504 +-------------------------------------------------------------------------------------------------------------+
505@@ -403,7 +439,7 @@
506 +-------------------------------------------------------------------------------------------------------------+
507 |:Upstream bug: :mysqlbug:`69146` - Optimization in buf_pool_get_oldest_modification if srv_buf_pool_instances|
508 |:Launchpad bug: :bug:`1176496` |
509-|:Upstream state: Verified (checked on 2014-09-30) |
510+|:Upstream state: Verified (checked on 2015-01-07) |
511 |:Fix Released: :rn:`5.5.8-20.0` |
512 |:Upstream fix: N/A |
513 +-------------------------------------------------------------------------------------------------------------+

Subscribers

People subscribed via source and target branches