summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorunknown <serg@serg.mysql.com>2001-12-27 18:32:24 +0000
committerunknown <serg@serg.mysql.com>2001-12-27 18:32:24 +0000
commit4f9b802c6c61cc06e7a6fabbd3582b2516b22c15 (patch)
treebd7d99247e089eed81e526eeb902c616ddd2b3d2 /scripts
parentc85daae0adfae1ae7a3b729ba58d3257f48f2dd2 (diff)
downloadmariadb-git-4f9b802c6c61cc06e7a6fabbd3582b2516b22c15.tar.gz
`escaping` to mysqlhotcopy
scripts/mysqlhotcopy.sh: `escaping`
Diffstat (limited to 'scripts')
-rw-r--r--scripts/mysqlhotcopy.sh2
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} ) ];