Quote table names in 'SHOW CREATE TABLE' in Parser::DBI::MySQL
[dbsrgits/SQL-Translator.git] / lib / SQL / Translator / Parser / DBI / MySQL.pm
index 7907690..eea9522 100644 (file)
@@ -40,7 +40,7 @@ sub parse {
     my $create = q{};
     for my $table_name ( @table_names ) {
         next if (grep /^$table_name$/, @skip_tables);
-        my $sth = $dbh->prepare("show create table $table_name");
+        my $sth = $dbh->prepare("show create table " . $dbh->quote_identifier($table_name));
         $sth->execute;
         my $table = $sth->fetchrow_hashref;
         $create .= ($table->{'create table'} || $table->{'create view'}) . ";\n\n";