Quote table names in 'SHOW CREATE TABLE' in Parser::DBI::MySQL
Dagfinn Ilmari Mannsåker [Thu, 24 Jul 2014 16:30:01 +0000 (17:30 +0100)]
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";