fixing typo
This commit is contained in:
parent
2c3b8bab19
commit
b3915b8ad0
1 changed files with 1 additions and 1 deletions
|
@ -519,7 +519,7 @@ class Doctrine_Query extends Doctrine_Hydrate implements Countable {
|
|||
switch(strtolower($this->connection->getName())) {
|
||||
case 'mysql':
|
||||
// mysql doesn't support LIMIT in subqueries
|
||||
$list = $this->conn->execute($subquery, $params)->fetchAll(PDO::FETCH_COLUMN);
|
||||
$list = $this->connection->execute($subquery, $params)->fetchAll(PDO::FETCH_COLUMN);
|
||||
$subquery = implode(', ', $list);
|
||||
break;
|
||||
case 'pgsql':
|
||||
|
|
Loading…
Add table
Reference in a new issue