From 75a1ead588ca4cc188ac172778120d792ce7872d Mon Sep 17 00:00:00 2001 From: "Jonathan.Wage" Date: Wed, 1 Aug 2007 17:56:18 +0000 Subject: [PATCH] Fixed issue with count() and composite column primary keys --- lib/Doctrine/Query.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Doctrine/Query.php b/lib/Doctrine/Query.php index f18015ef1..88a243fec 100644 --- a/lib/Doctrine/Query.php +++ b/lib/Doctrine/Query.php @@ -1378,7 +1378,7 @@ class Doctrine_Query extends Doctrine_Query_Abstract implements Countable // build the query base $q = 'SELECT COUNT(DISTINCT ' . $this->getTableAlias($componentAlias) - . '.' . $table->getIdentifier() + . '.' . implode(',', (array) $table->getIdentifier()) . ') AS num_results'; foreach ($this->parts['select'] as $field) {