Closed bendavies closed 4 years ago
This changes getTableName to use the same method for quoting the table name as $platform->getTruncateTableSQL(...).
getTableName
$platform->getTruncateTableSQL(...)
This fixes the case where you have a table name which is a reserved word.
A merge would be welcome. For example, an error is triggered by Postgresql on a table called "group".
I've created an alternative PR #334 that fixes this issue and includes tests.
This changes
getTableName
to use the same method for quoting the table name as$platform->getTruncateTableSQL(...)
.This fixes the case where you have a table name which is a reserved word.