Merge lp:~laurynas-biveinis/percona-server/bug1203308-5.1 into lp:percona-server/5.1

Proposed by Laurynas Biveinis
Status: Merged
Approved by: Laurynas Biveinis
Approved revision: no longer in the source branch.
Merged at revision: 582
Proposed branch: lp:~laurynas-biveinis/percona-server/bug1203308-5.1
Merge into: lp:percona-server/5.1
Diff against target: 11 lines (+1/-1)
1 file modified
Percona-Server/storage/innodb_plugin/srv/srv0srv.c (+1/-1)
To merge this branch: bzr merge lp:~laurynas-biveinis/percona-server/bug1203308-5.1
Reviewer Review Type Date Requested Status
Laurynas Biveinis (community) Approve
Review via email: mp+176172@code.launchpad.net

Description of the change

    Fix bug 1203308 (Wrong initial value for srv_track_changed_pages).

    The issue is that srv_track_changed_pages is initialized to TRUE at
    declaration time. This does not match the default value (FALSE) of
    the corresponding innodb_track_changed_pages option, and causes
    trouble if InnoDB is used in a way which skips plugin option
    initialization (i.e. XtraBackup). Fixed.

To post a comment you must log in.
Revision history for this message
Laurynas Biveinis (laurynas-biveinis) wrote :

Self-approving, trivial change.

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

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'Percona-Server/storage/innodb_plugin/srv/srv0srv.c'
2--- Percona-Server/storage/innodb_plugin/srv/srv0srv.c 2013-06-03 03:53:55 +0000
3+++ Percona-Server/storage/innodb_plugin/srv/srv0srv.c 2013-07-22 11:53:33 +0000
4@@ -171,7 +171,7 @@
5
6 UNIV_INTERN ulint srv_use_purge_thread = 0;
7
8-UNIV_INTERN my_bool srv_track_changed_pages = TRUE;
9+UNIV_INTERN my_bool srv_track_changed_pages = FALSE;
10
11 UNIV_INTERN ib_uint64_t srv_max_bitmap_file_size = 100 * 1024 * 1024;
12

Subscribers

People subscribed via source and target branches