Merge lp:~hrvojem/percona-server/rn-5.5.39-36.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: 695
Proposed branch: lp:~hrvojem/percona-server/rn-5.5.39-36.0-5.5
Merge into: lp:percona-server/5.5
Diff against target: 367 lines (+150/-24)
4 files modified
doc/source/management/audit_log_plugin.rst (+79/-7)
doc/source/release-notes/Percona-Server-5.5.39-36.0.rst (+35/-0)
doc/source/release-notes/release-notes_index.rst (+1/-0)
doc/source/upstream-bug-fixes.rst (+35/-17)
To merge this branch: bzr merge lp:~hrvojem/percona-server/rn-5.5.39-36.0-5.5
Reviewer Review Type Date Requested Status
Laurynas Biveinis (community) Approve
Review via email: mp+232521@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/management/audit_log_plugin.rst'
--- doc/source/management/audit_log_plugin.rst 2014-04-30 09:32:01 +0000
+++ doc/source/management/audit_log_plugin.rst 2014-08-28 13:26:38 +0000
@@ -87,7 +87,7 @@
87Log Format87Log Format
88==========88==========
8989
90Audit log plugin supports two formats. In one format (``OLD``) log record properties are saved as XML attributes and in the other (``NEW``) log recored properties are saved as XML tags. Audit log format can be set up with the :variable:`audit_log_format` variable.90The audit log plugin supports four log formats: ``OLD``, ``NEW``, ``JSON``, and ``CSV``. ``OLD`` and ``NEW`` formats are based on XML, where the former outputs log record properties as XML attributes and the latter as XML tags. Information logged is the same in all four formats. The log format choice is controlled by :variable:`audit_log_format` variable.
9191
92Example of the ``OLD`` format: ::92Example of the ``OLD`` format: ::
9393
@@ -122,6 +122,25 @@
122 <DB></DB>122 <DB></DB>
123 </AUDIT_RECORD>123 </AUDIT_RECORD>
124124
125Example of the ``JSON`` format: ::
126
127 {"audit_record":{"name":"Query","record":"4707_2014-08-27T10:43:52","timestamp":"2014-08-27T10:44:19 UTC","command_class":"show_databases","connection_id":"37","status":0,"sqltext":"show databases","user":"root[root] @ localhost []","host":"localhost","os_user":"","ip":""}}
128
129Example of the ``CSV`` format: ::
130
131 "Query","49284_2014-08-27T10:47:11","2014-08-27T10:47:23 UTC","show_databases","37",0,"show databases","root[root] @ localhost []","localhost","",""
132
133.. _streaming_to_syslog:
134
135Streaming the audit log to syslog
136=================================
137
138Ability to stream the audit log to `syslog <http://www.syslog.org/>`_ was implemented in |Percona Server| :rn:`5.5.39-36.0`. To stream the audit log to syslog you'll need to set :variable:`audit_log_handler` variable to ``SYSLOG``. To control the syslog file handler, the following variables can be used: :variable:`audit_log_syslog_ident`, :variable:`audit_log_syslog_facility`, and :variable:`audit_log_syslog_priority` These variables have the same meaning as appropriate parameters described in the `syslog(3) manual <http://linux.die.net/man/3/syslog>`_.
139
140.. note::
141
142 Variables: :variable:`audit_log_strategy`, :variable:`audit_log_buffer_size`, :variable:`audit_log_rotate_on_size`, :variable:`audit_log_rotations` have effect only with ``FILE`` handler.
143
125System Variables144System Variables
126================145================
127146
@@ -142,6 +161,8 @@
142* ``SEMISYNCHRONOUS`` - log directly to file, do not flush and sync every event161* ``SEMISYNCHRONOUS`` - log directly to file, do not flush and sync every event
143* ``SYNCHRONOUS`` - log directly to file, flush and sync every event162* ``SYNCHRONOUS`` - log directly to file, flush and sync every event
144163
164This variable has effect only when :variable:`audit_log_handler` is set to ``FILE``.
165
145.. variable:: audit_log_file166.. variable:: audit_log_file
146167
147 :version 5.5.37-35.0: Implemented168 :version 5.5.37-35.0: Implemented
@@ -173,19 +194,20 @@
173 :vartype: Numeric194 :vartype: Numeric
174 :default: 4096195 :default: 4096
175196
176This variable can be used to specify the size of memory buffer used for logging, used when :variable:`audit_log_strategy` variable is set to ``ASYNCHRONOUS`` or ``PERFORMANCE`` values.197This variable can be used to specify the size of memory buffer used for logging, used when :variable:`audit_log_strategy` variable is set to ``ASYNCHRONOUS`` or ``PERFORMANCE`` values. This variable has effect only when :variable:`audit_log_handler` is set to ``FILE``.
177198
178.. variable:: audit_log_format199.. variable:: audit_log_format
179200
180 :version 5.5.37-35.0: Implemented201 :version 5.5.37-35.0: Original implementation
202 :version 5.5.39-36.0: Implemented support for ``CSV`` and ``JSON`` log formats
181 :cli: Yes203 :cli: Yes
182 :scope: Global204 :scope: Global
183 :dyn: No 205 :dyn: No
184 :vartype: String206 :vartype: String
185 :default: OLD207 :default: OLD
186 :allowed values: ``OLD``, ``NEW``208 :allowed values: ``OLD``, ``NEW``, ``CSV``, ``JSON``
187209
188This variable is used to specify the audit log format. When this variable is set to ``OLD`` information will be logged as XML attributes, and when is set to ``NEW`` it will be logged as XML tags.210This variable is used to specify the audit log format. The audit log plugin supports four log formats: ``OLD``, ``NEW``, ``JSON``, and ``CSV``. ``OLD`` and ``NEW`` formats are based on XML, where the former outputs log record properties as XML attributes and the latter as XML tags. Information logged is the same in all four formats.
189211
190.. variable:: audit_log_policy212.. variable:: audit_log_policy
191213
@@ -213,7 +235,7 @@
213 :vartype: Numeric235 :vartype: Numeric
214 :default: 0 (don't rotate the log file)236 :default: 0 (don't rotate the log file)
215237
216This variable is used to specify the size of the audit log file. When this size is reached log will get rotated. Old log can be found in the same directory, audit log sequential number will be appended to the name specified in the :variable:`audit_log_file` variable.238This variable is used to specify the maximum audit log file size. Upon reaching this size the log will be rotated. The rotated log files will be present in the same same directory as the current log file. A sequence number will be appended to the log file name upon rotation. This variable has effect only when :variable:`audit_log_handler` is set to ``FILE``.
217 239
218.. variable:: audit_log_rotations240.. variable:: audit_log_rotations
219241
@@ -224,11 +246,61 @@
224 :vartype: Numeric246 :vartype: Numeric
225 :default: 0 247 :default: 0
226248
227This variable is used to specify how many log files should be kept when :variable:`audit_log_rotate_on_size` variable is set to non-zero value.249This variable is used to specify how many log files should be kept when :variable:`audit_log_rotate_on_size` variable is set to non-zero value. This variable has effect only when :variable:`audit_log_handler` is set to ``FILE``.
250
251.. variable:: audit_log_handler
252
253 :version 5.5.39-36.0: Implemented
254 :cli: Yes
255 :scope: Global
256 :dyn: No
257 :vartype: String
258 :default: FILE
259 :allowed values: ``FILE``, ``SYSLOG``
260
261This variable is used to configure where the audit log will be written. If it is set to ``FILE``, the log will be written into a file specified by :variable:`audit_log_file` variable. If it is set to ``SYSLOG``, the audit log will be written to syslog.
262
263.. variable:: audit_log_syslog_ident
264
265 :version 5.5.39-36.0: Implemented
266 :cli: Yes
267 :scope: Global
268 :dyn: No
269 :vartype: String
270 :default: percona-audit
271
272This variable is used to specify the ``ident`` value for syslog. This variable has the same meaning as the appropriate parameter described in the `syslog(3) manual <http://linux.die.net/man/3/syslog>`_.
273
274.. variable:: audit_log_syslog_facility
275
276 :version 5.5.39-36.0: Implemented
277 :cli: Yes
278 :scope: Global
279 :dyn: No
280 :vartype: String
281 :default: LOG_USER
282
283This variable is used to specify the ``facility`` value for syslog. This variable has the same meaning as the appropriate parameter described in the `syslog(3) manual <http://linux.die.net/man/3/syslog>`_.
284
285.. variable:: audit_log_syslog_priority
286
287 :version 5.5.39-36.0: Implemented
288 :cli: Yes
289 :scope: Global
290 :dyn: No
291 :vartype: String
292 :default: LOG_INFO
293
294This variable is used to specify the ``priority`` value for syslog. This variable has the same meaning as the appropriate parameter described in the `syslog(3) manual <http://linux.die.net/man/3/syslog>`_.
228295
229Version Specific Information296Version Specific Information
230============================297============================
231298
232 * :rn:`5.5.37-35.0`299 * :rn:`5.5.37-35.0`
233 Audit Log plugin has been implemented in |Percona Server|.300 Audit Log plugin has been implemented in |Percona Server|.
301 * :rn:`5.5.39-36.0`
302 |Percona Server| :ref:`audit_log_plugin` now supports ``JSON`` and ``CSV`` log formats.
303 * :rn:`5.5.39-36.0`
304 |Percona Server| :ref:`audit_log_plugin` now supports :ref:`streaming the audit log to syslog <streaming_to_syslog>`.
234305
306
235307
=== added file 'doc/source/release-notes/Percona-Server-5.5.39-36.0.rst'
--- doc/source/release-notes/Percona-Server-5.5.39-36.0.rst 1970-01-01 00:00:00 +0000
+++ doc/source/release-notes/Percona-Server-5.5.39-36.0.rst 2014-08-28 13:26:38 +0000
@@ -0,0 +1,35 @@
1.. rn:: 5.5.39-36.0
2
3==============================
4 |Percona Server| 5.5.39-36.0
5==============================
6
7Percona is glad to announce the release of |Percona Server| 5.5.39-36.0 on August 29th, 2014. Downloads are available `here <http://www.percona.com/downloads/Percona-Server-5.5/Percona-Server-5.5.39-36.0/>`_ and from the :doc:`Percona Software Repositories </installation>`.
8
9Based on `MySQL 5.5.39 <http://dev.mysql.com/doc/relnotes/mysql/5.5/en/news-5-5-39.html>`_, including all the bug fixes in it, |Percona Server| 5.5.39-36.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.39-36.0 milestone at Launchpad <https://launchpad.net/percona-server/+milestone/5.5.39-36.0>`_.
10
11New Features
12============
13
14 |Percona Server| :ref:`audit_log_plugin` now supports ``JSON`` and ``CSV`` formats. The format choice is controlled by :variable:`audit_log_format` variable.
15
16 |Percona Server| :ref:`audit_log_plugin` now supports :ref:`streaming the audit log to syslog <streaming_to_syslog>`.
17
18Bugs Fixed
19==========
20
21 Querying :table:`INNODB_CHANGED_PAGES` with a range condition ``START_LSN > x AND END_LSN < y`` would lead to a server crash if the range was empty with x greater than y. Bug fixed :bug:`1202252` (*Jan Lindström* and *Sergei Petrunia*).
22
23 With :ref:`changed_page_tracking` feature enabled, queries from the :table:`INNODB_CHANGED_PAGES` could read the bitmap data whose write was in still progress. This would cause the query to fail with an ``ER_CANT_FIND_SYSTEM_REC`` and a warning printed to the server error log. The workaround is to add an appropriate ``END_LSN``-limiting condition to the query. Bug fixed :bug:`1346122`.
24
25 ``mysqld-debug`` was missing from *Debian* packages. This regression was introduced in |Percona Server| :rn:`5.5.36-34.0`. Bug fixed :bug:`1290087`.
26
27 Fixed a memory leak in :ref:`slowlog_rotation`. Bug fixed :bug:`1314138`.
28
29 The audit log plugin would write log with XML syntax errors when ``OLD`` and ``NEW`` formats were used. Bug fixed :bug:`1320879`.
30
31 A server built with system OpenSSL support, such as the distributed Percona Server binaries, had SSL-related memory leaks. Bug fixed :bug:`1334743` (upstream :mysqlbug:`73126`).
32
33 If the bitmap directory has a bitmap file sequence with a start LSN of one file less than a start LSN of the previous file, a debug build would assert when queries were run on :table:`INNODB_CHANGED_PAGES` table. Bug fixed :bug:`1342494`.
34
35Other bugs fixed: :bug:`1337324`, :bug:`1151723`, :bug:`1182050`, :bug:`1182072`, :bug:`1280875`, :bug:`1182046`, :bug:`1328482` (upstream :mysqlbug:`73418`), and :bug:`1334317` (upstream :mysqlbug:`73111`).
036
=== modified file 'doc/source/release-notes/release-notes_index.rst'
--- doc/source/release-notes/release-notes_index.rst 2014-07-30 10:29:34 +0000
+++ doc/source/release-notes/release-notes_index.rst 2014-08-28 13:26:38 +0000
@@ -6,6 +6,7 @@
6 :maxdepth: 16 :maxdepth: 1
7 :glob:7 :glob:
88
9 Percona-Server-5.5.39-36.0
9 Percona-Server-5.5.38-35.210 Percona-Server-5.5.38-35.2
10 Percona-Server-5.5.37-35.111 Percona-Server-5.5.37-35.1
11 Percona-Server-5.5.37-35.012 Percona-Server-5.5.37-35.0
1213
=== modified file 'doc/source/upstream-bug-fixes.rst'
--- doc/source/upstream-bug-fixes.rst 2014-07-30 10:29:34 +0000
+++ doc/source/upstream-bug-fixes.rst 2014-08-28 13:26:38 +0000
@@ -5,9 +5,27 @@
5=============================================================5=============================================================
66
7+-------------------------------------------------------------------------------------------------------------+7+-------------------------------------------------------------------------------------------------------------+
8|:Upstream bug: :mysqlbug:`73126` - Numerous Valgrind errors in OpenSSL |
9|:Launchpad bug: :bug:`1334743` |
10|:Upstream state: Verified (checked on 2014-08-28) |
11|:Fix Released: :rn:`5.5.39-36.0` |
12|:Upstream fix: N/A |
13+-------------------------------------------------------------------------------------------------------------+
14|:Upstream bug: :mysqlbug:`73111` - Suppression typo causing spurious MTR Valgrind failures |
15|:Launchpad bug: :bug:`1334317` |
16|:Upstream state: Open (checked on 2014-08-28) |
17|:Fix Released: :rn:`5.5.39-36.0` |
18|:Upstream fix: N/A |
19+-------------------------------------------------------------------------------------------------------------+
20|:Upstream bug: :mysqlbug:`73418` - Add --manual-lldb option to mysql-test-run.pl |
21|:Launchpad bug: :bug:`1328482` |
22|:Upstream state: Verified (checked on 2014-08-28) |
23|:Fix Released: :rn:`5.5.39-36.0` |
24|:Upstream fix: N/A |
25+-------------------------------------------------------------------------------------------------------------+
8|:Upstream bug: :mysqlbug:`60782` - Audit plugin API: no MYSQL_AUDIT_GENERAL_LOG notifications with general...|26|:Upstream bug: :mysqlbug:`60782` - Audit plugin API: no MYSQL_AUDIT_GENERAL_LOG notifications with general...|
9|:Launchpad bug: :bug:`1182535` |27|:Launchpad bug: :bug:`1182535` |
10|:Upstream state: Verified (checked on 2014-07-01) |28|:Upstream state: Closed |
11|:Fix Released: :rn:`5.5.37-35.0` |29|:Fix Released: :rn:`5.5.37-35.0` |
12|:Upstream fix: N/A |30|:Upstream fix: N/A |
13+-------------------------------------------------------------------------------------------------------------+31+-------------------------------------------------------------------------------------------------------------+
@@ -25,13 +43,13 @@
25+-------------------------------------------------------------------------------------------------------------+43+-------------------------------------------------------------------------------------------------------------+
26|:Upstream bug: :mysqlbug:`71375` - Slave IO thread won't attempt auto reconnect to the master/error-code 1593|44|:Upstream bug: :mysqlbug:`71375` - Slave IO thread won't attempt auto reconnect to the master/error-code 1593|
27|:Launchpad bug: :bug:`1268735` |45|:Launchpad bug: :bug:`1268735` |
28|:Upstream state: Verified (checked on 2014-07-01) |46|:Upstream state: Verified (checked on 2014-08-28) |
29|:Fix Released: :rn:`5.5.36-34.1` |47|:Fix Released: :rn:`5.5.36-34.1` |
30|:Upstream fix: N/A |48|:Upstream fix: N/A |
31+-------------------------------------------------------------------------------------------------------------+49+-------------------------------------------------------------------------------------------------------------+
32|:Upstream bug: :mysqlbug:`71374` - Slave IO thread won't attempt auto reconnect to the master/error-code 1159|50|:Upstream bug: :mysqlbug:`71374` - Slave IO thread won't attempt auto reconnect to the master/error-code 1159|
33|:Launchpad bug: :bug:`1268729` |51|:Launchpad bug: :bug:`1268729` |
34|:Upstream state: Verified (checked on 2014-07-01) |52|:Upstream state: Verified (checked on 2014-08-28) |
35|:Fix Released: :rn:`5.5.36-34.1` |53|:Fix Released: :rn:`5.5.36-34.1` |
36|:Upstream fix: N/A |54|:Upstream fix: N/A |
37+-------------------------------------------------------------------------------------------------------------+55+-------------------------------------------------------------------------------------------------------------+
@@ -61,7 +79,7 @@
61+-------------------------------------------------------------------------------------------------------------+79+-------------------------------------------------------------------------------------------------------------+
62|:Upstream bug: :mysqlbug:`69639` - mysql failed to build with dtrace Sun D 1.11 |80|:Upstream bug: :mysqlbug:`69639` - mysql failed to build with dtrace Sun D 1.11 |
63|:Launchpad bug: :bug:`1196460` |81|:Launchpad bug: :bug:`1196460` |
64|:Upstream state: Open (checked on 2014-07-01) |82|:Upstream state: Open (checked on 2014-08-28) |
65|:Fix Released: :rn:`5.5.33-31.1` |83|:Fix Released: :rn:`5.5.33-31.1` |
66|:Upstream fix: N/A |84|:Upstream fix: N/A |
67+-------------------------------------------------------------------------------------------------------------+85+-------------------------------------------------------------------------------------------------------------+
@@ -73,7 +91,7 @@
73+-------------------------------------------------------------------------------------------------------------+91+-------------------------------------------------------------------------------------------------------------+
74|:Upstream bug: :mysqlbug:`42415` - UPDATE/DELETE with LIMIT clause unsafe for SBL even with ORDER BY PK ... |92|:Upstream bug: :mysqlbug:`42415` - UPDATE/DELETE with LIMIT clause unsafe for SBL even with ORDER BY PK ... |
75|:Launchpad bug: :bug:`1132194` |93|:Launchpad bug: :bug:`1132194` |
76|:Upstream state: Verified (checked on 2014-07-01) |94|:Upstream state: Verified (checked on 2014-08-28) |
77|:Fix Released: :rn:`5.5.32-31.0` |95|:Fix Released: :rn:`5.5.32-31.0` |
78|:Upstream fix: N/A |96|:Upstream fix: N/A |
79+-------------------------------------------------------------------------------------------------------------+97+-------------------------------------------------------------------------------------------------------------+
@@ -85,7 +103,7 @@
85+-------------------------------------------------------------------------------------------------------------+103+-------------------------------------------------------------------------------------------------------------+
86|:Upstream bug: :mysqlbug:`68970` - fsp_reserve_free_extents switches from small to big tblspace handling ... |104|:Upstream bug: :mysqlbug:`68970` - fsp_reserve_free_extents switches from small to big tblspace handling ... |
87|:Launchpad bug: :bug:`1169494` |105|:Launchpad bug: :bug:`1169494` |
88|:Upstream state: Verified (checked on 2014-07-01) |106|:Upstream state: Verified (checked on 2014-08-28) |
89|:Fix Released: :rn:`5.5.32-31.0` |107|:Fix Released: :rn:`5.5.32-31.0` |
90|:Upstream fix: N/A |108|:Upstream fix: N/A |
91+-------------------------------------------------------------------------------------------------------------+109+-------------------------------------------------------------------------------------------------------------+
@@ -97,7 +115,7 @@
97+-------------------------------------------------------------------------------------------------------------+115+-------------------------------------------------------------------------------------------------------------+
98|:Upstream bug: :mysqlbug:`68999` - SSL_OP_NO_COMPRESSION not defined |116|:Upstream bug: :mysqlbug:`68999` - SSL_OP_NO_COMPRESSION not defined |
99|:Launchpad bug: :bug:`1183610` |117|:Launchpad bug: :bug:`1183610` |
100|:Upstream state: No Feedback (checked on 2014-07-01) |118|:Upstream state: No Feedback (checked on 2014-08-28) |
101|:Fix Released: :rn:`5.5.31-30.3` |119|:Fix Released: :rn:`5.5.31-30.3` |
102|:Upstream fix: N/A |120|:Upstream fix: N/A |
103+-------------------------------------------------------------------------------------------------------------+121+-------------------------------------------------------------------------------------------------------------+
@@ -109,7 +127,7 @@
109+-------------------------------------------------------------------------------------------------------------+127+-------------------------------------------------------------------------------------------------------------+
110|:Upstream bug: :mysqlbug:`68845` - Unnecessary log_sys->mutex reacquisition in mtr_log_reserve_and_write() |128|:Upstream bug: :mysqlbug:`68845` - Unnecessary log_sys->mutex reacquisition in mtr_log_reserve_and_write() |
111|:Launchpad bug: :bug:`1163439` |129|:Launchpad bug: :bug:`1163439` |
112|:Upstream state: Verified (checked on 2014-07-01) |130|:Upstream state: Verified (checked on 2014-08-28) |
113|:Fix Released: :rn:`5.5.30-30.2` |131|:Fix Released: :rn:`5.5.30-30.2` |
114|:Upstream fix: N/A |132|:Upstream fix: N/A |
115+-------------------------------------------------------------------------------------------------------------+133+-------------------------------------------------------------------------------------------------------------+
@@ -139,13 +157,13 @@
139+-------------------------------------------------------------------------------------------------------------+157+-------------------------------------------------------------------------------------------------------------+
140|:Upstream bug: :mysqlbug:`68476` - Suboptimal code in my_strnxfrm_simple() |158|:Upstream bug: :mysqlbug:`68476` - Suboptimal code in my_strnxfrm_simple() |
141|:Launchpad bug: :bug:`1132350` |159|:Launchpad bug: :bug:`1132350` |
142|:Upstream state: Verified (checked on 2014-07-01) |160|:Upstream state: Verified (checked on 2014-08-28) |
143|:Fix Released: :rn:`5.5.30-30.1` |161|:Fix Released: :rn:`5.5.30-30.1` |
144|:Upstream fix: N/A |162|:Upstream fix: N/A |
145+-------------------------------------------------------------------------------------------------------------+163+-------------------------------------------------------------------------------------------------------------+
146|:Upstream bug: :mysqlbug:`68116` - InnoDB monitor may hit an assertion error in buf_page_get_gen in debug ...|164|:Upstream bug: :mysqlbug:`68116` - InnoDB monitor may hit an assertion error in buf_page_get_gen in debug ...|
147|:Launchpad bug: :bug:`1100178` |165|:Launchpad bug: :bug:`1100178` |
148|:Upstream state: Verified (checked on 2014-07-01) |166|:Upstream state: Verified (checked on 2014-08-28) |
149|:Fix Released: :rn:`5.5.29-30.0` |167|:Fix Released: :rn:`5.5.29-30.0` |
150|:Upstream fix: N/A |168|:Upstream fix: N/A |
151+-------------------------------------------------------------------------------------------------------------+169+-------------------------------------------------------------------------------------------------------------+
@@ -247,7 +265,7 @@
247+-------------------------------------------------------------------------------------------------------------+265+-------------------------------------------------------------------------------------------------------------+
248|:Upstream bug: :mysqlbug:`61178` - Incorrect implementation of intersect(ulonglong) in non-optimized Bitmap..|266|:Upstream bug: :mysqlbug:`61178` - Incorrect implementation of intersect(ulonglong) in non-optimized Bitmap..|
249|:Launchpad bug: :bug:`1042517` |267|:Launchpad bug: :bug:`1042517` |
250|:Upstream state: Verified (checked on 2014-07-01) |268|:Upstream state: Verified (checked on 2014-08-28) |
251|:Fix Released: :rn:`5.5.27-29.0` |269|:Fix Released: :rn:`5.5.27-29.0` |
252|:Upstream fix: N/A |270|:Upstream fix: N/A |
253+-------------------------------------------------------------------------------------------------------------+271+-------------------------------------------------------------------------------------------------------------+
@@ -259,7 +277,7 @@
259+-------------------------------------------------------------------------------------------------------------+277+-------------------------------------------------------------------------------------------------------------+
260|:Upstream bug: :mysqlbug:`64800` - mysqldump with --include-master-host-port putting quotes around port no. | 278|:Upstream bug: :mysqlbug:`64800` - mysqldump with --include-master-host-port putting quotes around port no. |
261|:Launchpad bug: :bug:`1013432` |279|:Launchpad bug: :bug:`1013432` |
262|:Upstream state: Verified (checked on 2014-07-01) |280|:Upstream state: Verified (checked on 2014-08-28) |
263|:Fix Released: :rn:`5.5.27-28.0` |281|:Fix Released: :rn:`5.5.27-28.0` |
264|:Upstream fix: N/A |282|:Upstream fix: N/A |
265+-------------------------------------------------------------------------------------------------------------+283+-------------------------------------------------------------------------------------------------------------+
@@ -307,7 +325,7 @@
307+-------------------------------------------------------------------------------------------------------------+325+-------------------------------------------------------------------------------------------------------------+
308|:Upstream bug: :mysqlbug:`71183` - os_file_fsync() should handle fsync() returning EINTR |326|:Upstream bug: :mysqlbug:`71183` - os_file_fsync() should handle fsync() returning EINTR |
309|:Launchpad bug: :bug:`1262651` |327|:Launchpad bug: :bug:`1262651` |
310|:Upstream state: Verified (checked on 2014-07-01) |328|:Upstream state: Verified (checked on 2014-08-28) |
311|:Fix Released: :rn:`5.5.20-24.1` |329|:Fix Released: :rn:`5.5.20-24.1` |
312|:Upstream fix: N/A |330|:Upstream fix: N/A |
313+-------------------------------------------------------------------------------------------------------------+331+-------------------------------------------------------------------------------------------------------------+
@@ -331,13 +349,13 @@
331+-------------------------------------------------------------------------------------------------------------+349+-------------------------------------------------------------------------------------------------------------+
332|:Upstream bug: :mysqlbug:`62516` - Fast index creation does not update index statistics |350|:Upstream bug: :mysqlbug:`62516` - Fast index creation does not update index statistics |
333|:Launchpad bug: :bug:`857590` |351|:Launchpad bug: :bug:`857590` |
334|:Upstream state: Verified (checked on 2014-07-01) |352|:Upstream state: Verified (checked on 2014-08-28) |
335|:Fix Released: :rn:`5.5.16-22.0` |353|:Fix Released: :rn:`5.5.16-22.0` |
336|:Upstream fix: N/A |354|:Upstream fix: N/A |
337+-------------------------------------------------------------------------------------------------------------+355+-------------------------------------------------------------------------------------------------------------+
338|:Upstream bug: :mysqlbug:`25007` - memory tables with dynamic rows format |356|:Upstream bug: :mysqlbug:`25007` - memory tables with dynamic rows format |
339|:Launchpad bug: N/A |357|:Launchpad bug: N/A |
340|:Upstream state: Verified (checked on 2014-07-01) |358|:Upstream state: Verified (checked on 2014-08-28) |
341|:Fix Released: :rn:`5.5.15-21.0` |359|:Fix Released: :rn:`5.5.15-21.0` |
342|:Upstream fix: N/A |360|:Upstream fix: N/A |
343+-------------------------------------------------------------------------------------------------------------+361+-------------------------------------------------------------------------------------------------------------+
@@ -355,7 +373,7 @@
355+-------------------------------------------------------------------------------------------------------------+373+-------------------------------------------------------------------------------------------------------------+
356|:Upstream bug: :mysqlbug:`61595` - mysql-test/include/wait_for_slave_param.inc timeout logic is incorrect |374|:Upstream bug: :mysqlbug:`61595` - mysql-test/include/wait_for_slave_param.inc timeout logic is incorrect |
357|:Launchpad bug: :bug:`800035` |375|:Launchpad bug: :bug:`800035` |
358|:Upstream state: Verified (checked on 2014-07-01) |376|:Upstream state: Verified (checked on 2014-08-28) |
359|:Fix Released: :rn:`5.5.13-20.4` |377|:Fix Released: :rn:`5.5.13-20.4` |
360|:Upstream fix: N/A |378|:Upstream fix: N/A |
361+-------------------------------------------------------------------------------------------------------------+379+-------------------------------------------------------------------------------------------------------------+
@@ -385,7 +403,7 @@
385+-------------------------------------------------------------------------------------------------------------+403+-------------------------------------------------------------------------------------------------------------+
386|:Upstream bug: :mysqlbug:`69146` - Optimization in buf_pool_get_oldest_modification if srv_buf_pool_instances|404|:Upstream bug: :mysqlbug:`69146` - Optimization in buf_pool_get_oldest_modification if srv_buf_pool_instances|
387|:Launchpad bug: :bug:`1176496` |405|:Launchpad bug: :bug:`1176496` |
388|:Upstream state: Verified (checked on 2014-07-01) |406|:Upstream state: Verified (checked on 2014-08-28) |
389|:Fix Released: :rn:`5.5.8-20.0` |407|:Fix Released: :rn:`5.5.8-20.0` |
390|:Upstream fix: N/A |408|:Upstream fix: N/A |
391+-------------------------------------------------------------------------------------------------------------+409+-------------------------------------------------------------------------------------------------------------+

Subscribers

People subscribed via source and target branches