fixed DQL DELETE handling for mysql
This commit is contained in:
parent
1da5baee10
commit
8bc6813100
@ -591,11 +591,15 @@ class Doctrine_Query extends Doctrine_Hydrate implements Countable {
|
|||||||
{
|
{
|
||||||
switch ($this->type) {
|
switch ($this->type) {
|
||||||
case self::DELETE:
|
case self::DELETE:
|
||||||
|
/**
|
||||||
|
no longer needed?
|
||||||
|
|
||||||
if ($this->conn->getName() == 'Mysql') {
|
if ($this->conn->getName() == 'Mysql') {
|
||||||
$q = 'DELETE ' . end($this->tableAliases) . ' FROM ';
|
$q = 'DELETE ' . end($this->tableAliases) . ' FROM ';
|
||||||
} else {
|
} else {
|
||||||
|
*/
|
||||||
$q = 'DELETE FROM ';
|
$q = 'DELETE FROM ';
|
||||||
}
|
// }
|
||||||
break;
|
break;
|
||||||
case self::UPDATE:
|
case self::UPDATE:
|
||||||
$q = 'UPDATE ';
|
$q = 'UPDATE ';
|
||||||
|
Loading…
x
Reference in New Issue
Block a user