Merge lp:~hrvojem/percona-server/bug1186987-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: 417
Proposed branch: lp:~hrvojem/percona-server/bug1186987-5.6
Merge into: lp:percona-server/5.6
Diff against target: 297 lines (+177/-62)
4 files modified
doc/source/changed_in_56.rst (+173/-60)
doc/source/conf.py (+1/-1)
doc/source/ps-variables.rst (+1/-1)
doc/source/release-notes/Percona-Server-5.6.10-60.2.rst (+2/-0)
To merge this branch: bzr merge lp:~hrvojem/percona-server/bug1186987-5.6
Reviewer Review Type Date Requested Status
Laurynas Biveinis (community) Approve
Review via email: mp+174393@code.launchpad.net
To post a comment you must log in.
Revision history for this message
Laurynas Biveinis (laurynas-biveinis) wrote :

    - 151: "SHOW TEMPORARY TABLES has been removed, and its
      functionality ..."
    - For InnoDB METRICS, please point to monitor names, there are
      many of them.
    - innodb_dict_tables parent feature has been replaced by the
      Oracle 5.6 feature.
    - It is not fully correct to say that 1/10 s loop variables were
      replaced by active loops etc as these are not direct
      replacements. Rather, the new InnoDB master thread behaviour
      makes old variables redundant and introduces some new ones.
    - Innodb_master_thread_background_loops needs to be checked
      whether it was removed because it simply does not have any
      sense in 5.6.
    - binlog commit feature has been ported to 5.6, but without the
      variables Please check docs elsewhere too if they have to be
      updated.
    - re. system variables, I'd replace "variable hasn't been ported"
      with something that says feature owning that variable has not
      been ported etc. But need to phrase better.
    - innodb_adaptive_hash_index_partitions "has not been ported yet"
    - blocking buffer pool restore does not have a direct replacement
      in MySQL 5.6, it's a bug/feature request (crossref with one)
    - for the 5.5 dictionary size feature replaced with Oracle
      feature, please also see http://bugs.mysql.com/bug.php?id=69519
      and describe/link to docs as necessary.
    - innodb_fast_checksum needs upgrade description.
    - please remove "yet" from ibuf variables.
    - MySQL transactional slave logs needs MySQL doc link.
    - innodb_use_sys_stats_table replacement is InnoDB 5.6 persistent
      stats.

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

    - My previous review comment re. Com_show_temporary_tables is not
      addressed. Currently it is unclear what "Information" is the
      text referring to.
    - Re. INNODB_METRICS, please point not to the module but to the
      monitor, see the table in Oracle docs that lists
      adaptive_hash_pages_added etc.
    - I suggest to add wording next to 5.6 table_definition_cache to
      explain that this variable has a new extra meaning in 5.6 for
      InnoDB, as otherwise both its presence in the earlier versions
      and its name are counterintuitive.

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

    - What is the relation between innodb-fast-index-creation and
      innodb-fast-checksums? Won't the latter, when enabled on 5.5,
      prevent any in-place upgrade to 5.6, regardless of
      innodb-fast-index-creation?
    - Line 151: s/about this/about temporary tables
    - I Innodb_adaptive_hash_cells -> adaptive_hash_rows_added mapping
      is not correct. The hash cells variable counts the internal
      hash table size and the hash table uses link chaining, thus no
      relation to the "rows" which are the logical data entries stored
      there. (probably related to data rows but unable to check right
      now).
    - Likewise Innodb_adaptive_hash_heap_buffers is accounting hash
      table memory usage, while adaptive_hash_pages_added is
      accounting the number hash-indexed buffer pool data pages.
    - Line 253, 255: s/upstream/the upstream.

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

- What does " In this case ``ALTER TABLE`` won't work due to its implementation." mean in line 50?
- Line 208: s/in the future/in a future

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

Line 50: replace "dump/imported" with "dumped and imported". No need for a new review with this change.

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'doc/source/changed_in_56.rst'
2--- doc/source/changed_in_56.rst 2013-06-03 17:44:39 +0000
3+++ doc/source/changed_in_56.rst 2013-08-28 06:14:13 +0000
4@@ -4,26 +4,33 @@
5 Changed in Percona Server 5.6
6 =============================
7
8-|Percona Server| 5.6 is based on MySQL 5.6 and incorporates many of the improvements found in |Percona Server| 5.5.
9+|Percona Server| 5.6 is based on |MySQL| 5.6 and incorporates many of the improvements found in |Percona Server| 5.5.
10+
11+Features removed from |Percona Server| 5.6 that were available in |Percona Server| 5.5
12+=======================================================================================
13
14 Some features that were present in |Percona Server| 5.5 have been removed in |Percona Server| 5.6. These are:
15
16- * `fast_index_creation <http://www.percona.com/doc/percona-server/5.5/management/innodb_fast_index_creation.html>`_ (use MySQL 5.6's ALGORITHM= option instead)
17- * `HandlerSocket <http://www.percona.com/doc/percona-server/5.5/performance/handlersocket.html>`_ (may return when HandlerSocket supports MySQL 5.6)
18- * SHOW [GLOBAL] TEMPORARY TABLES functionality is now only available via the INFORMATION_SCHEMA tables :table:`TEMPORARY_TABLES` and :table:`GLOBAL_TEMPORARY_TABLES`.
19+ * `HandlerSocket <http://www.percona.com/doc/percona-server/5.5/performance/handlersocket.html>`_ (This feature will be ported in one of the future |Percona Server| 5.6 releases)
20+ * ``SHOW [GLOBAL] TEMPORARY TABLES`` functionality is now only available via the ``INFORMATION_SCHEMA`` tables :table:`TEMPORARY_TABLES` and :table:`GLOBAL_TEMPORARY_TABLES`.
21 * `InnoDB timer-based Concurrency Throttling <http://www.percona.com/doc/percona-server/5.5/performance/innodb_thread_concurrency_timer_based.html>`_
22 * `InnoDB Recovery Stats <http://www.percona.com/doc/percona-server/5.5/management/innodb_recovery_patches.html>`_
23 * Rows_read counters in :ref:`slow_extended` and ``SHOW PROCESSLIST`` had a very fuzzy meaning so they were removed.
24
25+Replaced features that were present in |Percona Server| 5.5
26+===========================================================
27+
28 Some features that were present in |Percona Server| 5.5 have been replaced by a different implementation of the same/similar functionality in |Percona Server| 5.6. These are:
29
30 * ``SHOW ENGINE INNODB STATUS`` section "OLDEST VIEW" has been replaced by the :table:`XTRADB_READ_VIEW` INFORMATION_SCHEMA table.
31 * ``SHOW ENGINE INNODB STATUS`` sections on memory usage for InnoDB/XtraDB hash tables has been replaced by the :table:`XTRADB_INTERNAL_HASH_TABLES` INFORMATION_SCHEMA table.
32 * The :table:`INNODB_RSEG` table has been renamed to :table:`XTRADB_RSEG`.
33
34-Some |Percona Server| 5.5 features have been replaced by similar or equivalent MySQL 5.6 features, so we now keep the MySQL 5.6 implementations in |Percona Server| 5.6. These are:
35-
36- * `Show Lock Names <http://www.percona.com/doc/percona-server/5.5/diagnostics/innodb_show_lock_names.html>`_ has been replaced by PERFORMANCE_SCHEMA
37+Features available in |Percona Server| 5.5 that have been replaced with |MySQL| 5.6 features
38+============================================================================================
39+
40+Some |Percona Server| 5.5 features have been replaced by similar or equivalent |MySQL| 5.6 features, so we now keep the |MySQL| 5.6 implementations in |Percona Server| 5.6. These are:
41+
42 * `Crash-Resistant Replication <http://www.percona.com/doc/percona-server/5.5/reliability/crash_resistant_replication.html>`_ has been replaced by |MySQL| crash safe replication
43 * `Improved InnoDB I/O Scalability <http://www.percona.com/doc/percona-server/5.5/scalability/innodb_io_55.html>`_ patches have been replaced by improvements and changes in MySQL 5.6, although Percona may make improvements in the future
44 * `InnoDB Data Dictionary Size Limit <http://www.percona.com/doc/percona-server/5.5/management/innodb_dict_size_limit.html>`_ has been replaced by |MySQL| 5.6 using the existing table-definition-cache variable to limit the size of the |InnoDB| data dictionary.
45@@ -31,59 +38,165 @@
46 * The |InnoDB| data dictionary INFORMATION_SCHEMA tables have been superseded by the |MySQL| implementations
47 * |XtraDB| SYS_STATS persistent table and index statistics has been replaced by the MySQL 5.6 implementation
48 * `Dump/Restore of the Buffer Pool <http://www.percona.com/doc/percona-server/5.5/management/innodb_lru_dump_restore.html>`_ is now available in |MySQL| 5.6, so we have replaced the |Percona Server| implementation with the MySQL one.
49+ * `fast_index_creation <http://www.percona.com/doc/percona-server/5.5/management/innodb_fast_index_creation.html>`_ (replaced by |MySQL| 5.6's `ALGORITHM= option <http://dev.mysql.com/doc/refman/5.6/en/alter-table.html>`_).
50+ * :ref:`Fast InnoDB Checksum <ps55:innodb_fast_checksum_page>` has been deprecated after |Percona Server| 5.5.28-29.2 because the :variable:`innodb_checksum_algorithm` variable in |MySQL| 5.6 makes it redundant. If this feature was enabled, turning it off before the upgrade requires table(s) to be dump and imported, since it will fail to start on data files created when :variable:`innodb_fast_checksums` was enabled.
51+
52+Features ported from |Percona Server| 5.5 to |Percona Server| 5.6
53+==================================================================
54
55 Following features were ported from |Percona Server| 5.5 to |Percona Server| 5.6:
56
57- * :ref:`threadpool`
58-
59- * :ref:`atomic_fio` patch from |MariaDB|
60-
61- * :variable:`innodb_read_views_memory` and :variable:`innodb_descriptors_memory` status variables in the :ref:`innodb_show_status` to improve |InnoDB| memory usage diagnostics.
62-
63- * :ref:`innodb_io_page`
64-
65- * :ref:`innodb_numa_support`
66-
67- * :ref:`log_warning_suppress`
68-
69- * :ref:`improved_memory_engine`
70-
71- * :ref:`maximum_binlog_files`
72-
73- * :ref:`log_connection_error`
74-
75- * :ref:`error_pad`
76-
77- * :ref:`show_slave_status_nolock`
78-
79- * :ref:`udf_percona_toolkit`
80-
81- * :ref:`innodb_fake_changes_page`
82-
83- * :ref:`innodb_kill_idle_trx`
84-
85- * :ref:`enforce_engine`
86-
87- * :ref:`psaas_utility_user`
88-
89- * :ref:`secure_file_priv_extended`
90-
91- * :ref:`expanded_option_modifiers`
92-
93- * :ref:`changed_page_tracking`
94-
95- * :ref:`pam_plugin`
96-
97- * :ref:`user_stats`
98-
99- * :ref:`slow_extended`
100-
101- * :ref:`innodb_show_status`
102-
103- * :ref:`innodb_deadlocks_page`
104-
105- * :ref:`mysql_syslog`
106-
107- * :ref:`show_engines`
108-
109- * :ref:`thread_based_profiling`
110+ ========================================== ===================
111+ Feature Ported Version
112+ ========================================== ===================
113+ :ref:`threadpool` :rn:`5.6.10-60.2`
114+ :ref:`atomic_fio` :rn:`5.6.11-60.3`
115+ :ref:`innodb_io_page` :rn:`5.6.11-60.3`
116+ :ref:`innodb_numa_support` :rn:`5.6.11-60.3`
117+ :ref:`log_warning_suppress` :rn:`5.6.11-60.3`
118+ :ref:`improved_memory_engine` :rn:`5.6.11-60.3`
119+ :ref:`maximum_binlog_files` :rn:`5.6.11-60.3`
120+ :ref:`log_connection_error` :rn:`5.6.11-60.3`
121+ :ref:`error_pad` :rn:`5.6.11-60.3`
122+ :ref:`show_slave_status_nolock` :rn:`5.6.11-60.3`
123+ :ref:`udf_percona_toolkit` :rn:`5.6.11-60.3`
124+ :ref:`innodb_fake_changes_page` :rn:`5.6.11-60.3`
125+ :ref:`innodb_kill_idle_trx` :rn:`5.6.11-60.3`
126+ :ref:`enforce_engine` :rn:`5.6.11-60.3`
127+ :ref:`psaas_utility_user` :rn:`5.6.11-60.3`
128+ :ref:`secure_file_priv_extended` :rn:`5.6.11-60.3`
129+ :ref:`expanded_option_modifiers` :rn:`5.6.11-60.3`
130+ :ref:`changed_page_tracking` :rn:`5.6.11-60.3`
131+ :ref:`pam_plugin` :rn:`5.6.11-60.3`
132+ :ref:`user_stats` :rn:`5.6.11-60.3`
133+ :ref:`slow_extended` :rn:`5.6.11-60.3`
134+ :ref:`innodb_show_status` :rn:`5.6.11-60.3`
135+ :ref:`innodb_deadlocks_page` :rn:`5.6.11-60.3`
136+ :ref:`mysql_syslog` :rn:`5.6.11-60.3`
137+ :ref:`show_engines` :rn:`5.6.11-60.3`
138+ :ref:`thread_based_profiling` :rn:`5.6.11-60.3`
139+ ========================================== ===================
140+
141+List of status variables that are no longer available in |Percona Server| 5.6
142+=============================================================================
143+
144+Following status variables available in |Percona Server| 5.5 are no longer present in |Percona Server| 5.6:
145+
146+.. list-table::
147+ :header-rows: 1
148+
149+ * - Status Variables
150+ - Replaced by
151+ * - :variable:`Com_show_temporary_tables`
152+ - This variable has been removed together with the "SHOW [GLOBAL] TEMPORARY TABLES" statement, whose call number it was counting. The information about temporary tables is available via the ``INFORMATION_SCHEMA`` tables :table:`TEMPORARY_TABLES` and :table:`GLOBAL_TEMPORARY_TABLES`
153+ * - :variable:`Flashcache_enabled`
154+ - information if the Flashcache support has been enabled has not been ported to |Percona Server| 5.6
155+ * - :variable:`Innodb_adaptive_hash_cells`
156+ - this variable has not been ported to |Percona Server| 5.6
157+ * - :variable:`Innodb_adaptive_hash_heap_buffers`
158+ - this variable has not been ported to |Percona Server| 5.6
159+ * - :variable:`Innodb_adaptive_hash_hash_searches`
160+ - replaced by ``adaptive_hash_searches`` counter in ``INFORMATION_SCHEMA.INNODB_METRICS`` `table <http://dev.mysql.com/doc/refman/5.6/en/innodb-metrics-table.html>`_
161+ * - :variable:`Innodb_adaptive_hash_non_hash_searches`
162+ - replaced by ``adaptive_hash_searches_btree`` counter in ``INFORMATION_SCHEMA.INNODB_METRICS`` `table <http://dev.mysql.com/doc/refman/5.6/en/innodb-metrics-table.html>`_
163+ * - :variable:`Innodb_checkpoint_target_age`
164+ - replaced by `MySQL 5.6 flushing <http://dev.mysql.com/doc/refman/5.6/en/innodb-performance.html#innodb-lru-background-flushing>`_ implementation
165+ * - :variable:`Innodb_dict_tables`
166+ - :ref:`InnoDB Data Dictionary Size Limit <ps55:innodb_dict_size_limit_page>` feature has been replaced by the new MySQL 5.6 `table_definition_cache <https://dev.mysql.com/doc/refman/5.6/en/server-system-variables.html#sysvar_table_definition_cache>`_ implementation
167+ * - :variable:`Innodb_master_thread_1_second_loops`
168+ - new |InnoDB| master thread behavior makes this variable redundant
169+ * - :variable:`Innodb_master_thread_10_second_loops`
170+ - new |InnoDB| master thread behavior makes this variable redundant
171+ * - :variable:`Innodb_master_thread_background_loops`
172+ - new |InnoDB| master thread behavior makes this variable redundant
173+ * - :variable:`Innodb_master_thread_main_flush_loops`
174+ - new |InnoDB| master thread behavior makes this variable redundant
175+ * - :variable:`Innodb_master_thread_sleeps`
176+ - replaced by ``innodb_master_thread_sleeps`` counter in ``INFORMATION_SCHEMA.INNODB_METRICS`` `table <http://dev.mysql.com/doc/refman/5.6/en/innodb-metrics-table.html>`_
177+ * - :variable:`binlog_commits`
178+ - :ref:`Binary Log Group Commit <ps55:binary_group_commit>` feature has been replaced with the |MySQL| 5.6 implementation that doesn't have this status variable.
179+ * - :variable:`binlog_group_commits`
180+ - :ref:`Binary Log Group Commit <ps55:binary_group_commit>` feature has been replaced with the |MySQL| 5.6 implementation that doesn't have this status variable.
181+
182+
183+List of system variables that are no longer available in |Percona Server| 5.6
184+=============================================================================
185+
186+Following system variables available in |Percona Server| 5.5 are no longer present in |Percona Server| 5.6:
187+
188+.. warning::
189+
190+ |Percona Server| 5.6 won't be able to start if some of these variables are set in the server's configuration file.
191+
192+.. list-table::
193+ :header-rows: 1
194+
195+ * - System Variables
196+ - Feature Comment
197+ * - :variable:`fast_index_creation`
198+ - replaced by using MySQL's `ALGORITHM option <http://dev.mysql.com/doc/refman/5.6/en/alter-table.html>`_
199+ * - :variable:`have_flashcache`
200+ - Information if the server has been compiled with the Flashcache support has not been ported to |Percona Server| 5.6
201+ * - :variable:`have_response_time_distribution`
202+ - :ref:`Response Time Distribution <ps55:response_time_distribution>` feature containing this variable has not been ported to |Percona Server| 5.6 yet
203+ * - :variable:`innodb_adaptive_flushing_method`
204+ - replaced by MySQL 5.6 `flushing <http://dev.mysql.com/doc/refman/5.6/en/innodb-performance.html#innodb-lru-background-flushing>`_ implementation
205+ * - :variable:`innodb_adaptive_hash_index_partitions`
206+ - variable has not been ported to |Percona Server| 5.6 yet
207+ * - :variable:`innodb_blocking_buffer_pool_restore`
208+ - variable doesn't have direct replacement in |MySQL| 5.6. Feature will be implemented in a `future <https://blueprints.launchpad.net/percona-server/+spec/blocking-buffer-pool-restore>`_ |Percona Server| 5.6 release
209+ * - :variable:`innodb_buffer_pool_restore_at_startup`
210+ - replaced by `innodb_buffer_pool_load_at_startup <http://dev.mysql.com/doc/refman/5.6/en/innodb-parameters.html#sysvar_innodb_buffer_pool_load_at_startup>`_
211+ * - :variable:`innodb_buffer_pool_shm_checksum`
212+ - variable has been deprecated and removed in |Percona Server| 5.5
213+ * - :variable:`innodb_buffer_pool_shm_key`
214+ - variable has been deprecated and removed in |Percona Server| 5.5
215+ * - :variable:`innodb_checkpoint_age_target`
216+ - replaced by `MySQL 5.6 flushing <http://dev.mysql.com/doc/refman/5.6/en/innodb-performance.html#innodb-lru-background-flushing>`_ implementation
217+ * - :variable:`innodb_dict_size_limit`
218+ - replaced by |MySQL| 5.6 new `table_definition_cache <https://dev.mysql.com/doc/refman/5.6/en/server-system-variables.html#sysvar_table_definition_cache>`_ implementation
219+ * - :variable:`innodb_doublewrite_file`
220+ - :ref:`Configuration of the Doublewrite Buffer <ps55:innodb_doublewrite_path>` feature containing this variable has not been ported to |Percona Server| 5.6
221+ * - :variable:`innodb_fast_checksum`
222+ - replaced by `innodb_checksum_algorithm <http://dev.mysql.com/doc/refman/5.6/en/innodb-parameters.html#sysvar_innodb_checksum_algorithm>`_
223+ * - :variable:`innodb_flush_neighbor_pages`
224+ - replaced by `innodb_flush_neighbors <http://dev.mysql.com/doc/refman/5.6/en/innodb-parameters.html#sysvar_innodb_flush_neighbors>`_
225+ * - :variable:`innodb_ibuf_accel_rate`
226+ - :ref:`Configurable Insert Buffer <ps55:innodb_insert_buffer>` feature containing this variable has not been ported to |Percona Server| 5.6
227+ * - :variable:`innodb_ibuf_active_contract`
228+ - :ref:`Configurable Insert Buffer <ps55:innodb_insert_buffer>` feature containing this variable has not been ported to |Percona Server| 5.6
229+ * - :variable:`innodb_ibuf_max_size`
230+ - :ref:`Configurable Insert Buffer <ps55:innodb_insert_buffer>` feature containing this variable has not been ported to |Percona Server| 5.6
231+ * - :variable:`innodb_import_table_from_xtrabackup`
232+ - replaced by MySQL `transportable tablespaces <http://dev.mysql.com/doc/refman/5.6/en/tablespace-copying.html>`_
233+ * - :variable:`innodb_lazy_drop_table`
234+ - variable has been deprecated and removed in |Percona Server| 5.5
235+ * - :variable:`innodb_merge_sort_block_size`
236+ - replaced by `innodb_sort_buffer_size <http://dev.mysql.com/doc/refman/5.6/en/innodb-parameters.html#sysvar_innodb_sort_buffer_size>`_
237+ * - :variable:`innodb_page_size`
238+ - replaced by `innodb_page_size <http://dev.mysql.com/doc/refman/5.6/en/innodb-parameters.html#sysvar_innodb_page_size>`_
239+ * - :variable:`innodb_read_ahead`
240+ - replaced by MySQL `Read-Ahead Algorithm <http://dev.mysql.com/doc/refman/5.6/en/innodb-performance.html#innodb-performance-read_ahead>`_ implementation, `innodb_random_read_ahead <http://dev.mysql.com/doc/refman/5.6/en/innodb-parameters.html#sysvar_innodb_andom_read_ahead>`_
241+ * - :variable:`innodb_recovery_stats`
242+ - :ref:`InnoDB Recovery Stats <ps55:innodb_recovery_patches>` feature containing this variable has not been ported to |Percona Server| 5.6
243+ * - :variable:`innodb_recovery_update_relay_log`
244+ - replaced by `relay-log-recovery <http://dev.mysql.com/doc/refman/5.6/en/replication-options-slave.html#option_mysqld_relay-log-recovery>`_
245+ * - :variable:`innodb_stats_auto_update`
246+ - replaced by `innodb_stats_auto_recalc <http://dev.mysql.com/doc/refman/5.6/en/innodb-parameters.html#sysvar_innodb_stats_auto_recalc>`_
247+ * - :variable:`innodb_stats_update_need_lock`
248+ - variable has not been ported to |Percona Server| 5.6
249+ * - :variable:`innodb_thread_concurrency_timer_based`
250+ - :ref:`InnoDB timer-based Concurrency Throttling <ps55:innodb_thread_concurrency_timer_based_page>` feature containing this variable has not been ported to |Percona Server| 5.6
251+ * - :variable:`innodb_use_sys_stats_table`
252+ - variable has been replaced by `Persistent Optimizer Statistics <https://dev.mysql.com/doc/refman/5.6/en/innodb-performance.html#innodb-persistent-stats>`_ implementation in |MySQL| 5.6
253+ * - :variable:`log_slow_admin_statements`
254+ - the upstream variable has the same functionality
255+ * - :variable:`log_slow_slave_statements`
256+ - the upstream variable has the same functionality
257+ * - :variable:`optimizer_fix`
258+ - this variable has been deprecated and removed in |Percona Server| 5.5
259+ * - :variable:`query_response_time_range_base`
260+ - :ref:`Response Time Distribution <ps55:response_time_distribution>` feature containing this variable has not been ported to |Percona Server| 5.6 yet
261+ * - :variable:`query_response_time_stats`
262+ - :ref:`Response Time Distribution <ps55:response_time_distribution>` feature containing this variable has not been ported to |Percona Server| 5.6 yet
263+
264
265=== modified file 'doc/source/conf.py'
266--- doc/source/conf.py 2013-08-27 06:28:12 +0000
267+++ doc/source/conf.py 2013-08-28 06:14:13 +0000
268@@ -268,5 +268,5 @@
269 'ps51' : ('http://www.percona.com/doc/percona-server/5.1/', None),
270 'ps55' : ('http://www.percona.com/doc/percona-server/5.5/', None),
271 'xtrabackup' : ('http://www.percona.com/doc/percona-xtrabackup/2.1/', None),
272- 'ptoolkit' : ('http://www.percona.com/doc/percona-toolkit/2.1/', None)
273+ 'ptoolkit' : ('http://www.percona.com/doc/percona-toolkit/2.2/', None)
274 }
275
276=== modified file 'doc/source/ps-variables.rst'
277--- doc/source/ps-variables.rst 2013-07-12 08:38:41 +0000
278+++ doc/source/ps-variables.rst 2013-08-28 06:14:13 +0000
279@@ -1,7 +1,7 @@
280 .. _ps_variables:
281
282 ====================================================
283- List of variables introduced in Percona Server 5.5
284+ List of variables introduced in Percona Server 5.6
285 ====================================================
286
287 System Variables
288
289=== modified file 'doc/source/release-notes/Percona-Server-5.6.10-60.2.rst'
290--- doc/source/release-notes/Percona-Server-5.6.10-60.2.rst 2013-04-10 14:43:41 +0000
291+++ doc/source/release-notes/Percona-Server-5.6.10-60.2.rst 2013-08-28 06:14:13 +0000
292@@ -21,3 +21,5 @@
293 ==========
294
295 Fixed the upstream :mysqlbug:`68116` that caused the server crash with assertion error when |InnoDB| monitor with verbose lock info was used under heavy load. This bug is affecting only ``-debug`` builds. Bug fixed :bug:`1100178` (*Laurynas Biveinis*).
296+
297+ Fixed the extra ``libtinfo`` package dependency in |Percona Server| tarballs. Bug fixed :bug:`1153950` (*Ignacio Nin*).

Subscribers

People subscribed via source and target branches