diff options
author | unknown <serg@serg.mysql.com> | 2001-12-27 18:32:24 +0000 |
---|---|---|
committer | unknown <serg@serg.mysql.com> | 2001-12-27 18:32:24 +0000 |
commit | 4f9b802c6c61cc06e7a6fabbd3582b2516b22c15 (patch) | |
tree | bd7d99247e089eed81e526eeb902c616ddd2b3d2 /scripts | |
parent | c85daae0adfae1ae7a3b729ba58d3257f48f2dd2 (diff) | |
download | mariadb-git-4f9b802c6c61cc06e7a6fabbd3582b2516b22c15.tar.gz |
`escaping` to mysqlhotcopy
scripts/mysqlhotcopy.sh:
`escaping`
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/mysqlhotcopy.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/mysqlhotcopy.sh b/scripts/mysqlhotcopy.sh index caf2615fe7a..063ff8be750 100644 --- a/scripts/mysqlhotcopy.sh +++ b/scripts/mysqlhotcopy.sh @@ -307,7 +307,7 @@ foreach my $rdb ( @db_desc ) { $rdb->{files} = [ @db_files ]; $rdb->{index} = [ @index_files ]; - my @hc_tables = map { "$db.$_" } @dbh_tables; + my @hc_tables = map { "`$db.$_`" } @dbh_tables; $rdb->{tables} = [ @hc_tables ]; $rdb->{raid_dirs} = [ get_raid_dirs( $rdb->{files} ) ]; |