]> TLD Linux GIT Repositories - packages/mysql.git/commitdiff
- PLD merge, fix for bug 66589
authorMarcin Krol <hawk@tld-linux.org>
Mon, 14 Oct 2013 06:56:19 +0000 (06:56 +0000)
committerMarcin Krol <hawk@tld-linux.org>
Mon, 14 Oct 2013 06:56:19 +0000 (06:56 +0000)
bug-66589.patch [new file with mode: 0644]

diff --git a/bug-66589.patch b/bug-66589.patch
new file mode 100644 (file)
index 0000000..fbf75e6
--- /dev/null
@@ -0,0 +1,10 @@
+--- Percona-Server-5.5.33-rel31.1/scripts/mysqlhotcopy.sh~     2013-10-02 20:29:57.000000000 +0300
++++ Percona-Server-5.5.33-rel31.1/scripts/mysqlhotcopy.sh      2013-10-02 20:30:33.825747635 +0300
+@@ -268,6 +268,7 @@
+     $sth_dbs->execute;
+     while ( my ($db_name) = $sth_dbs->fetchrow_array ) {
+       next if $db_name =~ m/^information_schema$/i;
++      next if $db_name =~ m/^performance_schema$/i;
+       push @db_desc, { 'src' => $db_name, 't_regex' => $t_regex } if ( $db_name =~ m/$opt{regexp}/o );
+     }
+ }