doctrine / data-fixtures

Doctrine2 ORM Data Fixtures Extensions
http://www.doctrine-project.org
MIT License
2.77k stars 224 forks source link

quoteIdentifier on table name not required when deleting #221

Closed bendavies closed 8 years ago

bendavies commented 8 years ago

quoteIdentifier on the table name isn't required, as it it already done by getTableName and the QuoteStrategy previously.

Infact, this double quoting breaks certain playforms under certain conditions. for example, on postgres with a reserved word table name (name), DELETE FROM ""USER"" is executed, which throws an error.