Merge lp:~hrvojem/percona-server/rn-5.5.32-31.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: 549
Proposed branch: lp:~hrvojem/percona-server/rn-5.5.32-31.0-5.5
Merge into: lp:percona-server/5.5
Diff against target: 318 lines (+125/-29)
5 files modified
doc/source/conf.py (+1/-1)
doc/source/management/pam_plugin.rst (+10/-0)
doc/source/release-notes/Percona-Server-5.5.32-31.0.rst (+55/-0)
doc/source/release-notes/release-notes_index.rst (+1/-0)
doc/source/upstream-bug-fixes.rst (+58/-28)
To merge this branch: bzr merge lp:~hrvojem/percona-server/rn-5.5.32-31.0-5.5
Reviewer Review Type Date Requested Status
Laurynas Biveinis (community) Approve
Alexey Kopytov (community) Approve
Review via email: mp+172355@code.launchpad.net
To post a comment you must log in.
Revision history for this message
Alexey Kopytov (akopytov) wrote :

* "MySQL 5.5.31" => "MySQL 5.5.32"

* "A complete list of groups and users belonging to them can be checked with ``vigr`` command." -- I think a more canonical way to _view_ all groups for a specific user is "groups", and "cat /etc/groups" can be used to get a list of all groups.

* "due to incorrect interaction between ``Federated`` storage engine and the optimizer" -- it wasn't an incorrection interaction between Federated and the optimizer, it as a bug in the Federated storage engine.

* "permanent statistics" => "persistent statistics for partitioned InnoDB tables"

* "lead" => "led"

* I think we should revert the patch for #1185686. "This may improve performance" just doesn't sound good, right? I will submit a patch today.

review: Needs Fixing
Revision history for this message
Laurynas Biveinis (laurynas-biveinis) wrote :

> * I think we should revert the patch for #1185686. "This may improve
> performance" just doesn't sound good, right? I will submit a patch today.

This will cause a release delay and the already-built binaries will have to rebuilt. The 1185686-revert bug was not marked as Critical. Should it have been?

Revision history for this message
Alexey Kopytov (akopytov) wrote :

Hi Laurynas,

On Tue, 02 Jul 2013 04:40:31 -0000, Laurynas Biveinis wrote:
>> * I think we should revert the patch for #1185686. "This may improve
>> performance" just doesn't sound good, right? I will submit a patch today.
>
> This will cause a release delay and the already-built binaries will have to rebuilt. The 1185686-revert bug was not marked as Critical. Should it have been?
>

OK, if binaries are already built, then let's remove it in the next
releases.

Revision history for this message
Alexey Kopytov (akopytov) wrote :

On Tue, 02 Jul 2013 04:26:26 -0000, Alexey Kopytov wrote:
> * "permanent statistics" => "persistent statistics for partitioned InnoDB tables"
>

Sorry, I just realized the fix is not specific to both persistent stats
and InnoDB in general. The correct description would be "Querying
`INFORMATION_SCHEMA.PARTITIONS could cause key distribution statistics
for partitioned tables to be reset to those corresponding to the last
partition."

Revision history for this message
Alexey Kopytov (akopytov) :
review: Approve
Revision history for this message
Laurynas Biveinis (laurynas-biveinis) wrote :

bug 1179978 is "internal temporary tables are contended on THR_LOCK_myisam", not the SSL_OP_NO_COMPRESSION one, which is one below.

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 2013-06-27 15:35:20 +0000
3+++ doc/source/conf.py 2013-07-02 12:00:42 +0000
4@@ -54,7 +54,7 @@
5 # The short X.Y version.
6 version = '5.5'
7 # The full version, including alpha/beta/rc tags.
8-release = '5.5.31-30.3'
9+release = '5.5.32-31.0'
10
11 # The language for content autogenerated by Sphinx. Refer to documentation
12 # for a list of supported languages.
13
14=== removed file 'doc/source/ext/psdom.pyc'
15Binary files doc/source/ext/psdom.pyc 2013-06-14 09:51:02 +0000 and doc/source/ext/psdom.pyc 1970-01-01 00:00:00 +0000 differ
16=== modified file 'doc/source/management/pam_plugin.rst'
17--- doc/source/management/pam_plugin.rst 2013-02-06 10:26:45 +0000
18+++ doc/source/management/pam_plugin.rst 2013-07-02 12:00:42 +0000
19@@ -65,8 +65,18 @@
20
21 This will create a user ``newuser`` that can connect from ``localhost`` who will be authenticated using the PAM plugin. If the ``pam_unix`` method is being used user will need to exist on the system.
22
23+Supplementary groups support
24+============================
25+
26+|Percona Server| has implemented PAM plugin support for supplementary groups. Supplementary or secondary groups are extra groups a specific user is member of. For example user ``joe`` might be a member of groups: ``joe`` (his primary group) and secondary groups ``developers`` and ``dba``. A complete list of groups and users belonging to them can be checked with ``cat /etc/group`` command.
27+
28+This feature enables using secondary groups in the mapping part of the authentication string, like "``mysql, developers=joe, dba=mark``". Previously only primary groups could have been specified there. If user is a member of both ``developers`` and ``dba``, PAM plugin will map it to the ``joe`` because ``developers`` matches first.
29+
30 Version Specific Information
31 ============================
32
33 * :rn:`5.5.24-26.0`
34 PAM authentication plugin has been integrated with |Percona Server|.
35+
36+ * :rn:`5.5.32-31.0`
37+ Implemented PAM support for supplementary groups.
38
39=== added file 'doc/source/release-notes/Percona-Server-5.5.32-31.0.rst'
40--- doc/source/release-notes/Percona-Server-5.5.32-31.0.rst 1970-01-01 00:00:00 +0000
41+++ doc/source/release-notes/Percona-Server-5.5.32-31.0.rst 2013-07-02 12:00:42 +0000
42@@ -0,0 +1,55 @@
43+.. rn:: 5.5.32-31.0
44+
45+==============================
46+ |Percona Server| 5.5.32-31.0
47+==============================
48+
49+Percona is glad to announce the release of |Percona Server| 5.5.32-31.0 on July 2nd, 2013. Downloads are available `here <http://www.percona.com/downloads/Percona-Server-5.5/Percona-Server-5.5.32-31.0/>`_ and from the :doc:`Percona Software Repositories </installation>`.
50+
51+Based on `MySQL 5.5.32 <http://dev.mysql.com/doc/relnotes/mysql/5.5/en/news-5-5-32.html>`_, including all the bug fixes in it, |Percona Server| 5.5.32-31.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.32-31.0 milestone at Launchpad <https://launchpad.net/percona-server/+milestone/5.5.32-31.0>`_.
52+
53+New Features
54+============
55+
56+ |Percona Server| has implemented support for supplementary groups for :ref:`pam_plugin`.
57+
58+Bugs Fixed
59+==========
60+
61+ Prevented a race condition that could lead to a server crash when querying the :table:`INFORMATION_SCHEMA.INNODB_BUFFER_PAGE` table. Bug fixed :bug:`1072573`.
62+
63+ |Percona Server| wouldn't start if the :ref:`changed_page_tracking` was enabled and variable :variable:`innodb_flush_method` was set to ``ALL_O_DIRECT``. Bug fixed :bug:`1131949`.
64+
65+ Fixed the upstream bug :mysqlbug:`68970` that, in |Percona Server|, would cause small tablespaces to expand too fast around 500KB tablespace size. Bug fixed :bug:`1169494`.
66+
67+ Query to the :table:`INNODB_CHANGED_PAGES` table would cause server to stop with an I/O error if a bitmap file in the middle of requested LSN range was missing. Bug fixed :bug:`1179974`.
68+
69+ Server would crash if an :table:`INNODB_CHANGED_PAGES` query is issued that has an empty LSN range and thus does not need to read any bitmap files. Bug fixed :bug:`1184427`.
70+
71+ Querying :table:`INFORMATION_SCHEMA.PARTITIONS` could cause key distribution statistics for partitioned tables to be reset to those corresponding to the last partition. Fixed the upstream bug :mysqlbug:`69179`. Bug fixed :bug:`1192354`.
72+
73+ Incorrect schema definition for the :ref:`user_stats` tables in ``INFORMATION_SCHEMA`` (:table:`CLIENT_STATISTICS`, :table:`INDEX_STATISTICS`, :table:`TABLE_STATISTICS`, :table:`THREAD_STATISTICS`, and :table:`USER_STATISTICS`) led to the maximum counter values being limited to 32-bit signed integers. Fixed so that these values can be 64-bit unsigned integers now. Bug fixed :bug:`714925`.
74+
75+ Fixed the upstream bug :mysqlbug:`42415` that would cause ``UPDATE/DELETE`` statements with the ``LIMIT`` clause to be unsafe for Statement Based Replication even when ``ORDER BY`` primary key was present. Fixed by implementing an algorithm to do more elaborate analysis on the nature of the query to determine whether the query will cause uncertainty for replication or not. Bug fixed :bug:`1132194`.
76+
77+ When an upgrade was performed between major versions (e.g. by uninstalling a 5.1 RPM and then installing a 5.5 one), ``mysql_install_db`` was still called on the existing data directory which lead to re-creation of the ``test`` database. Bug fixed :bug:`1169522`.
78+
79+ :ref:`changed_page_tracking` used to hold the log system mutex for the log reads needlessly, potentially limiting performance on write-intensive workloads. Bug fixed :bug:`1171699`.
80+
81+ The RPM installer script had the :term:`datadir` hardcoded to :file:`/var/lib/mysql` instead of using ``my_print_defaults`` function to get the correct :term:`datadir` info. Bug fixed :bug:`1181753`.
82+
83+ Missing path separator between the directory and file name components in a bitmap file name could stop the server starting if the :variable:`innodb_data_home_dir` variable didn't have the path separator at the end. Bug fixed :bug:`1181887`.
84+
85+ Fixed the upstream bug :mysqlbug:`68354` that could cause server to crash when performing update or join on ``Federated`` and ``MyISAM`` tables with one row, due to a bug in the ``Federated`` storage engine. Bug fixed :bug:`1182572`.
86+
87+ A warning is now returned if a bitmap file I/O error occurs after an :table:`INNODB_CHANGED_PAGES` query started returning data to indicate an incomplete result set. Bug fixed :bug:`1185040`.
88+
89+ Under very rare circumstances, deleting a zero-size bitmap file at the right moment would make server stop with an I/O error if changed page tracking is enabled. Bug fixed :bug:`1184517`.
90+
91+ Fixed the compiler warnings caused by :ref:`atomic_fio` when building |Percona Server| on non-Linux platforms. Bug fixed :bug:`1189429`.
92+
93+ The :table:`INNODB_CHANGED_PAGES` table couldn't be queried if the log tracker wasn't running. Bug fixed :bug:`1185304`.
94+
95+ Transaction objects are now allocated calling ``calloc()`` directly instead of using |InnoDB| heap allocation. This may improve write performance for high levels of concurrency. Bug fixed :bug:`1185686`.
96+
97+Other bugs fixed: bug fixed :bug:`1099764`, bug fixed :bug:`1132412`, bug fixed :bug:`1191395`, bug fixed :bug:`1079688`, bug fixed :bug:`1132422`, bug fixed :bug:`1153651`, bug fixed :bug:`1160951`, bug fixed :bug:`1183583`, bug fixed :bug:`1133266`.
98
99=== modified file 'doc/source/release-notes/release-notes_index.rst'
100--- doc/source/release-notes/release-notes_index.rst 2013-06-27 15:35:20 +0000
101+++ doc/source/release-notes/release-notes_index.rst 2013-07-02 12:00:42 +0000
102@@ -6,6 +6,7 @@
103 :maxdepth: 1
104 :glob:
105
106+ Percona-Server-5.5.32-31.0
107 Percona-Server-5.5.31-30.3
108 Percona-Server-5.5.30-30.2
109 Percona-Server-5.5.30-30.1
110
111=== modified file 'doc/source/upstream-bug-fixes.rst'
112--- doc/source/upstream-bug-fixes.rst 2013-06-14 09:51:02 +0000
113+++ doc/source/upstream-bug-fixes.rst 2013-07-02 12:00:42 +0000
114@@ -5,6 +5,42 @@
115 =============================================================
116
117 +-------------------------------------------------------------------------------------------------------------+
118+|:Upstream bug: :mysqlbug:`68354` - Server crashes on update/join FEDERATED + local table when only 1 local...|
119+|:Launchpad bug: :bug:`1182572` |
120+|:Upstream state: Verified (checked on 2013-07-01) |
121+|:Fix Released: :rn:`5.5.32-31.0` |
122+|:Upstream fix: N/A |
123++-------------------------------------------------------------------------------------------------------------+
124+|:Upstream bug: :mysqlbug:`42415` - UPDATE/DELETE with LIMIT clause unsafe for SBL even with ORDER BY PK ... |
125+|:Launchpad bug: :bug:`1132194` |
126+|:Upstream state: Verified (checked on 2013-07-01) |
127+|:Fix Released: :rn:`5.5.32-31.0` |
128+|:Upstream fix: N/A |
129++-------------------------------------------------------------------------------------------------------------+
130+|:Upstream bug: :mysqlbug:`69179` - accessing information_schema.partitions causes plans to change |
131+|:Launchpad bug: :bug:`1192354` |
132+|:Upstream state: Verified (checked on 2013-07-01) |
133+|:Fix Released: :rn:`5.5.32-31.0` |
134+|:Upstream fix: N/A |
135++-------------------------------------------------------------------------------------------------------------+
136+|:Upstream bug: :mysqlbug:`68970` - fsp_reserve_free_extents switches from small to big tblspace handling ... |
137+|:Launchpad bug: :bug:`1169494` |
138+|:Upstream state: Verified (checked on 2013-07-01) |
139+|:Fix Released: :rn:`5.5.32-31.0` |
140+|:Upstream fix: N/A |
141++-------------------------------------------------------------------------------------------------------------+
142+|:Upstream bug: :mysqlbug:`65077` - internal temporary tables are contended on THR_LOCK_myisam |
143+|:Launchpad bug: :bug:`1179978` |
144+|:Upstream state: Closed |
145+|:Fix Released: :rn:`5.5.31-30.3` |
146+|:Upstream fix: N/A |
147++-------------------------------------------------------------------------------------------------------------+
148+|:Upstream bug: :mysqlbug:`68999` - SSL_OP_NO_COMPRESSION not defined |
149+|:Launchpad bug: :bug:`1183610` |
150+|:Upstream state: Verified (checked on 2013-07-01) |
151+|:Fix Released: :rn:`5.5.31-30.3` |
152+|:Upstream fix: N/A |
153++-------------------------------------------------------------------------------------------------------------+
154 |:Upstream bug: :mysqlbug:`68197` - InnoDB reports that it's going to wait for I/O but the I/O is async |
155 |:Launchpad bug: :bug:`1107539` |
156 |:Upstream state: Closed |
157@@ -13,13 +49,13 @@
158 +-------------------------------------------------------------------------------------------------------------+
159 |:Upstream bug: :mysqlbug:`68845` - Unnecessary log_sys->mutex reacquisition in mtr_log_reserve_and_write() |
160 |:Launchpad bug: :bug:`1163439` |
161-|:Upstream state: Open (checked on 2013-04-10) |
162+|:Upstream state: Verified (checked on 2013-07-01) |
163 |:Fix Released: :rn:`5.5.30-30.2` |
164 |:Upstream fix: N/A |
165 +-------------------------------------------------------------------------------------------------------------+
166 |:Upstream bug: :mysqlbug:`62578` - mysql client aborts connection on terminal resize |
167 |:Launchpad bug: :bug:`925343` |
168-|:Upstream state: Verified (checked on 2013-04-10) |
169+|:Upstream state: Verified (checked on 2013-07-01) |
170 |:Fix Released: :rn:`5.5.30-30.2` |
171 |:Upstream fix: N/A |
172 +-------------------------------------------------------------------------------------------------------------+
173@@ -31,31 +67,31 @@
174 +-------------------------------------------------------------------------------------------------------------+
175 |:Upstream bug: :mysqlbug:`63144` - CREATE TABLE IF NOT EXISTS metadata lock is too restrictive |
176 |:Launchpad bug: :bug:`1127008` |
177-|:Upstream state: Verified (checked on 2013-04-10) |
178+|:Upstream state: Closed |
179 |:Fix Released: :rn:`5.5.30-30.2` |
180 |:Upstream fix: N/A |
181 +-------------------------------------------------------------------------------------------------------------+
182 |:Upstream bug: :mysqlbug:`68477` - Suboptimal code in skip_trailing_space() |
183 |:Launchpad bug: :bug:`1132351` |
184-|:Upstream state: Verified (checked on 2013-04-10) |
185+|:Upstream state: Closed |
186 |:Fix Released: :rn:`5.5.30-30.1` |
187 |:Upstream fix: N/A |
188 +-------------------------------------------------------------------------------------------------------------+
189 |:Upstream bug: :mysqlbug:`68476` - Suboptimal code in my_strnxfrm_simple() |
190 |:Launchpad bug: :bug:`1132350` |
191-|:Upstream state: Verified (checked on 2013-04-10) |
192+|:Upstream state: Verified (checked on 2013-07-01) |
193 |:Fix Released: :rn:`5.5.30-30.1` |
194 |:Upstream fix: N/A |
195 +-------------------------------------------------------------------------------------------------------------+
196 |:Upstream bug: :mysqlbug:`68116` - InnoDB monitor may hit an assertion error in buf_page_get_gen in debug ...|
197 |:Launchpad bug: :bug:`1100178` |
198-|:Upstream state: Analyzing (checked on 2013-04-10) |
199+|:Upstream state: Analyzing (checked on 2013-07-01) |
200 |:Fix Released: :rn:`5.5.29-30.0` |
201 |:Upstream fix: N/A |
202 +-------------------------------------------------------------------------------------------------------------+
203 |:Upstream bug: :mysqlbug:`67504` - Duplicate error in replication with slave triggers and auto increment |
204 |:Launchpad bug: :bug:`1068210` |
205-|:Upstream state: Verified (checked on 2013-04-10) |
206+|:Upstream state: Closed |
207 |:Fix Released: :rn:`5.5.29-30.0` |
208 |:Upstream fix: N/A |
209 +-------------------------------------------------------------------------------------------------------------+
210@@ -97,7 +133,7 @@
211 +-------------------------------------------------------------------------------------------------------------+
212 |:Upstream bug: :mysqlbug:`66237` - Temporary files created by binary log cache are not purged after transa...|
213 |:Launchpad bug: :bug:`1070856` |
214-|:Upstream state: Verified (checked on 2013-04-10) |
215+|:Upstream state: Verified (checked on 2013-07-01) |
216 |:Fix Released: :rn:`5.5.28-29.3` |
217 |:Upstream fix: N/A |
218 +-------------------------------------------------------------------------------------------------------------+
219@@ -133,49 +169,43 @@
220 +-------------------------------------------------------------------------------------------------------------+
221 |:Upstream bug: :mysqlbug:`61180` - korr/store macros in my_global.h assume the argument to be a char pointer |
222 |:Launchpad bug: :bug:`1042517` |
223-|:Upstream state: Verified (checked on 2013-04-10) |
224-|:Fix Released: :rn:`5.5.27-29.0` |
225-|:Upstream fix: N/A |
226-+-------------------------------------------------------------------------------------------------------------+
227-|:Upstream bug: :mysqlbug:`61179` - Unoptimized versions of korr/store macros in my_global.h are used on ... |
228-|:Launchpad bug: :bug:`1042517` |
229-|:Upstream state: Verified (checked on 2013-04-10) |
230+|:Upstream state: Verified (checked on 2013-07-01) |
231 |:Fix Released: :rn:`5.5.27-29.0` |
232 |:Upstream fix: N/A |
233 +-------------------------------------------------------------------------------------------------------------+
234 |:Upstream bug: :mysqlbug:`61178` - Incorrect implementation of intersect(ulonglong) in non-optimized Bitmap..|
235 |:Launchpad bug: :bug:`1042517` |
236-|:Upstream state: Verified (checked on 2013-04-10) |
237+|:Upstream state: Verified (checked on 2013-07-01) |
238 |:Fix Released: :rn:`5.5.27-29.0` |
239 |:Upstream fix: N/A |
240 +-------------------------------------------------------------------------------------------------------------+
241 |:Upstream bug: :mysqlbug:`54127` - mysqld segfaults when built using --with-max-indexes=128 |
242 |:Launchpad bug: :bug:`1042517` |
243-|:Upstream state: Verified (checked on 2013-04-10) |
244+|:Upstream state: Closed |
245 |:Fix Released: :rn:`5.5.27-29.0` |
246 |:Upstream fix: N/A |
247 +-------------------------------------------------------------------------------------------------------------+
248 |:Upstream bug: :mysqlbug:`64800` - mysqldump with --include-master-host-port putting quotes around port no. |
249 |:Launchpad bug: :bug:`1013432` |
250-|:Upstream state: Verified (checked on 2013-04-10) |
251+|:Upstream state: Verified (checked on 2013-07-01) |
252 |:Fix Released: :rn:`5.5.27-28.0` |
253 |:Upstream fix: N/A |
254 +-------------------------------------------------------------------------------------------------------------+
255 |:Upstream bug: :mysqlbug:`66301` - INSERT ... ON DUPLICATE KEY UPDATE + innodb_autoinc_lock_mode=1 is broken |
256 |:Launchpad bug: :bug:`1035225` |
257-|:Upstream state: Verified (checked on 2013-04-10) |
258+|:Upstream state: Closed |
259 |:Fix Released: :rn:`5.5.27-28.0` |
260 |:Upstream fix: N/A |
261 +-------------------------------------------------------------------------------------------------------------+
262 |:Upstream bug: :mysqlbug:`60743` - typo in cmake/dtrace.cmake |
263 |:Launchpad bug: :bug:`1013455` |
264-|:Upstream state: Verified (checked on 2013-04-10) |
265+|:Upstream state: Closed |
266 |:Fix Released: :rn:`5.5.25a-27.1` |
267-|:Upstream fix: N/A |
268+|:Upstream fix: 5.5.33 |
269 +-------------------------------------------------------------------------------------------------------------+
270 |:Upstream bug: :mysqlbug:`64663` - Segfault when adding indexes to InnoDB temporary tables |
271 |:Launchpad bug: :bug:`999147` |
272-|:Upstream state: Verified (checked on 2013-04-10) |
273+|:Upstream state: Verified (checked on 2013-07-01) |
274 |:Fix Released: :rn:`5.5.24-26.0` |
275 |:Upstream fix: N/A |
276 +-------------------------------------------------------------------------------------------------------------+
277@@ -217,13 +247,13 @@
278 +-------------------------------------------------------------------------------------------------------------+
279 |:Upstream bug: :mysqlbug:`62516` - Fast index creation does not update index statistics |
280 |:Launchpad bug: :bug:`857590` |
281-|:Upstream state: Verified (checked on 2013-04-10) |
282+|:Upstream state: Verified (checked on 2013-07-01) |
283 |:Fix Released: :rn:`5.5.16-22.0` |
284 |:Upstream fix: N/A |
285 +-------------------------------------------------------------------------------------------------------------+
286 |:Upstream bug: :mysqlbug:`25007` - memory tables with dynamic rows format |
287 |:Launchpad bug: N/A |
288-|:Upstream state: Verified (checked on 2013-06-14) |
289+|:Upstream state: Verified (checked on 2013-07-01) |
290 |:Fix Released: :rn:`5.5.15-21.0` |
291 |:Upstream fix: N/A |
292 +-------------------------------------------------------------------------------------------------------------+
293@@ -241,13 +271,13 @@
294 +-------------------------------------------------------------------------------------------------------------+
295 |:Upstream bug: :mysqlbug:`61595` - mysql-test/include/wait_for_slave_param.inc timeout logic is incorrect |
296 |:Launchpad bug: :bug:`800035` |
297-|:Upstream state: Verified (checked on 2013-04-10) |
298+|:Upstream state: Verified (checked on 2013-07-01) |
299 |:Fix Released: :rn:`5.5.13-20.4` |
300 |:Upstream fix: N/A |
301 +-------------------------------------------------------------------------------------------------------------+
302-|:Upstream bug: :mysqlbug:`60788` - InnoDB crashes with an assertion failure when receiving a signal on pwrite|
303+|:Upstream bug: :mysqlbug:`54160` - InnoDB should retry on failed read or write, not immediately panic |
304 |:Launchpad bug: :bug:`764395` |
305-|:Upstream state: Duplicate |
306+|:Upstream state: Closed |
307 |:Fix Released: :rn:`5.5.11-20.2` |
308 |:Upstream fix: N/A |
309 +-------------------------------------------------------------------------------------------------------------+
310@@ -271,7 +301,7 @@
311 +-------------------------------------------------------------------------------------------------------------+
312 |:Upstream bug: :mysqlbug:`69146` - Optimization in buf_pool_get_oldest_modification if srv_buf_pool_instances|
313 |:Launchpad bug: :bug:`1176496` |
314-|:Upstream state: Open (checked on 2013-06-14) |
315+|:Upstream state: Open (checked on 2013-07-01) |
316 |:Fix Released: :rn:`5.5.8-20.0` |
317 |:Upstream fix: N/A |
318 +-------------------------------------------------------------------------------------------------------------+

Subscribers

People subscribed via source and target branches