Commit 085e7784 authored by jimw@mysql.com's avatar jimw@mysql.com

Merge mysql.com:/home/jimw/my/mysql-5.0-14610

into  mysql.com:/home/jimw/my/mysql-5.0-clean
parents 37ff7308 bb742ae0
...@@ -252,6 +252,7 @@ if ( defined $opt{regexp} ) { ...@@ -252,6 +252,7 @@ if ( defined $opt{regexp} ) {
my $sth_dbs = $dbh->prepare("show databases"); my $sth_dbs = $dbh->prepare("show databases");
$sth_dbs->execute; $sth_dbs->execute;
while ( my ($db_name) = $sth_dbs->fetchrow_array ) { 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 ); push @db_desc, { 'src' => $db_name, 't_regex' => $t_regex } if ( $db_name =~ m/$opt{regexp}/o );
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment