Merge lp:~hrvojem/percona-server/rn-5.5.39-36.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: 655
Proposed branch: lp:~hrvojem/percona-server/rn-5.5.39-36.0-5.6
Merge into: lp:percona-server/5.6
Diff against target: 586 lines (+188/-50)
6 files modified
doc/source/conf.py (+1/-1)
doc/source/management/audit_log_plugin.rst (+81/-9)
doc/source/release-notes/Percona-Server-5.6.20-68.0.rst (+48/-0)
doc/source/release-notes/release-notes_index.rst (+1/-0)
doc/source/reliability/show_slave_status_nolock.rst (+8/-3)
doc/source/upstream-bug-fixes.rst (+49/-37)
To merge this branch: bzr merge lp:~hrvojem/percona-server/rn-5.5.39-36.0-5.6
Reviewer Review Type Date Requested Status
Laurynas Biveinis (community) Approve
Review via email: mp+232668@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: 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-07-30 10:26:11 +0000
3+++ doc/source/conf.py 2014-08-29 10:14:25 +0000
4@@ -54,7 +54,7 @@
5 # The short X.Y version.
6 version = '5.6'
7 # The full version, including alpha/beta/rc tags.
8-release = '5.6.19-67.0'
9+release = '5.6.20-68.0'
10
11 # The language for content autogenerated by Sphinx. Refer to documentation
12 # for a list of supported languages.
13
14=== modified file 'doc/source/management/audit_log_plugin.rst'
15--- doc/source/management/audit_log_plugin.rst 2014-05-06 12:43:39 +0000
16+++ doc/source/management/audit_log_plugin.rst 2014-08-29 10:14:25 +0000
17@@ -4,7 +4,7 @@
18 Audit Log Plugin
19 ==================
20
21-Percona Audit Log Plugin provides monitoring and logging of connection and query activity that were performed on specific server. Information about the activity will be stored in the XML log file where each event will have its ``NAME`` field, it's own unique ``RECORD_ID`` field and a ``TIMESTAMP`` field. This implementation is alternative to the `MySQL Enterprise Audit Log Plugin <dev.mysql.com/doc/refman/5.5/en/audit-log-plugin.html>`_
22+Percona Audit Log Plugin provides monitoring and logging of connection and query activity that were performed on specific server. Information about the activity will be stored in the XML log file where each event will have its ``NAME`` field, its own unique ``RECORD_ID`` field and a ``TIMESTAMP`` field. This implementation is alternative to the `MySQL Enterprise Audit Log Plugin <dev.mysql.com/doc/refman/5.6/en/audit-log-plugin.html>`_
23
24 Audit Log plugin produces the log of following events:
25
26@@ -40,7 +40,7 @@
27 "DB"=""
28 />
29
30-* **Query** - Additional fields for this event are: ``COMMAND_CLASS`` (values come from the ``com_status_vars`` array in the :file:`sql/mysqld.cc`` file in a MySQL source distribution. Examples are ``select``, ``alter_table", "create_table", etc.), ``CONNECTION_ID``, ``STATUS`` (indicates error when non-zero), ``SQLTEXT`` (text of SQL-statement, statements are rewritten to exclude passwords by default, this can be changed by :option:`--log-raw` option ), ``USER``, ``HOST``, ``OS_USER``, ``IP``. Possible values for the ``NAME`` name field for this event are ``Query``, ``Prepare``, ``Execute``, ``Change user``, etc.
31+* **Query** - Additional fields for this event are: ``COMMAND_CLASS`` (values come from the ``com_status_vars`` array in the :file:`sql/mysqld.cc`` file in a MySQL source distribution. Examples are ``select``, ``alter_table``, ``create_table``, etc.), ``CONNECTION_ID``, ``STATUS`` (indicates error when non-zero), ``SQLTEXT`` (text of SQL-statement), ``USER``, ``HOST``, ``OS_USER``, ``IP``. Possible values for the ``NAME`` name field for this event are ``Query``, ``Prepare``, ``Execute``, ``Change user``, etc.
32
33 Example of the Query event: ::
34
35@@ -87,7 +87,7 @@
36 Log Format
37 ==========
38
39-Audit 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.
40+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. The log format choice is controlled by :variable:`audit_log_format` variable.
41
42 Example of the ``OLD`` format: ::
43
44@@ -122,6 +122,25 @@
45 <DB></DB>
46 </AUDIT_RECORD>
47
48+Example of the ``JSON`` format: ::
49+
50+ {"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":""}}
51+
52+Example of the ``CSV`` format: ::
53+
54+ "Query","49284_2014-08-27T10:47:11","2014-08-27T10:47:23 UTC","show_databases","37",0,"show databases","root[root] @ localhost []","localhost","",""
55+
56+.. _streaming_to_syslog:
57+
58+Streaming the audit log to syslog
59+=================================
60+
61+Ability to stream the audit log to `syslog <http://www.syslog.org/>`_ was implemented in |Percona Server| :rn:`5.6.20-68.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>`_.
62+
63+.. note::
64+
65+ 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.
66+
67 System Variables
68 ================
69
70@@ -142,6 +161,8 @@
71 * ``SEMISYNCHRONOUS`` - log directly to file, do not flush and sync every event
72 * ``SYNCHRONOUS`` - log directly to file, flush and sync every event
73
74+This variable has effect only when :variable:`audit_log_handler` is set to ``FILE``.
75+
76 .. variable:: audit_log_file
77
78 :version 5.6.17-65.0: Implemented
79@@ -173,19 +194,20 @@
80 :vartype: Numeric
81 :default: 4096
82
83-This 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.
84+This 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``.
85
86 .. variable:: audit_log_format
87
88- :version 5.6.17-65.0: Implemented
89+ :version 5.6.17-65.0: Original implementation
90+ :version 5.6.20-68.0: Implemented support for ``CSV`` and ``JSON`` log formats
91 :cli: Yes
92 :scope: Global
93 :dyn: No
94 :vartype: String
95 :default: OLD
96- :allowed values: ``OLD``, ``NEW``
97+ :allowed values: ``OLD``, ``NEW``, ``CSV``, ``JSON``
98
99-This 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.
100+This 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.
101
102 .. variable:: audit_log_policy
103
104@@ -213,7 +235,7 @@
105 :vartype: Numeric
106 :default: 0 (don't rotate the log file)
107
108-This 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.
109+This 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``.
110
111 .. variable:: audit_log_rotations
112
113@@ -224,11 +246,61 @@
114 :vartype: Numeric
115 :default: 0
116
117-This 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.
118+This 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``.
119+
120+.. variable:: audit_log_handler
121+
122+ :version 5.6.20-68.0: Implemented
123+ :cli: Yes
124+ :scope: Global
125+ :dyn: No
126+ :vartype: String
127+ :default: FILE
128+ :allowed values: ``FILE``, ``SYSLOG``
129+
130+This 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.
131+
132+.. variable:: audit_log_syslog_ident
133+
134+ :version 5.6.20-68.0: Implemented
135+ :cli: Yes
136+ :scope: Global
137+ :dyn: No
138+ :vartype: String
139+ :default: percona-audit
140+
141+This 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>`_.
142+
143+.. variable:: audit_log_syslog_facility
144+
145+ :version 5.6.20-68.0: Implemented
146+ :cli: Yes
147+ :scope: Global
148+ :dyn: No
149+ :vartype: String
150+ :default: LOG_USER
151+
152+This 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>`_.
153+
154+.. variable:: audit_log_syslog_priority
155+
156+ :version 5.6.20-68.0: Implemented
157+ :cli: Yes
158+ :scope: Global
159+ :dyn: No
160+ :vartype: String
161+ :default: LOG_INFO
162+
163+This 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>`_.
164
165 Version Specific Information
166 ============================
167
168 * :rn:`5.6.17-65.0`
169 Audit Log plugin has been implemented in |Percona Server|.
170+ * :rn:`5.6.20-68.0`
171+ |Percona Server| :ref:`audit_log_plugin` now supports ``JSON`` and ``CSV`` log formats.
172+ * :rn:`5.6.20-68.0`
173+ |Percona Server| :ref:`audit_log_plugin` now supports :ref:`streaming the audit log to syslog <streaming_to_syslog>`.
174
175+
176
177=== added file 'doc/source/release-notes/Percona-Server-5.6.20-68.0.rst'
178--- doc/source/release-notes/Percona-Server-5.6.20-68.0.rst 1970-01-01 00:00:00 +0000
179+++ doc/source/release-notes/Percona-Server-5.6.20-68.0.rst 2014-08-29 10:14:25 +0000
180@@ -0,0 +1,48 @@
181+.. rn:: 5.6.20-68.0
182+
183+==============================
184+ |Percona Server| 5.6.20-68.0
185+==============================
186+
187+Percona is glad to announce the release of |Percona Server| 5.6.20-68.0 on August 29th, 2014 (Downloads are available `here <http://www.percona.com/downloads/Percona-Server-5.6/Percona-Server-5.6.20-68.0/>`_ and from the :doc:`Percona Software Repositories </installation>`).
188+
189+Based on `MySQL 5.6.20 <http://dev.mysql.com/doc/relnotes/mysql/5.6/en/news-5-6-20.html>`_, including all the bug fixes in it, |Percona Server| 5.6.20-68.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.20-68.0 milestone at Launchpad <https://launchpad.net/percona-server/+milestone/5.6.20-68.0>`_.
190+
191+
192+New Features
193+============
194+
195+ |Percona Server| has implemented the |MySQL| 5.7 ``SHOW SLAVE STATUS NONBLOCKING`` syntax for :ref:`show_slave_status_nolock` feature. The existing ``SHOW SLAVE STATUS NOLOCK`` is kept as a deprecated alias and will be removed in |Percona Server| 5.7. There were no functional changes for the feature.
196+
197+ |Percona Server| :ref:`audit_log_plugin` now supports ``JSON`` and ``CSV`` formats. The format choice is controlled by :variable:`audit_log_format` variable.
198+
199+ |Percona Server| :ref:`audit_log_plugin` now supports :ref:`streaming the audit log to syslog <streaming_to_syslog>`.
200+
201+ TokuDB storage engine package has been updated to version 7.1.8.
202+
203+Bugs Fixed
204+==========
205+
206+ 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*).
207+
208+ SQL statements of other connections were missing in the output of ``SHOW ENGINE INNODB STATUS``, in ``LATEST DETECTED DEADLOCK`` and ``TRANSACTIONS`` sections. This bug was introduced by :ref:`statement_timeout` patch in |Percona Server| :rn:`5.6.13-61.0`. Bug fixed :bug:`1328824`.
209+
210+ Some of TokuDB distribution files were missing in the TokuDB binary tarball. Bug fixed :bug:`1338945`.
211+
212+ 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:`1193332`.
213+
214+ ``mysqld-debug`` was missing from *Debian* packages. This regression was introduced in |Percona Server| :rn:`5.6.16-64.0`. Bug fixed :bug:`1290087`.
215+
216+ Fixed a memory leak in :ref:`slowlog_rotation`. Bug fixed :bug:`1314138`.
217+
218+ The audit log plugin would write log with XML syntax errors when ``OLD`` and ``NEW`` formats were used. Bug fixed :bug:`1320879`.
219+
220+ Combination of :ref:`log_archiving`, :ref:`changed_page_tracking`, and small |InnoDB| logs could hang the server on the bootstrap shutdown. Bug fixed :bug:`1326379`.
221+
222+ :option:`--tc-heuristic-recover` option values were broken. Bug fixed :bug:`1334330` (upstream :mysqlbug:`70860`).
223+
224+ 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`.
225+
226+Other bugs fixed: :bug:`1337247`, :bug:`1350386`, :bug:`1208371`, :bug:`1261341`, :bug:`1151723`, :bug:`1182050`, :bug:`1182068`, :bug:`1182072`, :bug:`1184287`, :bug:`1280875`, :bug:`1338937`, :bug:`1334743`, :bug:`1349394`, :bug:`1182046`, :bug:`1182049`, and :bug:`1328482` (upstream :mysqlbug:`73418`).
227+
228+
229
230=== modified file 'doc/source/release-notes/release-notes_index.rst'
231--- doc/source/release-notes/release-notes_index.rst 2014-08-22 13:31:49 +0000
232+++ doc/source/release-notes/release-notes_index.rst 2014-08-29 10:14:25 +0000
233@@ -6,6 +6,7 @@
234 :maxdepth: 1
235 :glob:
236
237+ Percona-Server-5.6.20-68.0
238 Percona-Server-5.6.19-67.0
239 Percona-Server-5.6.17-66.0
240 Percona-Server-5.6.17-65.0
241
242=== modified file 'doc/source/reliability/show_slave_status_nolock.rst'
243--- doc/source/reliability/show_slave_status_nolock.rst 2014-02-05 15:41:41 +0000
244+++ doc/source/reliability/show_slave_status_nolock.rst 2014-08-29 10:14:25 +0000
245@@ -10,16 +10,21 @@
246
247 This features modifies the ``SHOW SLAVE STATUS`` syntax to allow: ::
248
249- SHOW SLAVE STATUS NOLOCK
250+ SHOW SLAVE STATUS NONBLOCKING
251
252 This will display the slave's status as if there were no lock, allowing the user to detect and understand the situation that is occurring.
253
254 .. note::
255
256- The information given when ``NOLOCK`` is used may be slightly inconsistent with the actual situation while the lock is being held.
257-
258+ The information given when ``NONBLOCKING`` is used may be slightly inconsistent with the actual situation while the lock is being held.
259+
260+.. note::
261+
262+ |Percona Server| originally used ``SHOW SLAVE STATUS NOLOCK`` syntax for this feature. As of :rn:`5.6.20-68.0` release, |Percona Server| implements ``SHOW SLAVE STATUS NONBLOCKING`` syntax, which comes from |MySQL| 5.7. The ``NOLOCK`` one has been deprecated and will be removed in |Percona Server| 5.7.
263
264 Version Specific Information
265 ============================
266
267 * :rn:`5.6.11-60.3`: Feature ported from |Percona Server| 5.5.
268+
269+ * :rn:`5.6.20-68.0`: |Percona Server| implemented the ``NONBLOCKING`` syntax from |MySQL| 5.7 and deprecated the ``NOLOCK`` syntax.
270
271=== modified file 'doc/source/upstream-bug-fixes.rst'
272--- doc/source/upstream-bug-fixes.rst 2014-08-22 13:31:49 +0000
273+++ doc/source/upstream-bug-fixes.rst 2014-08-29 10:14:25 +0000
274@@ -5,33 +5,45 @@
275 =============================================================
276
277 +-------------------------------------------------------------------------------------------------------------+
278+|:Upstream bug: :mysqlbug:`70860` - --tc-heuristic-recover option values are broken |
279+|:Launchpad bug: :bug:`1334330` |
280+|:Upstream state: Open (checked on 2014-08-29) |
281+|:Fix Released: :rn:`5.6.20-68.0` |
282+|:Upstream fix: N/A |
283++-------------------------------------------------------------------------------------------------------------+
284+|:Upstream bug: :mysqlbug:`73418` - Add --manual-lldb option to mysql-test-run.pl |
285+|:Launchpad bug: :bug:`1328482` |
286+|:Upstream state: Verified (checked on 2014-08-29) |
287+|:Fix Released: :rn:`5.6.20-68.0` |
288+|:Upstream fix: N/A |
289++-------------------------------------------------------------------------------------------------------------+
290 |:Upstream bug: :mysqlbug:`67806` - Multiple user level lock per connection |
291 |:Launchpad bug: N/A ` |
292-|:Upstream state: Verified (checked on 2014-06-27) |
293+|:Upstream state: Verified (checked on 2014-08-29) |
294 |:Fix Released: :rn:`5.6.19-67.0` |
295 |:Upstream fix: N/A |
296 +-------------------------------------------------------------------------------------------------------------+
297 |:Upstream bug: :mysqlbug:`1118` - Allow multiple concurrent locks with GET_LOCK() |
298 |:Launchpad bug: N/A |
299-|:Upstream state: Verified (checked on 2014-06-27) |
300+|:Upstream state: Verified (checked on 2014-08-29) |
301 |:Fix Released: :rn:`5.6.19-67.0` |
302 |:Upstream fix: N/A |
303 +-------------------------------------------------------------------------------------------------------------+
304 |:Upstream bug: :mysqlbug:`72615` - MTR --mysqld=--default-storage-engine=foo incompatible w/ dynamically... |
305 |:Launchpad bug: :bug:`1318537` |
306-|:Upstream state: Verified (checked on 2014-06-27) |
307+|:Upstream state: Verified (checked on 2014-08-29) |
308 |:Fix Released: :rn:`5.6.17-66.0` |
309 |:Upstream fix: N/A |
310 +-------------------------------------------------------------------------------------------------------------+
311 |:Upstream bug: :mysqlbug:`72163` - Rev 5774 broke rpl_plugin_load |
312 |:Launchpad bug: :bug:`1299688` |
313-|:Upstream state: Verified (checked on 2014-06-27) |
314+|:Upstream state: Verified (checked on 2014-08-29) |
315 |:Fix Released: :rn:`5.6.17-65.0` |
316 |:Upstream fix: N/A |
317 +-------------------------------------------------------------------------------------------------------------+
318 |:Upstream bug: :mysqlbug:`60782` - Audit plugin API: no MYSQL_AUDIT_GENERAL_LOG notifications with general...|
319 |:Launchpad bug: :bug:`1182535` |
320-|:Upstream state: Verified (checked on 2014-06-27) |
321+|:Upstream state: Closed |
322 |:Fix Released: :rn:`5.6.17-65.0` |
323 |:Upstream fix: N/A |
324 +-------------------------------------------------------------------------------------------------------------+
325@@ -43,19 +55,19 @@
326 +-------------------------------------------------------------------------------------------------------------+
327 |:Upstream bug: :mysqlbug:`71374` - Slave IO thread won't attempt auto reconnect to the master/error-code 1159|
328 |:Launchpad bug: :bug:`1268729` |
329-|:Upstream state: Verified (checked on 2014-06-27) |
330+|:Upstream state: Verified (checked on 2014-08-29) |
331 |:Fix Released: :rn:`5.6.16-64.1` |
332 |:Upstream fix: N/A |
333 +-------------------------------------------------------------------------------------------------------------+
334 |:Upstream bug: :mysqlbug:`71988` - page_cleaner: aggressive background flushing |
335 |:Launchpad bug: :bug:`1238039` |
336-|:Upstream state: Verified (checked on 2014-06-27) |
337+|:Upstream state: Verified (checked on 2014-08-29) |
338 |:Fix Released: :rn:`5.6.16-64.0` |
339 |:Upstream fix: N/A |
340 +-------------------------------------------------------------------------------------------------------------+
341 |:Upstream bug: :mysqlbug:`71624` - printf size_t results in a fatal warning in 32-bit debug builds |
342 |:Launchpad bug: :bug:`1277505` |
343-|:Upstream state: Can't repeat (checked on 2014-06-27) |
344+|:Upstream state: Can't repeat (checked on 2014-08-29) |
345 |:Fix Released: :rn:`5.6.16-64.0` |
346 |:Upstream fix: N/A |
347 +-------------------------------------------------------------------------------------------------------------+
348@@ -97,13 +109,13 @@
349 +-------------------------------------------------------------------------------------------------------------+
350 |:Upstream bug: :mysqlbug:`71270` - Failures to end bulk insert for partitioned tables handled incorrectly |
351 |:Launchpad bug: :bug:`1204871` |
352-|:Upstream state: Verified (checked on 2014-06-27) |
353+|:Upstream state: Verified (checked on 2014-08-29) |
354 |:Fix Released: :rn:`5.6.16-64.0` |
355 |:Upstream fix: N/A |
356 +-------------------------------------------------------------------------------------------------------------+
357 |:Upstream bug: :mysqlbug:`71217` - Threadpool - add thd_wait_begin/thd_wait_end to the network IO functions |
358 |:Launchpad bug: :bug:`1159743` |
359-|:Upstream state: Open (checked on 2014-06-27) |
360+|:Upstream state: Open (checked on 2014-08-29) |
361 |:Fix Released: :rn:`5.6.15-63.0` |
362 |:Upstream fix: N/A |
363 +-------------------------------------------------------------------------------------------------------------+
364@@ -121,7 +133,7 @@
365 +-------------------------------------------------------------------------------------------------------------+
366 |:Upstream bug: :mysqlbug:`71411` - buf_flush_LRU() does not return correct number in case of compressed pages|
367 |:Launchpad bug: :bug:`1231918` |
368-|:Upstream state: Verified (checked on 2014-06-27) |
369+|:Upstream state: Verified (checked on 2014-08-29) |
370 |:Fix Released: :rn:`5.6.13-61.0` |
371 |:Upstream fix: N/A |
372 +-------------------------------------------------------------------------------------------------------------+
373@@ -133,7 +145,7 @@
374 +-------------------------------------------------------------------------------------------------------------+
375 |:Upstream bug: :mysqlbug:`70490` - Suppression is too strict on some systems |
376 |:Launchpad bug: :bug:`1205196` |
377-|:Upstream state: No Feedback (checked on 2014-06-27) |
378+|:Upstream state: No Feedback (checked on 2014-08-29) |
379 |:Fix Released: :rn:`5.6.13-61.0` |
380 |:Upstream fix: N/A |
381 +-------------------------------------------------------------------------------------------------------------+
382@@ -145,7 +157,7 @@
383 +-------------------------------------------------------------------------------------------------------------+
384 |:Upstream bug: :mysqlbug:`70500` - Page cleaner should perform LRU flushing regardless of server activity |
385 |:Launchpad bug: :bug:`1234562` |
386-|:Upstream state: Open (checked on 2014-06-27) |
387+|:Upstream state: Open (checked on 2014-08-29) |
388 |:Fix Released: :rn:`5.6.13-61.0` |
389 |:Upstream fix: N/A |
390 +-------------------------------------------------------------------------------------------------------------+
391@@ -163,31 +175,31 @@
392 +-------------------------------------------------------------------------------------------------------------+
393 |:Upstream bug: :mysqlbug:`68481` - InnoDB LRU flushing for MySQL 5.6 needs work |
394 |:Launchpad bug: :bug:`1232406` |
395-|:Upstream state: Verified (checked on 2014-06-27) |
396+|:Upstream state: Verified (checked on 2014-08-29) |
397 |:Fix Released: :rn:`5.6.13-61.0` |
398 |:Upstream fix: N/A |
399 +-------------------------------------------------------------------------------------------------------------+
400 |:Upstream bug: :mysqlbug:`70453` - Add hard timeouts to page cleaner flushes |
401 |:Launchpad bug: :bug:`1232101` |
402-|:Upstream state: Verified (checked on 2014-06-27) |
403+|:Upstream state: Verified (checked on 2014-08-29) |
404 |:Fix Released: :rn:`5.6.13-61.0` |
405 |:Upstream fix: N/A |
406 +-------------------------------------------------------------------------------------------------------------+
407 |:Upstream bug: :mysqlbug:`69170` - buf_flush_LRU is lazy |
408 |:Launchpad bug: :bug:`1231918` |
409-|:Upstream state: Verified (checked on 2014-06-27) |
410+|:Upstream state: Verified (checked on 2014-08-29) |
411 |:Fix Released: :rn:`5.6.13-61.0` |
412 |:Upstream fix: N/A |
413 +-------------------------------------------------------------------------------------------------------------+
414 |:Upstream bug: :mysqlbug:`68555` - thread convoys from log_checkpoint_margin with innodb_buffer_pool_inst... |
415 |:Launchpad bug: :bug:`1236884` |
416-|:Upstream state: Verified (checked on 2014-06-27) |
417+|:Upstream state: Verified (checked on 2014-08-29) |
418 |:Fix Released: :rn:`5.6.13-61.0` |
419 |:Upstream fix: N/A |
420 +-------------------------------------------------------------------------------------------------------------+
421 |:Upstream bug: :mysqlbug:`70228` - Is buf_LRU_free_page() really supposed to make non-zip block sticky at ...|
422 |:Launchpad bug: :bug:`1220544` |
423-|:Upstream state: Verified (checked on 2014-06-27) |
424+|:Upstream state: Verified (checked on 2014-08-29) |
425 |:Fix Released: :rn:`5.6.13-60.6` |
426 |:Upstream fix: N/A |
427 +-------------------------------------------------------------------------------------------------------------+
428@@ -205,13 +217,13 @@
429 +-------------------------------------------------------------------------------------------------------------+
430 |:Upstream bug: :mysqlbug:`70216` - Unnecessary overhead from persistent adaptive hash index latches |
431 |:Launchpad bug: :bug:`1218347` |
432-|:Upstream state: Verified (checked on 2014-06-27) |
433+|:Upstream state: Verified (checked on 2014-08-29) |
434 |:Fix Released: :rn:`5.6.13-60.6` |
435 |:Upstream fix: N/A |
436 +-------------------------------------------------------------------------------------------------------------+
437 |:Upstream bug: :mysqlbug:`62018` - innodb adaptive hash index mutex contention |
438 |:Launchpad bug: :bug:`1216804` |
439-|:Upstream state: Verified (checked on 2014-06-27) |
440+|:Upstream state: Verified (checked on 2014-08-29) |
441 |:Fix Released: :rn:`5.6.13-60.6` |
442 |:Upstream fix: N/A |
443 +-------------------------------------------------------------------------------------------------------------+
444@@ -229,13 +241,13 @@
445 +-------------------------------------------------------------------------------------------------------------+
446 |:Upstream bug: :mysqlbug:`42415` - UPDATE/DELETE with LIMIT clause unsafe for SBL even with ORDER BY PK ... |
447 |:Launchpad bug: :bug:`1132194` |
448-|:Upstream state: Verified (checked on 2014-06-27) |
449+|:Upstream state: Verified (checked on 2014-08-29) |
450 |:Fix Released: :rn:`5.6.13-60.5` |
451 |:Upstream fix: N/A |
452 +-------------------------------------------------------------------------------------------------------------+
453 |:Upstream bug: :mysqlbug:`69639` - mysql failed to build with dtrace Sun D 1.11 |
454 |:Launchpad bug: :bug:`1196460` |
455-|:Upstream state: Open (checked on 2014-06-27) |
456+|:Upstream state: Open (checked on 2014-08-29) |
457 |:Fix Released: :rn:`5.6.13-60.5` |
458 |:Upstream fix: N/A |
459 +-------------------------------------------------------------------------------------------------------------+
460@@ -253,7 +265,7 @@
461 +-------------------------------------------------------------------------------------------------------------+
462 |:Upstream bug: :mysqlbug:`69856` - mysql_install_db does not function properly in 5.6 for debug builds |
463 |:Launchpad bug: :bug:`1179359` |
464-|:Upstream state: Verified (checked on 2014-06-27) |
465+|:Upstream state: Verified (checked on 2014-08-29) |
466 |:Fix Released: :rn:`5.6.12-60.4` |
467 |:Upstream fix: N/A |
468 +-------------------------------------------------------------------------------------------------------------+
469@@ -265,7 +277,7 @@
470 +-------------------------------------------------------------------------------------------------------------+
471 |:Upstream bug: :mysqlbug:`71183` - os_file_fsync() should handle fsync() returning EINTR |
472 |:Launchpad bug: :bug:`1262651` |
473-|:Upstream state: Verified (checked on 2014-06-27) |
474+|:Upstream state: Verified (checked on 2014-08-29) |
475 |:Fix Released: :rn:`5.6.11-60.3` |
476 |:Upstream fix: N/A |
477 +-------------------------------------------------------------------------------------------------------------+
478@@ -295,7 +307,7 @@
479 +-------------------------------------------------------------------------------------------------------------+
480 |:Upstream bug: :mysqlbug:`68714` - Remove literal statement digest values from perfschema tests |
481 |:Launchpad bug: :bug:`1157078` |
482-|:Upstream state: Verified (checked on 2014-06-27) |
483+|:Upstream state: Verified (checked on 2014-08-29) |
484 |:Fix Released: :rn:`5.6.11-60.3` |
485 |:Upstream fix: N/A |
486 +-------------------------------------------------------------------------------------------------------------+
487@@ -319,13 +331,13 @@
488 +-------------------------------------------------------------------------------------------------------------+
489 |:Upstream bug: :mysqlbug:`68970` - fsp_reserve_free_extents switches from small to big tblspace handling ... |
490 |:Launchpad bug: :bug:`1169494` |
491-|:Upstream state: Verified (checked on 2014-06-27) |
492+|:Upstream state: Verified (checked on 2014-08-29) |
493 |:Fix Released: :rn:`5.6.11-60.3` |
494 |:Upstream fix: N/A |
495 +-------------------------------------------------------------------------------------------------------------+
496 |:Upstream bug: :mysqlbug:`68713` - create_duplicate_weedout_tmp_table() leaves key_part_flag uninitialized |
497 |:Launchpad bug: :bug:`1157037` |
498-|:Upstream state: Verified (checked on 2014-06-27) |
499+|:Upstream state: Verified (checked on 2014-08-29) |
500 |:Fix Released: :rn:`5.6.11-60.3` |
501 |:Upstream fix: N/A |
502 +-------------------------------------------------------------------------------------------------------------+
503@@ -337,13 +349,13 @@
504 +-------------------------------------------------------------------------------------------------------------+
505 |:Upstream bug: :mysqlbug:`68999` - SSL_OP_NO_COMPRESSION not defined |
506 |:Launchpad bug: :bug:`1183610` |
507-|:Upstream state: No Feedback (checked on 2014-06-27) |
508+|:Upstream state: No Feedback (checked on 2014-08-29) |
509 |:Fix Released: :rn:`5.6.11-60.3` |
510 |:Upstream fix: N/A |
511 +-------------------------------------------------------------------------------------------------------------+
512 |:Upstream bug: :mysqlbug:`68845` - Unnecessary log_sys->mutex reacquisition in mtr_log_reserve_and_write() |
513 |:Launchpad bug: :bug:`1163439` |
514-|:Upstream state: Verified (checked on 2014-06-27) |
515+|:Upstream state: Verified (checked on 2014-08-29) |
516 |:Fix Released: :rn:`5.6.11-60.3` |
517 |:Upstream fix: N/A |
518 +-------------------------------------------------------------------------------------------------------------+
519@@ -373,7 +385,7 @@
520 +-------------------------------------------------------------------------------------------------------------+
521 |:Upstream bug: :mysqlbug:`68476` - Suboptimal code in my_strnxfrm_simple() |
522 |:Launchpad bug: :bug:`1132350` |
523-|:Upstream state: Verified (checked on 2014-06-27) |
524+|:Upstream state: Verified (checked on 2014-08-29) |
525 |:Fix Released: :rn:`5.6.11-60.3` |
526 |:Upstream fix: N/A |
527 +-------------------------------------------------------------------------------------------------------------+
528@@ -433,7 +445,7 @@
529 +-------------------------------------------------------------------------------------------------------------+
530 |:Upstream bug: :mysqlbug:`61178` - Incorrect implementation of intersect(ulonglong) in non-optimized Bitmap..|
531 |:Launchpad bug: :bug:`1042517` |
532-|:Upstream state: Verified (checked on 2014-06-27) |
533+|:Upstream state: Verified (checked on 2014-08-29) |
534 |:Fix Released: :rn:`5.6.11-60.3` |
535 |:Upstream fix: N/A |
536 +-------------------------------------------------------------------------------------------------------------+
537@@ -445,7 +457,7 @@
538 +-------------------------------------------------------------------------------------------------------------+
539 |:Upstream bug: :mysqlbug:`64800` - mysqldump with --include-master-host-port putting quotes around port no. |
540 |:Launchpad bug: :bug:`1013432` |
541-|:Upstream state: Verified (checked on 2014-06-27) |
542+|:Upstream state: Verified (checked on 2014-08-29) |
543 |:Fix Released: :rn:`5.6.11-60.3` |
544 |:Upstream fix: N/A |
545 +-------------------------------------------------------------------------------------------------------------+
546@@ -475,13 +487,13 @@
547 +-------------------------------------------------------------------------------------------------------------+
548 |:Upstream bug: :mysqlbug:`25007` - memory tables with dynamic rows format |
549 |:Launchpad bug: N/A |
550-|:Upstream state: Verified (checked on 2014-06-27) |
551+|:Upstream state: Verified (checked on 2014-08-29) |
552 |:Fix Released: :rn:`5.6.11-60.3` |
553 |:Upstream fix: N/A |
554 +-------------------------------------------------------------------------------------------------------------+
555 |:Upstream bug: :mysqlbug:`61595` - mysql-test/include/wait_for_slave_param.inc timeout logic is incorrect |
556 |:Launchpad bug: :bug:`800035` |
557-|:Upstream state: Verified (checked on 2014-06-27) |
558+|:Upstream state: Verified (checked on 2014-08-29) |
559 |:Fix Released: :rn:`5.6.11-60.3` |
560 |:Upstream fix: N/A |
561 +-------------------------------------------------------------------------------------------------------------+
562@@ -493,7 +505,7 @@
563 +-------------------------------------------------------------------------------------------------------------+
564 |:Upstream bug: :mysqlbug:`68116` - InnoDB monitor may hit an assertion error in buf_page_get_gen in debug ...|
565 |:Launchpad bug: :bug:`1100178` |
566-|:Upstream state: Verified (checked on 2014-06-27) |
567+|:Upstream state: Verified (checked on 2014-08-29) |
568 |:Fix Released: :rn:`5.6.10-60.2` |
569 |:Upstream fix: N/A |
570 +-------------------------------------------------------------------------------------------------------------+
571@@ -505,13 +517,13 @@
572 +-------------------------------------------------------------------------------------------------------------+
573 |:Upstream bug: :mysqlbug:`20001` - Support for temp-tables in INFORMATION_SCHEMA |
574 |:Launchpad bug: N/A |
575-|:Upstream state: Verified (checked on 2014-06-27) |
576+|:Upstream state: Verified (checked on 2014-08-29) |
577 |:Fix Released: :rn:`5.6.5-60.0` |
578 |:Upstream fix: N/A |
579 +-------------------------------------------------------------------------------------------------------------+
580 |:Upstream bug: :mysqlbug:`69146` - Optimization in buf_pool_get_oldest_modification if srv_buf_pool_instances|
581 |:Launchpad bug: :bug:`1176496` |
582-|:Upstream state: Verified (checked on 2014-06-27) |
583+|:Upstream state: Verified (checked on 2014-08-29) |
584 |:Fix Released: :rn:`5.6.5-60.0` |
585 |:Upstream fix: N/A |
586 +-------------------------------------------------------------------------------------------------------------+

Subscribers

People subscribed via source and target branches