Skip to content

Commit

Permalink
Quote tables that are being converted.
Browse files Browse the repository at this point in the history
  • Loading branch information
perlDreamer committed Dec 1, 2011
1 parent 0b144dd commit 3167e24
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion share/upgrades/7.10.23-8.0.0/zzzz_convertToInnoDb.pl
Expand Up @@ -7,7 +7,7 @@

TABLE: while ( my $table = $get_table->fetchrow_hashref() ) {
next TABLE if $table->{TABLE_NAME} eq 'assetIndex';
session->db->write("ALTER TABLE ". $table->{TABLE_NAME}. " ENGINE=InnoDB");
session->db->write("ALTER TABLE ". dbh->quote_identifier($table->{TABLE_NAME}). " ENGINE=InnoDB");
}


Expand Down

0 comments on commit 3167e24

Please sign in to comment.