Skip to content

Commit

Permalink
Quote table name.
Browse files Browse the repository at this point in the history
  • Loading branch information
ADmad committed Feb 23, 2023
1 parent f5430c2 commit 6282a6d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/TestSuite/Fixture/ChecksumTestFixture.php
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ protected function _hash(ConnectionInterface $db): string
$driver = $db->getDriver();

if ($driver instanceof Mysql) {
$sth = $db->execute('CHECKSUM TABLE ' . $this->table);
$sth = $db->execute('CHECKSUM TABLE `' . $this->table . '`');

return $sth->fetchColumn(1);
}
Expand Down

0 comments on commit 6282a6d

Please sign in to comment.