Merge lp:~hrvojem/percona-server/bug1229583-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: 580
Proposed branch: lp:~hrvojem/percona-server/bug1229583-5.5
Merge into: lp:percona-server/5.5
Diff against target: 80 lines (+20/-3)
5 files modified
doc/source/diagnostics/user_stats.rst (+6/-0)
doc/source/faq.rst (+5/-0)
doc/source/release-notes/Percona-Server-5.5.30-30.2.rst (+1/-1)
doc/source/scalability/innodb_io_55.rst (+2/-2)
doc/source/upstream-bug-fixes.rst (+6/-0)
To merge this branch: bzr merge lp:~hrvojem/percona-server/bug1229583-5.5
Reviewer Review Type Date Requested Status
Laurynas Biveinis (community) Approve
Review via email: mp+188389@code.launchpad.net
To post a comment you must log in.
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/diagnostics/user_stats.rst'
--- doc/source/diagnostics/user_stats.rst 2013-07-12 08:05:43 +0000
+++ doc/source/diagnostics/user_stats.rst 2013-09-30 16:52:00 +0000
@@ -136,6 +136,9 @@
136 | mysql | tables_priv | PRIMARY | 2 |136 | mysql | tables_priv | PRIMARY | 2 |
137 +--------------+-----------------------+--------------------+-----------+137 +--------------+-----------------------+--------------------+-----------+
138138
139.. note::
140
141 Current implementation of index statistics doesn't support partitioned tables.
139142
140143
141.. table:: INFORMATION_SCHEMA.TABLE_STATISTICS144.. table:: INFORMATION_SCHEMA.TABLE_STATISTICS
@@ -158,6 +161,9 @@
158 | mysql | tables_priv | 2 | 0 | 0 | 161 | mysql | tables_priv | 2 | 0 | 0 |
159 +--------------+-------------------------------+-----------+--------------+------------------------+162 +--------------+-------------------------------+-----------+--------------+------------------------+
160163
164.. note::
165
166 Current implementation of table statistics doesn't support partitioned tables.
161167
162.. table:: INFORMATION_SCHEMA.THREAD_STATISTICS168.. table:: INFORMATION_SCHEMA.THREAD_STATISTICS
163169
164170
=== modified file 'doc/source/faq.rst'
--- doc/source/faq.rst 2013-05-27 13:46:13 +0000
+++ doc/source/faq.rst 2013-09-30 16:52:00 +0000
@@ -18,3 +18,8 @@
18===================================================18===================================================
1919
20A: No, you don't need to change anything on the clients. |Percona Server| is 100% compatible with all existing client libraries and connectors.20A: No, you don't need to change anything on the clients. |Percona Server| is 100% compatible with all existing client libraries and connectors.
21
22Q: When using the |Percona XtraBackup| to setup a replication slave on Debian based systems I'm getting: "ERROR 1045 (28000): Access denied for user 'debian-sys-maint'@'localhost' (using password: YES)"
23==========================================================================================================================================================================================================
24
25A: In case you're using init script on Debian based system to start ``mysqld``, be sure that the password for ``debian-sys-maint`` user has been updated and it's the same as that user's password from the server that the backup has been taken from. Password can be seen and updated in :file:`/etc/mysql/debian.cnf`. For more information on how to set up a replication slave using |Percona XtraBackup| see `this how-to <http://www.percona.com/doc/percona-xtrabackup/2.1/howtos/setting_up_replication.html>`_.
2126
=== modified file 'doc/source/release-notes/Percona-Server-5.5.30-30.2.rst'
--- doc/source/release-notes/Percona-Server-5.5.30-30.2.rst 2013-04-30 09:04:35 +0000
+++ doc/source/release-notes/Percona-Server-5.5.30-30.2.rst 2013-09-30 16:52:00 +0000
@@ -75,4 +75,4 @@
7575
76 Suboptimal code for :ref:`user_stats` feature has been optimized to make sure no additional work is done when :variable:`userstat` is disabled. Bug fixed :bug:`1128066` (*Alexey Kopytov*).76 Suboptimal code for :ref:`user_stats` feature has been optimized to make sure no additional work is done when :variable:`userstat` is disabled. Bug fixed :bug:`1128066` (*Alexey Kopytov*).
7777
78Other bug fixes: bug fixed :bug:`1146621` (*Laurynas Biveinis*), bug fixed :bug:`1050536` (*Alexey Bychko*), bug fixed :bug:`1144059` (*Roel Van de Paar*), bug fixed :bug:`1154962` (*Hrvoje Matijakovic*), bug fixed :bug:`1154959` (*Hrvoje Matijakovic*), bug fixed :bug:`1154957` (*Hrvoje Matijakovic*), bug fixed :bug:`1154954` (*Hrvoje Matijakovic*).78Other bug fixes: bug fixed :bug:`1103850` (*Laurynas Biveinis*), bug fixed :bug:`1146621` (*Laurynas Biveinis*), bug fixed :bug:`1050536` (*Alexey Bychko*), bug fixed :bug:`1144059` (*Roel Van de Paar*), bug fixed :bug:`1154962` (*Hrvoje Matijakovic*), bug fixed :bug:`1154959` (*Hrvoje Matijakovic*), bug fixed :bug:`1154957` (*Hrvoje Matijakovic*), bug fixed :bug:`1154954` (*Hrvoje Matijakovic*).
7979
=== modified file 'doc/source/scalability/innodb_io_55.rst'
--- doc/source/scalability/innodb_io_55.rst 2013-07-12 08:05:43 +0000
+++ doc/source/scalability/innodb_io_55.rst 2013-09-30 16:52:00 +0000
@@ -117,10 +117,10 @@
117 use O_SYNC to open and flush the log files; use fsync() to flush the data files.117 use O_SYNC to open and flush the log files; use fsync() to flush the data files.
118118
119 * ``O_DIRECT``: 119 * ``O_DIRECT``:
120 use O_DIRECT (or directio() on Solaris) to open the data files; use fsync() to flush both the data and log files.120 use O_DIRECT to open the data files and fsync() system call to flush both the data and log files.
121121
122 * ``ALL_O_DIRECT``: 122 * ``ALL_O_DIRECT``:
123 use O_DIRECT open and flush both the data and the log files. This option is recommended when |InnoDB| log files are big (more than 8GB), otherwise there might be even a performance degradation. **Note**: When using this option on *ext4* filesystem variable :variable:`innodb_log_block_size` should be set to 4096 (default log-block-size in *ext4*) in order to avoid the ``unaligned AIO/DIO`` warnings.123 use O_DIRECT to open both data and log files, and use fsync() to flush the data files but it is skipped for all log files writes. This option is recommended when |InnoDB| log files are big (more than 8GB), otherwise there might be even a performance degradation. **Note**: When using this option on *ext4* filesystem variable :variable:`innodb_log_block_size` should be set to 4096 (default log-block-size in *ext4*) in order to avoid the ``unaligned AIO/DIO`` warnings.
124124
125.. variable:: innodb_flush_neighbor_pages125.. variable:: innodb_flush_neighbor_pages
126126
127127
=== modified file 'doc/source/upstream-bug-fixes.rst'
--- doc/source/upstream-bug-fixes.rst 2013-08-27 07:36:35 +0000
+++ doc/source/upstream-bug-fixes.rst 2013-09-30 16:52:00 +0000
@@ -119,6 +119,12 @@
119|:Fix Released: :rn:`5.5.29-29.4` |119|:Fix Released: :rn:`5.5.29-29.4` |
120|:Upstream fix: N/A |120|:Upstream fix: N/A |
121+-------------------------------------------------------------------------------------------------------------+121+-------------------------------------------------------------------------------------------------------------+
122|:Upstream bug: :mysqlbug:`70277` - last argument of LOAD DATA ... SET ... statement repeated twice in binlog |
123|:Launchpad bug: :bug:`1223196` |
124|:Upstream state: Verified (checked on 2013-09-30) |
125|:Fix Released: :rn:`5.5.28-29.3` |
126|:Upstream fix: N/A |
127+-------------------------------------------------------------------------------------------------------------+
122|:Upstream bug: :mysqlbug:`69380` - Incomplete fix for security vulnerability CVE-2012-5611 |128|:Upstream bug: :mysqlbug:`69380` - Incomplete fix for security vulnerability CVE-2012-5611 |
123|:Launchpad bug: :bug:`1186748` |129|:Launchpad bug: :bug:`1186748` |
124|:Upstream state: N/A |130|:Upstream state: N/A |

Subscribers

People subscribed via source and target branches