summaryrefslogtreecommitdiff
path: root/scripts/mysqlhotcopy.sh
diff options
context:
space:
mode:
authorjani@rhols221.adsl.netsonic.fi <>2003-10-22 18:40:37 +0300
committerjani@rhols221.adsl.netsonic.fi <>2003-10-22 18:40:37 +0300
commite69447933dce4c4bbd681e6b7eea15a1d23bb415 (patch)
treef926a82746025177325b2526f6cc07d42a7880fd /scripts/mysqlhotcopy.sh
parent94cce644165e0009f9a057b8e21712e9b3f370ea (diff)
downloadmariadb-git-e69447933dce4c4bbd681e6b7eea15a1d23bb415.tar.gz
Fixed a bug in mysqlhotcopy, which made special table names
to cause program to abort. Such table name could have been one with a semicolon (:) in the middle.
Diffstat (limited to 'scripts/mysqlhotcopy.sh')
-rw-r--r--scripts/mysqlhotcopy.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/mysqlhotcopy.sh b/scripts/mysqlhotcopy.sh
index 654e5466e12..160a2611374 100644
--- a/scripts/mysqlhotcopy.sh
+++ b/scripts/mysqlhotcopy.sh
@@ -453,13 +453,13 @@ if ( $opt{dryrun} ) {
}
else {
my $start = time;
- $dbh->do("LOCK TABLES $hc_locks");
+ $dbh->do('LOCK TABLES $hc_locks');
printf "Locked $num_tables tables in %d seconds.\n", time-$start unless $opt{quiet};
$hc_started = time; # count from time lock is granted
# flush tables to make on-disk copy uptodate
$start = time;
- $dbh->do("FLUSH TABLES /*!32323 $hc_tables */");
+ $dbh->do('FLUSH TABLES /*!32323 $hc_tables */');
printf "Flushed tables ($hc_tables) in %d seconds.\n", time-$start unless $opt{quiet};
$dbh->do( "FLUSH LOGS" ) if ( $opt{flushlog} );
$dbh->do( "RESET MASTER" ) if ( $opt{resetmaster} );
@@ -467,7 +467,7 @@ else {
if ( $opt{record_log_pos} ) {
record_log_pos( $dbh, $opt{record_log_pos} );
- $dbh->do("FLUSH TABLES /*!32323 $hc_tables */");
+ $dbh->do('FLUSH TABLES /*!32323 $hc_tables */');
}
}