Comment 2 for bug 197606

Revision history for this message
karthik (karumugham) wrote : Re: Invalid db.table name 'g2_AccessMap' at /usr/bin/mysqlhotcopy line 845

Changing line 837 to read "return (map { $db . "." . $_->[0] } @$tables);" seems to fix the problem for now.

--- mysqlhotcopy.orig 2008-03-28 00:16:20.000000000 -0400
+++ mysqlhotcopy 2008-04-26 16:48:30.519297639 -0400
@@ -834,7 +834,7 @@
         } || [];
     warn "Unable to retrieve list of tables in $db: $@" if $@;

- return (map { $_->[0] } @$tables);
+ return (map { $db . "." . $_->[0] } @$tables);
 }

 sub quote_names {