1
0
mirror of synced 2025-01-20 07:21:40 +03:00

fixing typo

This commit is contained in:
pookey 2006-11-16 21:54:53 +00:00
parent 2c3b8bab19
commit b3915b8ad0

View File

@ -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':