NotificationQuery: Provide case-insensitive filter column `service'

refs #8613
This commit is contained in:
Johannes Meyer 2015-04-13 15:33:19 +02:00
parent 3653ec810a
commit 29f05bf878
2 changed files with 2 additions and 1 deletions

View File

@ -15,6 +15,7 @@ class NotificationQuery extends IdoQuery
'objects' => array(
'host' => 'o.name1 COLLATE latin1_general_ci',
'host_name' => 'o.name1',
'service' => 'o.name2 COLLATE latin1_general_ci',
'service_description' => 'o.name2'
),
'contact' => array(

View File

@ -37,6 +37,6 @@ class Notification extends DataView
public function getFilterColumns()
{
return array('host');
return array('host', 'service');
}
}