]> git.pld-linux.org Git - packages/mysql.git/blame - bug966844_page_size_error_on_5520_upgrade.patch
invoke mysql rotation daily
[packages/mysql.git] / bug966844_page_size_error_on_5520_upgrade.patch
CommitLineData
543222d2
AM
1Bug#966844 "page size 1024 but the only supported page size in this release is=16384" error on upgrade to 5.5.2[01]
2
3Patch is from http://bugs.mysql.com/bug.php?id=64160
4http://bugs.mysql.com/file.php?id=18031&text=1
5By Kevin Lewis
6
7Adapted to Percona Server by Stewart Smith
8
9--- a/storage/innobase/srv/srv0start.c
10+++ b/storage/innobase/srv/srv0start.c
11@@ -925,8 +925,9 @@
12 #endif /* UNIV_LOG_ARCHIVE */
13 min_flushed_lsn, max_flushed_lsn);
14
15- if (UNIV_PAGE_SIZE
16- != fsp_flags_get_page_size(flags)) {
17+ if (!one_opened
18+ && UNIV_PAGE_SIZE
19+ != fsp_flags_get_page_size(flags)) {
20
21 ut_print_timestamp(stderr);
22 fprintf(stderr,
This page took 0.122054 seconds and 4 git commands to generate.