CommentQuery: Provide `service_host' additionally to `service_host_name'

refs #8613
This commit is contained in:
Johannes Meyer 2015-04-09 12:55:57 +02:00
parent 480f5516d6
commit 002b820835
2 changed files with 2 additions and 1 deletions

View File

@ -22,6 +22,7 @@ class CommentQuery extends IdoQuery
'host_name' => 'CASE WHEN ho.name1 IS NULL THEN so.name1 ELSE ho.name1 END',
'service' => 'so.name2 COLLATE latin1_general_ci',
'service_description' => 'so.name2',
'service_host' => 'so.name1 COLLATE latin1_general_ci',
'service_host_name' => 'so.name1'
),
'hosts' => array(

View File

@ -60,6 +60,6 @@ class Comment extends DataView
*/
public function getFilterColumns()
{
return array('host', 'service');
return array('host', 'service', 'service_host');
}
}