HostcommenthistoryQuery: PostgreSQL grouping...

refs #9009
This commit is contained in:
Johannes Meyer 2015-06-18 13:18:52 +02:00
parent b56114c824
commit f20193edb9
1 changed files with 16 additions and 2 deletions

View File

@ -98,7 +98,6 @@ class HostcommenthistoryQuery extends IdoQuery
'hgo.object_id = hg.hostgroup_object_id AND hgo.is_active = 1 AND hgo.objecttype_id = 3', 'hgo.object_id = hg.hostgroup_object_id AND hgo.is_active = 1 AND hgo.objecttype_id = 3',
array() array()
); );
$this->select->group(array('hch.commenthistory_id', 'ho.name1'));
} }
/** /**
@ -148,6 +147,21 @@ class HostcommenthistoryQuery extends IdoQuery
'so.object_id = s.service_object_id AND so.is_active = 1 AND so.objecttype_id = 2', 'so.object_id = s.service_object_id AND so.is_active = 1 AND so.objecttype_id = 2',
array() array()
); );
$this->select->group(array('hch.commenthistory_id', 'ho.name1')); }
/**
* {@inheritdoc}
*/
public function getGroup()
{
$group = array();
if ($this->hasJoinedVirtualTable('hostgroups') || $this->hasJoinedVirtualTable('services')) {
$group = array('hch.commenthistory_id', 'ho.object_id');
if ($this->hasJoinedVirtualTable('hosts')) {
$group[] = 'h.host_id';
}
}
return $group;
} }
} }