[Bug 197606] Re: Invalid db.table name 'g2_AccessMap' at /usr/bin/mysqlhotcopy line 845
karthik
launchpad at nospam.karthik.com
Sat Apr 26 21:53:53 BST 2008
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 {
--
Invalid db.table name 'g2_AccessMap' at /usr/bin/mysqlhotcopy line 845
https://bugs.launchpad.net/bugs/197606
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-dfsg-5.0 in ubuntu.
More information about the Ubuntu-server-bugs
mailing list