Fix find('count') with 'group' when result has only one group. Closes #1677

This commit is contained in:
ADmad 2012-10-09 10:43:27 +05:30
parent 1234f96a6c
commit 33a879ff41
2 changed files with 14 additions and 3 deletions

View file

@ -2749,8 +2749,8 @@ class Model extends Object implements CakeEventListener {
} elseif ($state === 'after') {
foreach (array(0, $this->alias) as $key) {
if (isset($results[0][$key]['count'])) {
if (($count = count($results)) > 1) {
return $count;
if ($query['group']) {
return count($results);
} else {
return intval($results[0][$key]['count']);
}

View file

@ -6860,6 +6860,17 @@ class ModelReadTest extends BaseModelTest {
));
$result = $Article->find('count', array('group' => array('Article.user_id')));
$this->assertEquals($expected, $result);
$expected = count($Article->find('all', array(
'fields' => array('Article.user_id'),
'conditions' => array('Article.user_id' => 1),
'group' => 'Article.user_id')
));
$result = $Article->find('count', array(
'conditions' => array('Article.user_id' => 1),
'group' => array('Article.user_id'),
));
$this->assertEquals($expected, $result);
}
/**
@ -6886,7 +6897,7 @@ class ModelReadTest extends BaseModelTest {
$this->skipIf($this->db instanceof Sqlite, 'SELECT COUNT(DISTINCT field) is not compatible with SQLite.');
$this->skipIf($this->db instanceof Sqlserver, 'This test is not compatible with SQL Server.');
$this->loadFixtures('Project');
$this->loadFixtures('Project', 'Thread');
$TestModel = new Project();
$TestModel->create(array('name' => 'project')) && $TestModel->save();
$TestModel->create(array('name' => 'project')) && $TestModel->save();