Merge lp:~hrvojem/percona-server/rn-5.5.37-35.1-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: 602
Proposed branch: lp:~hrvojem/percona-server/rn-5.5.37-35.1-5.6
Merge into: lp:percona-server/5.6
Diff against target: 138 lines (+27/-34)
6 files modified
doc/source/conf.py (+0/-2)
doc/source/development.rst (+4/-6)
doc/source/glossary.rst (+4/-23)
doc/source/installation/apt_repo.rst (+0/-1)
doc/source/ps-versions-comparison.rst (+17/-2)
doc/source/release-notes/Percona-Server-5.6.16-64.0.rst (+2/-0)
To merge this branch: bzr merge lp:~hrvojem/percona-server/rn-5.5.37-35.1-5.6
Reviewer Review Type Date Requested Status
Laurynas Biveinis (community) Approve
Review via email: mp+221541@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
=== modified file 'doc/source/conf.py'
--- doc/source/conf.py 2014-05-06 12:43:39 +0000
+++ doc/source/conf.py 2014-05-30 13:33:18 +0000
@@ -118,8 +118,6 @@
118118
119.. |MySQL| replace:: *MySQL*119.. |MySQL| replace:: *MySQL*
120120
121.. |Drizzle| replace:: *Drizzle*
122
123.. |MariaDB| replace:: *MariaDB*121.. |MariaDB| replace:: *MariaDB*
124122
125.. |tar4ibd| replace:: :program:`tar4ibd`123.. |tar4ibd| replace:: :program:`tar4ibd`
126124
=== modified file 'doc/source/development.rst'
--- doc/source/development.rst 2013-05-27 13:59:13 +0000
+++ doc/source/development.rst 2014-05-30 13:33:18 +0000
@@ -8,12 +8,10 @@
88
9Submitting Changes9Submitting Changes
10==================10==================
11This process is very much modeled on what is being used by11
12`Drizzle <http://www.drizzle.org>`_. The Drizzle project went through12We keep trunk in a constant state of stability to allow for a release at
13several iterations and refinements before settling on this process. It13any time and to minimize wasted time by developers due to broken code
14has been found to both keep trunk in a constant state of stability14from somebody else interfering with their day.
15(allowing for a release at any time) and minimizing wasted time by
16developers due to broken code from somebody else interfering with their day.
1715
18You should also be familiar with our |Jenkins| setup.16You should also be familiar with our |Jenkins| setup.
1917
2018
=== modified file 'doc/source/glossary.rst'
--- doc/source/glossary.rst 2013-05-27 13:59:13 +0000
+++ doc/source/glossary.rst 2014-05-30 13:33:18 +0000
@@ -18,24 +18,6 @@
18 Consistency means that each transaction that modifies the database18 Consistency means that each transaction that modifies the database
19 takes it from one consistent state to another.19 takes it from one consistent state to another.
2020
21 Drizzle
22 Drizzle: a database for the cloud.
23
24 `Drizzle <http://www.drizzle.org/>`_ is a community-driven open source project that is forked
25 from the popular MySQL database. The Drizzle team has removed
26 non-essential code, re-factored the remaining code into a
27 plugin-based architecture and modernized the code base moving to
28 C++.
29
30 Drizzle Charter
31 * A database optimized for Cloud infrastructure and Web applications.
32 * Design for massive concurrency on modern multi-cpu architecture
33 * Optimize memory for increased performance and parallelism
34 * Open source, open community, open design Scope
35 * Re-designed modular architecture providing plugins with defined APIs
36 * Simple design for ease of use and administration
37 * Reliable, ACID transactional
38
39 Durability21 Durability
40 Once a transaction is committed, it will remain so.22 Once a transaction is committed, it will remain so.
4123
@@ -50,11 +32,10 @@
5032
51 InnoDB33 InnoDB
52 A :term:`Storage Engine` for MySQL and derivatives (:term:`Percona34 A :term:`Storage Engine` for MySQL and derivatives (:term:`Percona
53 Server`, :term:`MariaDB`, :term:`Drizzle`) originally written by35 Server`, :term:`MariaDB`) originally written by Innobase Oy, since
54 Innobase Oy, since acquired by Oracle. It provides :term:`ACID`36 acquired by Oracle. It provides :term:`ACID` compliant storage engine
55 compliant storage engine with :term:`foreign key` support. As of37 with :term:`foreign key` support. As of :term:`MySQL` version 5.5,
56 :term:`MySQL` version 5.5, InnoDB became the default storage engine38 InnoDB became the default storage engine on all platforms.
57 on all platforms.
5839
59 Jenkins40 Jenkins
60 `Jenkins <http://www.jenkins-ci.org>`_ is a continuous integration41 `Jenkins <http://www.jenkins-ci.org>`_ is a continuous integration
6142
=== modified file 'doc/source/installation/apt_repo.rst'
--- doc/source/installation/apt_repo.rst 2014-05-06 12:43:39 +0000
+++ doc/source/installation/apt_repo.rst 2014-05-30 13:33:18 +0000
@@ -37,7 +37,6 @@
3737
38 * 10.04LTS (lucid)38 * 10.04LTS (lucid)
39 * 12.04LTS (precise)39 * 12.04LTS (precise)
40 * 13.04 (raring)
41 * 13.10 (saucy)40 * 13.10 (saucy)
42 * 14.04LTS (trusty)41 * 14.04LTS (trusty)
4342
4443
=== modified file 'doc/source/ps-versions-comparison.rst'
--- doc/source/ps-versions-comparison.rst 2014-04-25 10:55:01 +0000
+++ doc/source/ps-versions-comparison.rst 2014-05-30 13:33:18 +0000
@@ -71,8 +71,8 @@
71 - :ref:`Handle BLOB End of Line <ps55:mysql_remove_eol_carret>`71 - :ref:`Handle BLOB End of Line <ps55:mysql_remove_eol_carret>`
72 - Replaced by the upstream implementation [#n-9]_72 - Replaced by the upstream implementation [#n-9]_
73 * - :ref:`Ability to change database for mysqlbinlog <ps51:mysqlbinlog_change_db>` 73 * - :ref:`Ability to change database for mysqlbinlog <ps51:mysqlbinlog_change_db>`
74 - Feature not implemented74 - :ref:`Ability to change database for mysqlbinlog <ps55:mysqlbinlog_change_db>`
75 - Feature not implemented75 - :ref:`Ability to change database for mysqlbinlog <ps56:mysqlbinlog_change_db>`
76 * - :ref:`Replication Stop Recovery <ps51:replication_skip_single_statement>`76 * - :ref:`Replication Stop Recovery <ps51:replication_skip_single_statement>`
77 - Feature not implemented77 - Feature not implemented
78 - Feature not implemented78 - Feature not implemented
@@ -208,6 +208,21 @@
208 * - Feature not implemented208 * - Feature not implemented
209 - Feature not implemented209 - Feature not implemented
210 - :ref:`Per-query variable statement <ps56:per_query_variable_statement>`210 - :ref:`Per-query variable statement <ps56:per_query_variable_statement>`
211 * - Feature not implemented
212 - :ref:`Extended mysqlbinlog <ps55:extended_mysqlbinlog>`
213 - :ref:`Extended mysqlbinlog <ps56:extended_mysqlbinlog>`
214 * - Feature not implemented
215 - :ref:`Slow Query Log Rotation and Expiration <ps55:slowlog_rotation>`
216 - :ref:`Slow Query Log Rotation and Expiration <ps56:slowlog_rotation>`
217 * - Feature not implemented
218 - :ref:`Metrics for scalability measurement <ps55:scalability_metrics_plugin>`
219 - :ref:`Metrics for scalability measurement <ps56:scalability_metrics_plugin>`
220 * - Feature not implemented
221 - :ref:`Audit Log <ps55:audit_log_plugin>`
222 - :ref:`Audit Log <ps56:audit_log_plugin>`
223 * - Feature not implemented
224 - Feature not implemented
225 - :ref:`Backup Locks <ps56:backup_locks>`
211 226
212227
213Other Reading228Other Reading
214229
=== modified file 'doc/source/release-notes/Percona-Server-5.6.16-64.0.rst'
--- doc/source/release-notes/Percona-Server-5.6.16-64.0.rst 2014-03-10 15:05:00 +0000
+++ doc/source/release-notes/Percona-Server-5.6.16-64.0.rst 2014-05-30 13:33:18 +0000
@@ -66,4 +66,6 @@
6666
67 Performance schema autosizing heuristics have been updated to account for Percona Server-specific ``wait/synch/mutex/sql/THD::LOCK_temporary_tables`` mutex. Bug fixed :bug:`1264952`.67 Performance schema autosizing heuristics have been updated to account for Percona Server-specific ``wait/synch/mutex/sql/THD::LOCK_temporary_tables`` mutex. Bug fixed :bug:`1264952`.
6868
69 Database administrator password could be seen in plain text if when ``debconf-get-selections`` was executed. Bug fixed :bug:`1018291`.
70
69Other bugs fixed: :bug:`1276445`, :bug:`1005787`, :bug:`1285064`, :bug:`1229598`, and :bug:`1277505` (upstream :mysqlbug:`71624`).71Other bugs fixed: :bug:`1276445`, :bug:`1005787`, :bug:`1285064`, :bug:`1229598`, and :bug:`1277505` (upstream :mysqlbug:`71624`).

Subscribers

People subscribed via source and target branches