diff options
author | unknown <jimw@mysql.com> | 2005-11-30 13:10:50 -0800 |
---|---|---|
committer | unknown <jimw@mysql.com> | 2005-11-30 13:10:50 -0800 |
commit | 3c8a8de47e6f2fcc6358d4805e0aec885e18564a (patch) | |
tree | db4672ffcdb4ba1335440c216bf2c398522e3ab6 | |
parent | b775d23faaa98297ddd5ed6978b5a214432516d3 (diff) | |
parent | 388dc4c3f8c89b817f612dff3ce0d52ecb9dd7b7 (diff) | |
download | mariadb-git-3c8a8de47e6f2fcc6358d4805e0aec885e18564a.tar.gz |
Merge mysql.com:/home/jimw/my/mysql-5.0-14610
into mysql.com:/home/jimw/my/mysql-5.0-clean
-rw-r--r-- | scripts/mysqlhotcopy.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/mysqlhotcopy.sh b/scripts/mysqlhotcopy.sh index 1c5cd6a4faf..bf53aa78e15 100644 --- a/scripts/mysqlhotcopy.sh +++ b/scripts/mysqlhotcopy.sh @@ -252,6 +252,7 @@ if ( defined $opt{regexp} ) { my $sth_dbs = $dbh->prepare("show databases"); $sth_dbs->execute; while ( my ($db_name) = $sth_dbs->fetchrow_array ) { + next if $db_name =~ m/^information_schema$/i; push @db_desc, { 'src' => $db_name, 't_regex' => $t_regex } if ( $db_name =~ m/$opt{regexp}/o ); } } |